2021-05-07 09:11:38

by Mike Looijmans

[permalink] [raw]
Subject: [PATCH 1/3] dt-bindings: display: simple: Add YTS700TLBC-02-100C and G104AGE-L02

Adds these panels to the dt bindings:
- Yes Optoelectronics YTS700TLBC-02-100C
- Innolux G104AGE-L02

Signed-off-by: Mike Looijmans <[email protected]>
---
.../devicetree/bindings/display/panel/panel-simple.yaml | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
index b3797ba2698b..d87d6ef496b9 100644
--- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
+++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
@@ -156,6 +156,8 @@ properties:
- innolux,g070y2-l01
# Innolux Corporation 10.1" G101ICE-L01 WXGA (1280x800) LVDS panel
- innolux,g101ice-l01
+ # Innolux Corporation 7" G104AGE-L02 (800x600) LVDS panel
+ - innolux,g104age-l02
# Innolux Corporation 12.1" WXGA (1280x800) TFT LCD panel
- innolux,g121i1-l01
# Innolux Corporation 12.1" G121X1-L03 XGA (1024x768) TFT LCD panel
@@ -293,6 +295,8 @@ properties:
- winstar,wf35ltiacd
# Yes Optoelectronics YTC700TLAG-05-201C 7" TFT LCD panel
- yes-optoelectronics,ytc700tlag-05-201c
+ # Yes Optoelectronics YTS700TLBC-02-100C (1024x600) TFT LCD panel
+ - yes-optoelectronics,yts700tlbc-02-100c

backlight: true
enable-gpios: true
--
2.17.1


2021-05-07 11:28:06

by Mike Looijmans

[permalink] [raw]
Subject: [PATCH 3/3] drm/panel: Add Yes Optoelectronics YTS700TLBC-02-100C to panel-simple

Adds support for the Yes YTS700TLBC-02-100C which is a 1024x600 TFT
display panel with LVDS interface.

Signed-off-by: Mike Looijmans <[email protected]>
---
drivers/gpu/drm/panel/panel-simple.c | 30 ++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 8b7732249d13..c9815faf8c77 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -4139,6 +4139,33 @@ static const struct panel_desc winstar_wf35ltiacd = {
.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
};

+static const struct display_timing yes_optoelectronics_yts700tlbc_02_100c_timing = {
+ .pixelclock = { 40800000, 50000000, 67200000 },
+ .hactive = { 1024, 1024, 1024 },
+ .hfront_porch = { 16, 127, 216 },
+ .hback_porch = { 160, 160, 160 },
+ .hsync_len = { 1, 1, 1 },
+ .vactive = { 600, 600, 600 },
+ .vfront_porch = { 1, 11, 127 },
+ .vback_porch = { 23, 23, 23 },
+ .vsync_len = { 1, 1, 1 },
+ .flags = DISPLAY_FLAGS_DE_HIGH |
+ DISPLAY_FLAGS_HSYNC_LOW |
+ DISPLAY_FLAGS_VSYNC_LOW,
+};
+
+static const struct panel_desc yes_optoelectronics_yts700tlbc_02_100c = {
+ .timings = &yes_optoelectronics_yts700tlbc_02_100c_timing,
+ .num_timings = 1,
+ .bpc = 8,
+ .size = {
+ .width = 154,
+ .height = 86,
+ },
+ .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
+ .connector_type = DRM_MODE_CONNECTOR_LVDS,
+};
+
static const struct drm_display_mode yes_optoelectronics_ytc700tlag_05_201c_mode = {
.clock = 51200,
.hdisplay = 1024,
@@ -4606,6 +4633,9 @@ static const struct of_device_id platform_of_match[] = {
}, {
.compatible = "yes-optoelectronics,ytc700tlag-05-201c",
.data = &yes_optoelectronics_ytc700tlag_05_201c,
+ }, {
+ .compatible = "yes-optoelectronics,yts700tlbc-02-100c",
+ .data = &yes_optoelectronics_yts700tlbc_02_100c,
}, {
/* Must be the last entry */
.compatible = "panel-dpi",
--
2.17.1

2021-05-07 22:21:10

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH 1/3] dt-bindings: display: simple: Add YTS700TLBC-02-100C and G104AGE-L02

On Fri, 07 May 2021 10:00:15 +0200, Mike Looijmans wrote:
> Adds these panels to the dt bindings:
> - Yes Optoelectronics YTS700TLBC-02-100C
> - Innolux G104AGE-L02
>
> Signed-off-by: Mike Looijmans <[email protected]>
> ---
> .../devicetree/bindings/display/panel/panel-simple.yaml | 4 ++++
> 1 file changed, 4 insertions(+)
>

Acked-by: Rob Herring <[email protected]>