mbox series

[0/4] drm/probe-helper, modes: Helpers for single-mode displays

Message ID 20220810112053.19547-1-tzimmermann@suse.de (mailing list archive)
Headers show
Series drm/probe-helper, modes: Helpers for single-mode displays | expand

Message

Thomas Zimmermann Aug. 10, 2022, 11:20 a.m. UTC
This patchset moves code from simpledrm to probe and display-mode
helpers. The new functions will be useful for the upcomming driver
for PowerPC displays. [1] Where possible, existing drivers are
being converted to use them.

[1] https://patchwork.freedesktop.org/series/106538/

Thomas Zimmermann (4):
  drm/probe-helper: Add drm_connector_helper_get_modes_static()
  drm/probe-helper: Add drm_crtc_helper_mode_valid_static()
  drm/modes: Add initializer macro DRM_MODE_INIT()
  drm/format-helper: Add drm_fb_build_fourcc_list() helper

 drivers/gpu/drm/drm_format_helper.c          | 94 +++++++++++++++++++
 drivers/gpu/drm/drm_mipi_dbi.c               | 38 ++++----
 drivers/gpu/drm/drm_probe_helper.c           | 65 +++++++++++++
 drivers/gpu/drm/panel/panel-ilitek-ili9341.c |  1 +
 drivers/gpu/drm/tiny/hx8357d.c               |  1 +
 drivers/gpu/drm/tiny/ili9163.c               |  1 +
 drivers/gpu/drm/tiny/ili9341.c               |  1 +
 drivers/gpu/drm/tiny/ili9486.c               |  1 +
 drivers/gpu/drm/tiny/mi0283qt.c              |  1 +
 drivers/gpu/drm/tiny/panel-mipi-dbi.c        |  1 +
 drivers/gpu/drm/tiny/repaper.c               | 26 +++---
 drivers/gpu/drm/tiny/simpledrm.c             | 96 +++-----------------
 drivers/gpu/drm/tiny/st7735r.c               |  1 +
 include/drm/drm_format_helper.h              | 11 ++-
 include/drm/drm_mipi_dbi.h                   |  2 +
 include/drm/drm_modes.h                      | 35 ++++++-
 include/drm/drm_probe_helper.h               |  9 +-
 17 files changed, 262 insertions(+), 122 deletions(-)