Skip to content

Commit 438cf32

Browse files
lucaceresolisuperna9999
authored andcommitted
drm/panel: simple: Fix Innolux G156HCE-L01 LVDS clock
This panel has been implemented in commit eae7488 ("drm/panel-simple: Add Innolux G156HCE-L01 panel entry") with a higher clock than the typical one mentioned on the documentation to avoid flickering on the unit tested. Testing on a different unit shows that the panel actually works with the intended 70.93 MHz clock and even lower frequencies so the flickering is likely caused either by a defective unit or by other different components such as the bridge. Fixes: eae7488 ("drm/panel-simple: Add Innolux G156HCE-L01 panel entry") Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Tested-by: Marek Vasut <marex@denx.de> # MX8MM with LT9211 Reviewed-by: Marek Vasut <marex@denx.de> [narmstrong: fixed commit id in commit msg] Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230814134024.397739-1-luca.ceresoli@bootlin.com
1 parent a8b273a commit 438cf32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2377,7 +2377,7 @@ static const struct panel_desc innolux_g121x1_l03 = {
23772377
};
23782378

23792379
static const struct display_timing innolux_g156hce_l01_timings = {
2380-
.pixelclock = { 120000000, 144000000, 150000000 },
2380+
.pixelclock = { 120000000, 141860000, 150000000 },
23812381
.hactive = { 1920, 1920, 1920 },
23822382
.hfront_porch = { 80, 90, 100 },
23832383
.hback_porch = { 80, 90, 100 },

0 commit comments

Comments
 (0)