* [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel
@ 2026-02-27 9:31 Liu Ying
2026-02-27 9:31 ` [PATCH 1/2] dt-bindings: display: " Liu Ying
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Liu Ying @ 2026-02-27 9:31 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg
Cc: dri-devel, devicetree, linux-kernel, Liu Ying
Hi,
This patch series adds Tianma Micro-electronics TM050RDH03 5.0" WVGA
TFT LCD panel support. The panel can connect with i.MX93 9x9 QSB board.
The panel's data sheet[1] can be found with a random Google search.
NXP website has a link[2] which contains a picture of the panel together
with an adapter board to connect with the QSB board.
[1] www.jetone.com.tw/uploadfiles/327/datasheet/tianma/tianma-panel-tm050rdh03-41.pdf
[2] www.nxp.com/design/design-center/development-boards-and-designs/parallel-lcd-display:TM050RDH03-41
Signed-off-by: Liu Ying <victor.liu@nxp.com>
---
Liu Ying (2):
dt-bindings: display: simple: Add Tianma TM050RDH03 panel
drm/panel: simple: Add Tianma TM050RDH03 panel
Documentation/devicetree/bindings/display/panel/panel-simple.yaml | 2 ++
drivers/gpu/drm/panel/panel-simple.c | 3 +++
2 files changed, 5 insertions(+)
---
base-commit: 877552aa875839314afad7154b5a561889e87ea9
change-id: 20260227-tianma-tm050rdh03-dedb7743a443
Best regards,
--
Liu Ying <victor.liu@nxp.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] dt-bindings: display: simple: Add Tianma TM050RDH03 panel
2026-02-27 9:31 [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel Liu Ying
@ 2026-02-27 9:31 ` Liu Ying
2026-02-27 11:11 ` Krzysztof Kozlowski
2026-02-27 9:31 ` [PATCH 2/2] drm/panel: " Liu Ying
2026-03-26 9:02 ` [PATCH 0/2] " Neil Armstrong
2 siblings, 1 reply; 6+ messages in thread
From: Liu Ying @ 2026-02-27 9:31 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg
Cc: dri-devel, devicetree, linux-kernel, Liu Ying
Add the Tianma Micro-electronics TM050RDH03 5.0" WVGA TFT LCD panel.
Signed-off-by: Liu Ying <victor.liu@nxp.com>
---
Documentation/devicetree/bindings/display/panel/panel-simple.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
index 106ae91ff474..a8f1f5989a1c 100644
--- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
+++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
@@ -306,6 +306,8 @@ properties:
- team-source-display,tst043015cmhx
# Tianma Micro-electronics P0700WXF1MBAA 7.0" WXGA (1280x800) LVDS TFT LCD panel
- tianma,p0700wxf1mbaa
+ # Tianma Micro-electronics TM050RDH03 5.0" WVGA TFT LCD panel
+ - tianma,tm050rdh03
# Tianma Micro-electronics TM070JDHG30 7.0" WXGA TFT LCD panel
- tianma,tm070jdhg30
# Tianma Micro-electronics TM070JDHG34-00 7.0" WXGA (1280x800) LVDS TFT LCD panel
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/2] drm/panel: simple: Add Tianma TM050RDH03 panel
2026-02-27 9:31 [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel Liu Ying
2026-02-27 9:31 ` [PATCH 1/2] dt-bindings: display: " Liu Ying
@ 2026-02-27 9:31 ` Liu Ying
2026-03-26 8:33 ` Neil Armstrong
2026-03-26 9:02 ` [PATCH 0/2] " Neil Armstrong
2 siblings, 1 reply; 6+ messages in thread
From: Liu Ying @ 2026-02-27 9:31 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg
Cc: dri-devel, devicetree, linux-kernel, Liu Ying
Add the Tianma Micro-electronics TM050RDH03 5.0" WVGA TFT LCD panel.
Reuse panel ontat,kd50g21-40nt-a1's panel description as they are
identical.
Signed-off-by: Liu Ying <victor.liu@nxp.com>
---
drivers/gpu/drm/panel/panel-simple.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index e5fc9b072404..af84a90015fe 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -5519,6 +5519,9 @@ static const struct of_device_id platform_of_match[] = {
}, {
.compatible = "tianma,p0700wxf1mbaa",
.data = &tianma_p0700wxf1mbaa,
+ }, {
+ .compatible = "tianma,tm050rdh03",
+ .data = &ontat_kd50g21_40nt_a1,
}, {
.compatible = "tianma,tm070jdhg30",
.data = &tianma_tm070jdhg30,
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add Tianma TM050RDH03 panel
2026-02-27 9:31 ` [PATCH 1/2] dt-bindings: display: " Liu Ying
@ 2026-02-27 11:11 ` Krzysztof Kozlowski
0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2026-02-27 11:11 UTC (permalink / raw)
To: Liu Ying
Cc: Neil Armstrong, Jessica Zhang, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg,
dri-devel, devicetree, linux-kernel
On Fri, Feb 27, 2026 at 05:31:35PM +0800, Liu Ying wrote:
> Add the Tianma Micro-electronics TM050RDH03 5.0" WVGA TFT LCD panel.
>
> Signed-off-by: Liu Ying <victor.liu@nxp.com>
> ---
> Documentation/devicetree/bindings/display/panel/panel-simple.yaml | 2 ++
> 1 file changed, 2 insertions(+)
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] drm/panel: simple: Add Tianma TM050RDH03 panel
2026-02-27 9:31 ` [PATCH 2/2] drm/panel: " Liu Ying
@ 2026-03-26 8:33 ` Neil Armstrong
0 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2026-03-26 8:33 UTC (permalink / raw)
To: Liu Ying, Jessica Zhang, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg
Cc: dri-devel, devicetree, linux-kernel
On 2/27/26 10:31, Liu Ying wrote:
> Add the Tianma Micro-electronics TM050RDH03 5.0" WVGA TFT LCD panel.
>
> Reuse panel ontat,kd50g21-40nt-a1's panel description as they are
> identical.
>
> Signed-off-by: Liu Ying <victor.liu@nxp.com>
> ---
> drivers/gpu/drm/panel/panel-simple.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index e5fc9b072404..af84a90015fe 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -5519,6 +5519,9 @@ static const struct of_device_id platform_of_match[] = {
> }, {
> .compatible = "tianma,p0700wxf1mbaa",
> .data = &tianma_p0700wxf1mbaa,
> + }, {
> + .compatible = "tianma,tm050rdh03",
> + .data = &ontat_kd50g21_40nt_a1,
> }, {
> .compatible = "tianma,tm070jdhg30",
> .data = &tianma_tm070jdhg30,
>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Thanks,
Neil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel
2026-02-27 9:31 [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel Liu Ying
2026-02-27 9:31 ` [PATCH 1/2] dt-bindings: display: " Liu Ying
2026-02-27 9:31 ` [PATCH 2/2] drm/panel: " Liu Ying
@ 2026-03-26 9:02 ` Neil Armstrong
2 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2026-03-26 9:02 UTC (permalink / raw)
To: Jessica Zhang, David Airlie, Simona Vetter, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Sam Ravnborg,
Liu Ying
Cc: dri-devel, devicetree, linux-kernel
Hi,
On Fri, 27 Feb 2026 17:31:34 +0800, Liu Ying wrote:
> This patch series adds Tianma Micro-electronics TM050RDH03 5.0" WVGA
> TFT LCD panel support. The panel can connect with i.MX93 9x9 QSB board.
> The panel's data sheet[1] can be found with a random Google search.
> NXP website has a link[2] which contains a picture of the panel together
> with an adapter board to connect with the QSB board.
>
> [1] www.jetone.com.tw/uploadfiles/327/datasheet/tianma/tianma-panel-tm050rdh03-41.pdf
> [2] www.nxp.com/design/design-center/development-boards-and-designs/parallel-lcd-display:TM050RDH03-41
>
> [...]
Thanks, Applied to https://gitlab.freedesktop.org/drm/misc/kernel.git (drm-misc-next)
[1/2] dt-bindings: display: simple: Add Tianma TM050RDH03 panel
https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/dfefca41a4d38e8ddba78176978d679d7af01ab7
[2/2] drm/panel: simple: Add Tianma TM050RDH03 panel
https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/310b05505cc346e091ea6ab0d2cab0663855500a
--
Neil
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-26 9:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-27 9:31 [PATCH 0/2] drm/panel: simple: Add Tianma TM050RDH03 panel Liu Ying
2026-02-27 9:31 ` [PATCH 1/2] dt-bindings: display: " Liu Ying
2026-02-27 11:11 ` Krzysztof Kozlowski
2026-02-27 9:31 ` [PATCH 2/2] drm/panel: " Liu Ying
2026-03-26 8:33 ` Neil Armstrong
2026-03-26 9:02 ` [PATCH 0/2] " Neil Armstrong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®