* [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels
@ 2026-03-31 15:44 Dmitry Baryshkov
2026-03-31 15:44 ` [PATCH v2 1/4] dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup Dmitry Baryshkov
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2026-03-31 15:44 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg,
Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss,
Laurent Pinchart, Jonas Karlman, Jernej Skrabec
Cc: dri-devel, devicetree, linux-kernel, Krzysztof Kozlowski
Waveshare have a serie of DSI panel kits with the DPI or LVDS panel
being attached to the DSI2DPI or DSI2LVDS bridge. Commit 80b0eb11f8e0
("dt-bindings: display: panel: Add waveshare DPI panel support")
described two of them in the bindings and commit 46be11b678e0
("drm/panel: simple: Add Waveshare 13.3" panel support") added
definitions for one of those panels. Add support for the rest of them.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
Changes in v2:
- Updated waveshare,dsi2dpi schema to implicitly mention LVDS
(Krzysztof)
- Updated commit message to explain why the ICN6202 / ICN6211 bridges
are not a part of the DT bindings.
- Link to v1: https://patch.msgid.link/20260330-ws-lcd-v1-0-309834a435c0@oss.qualcomm.com
---
Dmitry Baryshkov (4):
dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup
drm/bridge: waveshare-dsi: support DSI LCD kits with LVDS panels
dt-bindings: display: panel: add Waveshare LCD panels
drm/panel: simple: add Waveshare LCD panels
.../bindings/display/bridge/waveshare,dsi2dpi.yaml | 9 +-
.../bindings/display/panel/panel-simple.yaml | 28 ++
drivers/gpu/drm/bridge/waveshare-dsi.c | 5 +-
drivers/gpu/drm/panel/panel-simple.c | 381 +++++++++++++++++++++
4 files changed, 418 insertions(+), 5 deletions(-)
---
base-commit: 3b058d1aeeeff27a7289529c4944291613b364e9
change-id: 20260330-ws-lcd-b65c03c5ac17
Best regards,
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v2 1/4] dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov @ 2026-03-31 15:44 ` Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 2/4] drm/bridge: waveshare-dsi: support DSI LCD kits with LVDS panels Dmitry Baryshkov ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Dmitry Baryshkov @ 2026-03-31 15:44 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec Cc: dri-devel, devicetree, linux-kernel Several the Waveshare DSI LCD panel kits use DSI2LVDS ICN6202 bridge together with the LVDS panels. Define new compatible for the on-kit bridge setup (it is not itmized and it uses Waveshare prefix since the rest of the integration details are not known). Note: the ICN6202 / ICN6211 bridges are completely handled by the board itself, they should not be programmed by the host (which otherwise might override correct params), etc. As such, it doesn't make sense to use those in the compat strings. I consider those to be an internal detail of the setup. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> --- .../devicetree/bindings/display/bridge/waveshare,dsi2dpi.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/display/bridge/waveshare,dsi2dpi.yaml b/Documentation/devicetree/bindings/display/bridge/waveshare,dsi2dpi.yaml index 3820dd7e11af..4d34a92192bf 100644 --- a/Documentation/devicetree/bindings/display/bridge/waveshare,dsi2dpi.yaml +++ b/Documentation/devicetree/bindings/display/bridge/waveshare,dsi2dpi.yaml @@ -10,11 +10,14 @@ maintainers: - Joseph Guo <qijian.guo@nxp.com> description: - Waveshare bridge board is part of Waveshare panel which converts DSI to DPI. + Waveshare bridge board is part of Waveshare panel which converts DSI to DPI + or LVDS. properties: compatible: - const: waveshare,dsi2dpi + enum: + - waveshare,dsi2dpi + - waveshare,dsi2lvds reg: maxItems: 1 @@ -53,7 +56,7 @@ properties: port@1: $ref: /schemas/graph.yaml#/properties/port description: - Video port for MIPI DPI output panel. + Video port for MIPI DPI or LVDS output to the panel. required: - port@0 -- 2.47.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 2/4] drm/bridge: waveshare-dsi: support DSI LCD kits with LVDS panels 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 1/4] dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup Dmitry Baryshkov @ 2026-03-31 15:44 ` Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 3/4] dt-bindings: display: panel: add Waveshare LCD panels Dmitry Baryshkov ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Dmitry Baryshkov @ 2026-03-31 15:44 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec Cc: dri-devel, devicetree, linux-kernel Several Waveshare DSI LCD kits use LVDS panels and the ICN6202 DSI2LVDS bridge. Support that setup by handling waveshare,dsi2lvds compatible. The only difference with the existing waveshare,dsi2dpi is the bridge's output type (LVDS vs DPI). Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> --- drivers/gpu/drm/bridge/waveshare-dsi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/bridge/waveshare-dsi.c b/drivers/gpu/drm/bridge/waveshare-dsi.c index 32d40414adb9..ded57f298d64 100644 --- a/drivers/gpu/drm/bridge/waveshare-dsi.c +++ b/drivers/gpu/drm/bridge/waveshare-dsi.c @@ -177,7 +177,7 @@ static int ws_bridge_probe(struct i2c_client *i2c) regmap_write(ws->reg_map, 0xc2, 0x01); regmap_write(ws->reg_map, 0xac, 0x01); - ws->bridge.type = DRM_MODE_CONNECTOR_DPI; + ws->bridge.type = (uintptr_t)i2c_get_match_data(i2c); ws->bridge.of_node = dev->of_node; devm_drm_bridge_add(dev, &ws->bridge); @@ -185,7 +185,8 @@ static int ws_bridge_probe(struct i2c_client *i2c) } static const struct of_device_id ws_bridge_of_ids[] = { - {.compatible = "waveshare,dsi2dpi",}, + {.compatible = "waveshare,dsi2dpi", .data = (void *)DRM_MODE_CONNECTOR_DPI, }, + {.compatible = "waveshare,dsi2lvds", .data = (void *)DRM_MODE_CONNECTOR_LVDS, }, { } }; -- 2.47.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 3/4] dt-bindings: display: panel: add Waveshare LCD panels 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 1/4] dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 2/4] drm/bridge: waveshare-dsi: support DSI LCD kits with LVDS panels Dmitry Baryshkov @ 2026-03-31 15:44 ` Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 4/4] drm/panel: simple: " Dmitry Baryshkov 2026-04-09 21:21 ` (subset) [PATCH v2 0/4] " Dmitry Baryshkov 4 siblings, 0 replies; 7+ messages in thread From: Dmitry Baryshkov @ 2026-03-31 15:44 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec Cc: dri-devel, devicetree, linux-kernel, Krzysztof Kozlowski Waveshare has a family of LVDS / DPI panels bundled with the DSI2DPI or DSI2LVDS bridge. The bridge and the rest of the logic are covered by the waveshare,dsi2dpi compatible. The bindings already include several entries for the panels from this series (waveshare,13.3inch-panel, waveshare,7.0inch-c-panel). Define compatible strings for the rest of the panels from that series. Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> --- .../bindings/display/panel/panel-simple.yaml | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml index 9b8fa03f7cbc..c9ac59e04118 100644 --- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml +++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml @@ -343,10 +343,38 @@ properties: - vivax,tpc9150-panel # VXT 800x480 color TFT LCD panel - vxt,vl050-8048nt-c01 + # Waveshare 10.1" WXGA (1280x800) LCD panel + - waveshare,10.1inch-c-panel + # Waveshare 11.9" (320x1480) LCD panel + - waveshare,11.9inch-panel # Waveshare 13.3" FHD (1920x1080) LCD panel - waveshare,13.3inch-panel + # Waveshare 2.8" VGA (480x640) LCD panel + - waveshare,2.8inch-panel + # Waveshare 3.4" (800x800) LCD panel + - waveshare,3.4inch-c-panel + # Waveshare 4.0" WVGA (480x800) LCD panel + - waveshare,4.0inch-panel + # Waveshare 4.0" (720x720) LCD panel + - waveshare,4.0inch-c-panel + # Waveshare 5.0" WSVGA (1024x600) LCD panel + - waveshare,5.0inch-c-panel + # Waveshare 5.0" HD 720p (720x1280) LCD panel + - waveshare,5.0inch-d-panel + # Waveshare 6.25" (720x1560) LCD panel + - waveshare,6.25inch-panel # Waveshare 7.0" WSVGA (1024x600) LCD panel - waveshare,7.0inch-c-panel + # Waveshare 7.0" WXGA (1280x800) LCD panel + - waveshare,7.0inch-e-panel + # Waveshare 7.0" HD 720p (720x1280) LCD panel + - waveshare,7.0inch-h-panel + # Waveshare 7.9" (400x1280) LCD panel + - waveshare,7.9inch-panel + # Waveshare 8.0" WXGA (1280x800) LCD panel + - waveshare,8.0inch-c-panel + # Waveshare 8.8" (480x1920) LCD panel + - waveshare,8.8inch-panel # Winstar Display Corporation 3.5" QVGA (320x240) TFT LCD panel - winstar,wf35ltiacd # Yes Optoelectronics YTC700TLAG-05-201C 7" TFT LCD panel -- 2.47.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 4/4] drm/panel: simple: add Waveshare LCD panels 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov ` (2 preceding siblings ...) 2026-03-31 15:44 ` [PATCH v2 3/4] dt-bindings: display: panel: add Waveshare LCD panels Dmitry Baryshkov @ 2026-03-31 15:44 ` Dmitry Baryshkov 2026-04-09 12:59 ` Neil Armstrong 2026-04-09 21:21 ` (subset) [PATCH v2 0/4] " Dmitry Baryshkov 4 siblings, 1 reply; 7+ messages in thread From: Dmitry Baryshkov @ 2026-03-31 15:44 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec Cc: dri-devel, devicetree, linux-kernel Waveshare have a serie of DSI panel kits with the DPI or LVDS panel being attached to the DSI2DPI or DSI2LVDS bridge. The commit 46be11b678e0 ("drm/panel: simple: Add Waveshare 13.3" panel support") added definitions for one of those panels, describe the rest of them. Note, since the panels are hidden behind the bridges which are not being programmed by the kernel, I could not confirm the pixel format for the panels. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> --- drivers/gpu/drm/panel/panel-simple.c | 381 +++++++++++++++++++++++++++++++++++ 1 file changed, 381 insertions(+) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 236bd56208cc..b2708a1fe464 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -5061,6 +5061,342 @@ static const struct panel_desc vl050_8048nt_c01 = { .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, }; +static const struct drm_display_mode waveshare_28_lcd_mode = { + .clock = 50000, + .hdisplay = 480, + .hsync_start = 480 + 150, + .hsync_end = 480 + 150 + 50, + .htotal = 480 + 150 + 50 + 150, + .vdisplay = 640, + .vsync_start = 640 + 150, + .vsync_end = 640 + 150 + 50, + .vtotal = 640 + 150 + 50 + 150, + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, +}; + +static const struct panel_desc waveshare_28_lcd_panel = { + .modes = &waveshare_28_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 44, + .height = 58, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .connector_type = DRM_MODE_CONNECTOR_DPI, + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, +}; + +static const struct drm_display_mode waveshare_34_lcd_c_mode = { + .clock = 50000, + .hdisplay = 800, + .hsync_start = 800 + 32, + .hsync_end = 800 + 32 + 6, + .htotal = 800 + 32 + 6 + 120, + .vdisplay = 800, + .vsync_start = 800 + 8, + .vsync_end = 800 + 8 + 4, + .vtotal = 800 + 8 + 4 + 16, +}; + +static const struct panel_desc waveshare_34_lcd_c_panel = { + .modes = &waveshare_34_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 88, + .height = 88, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_40_lcd_mode = { + .clock = 50000, + .hdisplay = 480, + .hsync_start = 480 + 150, + .hsync_end = 480 + 150 + 100, + .htotal = 480 + 150 + 100 + 150, + .vdisplay = 800, + .vsync_start = 800 + 20, + .vsync_end = 800 + 20 + 100, + .vtotal = 800 + 20 + 100 + 20, + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, +}; + +static const struct panel_desc waveshare_40_lcd_panel = { + .modes = &waveshare_40_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 52, + .height = 87, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .connector_type = DRM_MODE_CONNECTOR_DPI, + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, +}; + +static const struct drm_display_mode waveshare_40_lcd_c_mode = { + .clock = 50000, + .hdisplay = 720, + .hsync_start = 720 + 32, + .hsync_end = 720 + 32 + 200, + .htotal = 720 + 32 + 200 + 120, + .vdisplay = 720, + .vsync_start = 720 + 8, + .vsync_end = 720 + 8 + 4, + .vtotal = 720 + 8 + 4 + 16, +}; + +static const struct panel_desc waveshare_40_lcd_c_panel = { + .modes = &waveshare_40_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 102, + .height = 102, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_50_lcd_c_mode = { + .clock = 50000, + .hdisplay = 1024, + .hsync_start = 1024 + 100, + .hsync_end = 1024 + 100 + 100, + .htotal = 1024 + 100 + 100 + 100, + .vdisplay = 600, + .vsync_start = 600 + 10, + .vsync_end = 600 + 10 + 10, + .vtotal = 600 + 10 + 10 + 10, + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, +}; + +static const struct panel_desc waveshare_50_lcd_c_panel = { + .modes = &waveshare_50_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 109, + .height = 66, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .connector_type = DRM_MODE_CONNECTOR_DPI, + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, +}; + +static const struct drm_display_mode waveshare_50_lcd_d_mode = { + .clock = 83333, + .hdisplay = 720, + .hsync_start = 720 + 100, + .hsync_end = 720 + 100 + 80, + .htotal = 720 + 100 + 80 + 100, + .vdisplay = 1280, + .vsync_start = 1280 + 20, + .vsync_end = 1280 + 20 + 20, + .vtotal = 1280 + 20 + 20 + 20, +}; + +static const struct panel_desc waveshare_50_lcd_d_panel = { + .modes = &waveshare_50_lcd_d_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 62, + .height = 110, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_625_lcd_mode = { + .clock = 83333, + .hdisplay = 720, + .hsync_start = 720 + 50, + .hsync_end = 720 + 50 + 50, + .htotal = 720 + 50 + 50 + 50, + .vdisplay = 1560, + .vsync_start = 1560 + 20, + .vsync_end = 1560 + 20 + 20, + .vtotal = 1560 + 20 + 20 + 20, +}; + +static const struct panel_desc waveshare_625_lcd_panel = { + .modes = &waveshare_625_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 66, + .height = 144, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct panel_desc waveshare_70_lcd_c_panel = { + .modes = &waveshare_50_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 155, + .height = 87, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .connector_type = DRM_MODE_CONNECTOR_DPI, + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, +}; + +static const struct drm_display_mode waveshare_80_lcd_c_mode; +static const struct panel_desc waveshare_70_lcd_e_panel = { + .modes = &waveshare_80_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 152, + .height = 95, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_70_lcd_h_mode = { + .clock = 83333, + .hdisplay = 1280, + .hsync_start = 1280 + 64, + .hsync_end = 1280 + 64 + 64, + .htotal = 1280 + 64 + 64 + 64, + .vdisplay = 720, + .vsync_start = 720 + 64, + .vsync_end = 720 + 64 + 64, + .vtotal = 720 + 64 + 64 + 64, +}; + +static const struct panel_desc waveshare_70_lcd_h_panel = { + .modes = &waveshare_70_lcd_h_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 155, + .height = 88, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_79_lcd_mode = { + .clock = 50000, + .hdisplay = 400, + .hsync_start = 400 + 40, + .hsync_end = 400 + 40 + 30, + .htotal = 400 + 40 + 30 + 40, + .vdisplay = 1280, + .vsync_start = 1280 + 20, + .vsync_end = 1280 + 20 + 10, + .vtotal = 1280 + 20 + 10 + 20, +}; + +static const struct panel_desc waveshare_79_lcd_panel = { + .modes = &waveshare_79_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 60, + .height = 191, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_80_lcd_c_mode = { + .clock = 83333, + .hdisplay = 1280, + .hsync_start = 1280 + 156, + .hsync_end = 1280 + 156 + 20, + .htotal = 1280 + 156 + 20 + 40, + .vdisplay = 800, + .vsync_start = 800 + 40, + .vsync_end = 800 + 40 + 48, + .vtotal = 800 + 40 + 48 + 40, +}; + +static const struct panel_desc waveshare_80_lcd_c_panel = { + .modes = &waveshare_80_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 173, + .height = 108, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_88_lcd_mode = { + .clock = 83333, + .hdisplay = 480, + .hsync_start = 480 + 50, + .hsync_end = 480 + 50 + 50, + .htotal = 480 + 50 + 50 + 50, + .vdisplay = 1920, + .vsync_start = 1920 + 20, + .vsync_end = 1920 + 20 + 20, + .vtotal = 1920 + 20 + 20 + 20, +}; + +static const struct panel_desc waveshare_88_lcd_panel = { + .modes = &waveshare_88_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 56, + .height = 220, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct panel_desc waveshare_101_lcd_c_panel = { + .modes = &waveshare_80_lcd_c_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 217, + .height = 136, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + +static const struct drm_display_mode waveshare_119_lcd_mode = { + .clock = 50000, + .hdisplay = 320, + .hsync_start = 320 + 60, + .hsync_end = 320 + 60 + 60, + .htotal = 320 + 60 + 60 + 60, + .vdisplay = 1480, + .vsync_start = 1480 + 60, + .vsync_end = 1480 + 60 + 60, + .vtotal = 1480 + 60 + 60 + 60, +}; + +static const struct panel_desc waveshare_119_lcd_panel = { + .modes = &waveshare_119_lcd_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 58, + .height = 268, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + static const struct drm_display_mode waveshare_133inch_mode = { .clock = 148500, .hdisplay = 1920, @@ -5697,6 +6033,51 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "vxt,vl050-8048nt-c01", .data = &vl050_8048nt_c01, + }, { + .compatible = "waveshare,2.8inch-panel", + .data = &waveshare_28_lcd_panel + }, { + .compatible = "waveshare,3.4inch-c-panel", + .data = &waveshare_34_lcd_c_panel + }, { + .compatible = "waveshare,4.0inch-panel", + .data = &waveshare_40_lcd_panel + }, { + .compatible = "waveshare,4.0inch-c-panel", + .data = &waveshare_40_lcd_c_panel + }, { + .compatible = "waveshare,5.0inch-c-panel", + .data = &waveshare_50_lcd_c_panel + }, { + .compatible = "waveshare,5.0inch-d-panel", + .data = &waveshare_50_lcd_d_panel + }, { + .compatible = "waveshare,6.25inch-panel", + .data = &waveshare_625_lcd_panel + }, { + .compatible = "waveshare,7.0inch-c-panel", + .data = &waveshare_70_lcd_c_panel + }, { + .compatible = "waveshare,7.0inch-e-panel", + .data = &waveshare_70_lcd_e_panel + }, { + .compatible = "waveshare,7.0inch-h-panel", + .data = &waveshare_70_lcd_h_panel + }, { + .compatible = "waveshare,7.9inch-panel", + .data = &waveshare_79_lcd_panel + }, { + .compatible = "waveshare,8.0inch-c-panel", + .data = &waveshare_80_lcd_c_panel + }, { + .compatible = "waveshare,8.8inch-panel", + .data = &waveshare_88_lcd_panel + }, { + .compatible = "waveshare,10.1inch-c-panel", + .data = &waveshare_101_lcd_c_panel + }, { + .compatible = "waveshare,11.9inch-panel", + .data = &waveshare_119_lcd_panel }, { .compatible = "waveshare,13.3inch-panel", .data = &waveshare_133inch, -- 2.47.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 4/4] drm/panel: simple: add Waveshare LCD panels 2026-03-31 15:44 ` [PATCH v2 4/4] drm/panel: simple: " Dmitry Baryshkov @ 2026-04-09 12:59 ` Neil Armstrong 0 siblings, 0 replies; 7+ messages in thread From: Neil Armstrong @ 2026-04-09 12:59 UTC (permalink / raw) To: Dmitry Baryshkov, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec Cc: dri-devel, devicetree, linux-kernel On 3/31/26 17:44, Dmitry Baryshkov wrote: > Waveshare have a serie of DSI panel kits with the DPI or LVDS panel > being attached to the DSI2DPI or DSI2LVDS bridge. The commit > 46be11b678e0 ("drm/panel: simple: Add Waveshare 13.3" panel support") > added definitions for one of those panels, describe the rest of them. > > Note, since the panels are hidden behind the bridges which are not being > programmed by the kernel, I could not confirm the pixel format for the > panels. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > --- > drivers/gpu/drm/panel/panel-simple.c | 381 +++++++++++++++++++++++++++++++++++ > 1 file changed, 381 insertions(+) > > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c > index 236bd56208cc..b2708a1fe464 100644 > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -5061,6 +5061,342 @@ static const struct panel_desc vl050_8048nt_c01 = { > .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, > }; > > +static const struct drm_display_mode waveshare_28_lcd_mode = { > + .clock = 50000, > + .hdisplay = 480, > + .hsync_start = 480 + 150, > + .hsync_end = 480 + 150 + 50, > + .htotal = 480 + 150 + 50 + 150, > + .vdisplay = 640, > + .vsync_start = 640 + 150, > + .vsync_end = 640 + 150 + 50, > + .vtotal = 640 + 150 + 50 + 150, > + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, > +}; > + > +static const struct panel_desc waveshare_28_lcd_panel = { > + .modes = &waveshare_28_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 44, > + .height = 58, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .connector_type = DRM_MODE_CONNECTOR_DPI, > + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | > + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, > +}; > + > +static const struct drm_display_mode waveshare_34_lcd_c_mode = { > + .clock = 50000, > + .hdisplay = 800, > + .hsync_start = 800 + 32, > + .hsync_end = 800 + 32 + 6, > + .htotal = 800 + 32 + 6 + 120, > + .vdisplay = 800, > + .vsync_start = 800 + 8, > + .vsync_end = 800 + 8 + 4, > + .vtotal = 800 + 8 + 4 + 16, > +}; > + > +static const struct panel_desc waveshare_34_lcd_c_panel = { > + .modes = &waveshare_34_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 88, > + .height = 88, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_40_lcd_mode = { > + .clock = 50000, > + .hdisplay = 480, > + .hsync_start = 480 + 150, > + .hsync_end = 480 + 150 + 100, > + .htotal = 480 + 150 + 100 + 150, > + .vdisplay = 800, > + .vsync_start = 800 + 20, > + .vsync_end = 800 + 20 + 100, > + .vtotal = 800 + 20 + 100 + 20, > + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, > +}; > + > +static const struct panel_desc waveshare_40_lcd_panel = { > + .modes = &waveshare_40_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 52, > + .height = 87, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .connector_type = DRM_MODE_CONNECTOR_DPI, > + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | > + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, > +}; > + > +static const struct drm_display_mode waveshare_40_lcd_c_mode = { > + .clock = 50000, > + .hdisplay = 720, > + .hsync_start = 720 + 32, > + .hsync_end = 720 + 32 + 200, > + .htotal = 720 + 32 + 200 + 120, > + .vdisplay = 720, > + .vsync_start = 720 + 8, > + .vsync_end = 720 + 8 + 4, > + .vtotal = 720 + 8 + 4 + 16, > +}; > + > +static const struct panel_desc waveshare_40_lcd_c_panel = { > + .modes = &waveshare_40_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 102, > + .height = 102, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_50_lcd_c_mode = { > + .clock = 50000, > + .hdisplay = 1024, > + .hsync_start = 1024 + 100, > + .hsync_end = 1024 + 100 + 100, > + .htotal = 1024 + 100 + 100 + 100, > + .vdisplay = 600, > + .vsync_start = 600 + 10, > + .vsync_end = 600 + 10 + 10, > + .vtotal = 600 + 10 + 10 + 10, > + .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC, > +}; > + > +static const struct panel_desc waveshare_50_lcd_c_panel = { > + .modes = &waveshare_50_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 109, > + .height = 66, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .connector_type = DRM_MODE_CONNECTOR_DPI, > + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | > + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, > +}; > + > +static const struct drm_display_mode waveshare_50_lcd_d_mode = { > + .clock = 83333, > + .hdisplay = 720, > + .hsync_start = 720 + 100, > + .hsync_end = 720 + 100 + 80, > + .htotal = 720 + 100 + 80 + 100, > + .vdisplay = 1280, > + .vsync_start = 1280 + 20, > + .vsync_end = 1280 + 20 + 20, > + .vtotal = 1280 + 20 + 20 + 20, > +}; > + > +static const struct panel_desc waveshare_50_lcd_d_panel = { > + .modes = &waveshare_50_lcd_d_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 62, > + .height = 110, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_625_lcd_mode = { > + .clock = 83333, > + .hdisplay = 720, > + .hsync_start = 720 + 50, > + .hsync_end = 720 + 50 + 50, > + .htotal = 720 + 50 + 50 + 50, > + .vdisplay = 1560, > + .vsync_start = 1560 + 20, > + .vsync_end = 1560 + 20 + 20, > + .vtotal = 1560 + 20 + 20 + 20, > +}; > + > +static const struct panel_desc waveshare_625_lcd_panel = { > + .modes = &waveshare_625_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 66, > + .height = 144, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct panel_desc waveshare_70_lcd_c_panel = { > + .modes = &waveshare_50_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 155, > + .height = 87, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .connector_type = DRM_MODE_CONNECTOR_DPI, > + .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE | > + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE, > +}; > + > +static const struct drm_display_mode waveshare_80_lcd_c_mode; > +static const struct panel_desc waveshare_70_lcd_e_panel = { > + .modes = &waveshare_80_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 152, > + .height = 95, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_70_lcd_h_mode = { > + .clock = 83333, > + .hdisplay = 1280, > + .hsync_start = 1280 + 64, > + .hsync_end = 1280 + 64 + 64, > + .htotal = 1280 + 64 + 64 + 64, > + .vdisplay = 720, > + .vsync_start = 720 + 64, > + .vsync_end = 720 + 64 + 64, > + .vtotal = 720 + 64 + 64 + 64, > +}; > + > +static const struct panel_desc waveshare_70_lcd_h_panel = { > + .modes = &waveshare_70_lcd_h_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 155, > + .height = 88, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_79_lcd_mode = { > + .clock = 50000, > + .hdisplay = 400, > + .hsync_start = 400 + 40, > + .hsync_end = 400 + 40 + 30, > + .htotal = 400 + 40 + 30 + 40, > + .vdisplay = 1280, > + .vsync_start = 1280 + 20, > + .vsync_end = 1280 + 20 + 10, > + .vtotal = 1280 + 20 + 10 + 20, > +}; > + > +static const struct panel_desc waveshare_79_lcd_panel = { > + .modes = &waveshare_79_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 60, > + .height = 191, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_80_lcd_c_mode = { > + .clock = 83333, > + .hdisplay = 1280, > + .hsync_start = 1280 + 156, > + .hsync_end = 1280 + 156 + 20, > + .htotal = 1280 + 156 + 20 + 40, > + .vdisplay = 800, > + .vsync_start = 800 + 40, > + .vsync_end = 800 + 40 + 48, > + .vtotal = 800 + 40 + 48 + 40, > +}; > + > +static const struct panel_desc waveshare_80_lcd_c_panel = { > + .modes = &waveshare_80_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 173, > + .height = 108, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_88_lcd_mode = { > + .clock = 83333, > + .hdisplay = 480, > + .hsync_start = 480 + 50, > + .hsync_end = 480 + 50 + 50, > + .htotal = 480 + 50 + 50 + 50, > + .vdisplay = 1920, > + .vsync_start = 1920 + 20, > + .vsync_end = 1920 + 20 + 20, > + .vtotal = 1920 + 20 + 20 + 20, > +}; > + > +static const struct panel_desc waveshare_88_lcd_panel = { > + .modes = &waveshare_88_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 56, > + .height = 220, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct panel_desc waveshare_101_lcd_c_panel = { > + .modes = &waveshare_80_lcd_c_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 217, > + .height = 136, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > +static const struct drm_display_mode waveshare_119_lcd_mode = { > + .clock = 50000, > + .hdisplay = 320, > + .hsync_start = 320 + 60, > + .hsync_end = 320 + 60 + 60, > + .htotal = 320 + 60 + 60 + 60, > + .vdisplay = 1480, > + .vsync_start = 1480 + 60, > + .vsync_end = 1480 + 60 + 60, > + .vtotal = 1480 + 60 + 60 + 60, > +}; > + > +static const struct panel_desc waveshare_119_lcd_panel = { > + .modes = &waveshare_119_lcd_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 58, > + .height = 268, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > static const struct drm_display_mode waveshare_133inch_mode = { > .clock = 148500, > .hdisplay = 1920, > @@ -5697,6 +6033,51 @@ static const struct of_device_id platform_of_match[] = { > }, { > .compatible = "vxt,vl050-8048nt-c01", > .data = &vl050_8048nt_c01, > + }, { > + .compatible = "waveshare,2.8inch-panel", > + .data = &waveshare_28_lcd_panel > + }, { > + .compatible = "waveshare,3.4inch-c-panel", > + .data = &waveshare_34_lcd_c_panel > + }, { > + .compatible = "waveshare,4.0inch-panel", > + .data = &waveshare_40_lcd_panel > + }, { > + .compatible = "waveshare,4.0inch-c-panel", > + .data = &waveshare_40_lcd_c_panel > + }, { > + .compatible = "waveshare,5.0inch-c-panel", > + .data = &waveshare_50_lcd_c_panel > + }, { > + .compatible = "waveshare,5.0inch-d-panel", > + .data = &waveshare_50_lcd_d_panel > + }, { > + .compatible = "waveshare,6.25inch-panel", > + .data = &waveshare_625_lcd_panel > + }, { > + .compatible = "waveshare,7.0inch-c-panel", > + .data = &waveshare_70_lcd_c_panel > + }, { > + .compatible = "waveshare,7.0inch-e-panel", > + .data = &waveshare_70_lcd_e_panel > + }, { > + .compatible = "waveshare,7.0inch-h-panel", > + .data = &waveshare_70_lcd_h_panel > + }, { > + .compatible = "waveshare,7.9inch-panel", > + .data = &waveshare_79_lcd_panel > + }, { > + .compatible = "waveshare,8.0inch-c-panel", > + .data = &waveshare_80_lcd_c_panel > + }, { > + .compatible = "waveshare,8.8inch-panel", > + .data = &waveshare_88_lcd_panel > + }, { > + .compatible = "waveshare,10.1inch-c-panel", > + .data = &waveshare_101_lcd_c_panel > + }, { > + .compatible = "waveshare,11.9inch-panel", > + .data = &waveshare_119_lcd_panel > }, { > .compatible = "waveshare,13.3inch-panel", > .data = &waveshare_133inch, > Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Thanks, Neil ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: (subset) [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov ` (3 preceding siblings ...) 2026-03-31 15:44 ` [PATCH v2 4/4] drm/panel: simple: " Dmitry Baryshkov @ 2026-04-09 21:21 ` Dmitry Baryshkov 4 siblings, 0 replies; 7+ messages in thread From: Dmitry Baryshkov @ 2026-04-09 21:21 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg, Joseph Guo, Marek Vasut, Andrzej Hajda, Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec, Dmitry Baryshkov Cc: dri-devel, devicetree, linux-kernel, Krzysztof Kozlowski On Tue, 31 Mar 2026 18:44:09 +0300, Dmitry Baryshkov wrote: > Waveshare have a serie of DSI panel kits with the DPI or LVDS panel > being attached to the DSI2DPI or DSI2LVDS bridge. Commit 80b0eb11f8e0 > ("dt-bindings: display: panel: Add waveshare DPI panel support") > described two of them in the bindings and commit 46be11b678e0 > ("drm/panel: simple: Add Waveshare 13.3" panel support") added > definitions for one of those panels. Add support for the rest of them. > > [...] Applied to drm-misc-next, thanks! [3/4] dt-bindings: display: panel: add Waveshare LCD panels commit: 89bb9b36d3c49961743c97f3c25befd9a2f86989 [4/4] drm/panel: simple: add Waveshare LCD panels commit: bef9eeb62c47902f73a386a8176795fba5e5e2e7 Best regards, -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-09 21:21 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-31 15:44 [PATCH v2 0/4] drm/panel: simple: add Waveshare LCD panels Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 1/4] dt-bindings: display: waveshare,dsp2dpi: describe DSI2LVDS setup Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 2/4] drm/bridge: waveshare-dsi: support DSI LCD kits with LVDS panels Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 3/4] dt-bindings: display: panel: add Waveshare LCD panels Dmitry Baryshkov 2026-03-31 15:44 ` [PATCH v2 4/4] drm/panel: simple: " Dmitry Baryshkov 2026-04-09 12:59 ` Neil Armstrong 2026-04-09 21:21 ` (subset) [PATCH v2 0/4] " Dmitry Baryshkov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox