Skip to content

Commit 8f7115c

Browse files
wensdianders
authored andcommitted
drm/panel-edp: Fix delays for Innolux N116BCA-EA1
Commit 52824ca ("drm/panel-edp: Better describe eDP panel delays") clarified the various delays used for eDP panels, tying them to the eDP panel timing diagram. For Innolux N116BCA-EA1, .prepare_to_enable would be: t4_min + t5_min + t6_min + max(t7_max, t8_min) Since t4_min and t5_min are both 0, the panel can use either .enable or .prepare_to_enable. As .enable is better defined, switch to using .enable for this panel. Also add .disable = 50, based on the datasheet's t9_min value. This effectively makes the delays the same as delay_200_500_e80_d50. Cc: Douglas Anderson <[email protected]> Fixes: 51d3563 ("drm/panel-simple: Add N116BCA-EA1") Signed-off-by: Chen-Yu Tsai <[email protected]> Reviewed-by: Douglas Anderson <[email protected]> Signed-off-by: Douglas Anderson <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent d76034a commit 8f7115c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,8 @@ static const struct panel_desc innolux_n116bca_ea1 = {
12951295
},
12961296
.delay = {
12971297
.hpd_absent = 200,
1298-
.prepare_to_enable = 80,
1298+
.enable = 80,
1299+
.disable = 50,
12991300
.unprepare = 500,
13001301
},
13011302
};

0 commit comments

Comments
 (0)