Skip to content

Commit 3f9a91b

Browse files
author
Marek Vasut
committed
drm/panel: simple: Fix Innolux G101ICE-L01 timings
The Innolux G101ICE-L01 datasheet [1] page 17 table 6.1 INPUT SIGNAL TIMING SPECIFICATIONS indicates that maximum vertical blanking time is 40 lines. Currently the driver uses 29 lines. Fix it, and since this panel is a DE panel, adjust the timings to make them less hostile to controllers which cannot do 1 px HSA/VSA, distribute the delays evenly between all three parts. [1] https://www.data-modul.com/sites/default/files/products/G101ICE-L01-C2-specification-12042389.pdf Fixes: 1e29b84 ("drm/panel: simple: Add Innolux G101ICE-L01 panel") Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 06fc41b commit 3f9a91b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2379,13 +2379,13 @@ static const struct panel_desc innolux_g070y2_t02 = {
23792379
static const struct display_timing innolux_g101ice_l01_timing = {
23802380
.pixelclock = { 60400000, 71100000, 74700000 },
23812381
.hactive = { 1280, 1280, 1280 },
2382-
.hfront_porch = { 41, 80, 100 },
2383-
.hback_porch = { 40, 79, 99 },
2384-
.hsync_len = { 1, 1, 1 },
2382+
.hfront_porch = { 30, 60, 70 },
2383+
.hback_porch = { 30, 60, 70 },
2384+
.hsync_len = { 22, 40, 60 },
23852385
.vactive = { 800, 800, 800 },
2386-
.vfront_porch = { 5, 11, 14 },
2387-
.vback_porch = { 4, 11, 14 },
2388-
.vsync_len = { 1, 1, 1 },
2386+
.vfront_porch = { 3, 8, 14 },
2387+
.vback_porch = { 3, 8, 14 },
2388+
.vsync_len = { 4, 7, 12 },
23892389
.flags = DISPLAY_FLAGS_DE_HIGH,
23902390
};
23912391

0 commit comments

Comments
 (0)