All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [PATCH 00/14] drm/i915/display: final (?!) mass conversions to struct intel_display
Date: Wed,  9 Apr 2025 21:17:41 +0300	[thread overview]
Message-ID: <cover.1744222449.git.jani.nikula@intel.com> (raw)

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


             reply	other threads:[~2025-04-09 18:18 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-09 18:17 Jani Nikula [this message]
2025-04-09 18:17 ` [PATCH 01/14] drm/i915/fb: convert intel_fbdev.[ch] and intel_fbdev_fb.[ch] to struct intel_display 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:27 ` ✓ CI.Patch_applied: success for drm/i915/display: final (?!) mass conversions to struct intel_display Patchwork
2025-04-09 18:27 ` ✓ CI.checkpatch: " Patchwork
2025-04-09 18:28 ` ✓ CI.KUnit: " Patchwork
2025-04-09 18:43 ` ✗ Fi.CI.SPARSE: warning " Patchwork
2025-04-09 18:45 ` ✗ CI.Build: failure " Patchwork
2025-04-09 19:06 ` ✓ i915.CI.BAT: success " Patchwork
2025-04-10  2:41 ` ✗ i915.CI.Full: failure " Patchwork
2025-04-10 10:41 ` ✓ CI.Patch_applied: success " Patchwork
2025-04-10 10:41 ` ✓ CI.checkpatch: " Patchwork
2025-04-10 10:42 ` ✓ CI.KUnit: " Patchwork
2025-04-10 10:51 ` ✓ CI.Build: " Patchwork
2025-04-10 10:53 ` ✓ CI.Hooks: " Patchwork
2025-04-10 10:54 ` ✗ CI.checksparse: warning " Patchwork
2025-04-10 11:41 ` ✓ Xe.CI.BAT: success " Patchwork
2025-04-10 14:42 ` ✗ Xe.CI.Full: failure " Patchwork
2025-04-17  7:14 ` [PATCH 00/14] " Borah, Chaitanya Kumar
2025-04-17  8:45   ` Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1744222449.git.jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.