intel-xe.lists.freedesktop.org archive mirror
 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: [CI 00/10] drm/i915: call irq and rps through the parent interface
Date: Mon, 17 Nov 2025 11:16:07 +0200	[thread overview]
Message-ID: <cover.1763370930.git.jani.nikula@intel.com> (raw)

Resend of [1] with the latest & reviewed patches for CI. I think my
replies to the series got patchwork all confused, and rightly so. ;)

BR,
Jani.


[1] https://lore.kernel.org/r/cover.1763115899.git.jani.nikula@intel.com

Jani Nikula (10):
  drm/{i915,xe}/display: duplicate gen2 irq/error init/reset in display
    irq
  drm/i915/display: convert the display irq interfaces to struct
    intel_display
  drm/{i915,xe}/display: move irq calls to parent interface
  drm/i915: add .vgpu_active to parent interface
  drm/i915: add .has_fenced_regions to parent interface
  drm/i915/rps: store struct dma_fence in struct wait_rps_boost
  drm/i915/rps: call RPS functions via the parent interface
  drm/i915/rps: postpone i915 fence check to boost
  drm/i915: add .fence_priority_display to parent interface
  drm/xe/rps: build RPS as part of xe

 drivers/gpu/drm/i915/Makefile                 |   1 +
 drivers/gpu/drm/i915/display/intel_crtc.c     |   6 +-
 .../gpu/drm/i915/display/intel_display_irq.c  | 191 +++++++++---------
 .../drm/i915/display/intel_display_power.c    |   5 +-
 .../i915/display/intel_display_power_well.c   |  15 +-
 .../gpu/drm/i915/display/intel_display_rps.c  |  31 +--
 .../gpu/drm/i915/display/intel_display_rps.h  |  21 --
 drivers/gpu/drm/i915/display/intel_fbc.c      |  13 +-
 drivers/gpu/drm/i915/display/intel_gmbus.c    |   6 +-
 drivers/gpu/drm/i915/display/intel_hotplug.c  |   6 +-
 .../gpu/drm/i915/display/intel_lpe_audio.c    |   1 -
 drivers/gpu/drm/i915/display/intel_parent.c   |  72 +++++++
 drivers/gpu/drm/i915/display/intel_parent.h   |  26 +++
 drivers/gpu/drm/i915/display/intel_pipe_crc.c |   6 +-
 drivers/gpu/drm/i915/display/intel_plane.c    |   5 +-
 drivers/gpu/drm/i915/gt/intel_rps.c           |  34 ++++
 drivers/gpu/drm/i915/gt/intel_rps.h           |   2 +
 drivers/gpu/drm/i915/i915_driver.c            |  22 ++
 drivers/gpu/drm/i915/i915_irq.c               |  16 ++
 drivers/gpu/drm/i915/i915_irq.h               |   2 +
 drivers/gpu/drm/xe/Makefile                   |   6 +-
 .../compat-i915-headers/gem/i915_gem_object.h |  13 --
 .../compat-i915-headers/gt/intel_gt_types.h   |  11 -
 .../gpu/drm/xe/compat-i915-headers/i915_irq.h |   6 -
 .../drm/xe/compat-i915-headers/i915_vgpu.h    |  18 --
 drivers/gpu/drm/xe/display/ext/i915_irq.c     |  85 --------
 drivers/gpu/drm/xe/display/xe_display.c       |  18 ++
 include/drm/intel/display_parent_interface.h  |  27 +++
 28 files changed, 356 insertions(+), 309 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_parent.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_parent.h
 delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h
 delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/gt/intel_gt_types.h
 delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_irq.h
 delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_vgpu.h
 delete mode 100644 drivers/gpu/drm/xe/display/ext/i915_irq.c

-- 
2.47.3


             reply	other threads:[~2025-11-17  9:16 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-17  9:16 Jani Nikula [this message]
2025-11-17  9:16 ` [CI 01/10] drm/{i915, xe}/display: duplicate gen2 irq/error init/reset in display irq Jani Nikula
2025-11-17  9:16 ` [CI 02/10] drm/i915/display: convert the display irq interfaces to struct intel_display Jani Nikula
2025-11-17  9:16 ` [CI 03/10] drm/{i915,xe}/display: move irq calls to parent interface Jani Nikula
2025-11-17  9:16 ` [CI 04/10] drm/i915: add .vgpu_active " Jani Nikula
2025-11-17  9:16 ` [CI 05/10] drm/i915: add .has_fenced_regions " Jani Nikula
2025-11-17  9:16 ` [CI 06/10] drm/i915/rps: store struct dma_fence in struct wait_rps_boost Jani Nikula
2025-11-17  9:16 ` [CI 07/10] drm/i915/rps: call RPS functions via the parent interface Jani Nikula
2025-11-17  9:16 ` [CI 08/10] drm/i915/rps: postpone i915 fence check to boost Jani Nikula
2025-11-17  9:16 ` [CI 09/10] drm/i915: add .fence_priority_display to parent interface Jani Nikula
2025-11-17  9:16 ` [CI 10/10] drm/xe/rps: build RPS as part of xe Jani Nikula
2025-11-17  9:23 ` ✗ CI.checkpatch: warning for drm/i915: call irq and rps through the parent interface (rev5) Patchwork
2025-11-17  9:24 ` ✓ CI.KUnit: success " Patchwork
2025-11-17  9:39 ` ✗ CI.checksparse: warning " Patchwork
2025-11-17 10:02 ` ✓ Xe.CI.BAT: success " Patchwork
2025-11-17 11:12 ` ✗ 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.1763370930.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;
as well as URLs for NNTP newsgroup(s).