Commit e6c21e6f authored by Paul Cercueil's avatar Paul Cercueil Committed by Sam Ravnborg

drm/panel: simple: Add 50Hz mode for sharp,ls020b1dd01d

Add a perfect 50.00 Hz frame rate mode to the list of available modes
for the Sharp LS020B1DD01D panel.
Signed-off-by: default avatarPaul Cercueil <paul@crapouillou.net>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20200811002240.55194-6-paul@crapouillou.net
parent c1bd32b5
......@@ -3399,6 +3399,18 @@ static const struct panel_desc sharp_lq123p1jx31 = {
};
static const struct drm_display_mode sharp_ls020b1dd01d_modes[] = {
{ /* 50 Hz */
.clock = 3000,
.hdisplay = 240,
.hsync_start = 240 + 58,
.hsync_end = 240 + 58 + 1,
.htotal = 240 + 58 + 1 + 1,
.vdisplay = 160,
.vsync_start = 160 + 24,
.vsync_end = 160 + 24 + 10,
.vtotal = 160 + 24 + 10 + 6,
.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC,
},
{ /* 60 Hz */
.clock = 3000,
.hdisplay = 240,
......
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