[PATCH 9/9] drm/panel: simple: add Jenson JT60250-02

From: Giulio Benetti
Date: Thu Feb 18 2021 - 17:58:19 EST


From: Giulio Benetti <giulio.benetti@xxxxxxxxxxxxxxxx>

This patch adds support for Jenson JT60250-02 1024x600 10.1" panel to DRM
simple panel driver.

Signed-off-by: Giulio Benetti <giulio.benetti@xxxxxxxxxxxxxxxx>
Signed-off-by: Giulio Benetti <giulio.benetti@xxxxxxxxxxxxxxxxxxxxxx>
---
drivers/gpu/drm/panel/panel-simple.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 995a581f8b2b..60805d7a12d7 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2468,6 +2468,30 @@ static const struct panel_desc jenson_jt60249_01 = {
.bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
};

+static const struct drm_display_mode jenson_jt60250_02_mode = {
+ .clock = 51000,
+ .hdisplay = 1024,
+ .hsync_start = 1024 + 160,
+ .hsync_end = 1204 + 160 + 10,
+ .htotal = 1024 + 160 + 10 + 160,
+ .vdisplay = 600,
+ .vsync_start = 600 + 12,
+ .vsync_end = 600 + 12 + 70,
+ .vtotal = 600 + 12 + 70 + 23,
+ .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc jenson_jt60250_02 = {
+ .modes = &jenson_jt60250_02_mode,
+ .num_modes = 1,
+ .bpc = 8,
+ .size = {
+ .width = 223,
+ .height = 125,
+ },
+ .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
+};
+
static const struct drm_display_mode kingdisplay_kd116n21_30nv_a010_mode = {
.clock = 81000,
.hdisplay = 1366,
@@ -4243,6 +4267,9 @@ static const struct of_device_id platform_of_match[] = {
}, {
.compatible = "jenson,jt60249-01",
.data = &jenson_jt60249_01,
+ }, {
+ .compatible = "jenson,jt60250-02",
+ .data = &jenson_jt60250_02,
}, {
.compatible = "kingdisplay,kd116n21-30nv-a010",
.data = &kingdisplay_kd116n21_30nv_a010,
--
2.25.1