public inbox for intel-xe@lists.freedesktop.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 0/6] drm/i915: crtc iteration cleanups
Date: Mon, 27 Apr 2026 14:04:26 +0300	[thread overview]
Message-ID: <cover.1777287836.git.jani.nikula@intel.com> (raw)

Some cleanups to crtc iteration.

Jani Nikula (6):
  drm/{i915,xe}: move xe_display_flush_cleanup_work() to i915 display
  drm/i915/display: switch from drm_for_each_crtc() to
    for_each_intel_crtc()
  drm/i915/display: always pass display->drm to for_each_intel_crtc*()
  drm/i915/display: pass struct intel_display to all
    for_each_intel_crtc*() macros
  drm/i915/display: stop passing i to for_each_*_intel_crtc_in_state()
    macros
  drm/i915/display: stop passing i to
    for_each_pipe_crtc_modeset_{enable,disable}()

 drivers/gpu/drm/i915/display/i9xx_wm.c        |  32 +--
 drivers/gpu/drm/i915/display/intel_atomic.c   |   3 +-
 drivers/gpu/drm/i915/display/intel_bw.c       |  11 +-
 drivers/gpu/drm/i915/display/intel_cdclk.c    |  14 +-
 drivers/gpu/drm/i915/display/intel_crtc.c     |  13 +-
 drivers/gpu/drm/i915/display/intel_dbuf_bw.c  |   7 +-
 drivers/gpu/drm/i915/display/intel_ddi.c      |  10 +-
 drivers/gpu/drm/i915/display/intel_display.c  | 193 +++++++++---------
 drivers/gpu/drm/i915/display/intel_display.h  |  80 ++++----
 .../drm/i915/display/intel_display_debugfs.c  |   6 +-
 .../drm/i915/display/intel_display_power.c    |   2 +-
 .../drm/i915/display/intel_display_trace.h    |   6 +-
 drivers/gpu/drm/i915/display/intel_dp.c       |   2 +-
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |  11 +-
 drivers/gpu/drm/i915/display/intel_dp_test.c  |   2 +-
 .../gpu/drm/i915/display/intel_dp_tunnel.c    |   8 +-
 drivers/gpu/drm/i915/display/intel_dpll_mgr.c |   2 +-
 drivers/gpu/drm/i915/display/intel_drrs.c     |   4 +-
 drivers/gpu/drm/i915/display/intel_fbdev.c    |   6 +-
 drivers/gpu/drm/i915/display/intel_fdi.c      |   3 +-
 .../drm/i915/display/intel_fifo_underrun.c    |   4 +-
 drivers/gpu/drm/i915/display/intel_flipq.c    |   2 +-
 .../gpu/drm/i915/display/intel_global_state.c |   8 +-
 .../drm/i915/display/intel_initial_plane.c    |   4 +-
 drivers/gpu/drm/i915/display/intel_link_bw.c  |   2 +-
 .../gpu/drm/i915/display/intel_load_detect.c  |   2 +-
 .../drm/i915/display/intel_modeset_setup.c    |  32 +--
 drivers/gpu/drm/i915/display/intel_plane.c    |   9 +-
 drivers/gpu/drm/i915/display/intel_pmdemand.c |   6 +-
 drivers/gpu/drm/i915/display/intel_psr.c      |   2 +-
 drivers/gpu/drm/i915/display/intel_tc.c       |   2 +-
 drivers/gpu/drm/i915/display/intel_vrr.c      |   4 +-
 drivers/gpu/drm/i915/display/skl_watermark.c  |  38 ++--
 drivers/gpu/drm/xe/display/xe_display.c       |  27 +--
 34 files changed, 252 insertions(+), 305 deletions(-)

-- 
2.47.3


             reply	other threads:[~2026-04-27 11:04 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-27 11:04 Jani Nikula [this message]
2026-04-27 11:04 ` [PATCH 1/6] drm/{i915, xe}: move xe_display_flush_cleanup_work() to i915 display Jani Nikula
2026-04-27 11:04 ` [PATCH 2/6] drm/i915/display: switch from drm_for_each_crtc() to for_each_intel_crtc() Jani Nikula
2026-04-27 11:04 ` [PATCH 3/6] drm/i915/display: always pass display->drm to for_each_intel_crtc*() Jani Nikula
2026-04-27 11:04 ` [PATCH 4/6] drm/i915/display: pass struct intel_display to all for_each_intel_crtc*() macros Jani Nikula
2026-04-27 11:04 ` [PATCH 5/6] drm/i915/display: stop passing i to for_each_*_intel_crtc_in_state() macros Jani Nikula
2026-04-27 11:04 ` [PATCH 6/6] drm/i915/display: stop passing i to for_each_pipe_crtc_modeset_{enable, disable}() Jani Nikula
2026-04-27 14:39 ` ✗ CI.checkpatch: warning for drm/i915: crtc iteration cleanups Patchwork
2026-04-27 14:40 ` ✓ CI.KUnit: success " Patchwork
2026-04-27 16:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-27 18:41 ` ✗ Xe.CI.FULL: failure " Patchwork

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.1777287836.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox