Commit 52824ca4 authored by Douglas Anderson's avatar Douglas Anderson

drm/panel-edp: Better describe eDP panel delays

Now that the eDP panel driver only handles eDP panels we can make
better sense of the delays here. Let's describe them in terms of the
standard eDP timing diagram from the eDP spec.

As part of this, it becomes pretty clear that some eDP panels have too
long of a "hpd_reliable_delay". This used to be the "prepare"
delay. It's the fixed delay that we do in the panel driver after
powering on our panel before we look at the HPD signal. To understand
this better, first realize that there could be 3 paths we follow
depending on how HPD is hooked up. Let's walk through them:
1. HPD is handled by the eDP controller driver. Until "recently"
   (commit 48834e60 ("drm/panel-simple: Support hpd-gpios for
   delaying prepare()") in May 2020) this was the only supported
   way. This is supposed to be when the controller driver gets HPD
   straight to a dedicated pin. In this case the controller driver
   should be waiting for HPD in its pre_enable() routine which should
   be called right after the panel's prepare() function is
   called. That means that the old "prepare" delay was only needed as
   a delay after powering the panel but before looking at HPD.
2. HPD is handled via hpd-gpios in the panel. This is much like #1 but
   much easier to follow since all the handling is in the panel
   driver.
3. The no-hpd case. This is also easy to follow.

In any case, even though it seems like some old panel data was using
this incorrectly, let's not touch the old data structures but we'll
add a note indicating that something seems off.
Signed-off-by: default avatarDouglas Anderson <dianders@chromium.org>
Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210914132020.v5.11.I2d798dd015332661c5895ef744bc8ec5cd2e06ca@changeid
parent 9ea10a50
...@@ -45,20 +45,28 @@ ...@@ -45,20 +45,28 @@
*/ */
struct panel_delay { struct panel_delay {
/** /**
* @prepare: Time for the panel to become ready. * @hpd_reliable: Time for HPD to be reliable
* *
* The time (in milliseconds) that it takes for the panel to * The time (in milliseconds) that it takes after powering the panel
* become ready and start receiving video data * before the HPD signal is reliable. Ideally this is 0 but some panels,
* board designs, or bad pulldown configs can cause a glitch here.
*
* NOTE: on some old panel data this number appers to be much too big.
* Presumably some old panels simply didn't have HPD hooked up and put
* the hpd_absent here because this field predates the
* hpd_absent. While that works, it's non-ideal.
*/ */
unsigned int prepare; unsigned int hpd_reliable;
/** /**
* @hpd_absent_delay: Time to wait if HPD isn't hooked up. * @hpd_absent: Time to wait if HPD isn't hooked up.
* *
* Add this to the prepare delay if we know Hot Plug Detect * Add this to the prepare delay if we know Hot Plug Detect isn't used.
* isn't used. *
* This is T3-max on eDP timing diagrams or the delay from power on
* until HPD is guaranteed to be asserted.
*/ */
unsigned int hpd_absent_delay; unsigned int hpd_absent;
/** /**
* @prepare_to_enable: Time between prepare and enable. * @prepare_to_enable: Time between prepare and enable.
...@@ -87,6 +95,10 @@ struct panel_delay { ...@@ -87,6 +95,10 @@ struct panel_delay {
* enable() * enable()
* // do fixed enable delay * // do fixed enable delay
* // enforce prepare_to_enable min time * // enforce prepare_to_enable min time
*
* This is not specified in a standard way on eDP timing diagrams.
* It is effectively the time from HPD going high till you can
* turn on the backlight.
*/ */
unsigned int prepare_to_enable; unsigned int prepare_to_enable;
...@@ -96,6 +108,10 @@ struct panel_delay { ...@@ -96,6 +108,10 @@ struct panel_delay {
* The time (in milliseconds) that it takes for the panel to * The time (in milliseconds) that it takes for the panel to
* display the first valid frame after starting to receive * display the first valid frame after starting to receive
* video data. * video data.
*
* This is (T6-min + max(T7-max, T8-min)) on eDP timing diagrams or
* the delay after link training finishes until we can turn the
* backlight on and see valid data.
*/ */
unsigned int enable; unsigned int enable;
...@@ -104,6 +120,9 @@ struct panel_delay { ...@@ -104,6 +120,9 @@ struct panel_delay {
* *
* The time (in milliseconds) that it takes for the panel to * The time (in milliseconds) that it takes for the panel to
* turn the display off (no content is visible). * turn the display off (no content is visible).
*
* This is T9-min (delay from backlight off to end of valid video
* data) on eDP timing diagrams. It is not common to set.
*/ */
unsigned int disable; unsigned int disable;
...@@ -117,6 +136,8 @@ struct panel_delay { ...@@ -117,6 +136,8 @@ struct panel_delay {
* starting until at least this many milliseconds has passed. * starting until at least this many milliseconds has passed.
* If at prepare time less time has passed since unprepare * If at prepare time less time has passed since unprepare
* finished, the driver waits for the remaining time. * finished, the driver waits for the remaining time.
*
* This is T12-min on eDP timing diagrams.
*/ */
unsigned int unprepare; unsigned int unprepare;
}; };
...@@ -400,15 +421,15 @@ static int panel_edp_prepare_once(struct panel_edp *p) ...@@ -400,15 +421,15 @@ static int panel_edp_prepare_once(struct panel_edp *p)
gpiod_set_value_cansleep(p->enable_gpio, 1); gpiod_set_value_cansleep(p->enable_gpio, 1);
delay = p->desc->delay.prepare; delay = p->desc->delay.hpd_reliable;
if (p->no_hpd) if (p->no_hpd)
delay += p->desc->delay.hpd_absent_delay; delay += p->desc->delay.hpd_absent;
if (delay) if (delay)
msleep(delay); msleep(delay);
if (p->hpd_gpio) { if (p->hpd_gpio) {
if (p->desc->delay.hpd_absent_delay) if (p->desc->delay.hpd_absent)
hpd_wait_us = p->desc->delay.hpd_absent_delay * 1000UL; hpd_wait_us = p->desc->delay.hpd_absent * 1000UL;
else else
hpd_wait_us = 2000000; hpd_wait_us = 2000000;
...@@ -772,7 +793,7 @@ static const struct panel_desc auo_b116xak01 = { ...@@ -772,7 +793,7 @@ static const struct panel_desc auo_b116xak01 = {
.height = 144, .height = 144,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
}, },
}; };
...@@ -823,7 +844,7 @@ static const struct panel_desc auo_b133han05 = { ...@@ -823,7 +844,7 @@ static const struct panel_desc auo_b133han05 = {
.height = 165, .height = 165,
}, },
.delay = { .delay = {
.prepare = 100, .hpd_reliable = 100,
.enable = 20, .enable = 20,
.unprepare = 50, .unprepare = 50,
}, },
...@@ -850,7 +871,7 @@ static const struct panel_desc auo_b133htn01 = { ...@@ -850,7 +871,7 @@ static const struct panel_desc auo_b133htn01 = {
.height = 165, .height = 165,
}, },
.delay = { .delay = {
.prepare = 105, .hpd_reliable = 105,
.enable = 20, .enable = 20,
.unprepare = 50, .unprepare = 50,
}, },
...@@ -899,7 +920,7 @@ static const struct panel_desc auo_b140han06 = { ...@@ -899,7 +920,7 @@ static const struct panel_desc auo_b140han06 = {
.height = 174, .height = 174,
}, },
.delay = { .delay = {
.prepare = 100, .hpd_reliable = 100,
.enable = 20, .enable = 20,
.unprepare = 50, .unprepare = 50,
}, },
...@@ -939,7 +960,8 @@ static const struct panel_desc boe_nv101wxmn51 = { ...@@ -939,7 +960,8 @@ static const struct panel_desc boe_nv101wxmn51 = {
.height = 136, .height = 136,
}, },
.delay = { .delay = {
.prepare = 210, /* TODO: should be hpd-absent and no-hpd should be set? */
.hpd_reliable = 210,
.enable = 50, .enable = 50,
.unprepare = 160, .unprepare = 160,
}, },
...@@ -981,7 +1003,7 @@ static const struct panel_desc boe_nv110wtm_n61 = { ...@@ -981,7 +1003,7 @@ static const struct panel_desc boe_nv110wtm_n61 = {
.height = 155, .height = 155,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
.prepare_to_enable = 80, .prepare_to_enable = 80,
.enable = 50, .enable = 50,
.unprepare = 500, .unprepare = 500,
...@@ -1018,14 +1040,14 @@ static const struct panel_desc boe_nv133fhm_n61 = { ...@@ -1018,14 +1040,14 @@ static const struct panel_desc boe_nv133fhm_n61 = {
* was until the TCON data download was complete. On * was until the TCON data download was complete. On
* one system this was measured at 8 ms. We'll put 15 ms * one system this was measured at 8 ms. We'll put 15 ms
* in the prepare delay just to be safe and take it away * in the prepare delay just to be safe and take it away
* from the hpd_absent_delay (which would otherwise be 200 ms) * from the hpd_absent (which would otherwise be 200 ms)
* to handle this. That means: * to handle this. That means:
* - If HPD isn't hooked up you still have 200 ms delay. * - If HPD isn't hooked up you still have 200 ms delay.
* - If HPD is hooked up we won't try to look at it for the * - If HPD is hooked up we won't try to look at it for the
* first 15 ms. * first 15 ms.
*/ */
.prepare = 15, .hpd_reliable = 15,
.hpd_absent_delay = 185, .hpd_absent = 185,
.unprepare = 500, .unprepare = 500,
}, },
...@@ -1054,7 +1076,8 @@ static const struct panel_desc boe_nv140fhmn49 = { ...@@ -1054,7 +1076,8 @@ static const struct panel_desc boe_nv140fhmn49 = {
.height = 174, .height = 174,
}, },
.delay = { .delay = {
.prepare = 210, /* TODO: should be hpd-absent and no-hpd should be set? */
.hpd_reliable = 210,
.enable = 50, .enable = 50,
.unprepare = 160, .unprepare = 160,
}, },
...@@ -1082,7 +1105,7 @@ static const struct panel_desc innolux_n116bca_ea1 = { ...@@ -1082,7 +1105,7 @@ static const struct panel_desc innolux_n116bca_ea1 = {
.height = 144, .height = 144,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
.prepare_to_enable = 80, .prepare_to_enable = 80,
.unprepare = 500, .unprepare = 500,
}, },
...@@ -1165,7 +1188,7 @@ static const struct panel_desc innolux_p120zdg_bf1 = { ...@@ -1165,7 +1188,7 @@ static const struct panel_desc innolux_p120zdg_bf1 = {
.height = 169, .height = 169,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
.unprepare = 500, .unprepare = 500,
}, },
}; };
...@@ -1192,7 +1215,7 @@ static const struct panel_desc ivo_m133nwf4_r0 = { ...@@ -1192,7 +1215,7 @@ static const struct panel_desc ivo_m133nwf4_r0 = {
.height = 165, .height = 165,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
.unprepare = 500, .unprepare = 500,
}, },
}; };
...@@ -1219,7 +1242,7 @@ static const struct panel_desc kingdisplay_kd116n21_30nv_a010 = { ...@@ -1219,7 +1242,7 @@ static const struct panel_desc kingdisplay_kd116n21_30nv_a010 = {
.height = 144, .height = 144,
}, },
.delay = { .delay = {
.hpd_absent_delay = 200, .hpd_absent = 200,
}, },
}; };
...@@ -1345,7 +1368,7 @@ static const struct panel_desc neweast_wjfh116008a = { ...@@ -1345,7 +1368,7 @@ static const struct panel_desc neweast_wjfh116008a = {
.height = 150, .height = 150,
}, },
.delay = { .delay = {
.prepare = 110, .hpd_reliable = 110,
.enable = 20, .enable = 20,
.unprepare = 500, .unprepare = 500,
}, },
...@@ -1439,7 +1462,7 @@ static const struct panel_desc sharp_lq123p1jx31 = { ...@@ -1439,7 +1462,7 @@ static const struct panel_desc sharp_lq123p1jx31 = {
.height = 173, .height = 173,
}, },
.delay = { .delay = {
.prepare = 110, .hpd_reliable = 110,
.enable = 50, .enable = 50,
.unprepare = 550, .unprepare = 550,
}, },
...@@ -1466,7 +1489,8 @@ static const struct panel_desc starry_kr122ea0sra = { ...@@ -1466,7 +1489,8 @@ static const struct panel_desc starry_kr122ea0sra = {
.height = 164, .height = 164,
}, },
.delay = { .delay = {
.prepare = 10 + 200, /* TODO: should be hpd-absent and no-hpd should be set? */
.hpd_reliable = 10 + 200,
.enable = 50, .enable = 50,
.unprepare = 10 + 500, .unprepare = 10 + 500,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment