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, ville.syrjala@linux.intel.com
Subject: [PATCH 0/8] drm/i915: irq_lock refactoring, move to display
Date: Tue,  6 May 2025 16:06:42 +0300	[thread overview]
Message-ID: <cover.1746536745.git.jani.nikula@intel.com> (raw)

Refactor some irq/rps code to help move i915->irq_lock to
display->irq.lock, and then do the move.

Jani Nikula (8):
  drm/i915/irq: move locking inside vlv_display_irq_reset()
  drm/i915/irq: move locking inside
    valleyview_{enable,disable}_display_irqs()
  drm/i915/irq: move locking inside vlv_display_irq_postinstall()
  drm/i915/irq: split out i915_display_irq_postinstall()
  drm/i915/irq: split out i965_display_irq_postinstall()
  drm/i915/irq: make i915_enable_asle_pipestat() static
  drm/i915/rps: refactor display rps support
  drm/i915/irq: move i915->irq_lock to display->irq.lock

 drivers/gpu/drm/i915/display/i9xx_plane.c     |  43 +++--
 .../gpu/drm/i915/display/intel_display_core.h |   3 +
 .../gpu/drm/i915/display/intel_display_irq.c  | 153 ++++++++++--------
 .../gpu/drm/i915/display/intel_display_irq.h  |   3 +-
 .../i915/display/intel_display_power_well.c   |   5 -
 .../gpu/drm/i915/display/intel_display_rps.c  |  23 +++
 .../gpu/drm/i915/display/intel_display_rps.h  |  24 +++
 .../drm/i915/display/intel_display_types.h    |   2 +-
 drivers/gpu/drm/i915/display/intel_dp.c       |  10 +-
 drivers/gpu/drm/i915/display/intel_dsi_vbt.c  |   9 +-
 .../drm/i915/display/intel_fifo_underrun.c    |  44 ++---
 drivers/gpu/drm/i915/display/intel_hotplug.c  | 129 ++++++---------
 .../gpu/drm/i915/display/intel_hotplug_irq.c  |  22 ++-
 drivers/gpu/drm/i915/display/intel_tv.c       |  14 +-
 .../drm/i915/display/skl_universal_plane.c    |  10 +-
 drivers/gpu/drm/i915/gt/intel_rps.c           |  10 +-
 drivers/gpu/drm/i915/i915_driver.c            |   1 -
 drivers/gpu/drm/i915/i915_drv.h               |   2 -
 drivers/gpu/drm/i915/i915_irq.c               |  27 +---
 drivers/gpu/drm/xe/Makefile                   |   1 -
 .../drm/xe/compat-i915-headers/gt/intel_rps.h |  11 --
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h |  11 --
 drivers/gpu/drm/xe/display/xe_display_rps.c   |  17 --
 23 files changed, 260 insertions(+), 314 deletions(-)
 delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/gt/intel_rps.h
 delete mode 100644 drivers/gpu/drm/xe/display/xe_display_rps.c

-- 
2.39.5


             reply	other threads:[~2025-05-06 13:06 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-06 13:06 Jani Nikula [this message]
2025-05-06 13:06 ` [PATCH 1/8] drm/i915/irq: move locking inside vlv_display_irq_reset() Jani Nikula
2025-05-06 21:38   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 2/8] drm/i915/irq: move locking inside valleyview_{enable, disable}_display_irqs() Jani Nikula
2025-05-06 21:38   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 3/8] drm/i915/irq: move locking inside vlv_display_irq_postinstall() Jani Nikula
2025-05-06 21:39   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 4/8] drm/i915/irq: split out i915_display_irq_postinstall() Jani Nikula
2025-05-06 21:39   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 5/8] drm/i915/irq: split out i965_display_irq_postinstall() Jani Nikula
2025-05-06 21:40   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 6/8] drm/i915/irq: make i915_enable_asle_pipestat() static Jani Nikula
2025-05-06 21:40   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 7/8] drm/i915/rps: refactor display rps support Jani Nikula
2025-05-06 21:41   ` Gustavo Sousa
2025-05-06 13:06 ` [PATCH 8/8] drm/i915/irq: move i915->irq_lock to display->irq.lock Jani Nikula
2025-05-06 21:30   ` Gustavo Sousa
2025-05-07  8:34     ` Jani Nikula
2025-05-06 13:13 ` ✓ CI.Patch_applied: success for drm/i915: irq_lock refactoring, move to display Patchwork
2025-05-06 13:14 ` ✗ CI.checkpatch: warning " Patchwork
2025-05-06 13:15 ` ✓ CI.KUnit: success " Patchwork
2025-05-06 13:23 ` ✓ CI.Build: " Patchwork
2025-05-06 13:26 ` ✓ CI.Hooks: " Patchwork
2025-05-06 13:27 ` ✓ CI.checksparse: " Patchwork
2025-05-06 13:32 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2025-05-06 13:32 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-05-06 13:54 ` ✓ Xe.CI.BAT: success " Patchwork
2025-05-06 13:58 ` ✓ i915.CI.BAT: " Patchwork
2025-05-06 16:01 ` ✗ i915.CI.Full: failure " Patchwork
2025-05-06 16:15 ` ✗ Xe.CI.Full: " Patchwork
2025-05-26 16:00 ` ✗ CI.Patch_applied: " 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.1746536745.git.jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.com \
    /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.