drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs
authorLuca Ceresoli <luca.ceresoli@bootlin.com>
Fri, 4 Aug 2023 15:12:39 +0000 (17:12 +0200)
committerNeil Armstrong <neil.armstrong@linaro.org>
Mon, 14 Aug 2023 12:50:47 +0000 (14:50 +0200)
commite8470c0a7bcaa82f78ad34282d662dd7bd9630c2
tree3a9385cdb375cdbcaf9f430d19eedc1da3eae92f
parentae6546835efaa7195aaaa10e5ff4e695cd82a816
drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs

Commit 03e909acd95a ("drm/panel: simple: Add support for AUO G121EAN01.4
panel") added support for this panel model, but the timings it implements
are very different from what the datasheet describes. I checked both the
G121EAN01.0 datasheet from [0] and the G121EAN01.4 one from [1] and they
all have the same timings: for example the LVDS clock typical value is 74.4
MHz, not 66.7 MHz as implemented.

Replace the timings with the ones from the documentation. These timings
have been tested and the clock frequencies verified with an oscilloscope to
ensure they are correct.

Also use struct display_timing instead of struct drm_display_mode in order
to also specify the minimum and maximum values.

[0] https://embedded.avnet.com/product/g121ean01-0/
[1] https://embedded.avnet.com/product/g121ean01-4/

Fixes: 03e909acd95a ("drm/panel: simple: Add support for AUO G121EAN01.4 panel")
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230804151239.835216-1-luca.ceresoli@bootlin.com
drivers/gpu/drm/panel/panel-simple.c