<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div>Am Dienstag, dem 30.03.2021 um 17:47 -0500 schrieb Rob Herring:</div>
<blockquote type="cite" style="margin:0 0 0 .8ex; border-left:2px #729fcf solid;padding-left:1ex">
<div>On Tue, Mar 30, 2021 at 09:09:06AM +0200, Yunus Bas wrote:<br>
</div>
<blockquote type="cite" style="margin:0 0 0 .8ex; border-left:2px #729fcf solid;padding-left:1ex">
<div>From: Stefan Riedmueller <<a href="mailto:s.riedmueller@phytec.de">s.riedmueller@phytec.de</a>><br>
</div>
<div><br>
</div>
<div>This patch adds support for the EDT ETMV570G2DHU 5.7" (640x480) lcd panel<br>
</div>
<div>to DRM simple panel driver.<br>
</div>
<div><br>
</div>
<div>Signed-off-by: Stefan Riedmueller <<a href="mailto:s.riedmueller@phytec.de">s.riedmueller@phytec.de</a>><br>
</div>
<div>Signed-off-by: Yunus Bas <<a href="mailto:y.bas@phytec.de">y.bas@phytec.de</a>><br>
</div>
<div>---<br>
</div>
<div> .../bindings/display/panel/panel-simple.yaml | 3 ++<br>
</div>
</blockquote>
<div><br>
</div>
<div>Bindings should be their own patch.<br>
</div>
</blockquote>
<div><br>
</div>
<div>Ok, I'll split up the patches.</div>
<blockquote type="cite" style="margin:0 0 0 .8ex; border-left:2px #729fcf solid;padding-left:1ex">
<div><br>
</div>
<blockquote type="cite" style="margin:0 0 0 .8ex; border-left:2px #729fcf solid;padding-left:1ex">
<div> drivers/gpu/drm/panel/panel-simple.c | 29 +++++++++++++++++++<br>
</div>
<div> 2 files changed, 32 insertions(+)<br>
</div>
<div><br>
</div>
<div>diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml<br>
</div>
<div>index 62b0d54d87b7..57be1fa39728 100644<br>
</div>
<div>--- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml<br>
</div>
<div>+++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml<br>
</div>
<div>@@ -114,6 +114,9 @@ properties:<br>
</div>
<div> - edt,etm043080dh6gp<br>
</div>
<div> # Emerging Display Technology Corp. 480x272 TFT Display<br>
</div>
<div> - edt,etm0430g0dh6<br>
</div>
<div>+ # Emerging Display Technology Corp. 5.7" VGA TFT LCD panel with<br>
</div>
<div>+ # capacitive touch<br>
</div>
<div>+ - edt,etmv570g2dhu<br>
</div>
<div> # Emerging Display Technology Corp. WVGA TFT Display with capacitive touch<br>
</div>
<div> # Same as ETM0700G0DH6 but with inverted pixel clock.<br>
</div>
<div> - edt,etm070080bdh6<br>
</div>
<div>diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c<br>
</div>
<div>index 4e2dad314c79..283c17a75376 100644<br>
</div>
<div>--- a/drivers/gpu/drm/panel/panel-simple.c<br>
</div>
<div>+++ b/drivers/gpu/drm/panel/panel-simple.c<br>
</div>
<div>@@ -1926,6 +1926,32 @@ static const struct panel_desc edt_et057090dhu = {<br>
</div>
<div> .connector_type = DRM_MODE_CONNECTOR_DPI,<br>
</div>
<div> };<br>
</div>
<div> <br>
</div>
<div>+static const struct drm_display_mode edt_etmv570g2dhu_mode = {<br>
</div>
<div>+ .clock = 25175,<br>
</div>
<div>+ .hdisplay = 640,<br>
</div>
<div>+ .hsync_start = 640,<br>
</div>
<div>+ .hsync_end = 640 + 16,<br>
</div>
<div>+ .htotal = 640 + 16 + 30 + 114,<br>
</div>
<div>+ .vdisplay = 480,<br>
</div>
<div>+ .vsync_start = 480 + 10,<br>
</div>
<div>+ .vsync_end = 480 + 10 + 3,<br>
</div>
<div>+ .vtotal = 480 + 10 + 3 + 35,<br>
</div>
<div>+ .flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC,<br>
</div>
<div>+};<br>
</div>
<div>+<br>
</div>
<div>+static const struct panel_desc edt_etmv570g2dhu = {<br>
</div>
<div>+ .modes = &edt_etmv570g2dhu_mode,<br>
</div>
<div>+ .num_modes = 1,<br>
</div>
<div>+ .bpc = 6,<br>
</div>
<div>+ .size = {<br>
</div>
<div>+ .width = 115,<br>
</div>
<div>+ .height = 86,<br>
</div>
<div>+ },<br>
</div>
<div>+ .bus_format = MEDIA_BUS_FMT_RGB888_1X24,<br>
</div>
<div>+ .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,<br>
</div>
<div>+ .connector_type = DRM_MODE_CONNECTOR_DPI,<br>
</div>
<div>+};<br>
</div>
<div>+<br>
</div>
<div> static const struct drm_display_mode edt_etm0700g0dh6_mode = {<br>
</div>
<div> .clock = 33260,<br>
</div>
<div> .hdisplay = 800,<br>
</div>
<div>@@ -4226,6 +4252,9 @@ static const struct of_device_id platform_of_match[] = {<br>
</div>
<div> }, {<br>
</div>
<div> .compatible = "edt,et057090dhu",<br>
</div>
<div> .data = &edt_et057090dhu,<br>
</div>
<div>+ }, {<br>
</div>
<div>+ .compatible = "edt,etmv570g2dhu",<br>
</div>
<div>+ .data = &edt_etmv570g2dhu,<br>
</div>
<div> }, {<br>
</div>
<div> .compatible = "edt,et070080dh6",<br>
</div>
<div> .data = &edt_etm0700g0dh6,<br>
</div>
<div>-- <br>
</div>
<div>2.30.0<br>
</div>
<div><br>
</div>
</blockquote>
</blockquote>
<div><br>
</div>
<div><span>
<pre>-- <br></pre>
<div>
<div><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Mit
freundlichen Grüßen</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<div style="orphans: 2; widows: 2;"><font color="#333333" face="-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Fira Sans, Droid Sans, Helvetica Neue, sans-serif" size="3"><span style="caret-color: rgb(51, 51, 51); background-color: rgb(252, 252, 252);"><b>Yunus
Bas</b></span></font></div>
<div style="orphans: 2; widows: 2;"><font color="#333333" face="-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Fira Sans, Droid Sans, Helvetica Neue, sans-serif" size="3"><span style="caret-color: rgb(51, 51, 51); background-color: rgb(252, 252, 252);"><b><br>
</b></span></font></div>
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">-<b>Software
Engineer</b></span><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">-</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">PHYTEC
Messtechnik GmbH</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Robert-Koch-Str.
39</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">55129
Mainz</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Germany</span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Tel.:
+49 (0)6131 9221- </span><strong style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">466</strong><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Web: </span><a href="http://www.phytec.de/" class="external-link" rel="nofollow" style="color: rgb(0, 82, 204); text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252);">www.phytec.de</a><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Sie
finden uns auch auf: </span><a href="https://www.facebook.com/PHYTEC.Mainz" class="external-link" rel="nofollow" style="color: rgb(0, 82, 204); text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252);">Facebook</a><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">, </span><a href="http://www.linkedin.com/company/phytec-messtechnik-gmbh" class="external-link" rel="nofollow" style="color: rgb(0, 82, 204); text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252);">LinkedIn,</a><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;"> </span><a href="https://www.xing.com/companies/phytecmesstechnikgmbh" class="external-link" rel="nofollow" style="color: rgb(0, 82, 204); text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252);">Xing</a><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">, </span><a href="http://www.youtube.com/user/PhytecMainz" class="external-link" rel="nofollow" style="color: rgb(0, 82, 204); text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252);">YouTube</a><span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;"></span><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<em style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">PHYTEC
Messtechnik GmbH | Robert-Koch-Str. 39 | 55129 Mainz, Germany</em><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<em style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">Geschäftsführer:
Dipl.-Ing. Michael Mitezki, Dipl.-Ing. Bodo Huber | Handelsregister Mainz HRB 4656 | Finanzamt Mainz | St.Nr. 266500608, DE 149059855</em><br style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">
<em style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(252, 252, 252); text-decoration-thickness: initial;">This
E-Mail may contain confidential or privileged information. If you are not the intended recipient (or have received this E-Mail in error) please notify the sender immediately and destroy this E-Mail. Any unauthorized copying, disclosure or distribution of the
material in this E-Mail is strictly forbidden.</em></div>
</div>
</span></div>
</body>
</html>