* [PATCH v4 0/3] drm/bridge: ti-sn65dsi83: Various fixes
@ 2026-08-10 7:19 Esben Haabendal
2026-08-10 7:19 ` [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() Esben Haabendal
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Esben Haabendal @ 2026-08-10 7:19 UTC (permalink / raw)
To: Luca Ceresoli, Herve Codina, Andrzej Hajda, Neil Armstrong,
Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut
Cc: Esben Haabendal, dri-devel, linux-kernel, stable
This small series adds support for using SN65DSI84 in single-link mode with
output to LVDS channel B, and provides a couple of small fixes for
error-handling in sn65dsi83_reset_pipe() and sn65dsi83_reset_work().
Signed-off-by: Esben Haabendal <esben@geanix.com>
---
Changes in v4:
- Swapped patch 1 and 2 for proper ordering.
- Ensure enable_irq() is called in sn65dsi83_reset_work() error handling
path.
- Added Fixes and Cc: stable tags to patch 1 and 2.
- Link to v3: https://patch.msgid.link/20260803-ti-sn65dsi83-fixes-v3-0-9b403a405ccd@geanix.com
Changes in v3:
- Rename panel_port variable to output_port.
- Propagate error code from drm_bridge_helper_reset_crtc() in
sn65dsi83_reset_pipe().
- Drop with fix for premature PLL locking. Should be fixed in DSI host
driver (or upstream bridge driver) instead.
See https://lore.kernel.org/all/48f6f55f-43fd-4355-88b9-d2e2d0e26d07@kontron.de/
- Link to v2: https://patch.msgid.link/20260715-ti-sn65dsi83-fixes-v2-0-ebc4c3fe29b6@geanix.com
Changes in v2:
- Fix error handling in sn65dsi83_atomic_enable() to ensure
drm_brige_exit() is always called on exit.
- Change logging level from warn to dbg for two messages in
sn65dsi83_parse_dt().
- Removed trailing dot in comment lines.
- Added patch with fix so that DRM bridge critical section is exited on
error in sn65dsi83_reset_work().
- Added Fixes and Cc: stable tags to the premature PLL patch.
- Re-ordered patch so fixes comes first.
- Link to v1: https://patch.msgid.link/20260711-ti-sn65dsi83-fixes-v1-0-d85eb5342b98@geanix.com
To: Luca Ceresoli <luca.ceresoli@bootlin.com>
To: Herve Codina <herve.codina@bootlin.com>
To: Andrzej Hajda <andrzej.hajda@intel.com>
To: Neil Armstrong <neil.armstrong@linaro.org>
To: Robert Foss <rfoss@kernel.org>
To: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
To: Jonas Karlman <jonas@kwiboo.se>
To: Jernej Skrabec <jernej.skrabec@gmail.com>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
To: Maxime Ripard <mripard@kernel.org>
To: Thomas Zimmermann <tzimmermann@suse.de>
To: David Airlie <airlied@gmail.com>
To: Simona Vetter <simona@ffwll.ch>
To: Linus Walleij <linusw@kernel.org>
To: Frieder Schrempf <frieder.schrempf@kontron.de>
To: Marek Vasut <marex@denx.de>
Cc: dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org
---
Esben Haabendal (3):
drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work()
drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe()
drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84
drivers/gpu/drm/bridge/ti-sn65dsi83.c | 41 ++++++++++++++++++++++-------------
1 file changed, 26 insertions(+), 15 deletions(-)
---
base-commit: 075b74841bd0065a3bda3440873c747938e69b68
change-id: 20260710-ti-sn65dsi83-fixes-1d08e0ac67b3
Best regards,
--
Esben Haabendal <esben@geanix.com>
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() 2026-08-10 7:19 [PATCH v4 0/3] drm/bridge: ti-sn65dsi83: Various fixes Esben Haabendal @ 2026-08-10 7:19 ` Esben Haabendal 2026-08-19 9:32 ` Herve Codina 2026-08-10 7:19 ` [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() Esben Haabendal 2026-08-10 7:19 ` [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 Esben Haabendal 2 siblings, 1 reply; 8+ messages in thread From: Esben Haabendal @ 2026-08-10 7:19 UTC (permalink / raw) To: Luca Ceresoli, Herve Codina, Andrzej Hajda, Neil Armstrong, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut Cc: Esben Haabendal, dri-devel, linux-kernel, stable The error handling of sn65dsi83_reset_pipe() failure in sn65dsi83_reset_work() has been a bit strange all the time, missing both enable_irq() and drm_bridge_exit() in case of failure. But since sn65dsi83_reset_pipe() have never been failing (always returning 0), it has not caused any problems. As we are going to change sn65dsi83_reset_pipe() to return error values in case of failure, we need to fix this. Fixes: ad5c6ecef27e ("drm: bridge: ti-sn65dsi83: Add error recovery mechanism") Cc: stable@vger.kernel.org Signed-off-by: Esben Haabendal <esben@geanix.com> --- drivers/gpu/drm/bridge/ti-sn65dsi83.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c index 42b451432bbb..0ccfff401b2a 100644 --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c @@ -417,10 +417,9 @@ static void sn65dsi83_reset_work(struct work_struct *ws) /* Reset the pipe */ ret = sn65dsi83_reset_pipe(ctx); - if (ret) { + if (ret) dev_err(ctx->dev, "reset pipe failed %pe\n", ERR_PTR(ret)); - return; - } + if (ctx->irq) enable_irq(ctx->irq); -- 2.55.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() 2026-08-10 7:19 ` [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() Esben Haabendal @ 2026-08-19 9:32 ` Herve Codina 0 siblings, 0 replies; 8+ messages in thread From: Herve Codina @ 2026-08-19 9:32 UTC (permalink / raw) To: Esben Haabendal Cc: Luca Ceresoli, Andrzej Hajda, Neil Armstrong, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut, dri-devel, linux-kernel, stable Hi Esben, On Mon, 10 Aug 2026 09:19:40 +0200 Esben Haabendal <esben@geanix.com> wrote: > The error handling of sn65dsi83_reset_pipe() failure in > sn65dsi83_reset_work() has been a bit strange all the time, missing both > enable_irq() and drm_bridge_exit() in case of failure. But since > sn65dsi83_reset_pipe() have never been failing (always returning 0), it has > not caused any problems. > > As we are going to change sn65dsi83_reset_pipe() to return error values in > case of failure, we need to fix this. > > Fixes: ad5c6ecef27e ("drm: bridge: ti-sn65dsi83: Add error recovery mechanism") > Cc: stable@vger.kernel.org > Signed-off-by: Esben Haabendal <esben@geanix.com> > --- > drivers/gpu/drm/bridge/ti-sn65dsi83.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c > index 42b451432bbb..0ccfff401b2a 100644 > --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c > +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c > @@ -417,10 +417,9 @@ static void sn65dsi83_reset_work(struct work_struct *ws) > > /* Reset the pipe */ > ret = sn65dsi83_reset_pipe(ctx); > - if (ret) { > + if (ret) > dev_err(ctx->dev, "reset pipe failed %pe\n", ERR_PTR(ret)); > - return; > - } > + > if (ctx->irq) > enable_irq(ctx->irq); > > In this v4, enable_irq() is called even if we cannot reset the pipe. I know that sn65dsi83_reset_pipe() always returns 0 (and this will be change) but we have to take care here. If the pipe cannot be reset, the sn65dsi83 component could be in a state where it can force the interrupt line. This was the reason the irq is disabled https://elixir.bootlin.com/linux/v7.2/source/drivers/gpu/drm/bridge/ti-sn65dsi83.c#L455 Best regards, Hervé ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() 2026-08-10 7:19 [PATCH v4 0/3] drm/bridge: ti-sn65dsi83: Various fixes Esben Haabendal 2026-08-10 7:19 ` [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() Esben Haabendal @ 2026-08-10 7:19 ` Esben Haabendal 2026-08-19 9:36 ` Herve Codina 2026-08-19 11:51 ` Markus Elfring 2026-08-10 7:19 ` [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 Esben Haabendal 2 siblings, 2 replies; 8+ messages in thread From: Esben Haabendal @ 2026-08-10 7:19 UTC (permalink / raw) To: Luca Ceresoli, Herve Codina, Andrzej Hajda, Neil Armstrong, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut Cc: Esben Haabendal, dri-devel, linux-kernel, stable Propagate the error code from drm_bridge_helper_reset_crtc(), so that callers has a chance to handle the failure. Fixes: ad5c6ecef27e ("drm: bridge: ti-sn65dsi83: Add error recovery mechanism") Cc: stable@vger.kernel.org Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Esben Haabendal <esben@geanix.com> --- drivers/gpu/drm/bridge/ti-sn65dsi83.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c index 0ccfff401b2a..475224c5a5d8 100644 --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c @@ -403,7 +403,7 @@ static int sn65dsi83_reset_pipe(struct sn65dsi83 *sn65dsi83) drm_modeset_drop_locks(&ctx); drm_modeset_acquire_fini(&ctx); - return 0; + return err; } static void sn65dsi83_reset_work(struct work_struct *ws) -- 2.55.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() 2026-08-10 7:19 ` [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() Esben Haabendal @ 2026-08-19 9:36 ` Herve Codina 2026-08-19 11:51 ` Markus Elfring 1 sibling, 0 replies; 8+ messages in thread From: Herve Codina @ 2026-08-19 9:36 UTC (permalink / raw) To: Esben Haabendal Cc: Luca Ceresoli, Andrzej Hajda, Neil Armstrong, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut, dri-devel, linux-kernel, stable Hi Esben, On Mon, 10 Aug 2026 09:19:41 +0200 Esben Haabendal <esben@geanix.com> wrote: > Propagate the error code from drm_bridge_helper_reset_crtc(), so that > callers has a chance to handle the failure. > > Fixes: ad5c6ecef27e ("drm: bridge: ti-sn65dsi83: Add error recovery mechanism") > Cc: stable@vger.kernel.org > Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> > Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> > Signed-off-by: Esben Haabendal <esben@geanix.com> > --- > drivers/gpu/drm/bridge/ti-sn65dsi83.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c > index 0ccfff401b2a..475224c5a5d8 100644 > --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c > +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c > @@ -403,7 +403,7 @@ static int sn65dsi83_reset_pipe(struct sn65dsi83 *sn65dsi83) > drm_modeset_drop_locks(&ctx); > drm_modeset_acquire_fini(&ctx); > > - return 0; > + return err; > } > > static void sn65dsi83_reset_work(struct work_struct *ws) > I have sent my 'Reviewed-by' too late on the v3. Sorry about that. Here it is for this v4. Reviewed-by: Herve Codina <herve.codina@bootlin.com> Best regards, Hervé ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() 2026-08-10 7:19 ` [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() Esben Haabendal 2026-08-19 9:36 ` Herve Codina @ 2026-08-19 11:51 ` Markus Elfring 1 sibling, 0 replies; 8+ messages in thread From: Markus Elfring @ 2026-08-19 11:51 UTC (permalink / raw) To: Esben Haabendal, dri-devel, Andrzej Hajda, David Airlie, Frieder Schrempf, Herve Codina, Jernej Skrabec, Jonas Karlman, Laurent Pinchart, Linus Walleij, Luca Ceresoli, Maarten Lankhorst, Marek Vasut, Maxime Ripard, Neil Armstrong, Robert Foss, Simona Vetter, Thomas Zimmermann Cc: stable, LKML > Propagate the error code from drm_bridge_helper_reset_crtc(), so that > callers has a chance to handle the failure. have got? Regards, Markus ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 2026-08-10 7:19 [PATCH v4 0/3] drm/bridge: ti-sn65dsi83: Various fixes Esben Haabendal 2026-08-10 7:19 ` [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() Esben Haabendal 2026-08-10 7:19 ` [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() Esben Haabendal @ 2026-08-10 7:19 ` Esben Haabendal 2026-08-19 11:57 ` Markus Elfring 2 siblings, 1 reply; 8+ messages in thread From: Esben Haabendal @ 2026-08-10 7:19 UTC (permalink / raw) To: Luca Ceresoli, Herve Codina, Andrzej Hajda, Neil Armstrong, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Linus Walleij, Frieder Schrempf, Marek Vasut Cc: Esben Haabendal, dri-devel, linux-kernel This adds support for using SN65DSI84 in single-link mode with output to LVDS Channel B. Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Esben Haabendal <esben@geanix.com> --- drivers/gpu/drm/bridge/ti-sn65dsi83.c | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c index 475224c5a5d8..33cf33d127c6 100644 --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c @@ -11,6 +11,8 @@ * = 1x Single-link DSI ~ 2x Single-link or 1x Dual-link LVDS * - Supported * - Dual-link LVDS mode tested + * - Single-link to LVDS Channel A tested + * - Single-link to LVDS Channel B tested * - 2x Single-link LVDS mode unsupported * (should be easy to add by someone who has the HW) * - SN65DSI85 @@ -162,7 +164,7 @@ struct sn65dsi83 { struct gpio_desc *enable_gpio; struct regulator *vcc; bool lvds_dual_link; - bool lvds_dual_link_even_odd_swap; + bool lvds_channel_swap; int lvds_vod_swing_conf[2]; int lvds_term_conf[2]; int irq; @@ -641,7 +643,7 @@ static void sn65dsi83_atomic_pre_enable(struct drm_bridge *bridge, REG_LVDS_VCOM_CHA_LVDS_VOD_SWING(ctx->lvds_vod_swing_conf[CHANNEL_A]) | REG_LVDS_VCOM_CHB_LVDS_VOD_SWING(ctx->lvds_vod_swing_conf[CHANNEL_B])); regmap_write(ctx->regmap, REG_LVDS_LANE, - (ctx->lvds_dual_link_even_odd_swap ? + (ctx->lvds_channel_swap ? REG_LVDS_LANE_EVEN_ODD_SWAP : 0) | (ctx->lvds_term_conf[CHANNEL_A] ? REG_LVDS_LANE_CHA_LVDS_TERM : 0) | @@ -892,6 +894,7 @@ static int sn65dsi83_parse_dt(struct sn65dsi83 *ctx, enum sn65dsi83_model model) { struct drm_bridge *panel_bridge; struct device *dev = ctx->dev; + u32 output_port = 2; int ret; ret = sn65dsi83_parse_lvds_endpoint(ctx, CHANNEL_A); @@ -903,29 +906,38 @@ static int sn65dsi83_parse_dt(struct sn65dsi83 *ctx, enum sn65dsi83_model model) return ret; ctx->lvds_dual_link = false; - ctx->lvds_dual_link_even_odd_swap = false; + ctx->lvds_channel_swap = false; if (model != MODEL_SN65DSI83) { - struct device_node *port2, *port3; + struct device_node *port0, *port1, *port2, *port3; int dual_link; + port0 = of_graph_get_port_by_id(dev->of_node, 0); + port1 = of_graph_get_port_by_id(dev->of_node, 1); port2 = of_graph_get_port_by_id(dev->of_node, 2); port3 = of_graph_get_port_by_id(dev->of_node, 3); dual_link = drm_of_lvds_get_dual_link_pixel_order(port2, port3); - of_node_put(port2); - of_node_put(port3); if (dual_link == DRM_LVDS_DUAL_LINK_ODD_EVEN_PIXELS) { - ctx->lvds_dual_link = true; /* Odd pixels to LVDS Channel A, even pixels to B */ - ctx->lvds_dual_link_even_odd_swap = false; - } else if (dual_link == DRM_LVDS_DUAL_LINK_EVEN_ODD_PIXELS) { ctx->lvds_dual_link = true; + } else if (dual_link == DRM_LVDS_DUAL_LINK_EVEN_ODD_PIXELS) { /* Even pixels to LVDS Channel A, odd pixels to B */ - ctx->lvds_dual_link_even_odd_swap = true; + ctx->lvds_dual_link = true; + ctx->lvds_channel_swap = true; + } else if (port0 && !port1 && port2 && !port3) { + /* DSI Channel A to LVDS Channel A */ + } else if (port0 && !port1 && !port2 && port3) { + /* DSI Channel A to LVDS Channel B */ + ctx->lvds_channel_swap = true; + output_port = 3; } + of_node_put(port0); + of_node_put(port1); + of_node_put(port2); + of_node_put(port3); } - panel_bridge = devm_drm_of_get_bridge(dev, dev->of_node, 2, 0); + panel_bridge = devm_drm_of_get_bridge(dev, dev->of_node, output_port, 0); if (IS_ERR(panel_bridge)) return dev_err_probe(dev, PTR_ERR(panel_bridge), "Failed to get panel bridge\n"); -- 2.55.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 2026-08-10 7:19 ` [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 Esben Haabendal @ 2026-08-19 11:57 ` Markus Elfring 0 siblings, 0 replies; 8+ messages in thread From: Markus Elfring @ 2026-08-19 11:57 UTC (permalink / raw) To: Esben Haabendal, dri-devel, Andrzej Hajda, David Airlie, Frieder Schrempf, Herve Codina, Jernej Skrabec, Jonas Karlman, Laurent Pinchart, Linus Walleij, Luca Ceresoli, Maarten Lankhorst, Marek Vasut, Maxime Ripard, Neil Armstrong, Robert Foss, Simona Vetter, Thomas Zimmermann Cc: stable, LKML > This adds support for … Add support for? See also: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v7.2#n94 Regards, Markus ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-08-19 11:57 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-10 7:19 [PATCH v4 0/3] drm/bridge: ti-sn65dsi83: Various fixes Esben Haabendal 2026-08-10 7:19 ` [PATCH v4 1/3] drm/bridge: ti-sn65dsi83: Fix error handling in sn65dsi83_reset_work() Esben Haabendal 2026-08-19 9:32 ` Herve Codina 2026-08-10 7:19 ` [PATCH v4 2/3] drm/bridge: ti-sn65dsi83: Propagate error in sn65dsi83_reset_pipe() Esben Haabendal 2026-08-19 9:36 ` Herve Codina 2026-08-19 11:51 ` Markus Elfring 2026-08-10 7:19 ` [PATCH v4 3/3] drm/bridge: ti-sn65dsi83: Support LVDS Channel B on SN65DSI84 Esben Haabendal 2026-08-19 11:57 ` Markus Elfring
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox