Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] drm/i915/display: final (?!) mass conversions to struct intel_display
@ 2025-04-09 18:17 Jani Nikula
  2025-04-09 18:17 ` [PATCH 01/14] drm/i915/fb: convert intel_fbdev.[ch] and intel_fbdev_fb.[ch] " Jani Nikula
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Jani Nikula @ 2025-04-09 18:17 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

With this, we are approaching the end of mass conversions to struct
intel_display. There are still plenty of drm_i915_private uses left, of
course, but the straightforward conversions of entire files are
done. And we no longer use any of the IS_*() platform checks.

BR,
Jani.

Jani Nikula (14):
  drm/i915/fb: convert intel_fbdev.[ch] and intel_fbdev_fb.[ch] to
    struct intel_display
  drm/i915/display: convert intel_modeset_setup.[ch] to struct
    intel_display
  drm/i915/display: convert intel_modeset_verify.c to struct
    intel_display
  drm/i915/sprite: convert intel_sprite_uapi.c to struct intel_display
  drm/i915/frontbuffer: convert intel_frontbuffer.[ch] to struct
    intel_display
  drm/i915/crt: switch to display->platform based platform detection
  drm/i915/dmc: switch to display->platform based platform detection
  drm/i915/dp-aux: switch to display->platform based platform detection
  drm/i915/dpio: switch to display->platform based platform detection
  drm/i915/gmbus: switch to display->platform based platform detection
  drm/i915/hdmi: switch to display->platform based platform detection
  drm/i915/display: switch to display->platform.dgfx from IS_DGFX()
  drm/i915/audio: don't set LPE audio irq chip data, it's unused
  drm/xe/compat: clean up unused platform check macros

 drivers/gpu/drm/i915/display/intel_bios.c     |   2 +-
 drivers/gpu/drm/i915/display/intel_crt.c      |  13 +-
 drivers/gpu/drm/i915/display/intel_display.c  |   7 +-
 .../drm/i915/display/intel_display_driver.c   |   9 +-
 drivers/gpu/drm/i915/display/intel_dmc.c      |  45 ++--
 drivers/gpu/drm/i915/display/intel_dp_aux.c   |   9 +-
 drivers/gpu/drm/i915/display/intel_dpio_phy.c |   4 +-
 drivers/gpu/drm/i915/display/intel_fb.c       |   4 +-
 drivers/gpu/drm/i915/display/intel_fbdev.c    |  74 ++++---
 drivers/gpu/drm/i915/display/intel_fbdev.h    |   6 +-
 drivers/gpu/drm/i915/display/intel_fbdev_fb.c |  13 +-
 drivers/gpu/drm/i915/display/intel_fbdev_fb.h |   4 +-
 .../gpu/drm/i915/display/intel_frontbuffer.c  |  60 +++---
 .../gpu/drm/i915/display/intel_frontbuffer.h  |   8 +-
 drivers/gpu/drm/i915/display/intel_gmbus.c    |  22 +-
 drivers/gpu/drm/i915/display/intel_hdmi.c     |  44 ++--
 .../gpu/drm/i915/display/intel_lpe_audio.c    |   2 +-
 .../drm/i915/display/intel_modeset_setup.c    | 192 +++++++++---------
 .../drm/i915/display/intel_modeset_setup.h    |   4 +-
 .../drm/i915/display/intel_modeset_verify.c   |  17 +-
 drivers/gpu/drm/i915/display/intel_overlay.c  |   6 +-
 .../drm/i915/display/intel_plane_initial.c    |   8 +-
 .../gpu/drm/i915/display/intel_sprite_uapi.c  |  17 +-
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h |  36 +---
 drivers/gpu/drm/xe/display/intel_fbdev_fb.c   |   6 +-
 25 files changed, 269 insertions(+), 343 deletions(-)

-- 
2.39.5


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2025-04-17  8:45 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-09 18:17 [PATCH 00/14] drm/i915/display: final (?!) mass conversions to struct intel_display Jani Nikula
2025-04-09 18:17 ` [PATCH 01/14] drm/i915/fb: convert intel_fbdev.[ch] and intel_fbdev_fb.[ch] " Jani Nikula
2025-04-09 18:17 ` [PATCH 02/14] drm/i915/display: convert intel_modeset_setup.[ch] " Jani Nikula
2025-04-09 18:17 ` [PATCH 03/14] drm/i915/display: convert intel_modeset_verify.c " Jani Nikula
2025-04-09 18:17 ` [PATCH 04/14] drm/i915/sprite: convert intel_sprite_uapi.c " Jani Nikula
2025-04-09 18:17 ` [PATCH 05/14] drm/i915/frontbuffer: convert intel_frontbuffer.[ch] " Jani Nikula
2025-04-09 18:17 ` [PATCH 06/14] drm/i915/crt: switch to display->platform based platform detection Jani Nikula
2025-04-09 18:17 ` [PATCH 07/14] drm/i915/dmc: " Jani Nikula
2025-04-09 18:17 ` [PATCH 08/14] drm/i915/dp-aux: " Jani Nikula
2025-04-09 18:17 ` [PATCH 09/14] drm/i915/dpio: " Jani Nikula
2025-04-09 18:17 ` [PATCH 10/14] drm/i915/gmbus: " Jani Nikula
2025-04-09 18:17 ` [PATCH 11/14] drm/i915/hdmi: " Jani Nikula
2025-04-09 18:17 ` [PATCH 12/14] drm/i915/display: switch to display->platform.dgfx from IS_DGFX() Jani Nikula
2025-04-09 18:17 ` [PATCH 13/14] drm/i915/audio: don't set LPE audio irq chip data, it's unused Jani Nikula
2025-04-09 18:17 ` [PATCH 14/14] drm/xe/compat: clean up unused platform check macros Jani Nikula
2025-04-09 18:43 ` ✗ Fi.CI.SPARSE: warning for drm/i915/display: final (?!) mass conversions to struct intel_display Patchwork
2025-04-09 19:06 ` ✓ i915.CI.BAT: success " Patchwork
2025-04-10  2:41 ` ✗ i915.CI.Full: failure " Patchwork
2025-04-17  7:14 ` [PATCH 00/14] " Borah, Chaitanya Kumar
2025-04-17  8:45   ` Jani Nikula

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox