Skip to content

Commit 73bd483

Browse files
strumtrarsuperna9999
authored andcommitted
drm/panel: simple: add JuTouch JT101TM023
Add JuTouch Technology JT101TM023 10" 1280x800 LVDS panel support. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://lore.kernel.org/r/20250821-v6-17-topic-imx8mp-skov-dts-jutouch-10inch-v1-3-b492ef807d12@pengutronix.de
1 parent 510aeef commit 73bd483

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

drivers/gpu/drm/panel/panel-simple.c

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2889,6 +2889,38 @@ static const struct panel_desc innolux_zj070na_01p = {
28892889
},
28902890
};
28912891

2892+
static const struct display_timing jutouch_jt101tm023_timing = {
2893+
.pixelclock = { 66300000, 72400000, 78900000 },
2894+
.hactive = { 1280, 1280, 1280 },
2895+
.hfront_porch = { 12, 72, 132 },
2896+
.hback_porch = { 88, 88, 88 },
2897+
.hsync_len = { 10, 10, 48 },
2898+
.vactive = { 800, 800, 800 },
2899+
.vfront_porch = { 1, 15, 49 },
2900+
.vback_porch = { 23, 23, 23 },
2901+
.vsync_len = { 5, 6, 13 },
2902+
.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
2903+
DISPLAY_FLAGS_DE_HIGH,
2904+
};
2905+
2906+
static const struct panel_desc jutouch_jt101tm023 = {
2907+
.timings = &jutouch_jt101tm023_timing,
2908+
.num_timings = 1,
2909+
.bpc = 8,
2910+
.size = {
2911+
.width = 217,
2912+
.height = 136,
2913+
},
2914+
.delay = {
2915+
.enable = 50,
2916+
.disable = 50,
2917+
},
2918+
.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2919+
.bus_flags = DRM_BUS_FLAG_DE_HIGH,
2920+
.connector_type = DRM_MODE_CONNECTOR_LVDS,
2921+
};
2922+
2923+
28922924
static const struct display_timing koe_tx14d24vm1bpa_timing = {
28932925
.pixelclock = { 5580000, 5850000, 6200000 },
28942926
.hactive = { 320, 320, 320 },
@@ -5208,6 +5240,9 @@ static const struct of_device_id platform_of_match[] = {
52085240
}, {
52095241
.compatible = "innolux,zj070na-01p",
52105242
.data = &innolux_zj070na_01p,
5243+
}, {
5244+
.compatible = "jutouch,jt101tm023",
5245+
.data = &jutouch_jt101tm023,
52115246
}, {
52125247
.compatible = "koe,tx14d24vm1bpa",
52135248
.data = &koe_tx14d24vm1bpa,

0 commit comments

Comments
 (0)