* [PATCH v2 0/2] drm: lcdif: FIFO underrun/solid color bug fix @ 2026-04-02 18:33 Paul Kocialkowski 2026-04-02 18:33 ` [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync Paul Kocialkowski 2026-04-02 18:33 ` [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA Paul Kocialkowski 0 siblings, 2 replies; 7+ messages in thread From: Paul Kocialkowski @ 2026-04-02 18:33 UTC (permalink / raw) To: dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Lucas Stach, Krzysztof Hałasa, Marco Felsch, Liu Ying, Paul Kocialkowski This series brings a fix for the FIFO underrun/solid color bug (in the last commit) and two other changes that may help with reliability. Paul Kocialkowski (2): drm: lcdif: Set undocumented bit to clear FIFO at vsync drm: lcdif: Wait for vblank before disabling DMA drivers/gpu/drm/mxsfb/lcdif_kms.c | 18 ++++++++++++++---- drivers/gpu/drm/mxsfb/lcdif_regs.h | 1 + 2 files changed, 15 insertions(+), 4 deletions(-) -- 2.53.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync 2026-04-02 18:33 [PATCH v2 0/2] drm: lcdif: FIFO underrun/solid color bug fix Paul Kocialkowski @ 2026-04-02 18:33 ` Paul Kocialkowski 2026-04-07 6:31 ` Liu Ying 2026-04-02 18:33 ` [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA Paul Kocialkowski 1 sibling, 1 reply; 7+ messages in thread From: Paul Kocialkowski @ 2026-04-02 18:33 UTC (permalink / raw) To: dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Lucas Stach, Krzysztof Hałasa, Marco Felsch, Liu Ying, Paul Kocialkowski There is an undocumented bit used in the NXP BSP to clear the FIFO systematically at vsync. In normal operation, the FIFO should already be empty but it doesn't hurt to add it as an extra safety measure. Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> Reviewed-by: Lucas Stach <l.stach@pengutronix.de> --- drivers/gpu/drm/mxsfb/lcdif_kms.c | 3 ++- drivers/gpu/drm/mxsfb/lcdif_regs.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/mxsfb/lcdif_kms.c b/drivers/gpu/drm/mxsfb/lcdif_kms.c index ef3250a5c54f..a00c4f6d63f4 100644 --- a/drivers/gpu/drm/mxsfb/lcdif_kms.c +++ b/drivers/gpu/drm/mxsfb/lcdif_kms.c @@ -338,7 +338,8 @@ static void lcdif_set_mode(struct lcdif_drm_private *lcdif, u32 bus_flags) * Downstream set it to 256B burst size to improve the memory * efficiency so set it here too. */ - ctrl = CTRLDESCL0_3_P_SIZE(2) | CTRLDESCL0_3_T_SIZE(2) | + ctrl = CTRLDESCL0_3_STATE_CLEAR_VSYNC | + CTRLDESCL0_3_P_SIZE(2) | CTRLDESCL0_3_T_SIZE(2) | CTRLDESCL0_3_PITCH(lcdif->crtc.primary->state->fb->pitches[0]); writel(ctrl, lcdif->base + LCDC_V8_CTRLDESCL0_3); } diff --git a/drivers/gpu/drm/mxsfb/lcdif_regs.h b/drivers/gpu/drm/mxsfb/lcdif_regs.h index c55dfb236c1d..17882c593d27 100644 --- a/drivers/gpu/drm/mxsfb/lcdif_regs.h +++ b/drivers/gpu/drm/mxsfb/lcdif_regs.h @@ -190,6 +190,7 @@ #define CTRLDESCL0_1_WIDTH(n) ((n) & 0xffff) #define CTRLDESCL0_1_WIDTH_MASK GENMASK(15, 0) +#define CTRLDESCL0_3_STATE_CLEAR_VSYNC BIT(23) #define CTRLDESCL0_3_P_SIZE(n) (((n) << 20) & CTRLDESCL0_3_P_SIZE_MASK) #define CTRLDESCL0_3_P_SIZE_MASK GENMASK(22, 20) #define CTRLDESCL0_3_T_SIZE(n) (((n) << 16) & CTRLDESCL0_3_T_SIZE_MASK) -- 2.53.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync 2026-04-02 18:33 ` [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync Paul Kocialkowski @ 2026-04-07 6:31 ` Liu Ying 0 siblings, 0 replies; 7+ messages in thread From: Liu Ying @ 2026-04-07 6:31 UTC (permalink / raw) To: Paul Kocialkowski, dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Lucas Stach, Krzysztof Hałasa, Marco Felsch On Thu, Apr 02, 2026 at 08:33:50PM +0200, Paul Kocialkowski wrote: > There is an undocumented bit used in the NXP BSP to clear the FIFO > systematically at vsync. In normal operation, the FIFO should already > be empty but it doesn't hurt to add it as an extra safety measure. > > Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> > Reviewed-by: Lucas Stach <l.stach@pengutronix.de> > --- > drivers/gpu/drm/mxsfb/lcdif_kms.c | 3 ++- > drivers/gpu/drm/mxsfb/lcdif_regs.h | 1 + > 2 files changed, 3 insertions(+), 1 deletion(-) Reviewed-by: Liu Ying <victor.liu@nxp.com> Thanks! -- Regards, Liu Ying ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA 2026-04-02 18:33 [PATCH v2 0/2] drm: lcdif: FIFO underrun/solid color bug fix Paul Kocialkowski 2026-04-02 18:33 ` [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync Paul Kocialkowski @ 2026-04-02 18:33 ` Paul Kocialkowski 2026-04-07 6:34 ` Liu Ying 2026-04-07 8:28 ` Lucas Stach 1 sibling, 2 replies; 7+ messages in thread From: Paul Kocialkowski @ 2026-04-02 18:33 UTC (permalink / raw) To: dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Lucas Stach, Krzysztof Hałasa, Marco Felsch, Liu Ying, Paul Kocialkowski It is necessary to wait for the full frame to finish streaming through the DMA engine before we can safely disable it by removing the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the hardware confused and unable to resume streaming for the next frame. This causes the FIFO underrun and empty status bits to be set and a single solid color to be shown on the display, coming from one of the pixels of the previous frame. The issue occurs sporadically when a new mode is set, which triggers the crtc disable and enable paths. Setting the shadow load bit and waiting for it to be cleared by the DMA engine allows waiting for completion. The NXP BSP driver addresses this issue with a hardcoded 25 ms sleep. Fixes: 9db35bb349a0 ("drm: lcdif: Add support for i.MX8MP LCDIF variant") Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> Co-developed-by: Lucas Stach <l.stach@pengutronix.de> --- drivers/gpu/drm/mxsfb/lcdif_kms.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/mxsfb/lcdif_kms.c b/drivers/gpu/drm/mxsfb/lcdif_kms.c index a00c4f6d63f4..0d04a0028671 100644 --- a/drivers/gpu/drm/mxsfb/lcdif_kms.c +++ b/drivers/gpu/drm/mxsfb/lcdif_kms.c @@ -375,14 +375,23 @@ static void lcdif_disable_controller(struct lcdif_drm_private *lcdif) int ret; reg = readl(lcdif->base + LCDC_V8_CTRLDESCL0_5); + /* Disable the layer for DMA. */ reg &= ~CTRLDESCL0_5_EN; + /* + * It is necessary to wait for the full frame to finish streaming + * through the DMA engine before we can safely disable it by removing + * the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the + * hardware confused and unable to resume streaming for the next frame. + */ + reg |= CTRLDESCL0_5_SHADOW_LOAD_EN; writel(reg, lcdif->base + LCDC_V8_CTRLDESCL0_5); + /* Wait for the frame to finish or timeout after 50 ms. */ ret = readl_poll_timeout(lcdif->base + LCDC_V8_CTRLDESCL0_5, - reg, !(reg & CTRLDESCL0_5_EN), - 0, 36000); /* Wait ~2 frame times max */ + reg, !(reg & CTRLDESCL0_5_SHADOW_LOAD_EN), + 200, 50000); if (ret) - drm_err(lcdif->drm, "Failed to disable controller!\n"); + drm_err(lcdif->drm, "Timed out waiting for final vblank!\n"); reg = readl(lcdif->base + LCDC_V8_DISP_PARA); reg &= ~DISP_PARA_DISP_ON; -- 2.53.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA 2026-04-02 18:33 ` [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA Paul Kocialkowski @ 2026-04-07 6:34 ` Liu Ying 2026-04-07 8:28 ` Lucas Stach 1 sibling, 0 replies; 7+ messages in thread From: Liu Ying @ 2026-04-07 6:34 UTC (permalink / raw) To: Paul Kocialkowski, dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Lucas Stach, Krzysztof Hałasa, Marco Felsch Hi Paul, On Thu, Apr 02, 2026 at 08:33:51PM +0200, Paul Kocialkowski wrote: > It is necessary to wait for the full frame to finish streaming > through the DMA engine before we can safely disable it by removing > the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the > hardware confused and unable to resume streaming for the next frame. > > This causes the FIFO underrun and empty status bits to be set and > a single solid color to be shown on the display, coming from one of > the pixels of the previous frame. The issue occurs sporadically when > a new mode is set, which triggers the crtc disable and enable paths. > > Setting the shadow load bit and waiting for it to be cleared by the > DMA engine allows waiting for completion. > > The NXP BSP driver addresses this issue with a hardcoded 25 ms sleep. > > Fixes: 9db35bb349a0 ("drm: lcdif: Add support for i.MX8MP LCDIF variant") > Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> > Co-developed-by: Lucas Stach <l.stach@pengutronix.de> There is a warning reported by checkpatch.pl: WARNING: Co-developed-by: must be immediately followed by Signed-off-by: #23: Co-developed-by: Lucas Stach <l.stach@pengutronix.de> With this fixed: Acked-by: Liu Ying <victor.liu@nxp.com> Thanks! -- Regards, Liu Ying ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA 2026-04-02 18:33 ` [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA Paul Kocialkowski 2026-04-07 6:34 ` Liu Ying @ 2026-04-07 8:28 ` Lucas Stach 2026-04-07 15:01 ` Paul Kocialkowski 1 sibling, 1 reply; 7+ messages in thread From: Lucas Stach @ 2026-04-07 8:28 UTC (permalink / raw) To: Paul Kocialkowski, dri-devel, imx, linux-arm-kernel, linux-kernel Cc: Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Krzysztof Hałasa, Marco Felsch, Liu Ying Am Donnerstag, dem 02.04.2026 um 20:33 +0200 schrieb Paul Kocialkowski: > It is necessary to wait for the full frame to finish streaming > through the DMA engine before we can safely disable it by removing > the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the > hardware confused and unable to resume streaming for the next frame. > > This causes the FIFO underrun and empty status bits to be set and > a single solid color to be shown on the display, coming from one of > the pixels of the previous frame. The issue occurs sporadically when > a new mode is set, which triggers the crtc disable and enable paths. > > Setting the shadow load bit and waiting for it to be cleared by the > DMA engine allows waiting for completion. > > The NXP BSP driver addresses this issue with a hardcoded 25 ms sleep. > > Fixes: 9db35bb349a0 ("drm: lcdif: Add support for i.MX8MP LCDIF variant") > Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> > Co-developed-by: Lucas Stach <l.stach@pengutronix.de> Looks good to me. Since the co-developed tag requires a sign-off from me, I'll add that instead of a review tag. And you might want to move your sign-off down, as you are the one submitting the patch. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> > --- > drivers/gpu/drm/mxsfb/lcdif_kms.c | 15 ++++++++++++--- > 1 file changed, 12 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/mxsfb/lcdif_kms.c b/drivers/gpu/drm/mxsfb/lcdif_kms.c > index a00c4f6d63f4..0d04a0028671 100644 > --- a/drivers/gpu/drm/mxsfb/lcdif_kms.c > +++ b/drivers/gpu/drm/mxsfb/lcdif_kms.c > @@ -375,14 +375,23 @@ static void lcdif_disable_controller(struct lcdif_drm_private *lcdif) > int ret; > > reg = readl(lcdif->base + LCDC_V8_CTRLDESCL0_5); > + /* Disable the layer for DMA. */ > reg &= ~CTRLDESCL0_5_EN; > + /* > + * It is necessary to wait for the full frame to finish streaming > + * through the DMA engine before we can safely disable it by removing > + * the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the > + * hardware confused and unable to resume streaming for the next frame. > + */ > + reg |= CTRLDESCL0_5_SHADOW_LOAD_EN; > writel(reg, lcdif->base + LCDC_V8_CTRLDESCL0_5); > > + /* Wait for the frame to finish or timeout after 50 ms. */ > ret = readl_poll_timeout(lcdif->base + LCDC_V8_CTRLDESCL0_5, > - reg, !(reg & CTRLDESCL0_5_EN), > - 0, 36000); /* Wait ~2 frame times max */ > + reg, !(reg & CTRLDESCL0_5_SHADOW_LOAD_EN), > + 200, 50000); > if (ret) > - drm_err(lcdif->drm, "Failed to disable controller!\n"); > + drm_err(lcdif->drm, "Timed out waiting for final vblank!\n"); > > reg = readl(lcdif->base + LCDC_V8_DISP_PARA); > reg &= ~DISP_PARA_DISP_ON; ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA 2026-04-07 8:28 ` Lucas Stach @ 2026-04-07 15:01 ` Paul Kocialkowski 0 siblings, 0 replies; 7+ messages in thread From: Paul Kocialkowski @ 2026-04-07 15:01 UTC (permalink / raw) To: Lucas Stach Cc: dri-devel, imx, linux-arm-kernel, linux-kernel, Marek Vasut, Stefan Agner, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Frank Li, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Krzysztof Hałasa, Marco Felsch, Liu Ying [-- Attachment #1: Type: text/plain, Size: 3404 bytes --] Hi Lucas, On Tue 07 Apr 26, 10:28, Lucas Stach wrote: > Am Donnerstag, dem 02.04.2026 um 20:33 +0200 schrieb Paul Kocialkowski: > > It is necessary to wait for the full frame to finish streaming > > through the DMA engine before we can safely disable it by removing > > the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the > > hardware confused and unable to resume streaming for the next frame. > > > > This causes the FIFO underrun and empty status bits to be set and > > a single solid color to be shown on the display, coming from one of > > the pixels of the previous frame. The issue occurs sporadically when > > a new mode is set, which triggers the crtc disable and enable paths. > > > > Setting the shadow load bit and waiting for it to be cleared by the > > DMA engine allows waiting for completion. > > > > The NXP BSP driver addresses this issue with a hardcoded 25 ms sleep. > > > > Fixes: 9db35bb349a0 ("drm: lcdif: Add support for i.MX8MP LCDIF variant") > > Signed-off-by: Paul Kocialkowski <paulk@sys-base.io> > > Co-developed-by: Lucas Stach <l.stach@pengutronix.de> > > Looks good to me. Since the co-developed tag requires a sign-off from > me, I'll add that instead of a review tag. And you might want to move > your sign-off down, as you are the one submitting the patch. Sounds good to me! This can probably be done when picking up the patch, but if maintainers need me to respin the series to get all the tags in order myself, just let me know! All the best, Paul > Signed-off-by: Lucas Stach <l.stach@pengutronix.de> > > > --- > > drivers/gpu/drm/mxsfb/lcdif_kms.c | 15 ++++++++++++--- > > 1 file changed, 12 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/gpu/drm/mxsfb/lcdif_kms.c b/drivers/gpu/drm/mxsfb/lcdif_kms.c > > index a00c4f6d63f4..0d04a0028671 100644 > > --- a/drivers/gpu/drm/mxsfb/lcdif_kms.c > > +++ b/drivers/gpu/drm/mxsfb/lcdif_kms.c > > @@ -375,14 +375,23 @@ static void lcdif_disable_controller(struct lcdif_drm_private *lcdif) > > int ret; > > > > reg = readl(lcdif->base + LCDC_V8_CTRLDESCL0_5); > > + /* Disable the layer for DMA. */ > > reg &= ~CTRLDESCL0_5_EN; > > + /* > > + * It is necessary to wait for the full frame to finish streaming > > + * through the DMA engine before we can safely disable it by removing > > + * the DISP_PARA_DISP_ON bit. Disabling it in-flight can leave the > > + * hardware confused and unable to resume streaming for the next frame. > > + */ > > + reg |= CTRLDESCL0_5_SHADOW_LOAD_EN; > > writel(reg, lcdif->base + LCDC_V8_CTRLDESCL0_5); > > > > + /* Wait for the frame to finish or timeout after 50 ms. */ > > ret = readl_poll_timeout(lcdif->base + LCDC_V8_CTRLDESCL0_5, > > - reg, !(reg & CTRLDESCL0_5_EN), > > - 0, 36000); /* Wait ~2 frame times max */ > > + reg, !(reg & CTRLDESCL0_5_SHADOW_LOAD_EN), > > + 200, 50000); > > if (ret) > > - drm_err(lcdif->drm, "Failed to disable controller!\n"); > > + drm_err(lcdif->drm, "Timed out waiting for final vblank!\n"); > > > > reg = readl(lcdif->base + LCDC_V8_DISP_PARA); > > reg &= ~DISP_PARA_DISP_ON; > -- Paul Kocialkowski, Independent contractor - sys-base - https://www.sys-base.io/ Free software developer - https://www.paulk.fr/ Expert in multimedia, graphics and embedded hardware support with Linux. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-07 15:01 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-02 18:33 [PATCH v2 0/2] drm: lcdif: FIFO underrun/solid color bug fix Paul Kocialkowski 2026-04-02 18:33 ` [PATCH v2 1/2] drm: lcdif: Set undocumented bit to clear FIFO at vsync Paul Kocialkowski 2026-04-07 6:31 ` Liu Ying 2026-04-02 18:33 ` [PATCH v2 2/2] drm: lcdif: Wait for vblank before disabling DMA Paul Kocialkowski 2026-04-07 6:34 ` Liu Ying 2026-04-07 8:28 ` Lucas Stach 2026-04-07 15:01 ` Paul Kocialkowski
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox