devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mike Looijmans <mike.looijmans@topic.nl>
To: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org
Cc: thierry.reding@gmail.com, sam@ravnborg.org, airlied@linux.ie,
	daniel@ffwll.ch, robh+dt@kernel.org,
	linux-kernel@vger.kernel.org,
	Mike Looijmans <mike.looijmans@topic.nl>
Subject: [PATCH 2/3] drm/panel: Add Innolux G104AGE-L02 to panel-simple
Date: Fri,  7 May 2021 10:00:16 +0200	[thread overview]
Message-ID: <20210507080017.2794-2-mike.looijmans@topic.nl> (raw)
In-Reply-To: <20210507080017.2794-1-mike.looijmans@topic.nl>

Adds support for the Innolux G104AGE-L02 which is a 800x600 TFT
display panel with LVDS interface.

Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
---
 drivers/gpu/drm/panel/panel-simple.c | 34 ++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index be312b5c04dd..8b7732249d13 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2352,6 +2352,37 @@ static const struct panel_desc innolux_g101ice_l01 = {
 	.connector_type = DRM_MODE_CONNECTOR_LVDS,
 };
 
+static const struct display_timing innolux_g104age_l02_timing = {
+	.pixelclock = { 30000000, 41666666, 50000000 },
+	.hactive = { 800, 800, 800 },
+	.hfront_porch = { 80, 128, 130 },
+	.hback_porch = { 79, 127, 129 },
+	.hsync_len = { 1, 1, 1 },
+	.vactive = { 600, 600, 600 },
+	.vfront_porch = { 4, 29, 212 },
+	.vback_porch = { 3, 28, 211 },
+	.vsync_len = { 1, 1, 1 },
+	.flags = DISPLAY_FLAGS_DE_HIGH |
+		 DISPLAY_FLAGS_HSYNC_HIGH |
+		 DISPLAY_FLAGS_VSYNC_HIGH,
+};
+
+static const struct panel_desc innolux_g104age_l02 = {
+	.timings = &innolux_g104age_l02_timing,
+	.num_timings = 1,
+	.bpc = 8,
+	.size = {
+		.width = 211,  /* 211.2 X 158.4(mm) */
+		.height = 158,
+	},
+	.delay = {
+		.enable = 200,
+		.disable = 200,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
+	.connector_type = DRM_MODE_CONNECTOR_LVDS,
+};
+
 static const struct display_timing innolux_g121i1_l01_timing = {
 	.pixelclock = { 67450000, 71000000, 74550000 },
 	.hactive = { 1280, 1280, 1280 },
@@ -4347,6 +4378,9 @@ static const struct of_device_id platform_of_match[] = {
 	}, {
 		.compatible = "innolux,g101ice-l01",
 		.data = &innolux_g101ice_l01
+	}, {
+		.compatible = "innolux,g104age-l02",
+		.data = &innolux_g104age_l02
 	}, {
 		.compatible = "innolux,g121i1-l01",
 		.data = &innolux_g121i1_l01
-- 
2.17.1


  reply	other threads:[~2021-05-07  8:05 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-07  8:00 [PATCH 1/3] dt-bindings: display: simple: Add YTS700TLBC-02-100C and G104AGE-L02 Mike Looijmans
2021-05-07  8:00 ` Mike Looijmans [this message]
2021-05-07  8:00 ` [PATCH 3/3] drm/panel: Add Yes Optoelectronics YTS700TLBC-02-100C to panel-simple Mike Looijmans
2021-05-07 22:19 ` [PATCH 1/3] dt-bindings: display: simple: Add YTS700TLBC-02-100C and G104AGE-L02 Rob Herring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210507080017.2794-2-mike.looijmans@topic.nl \
    --to=mike.looijmans@topic.nl \
    --cc=airlied@linux.ie \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=sam@ravnborg.org \
    --cc=thierry.reding@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).