diff options
author | Philipp Zabel <[email protected]> | 2017-10-11 14:59:58 +0200 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2017-10-18 13:53:04 +0200 |
commit | 6c684e3b677eee1272f7952a16ffb9aac2c228f9 (patch) | |
tree | 8d2ad82ca82f8382d1e1e7f988da5e3d84584a16 | |
parent | 6560279c8fd08838ccaeea89f33ec10d26dc7857 (diff) |
drm/panel: simple: add delays for Innolux AT043TN24
The delays between video data and backlight enable and between backlight
disable and end of video data are given as >= 160 ms in the datasheet.
Signed-off-by: Philipp Zabel <[email protected]>
Tested-by: Marco Franchi <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/panel/panel-simple.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 1bbe212c4780..8838de2b9709 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -1008,6 +1008,10 @@ static const struct panel_desc hitachi_tx23d38vm0caa = { .width = 195, .height = 117, }, + .delay = { + .enable = 160, + .disable = 160, + }, }; static const struct drm_display_mode innolux_at043tn24_mode = { |