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/12] drm/i915: struct intel_display conversions, part 2434235
Date: Tue, 25 Feb 2025 18:49:01 +0200 [thread overview]
Message-ID: <cover.1740502116.git.jani.nikula@intel.com> (raw)
More of the same.
Jani Nikula (12):
drm/i915/display: remove leftover struct drm_i915_private forward
declarations
drm/i915/debugfs: continue display debugfs struct intel_display
conversion
drm/i915/tdf: convert intel_tdf.[ch] to struct intel_display
drm/i915/snps: convert intel_snps_phy.[ch] to struct intel_display
drm/i915/dkl: convert intel_dkl_phy.[ch] to struct intel_display
drm/i915/drrs: convert intel_drrs.[ch] to struct intel_display
drm/i915/display: convert the M/N functions to struct intel_display
drm/i915/dpt: convert intel_dpt.[ch] interfaces to struct
intel_display
drm/i915/fbc: convert intel_fbc.[ch] to struct intel_display
drm/i915/rps: convert intel_display_rps.[ch] to struct intel_display
drm/i915/ddi: convert intel_wait_ddi_buf_idle() to struct
intel_display
drm/i915/fdi: convert intel_fdi.[ch] to struct intel_display
drivers/gpu/drm/i915/display/intel_atomic.h | 1 -
.../gpu/drm/i915/display/intel_atomic_plane.c | 8 +-
drivers/gpu/drm/i915/display/intel_ddi.c | 11 +-
drivers/gpu/drm/i915/display/intel_ddi.h | 4 +-
.../drm/i915/display/intel_ddi_buf_trans.h | 1 -
drivers/gpu/drm/i915/display/intel_display.c | 102 ++--
drivers/gpu/drm/i915/display/intel_display.h | 8 +-
.../drm/i915/display/intel_display_debugfs.c | 26 +-
.../drm/i915/display/intel_display_debugfs.h | 6 +-
.../drm/i915/display/intel_display_driver.c | 8 +-
.../drm/i915/display/intel_display_power.c | 2 +-
.../gpu/drm/i915/display/intel_display_rps.c | 4 +-
.../gpu/drm/i915/display/intel_display_rps.h | 4 +-
drivers/gpu/drm/i915/display/intel_dkl_phy.c | 8 +-
drivers/gpu/drm/i915/display/intel_dkl_phy.h | 3 +-
drivers/gpu/drm/i915/display/intel_dp.c | 7 +-
drivers/gpu/drm/i915/display/intel_dpt.c | 24 +-
drivers/gpu/drm/i915/display/intel_dpt.h | 7 +-
drivers/gpu/drm/i915/display/intel_drrs.c | 45 +-
drivers/gpu/drm/i915/display/intel_drrs.h | 10 +-
drivers/gpu/drm/i915/display/intel_fbc.c | 113 ++---
drivers/gpu/drm/i915/display/intel_fbc.h | 6 +-
drivers/gpu/drm/i915/display/intel_fdi.c | 464 +++++++++---------
drivers/gpu/drm/i915/display/intel_fdi.h | 16 +-
.../gpu/drm/i915/display/intel_frontbuffer.c | 11 +-
drivers/gpu/drm/i915/display/intel_hdmi.h | 1 -
.../drm/i915/display/intel_modeset_verify.c | 3 +-
drivers/gpu/drm/i915/display/intel_overlay.h | 1 -
.../gpu/drm/i915/display/intel_pch_display.c | 35 +-
drivers/gpu/drm/i915/display/intel_pipe_crc.h | 1 -
drivers/gpu/drm/i915/display/intel_snps_phy.c | 75 ++-
drivers/gpu/drm/i915/display/intel_snps_phy.h | 6 +-
drivers/gpu/drm/i915/display/intel_tdf.h | 6 +-
drivers/gpu/drm/i915/i915_driver.c | 4 +-
drivers/gpu/drm/xe/display/xe_display_rps.c | 2 +-
drivers/gpu/drm/xe/display/xe_tdf.c | 6 +-
36 files changed, 493 insertions(+), 546 deletions(-)
--
2.39.5
next reply other threads:[~2025-02-25 16:49 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-25 16:49 Jani Nikula [this message]
2025-02-25 16:49 ` [PATCH 01/12] drm/i915/display: remove leftover struct drm_i915_private forward declarations Jani Nikula
2025-02-25 16:49 ` [PATCH 02/12] drm/i915/debugfs: continue display debugfs struct intel_display conversion Jani Nikula
2025-02-25 16:49 ` [PATCH 03/12] drm/i915/tdf: convert intel_tdf.[ch] to struct intel_display Jani Nikula
2025-02-25 16:49 ` [PATCH 04/12] drm/i915/snps: convert intel_snps_phy.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 05/12] drm/i915/dkl: convert intel_dkl_phy.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 06/12] drm/i915/drrs: convert intel_drrs.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 07/12] drm/i915/display: convert the M/N functions " Jani Nikula
2025-02-25 16:49 ` [PATCH 08/12] drm/i915/dpt: convert intel_dpt.[ch] interfaces " Jani Nikula
2025-02-25 16:49 ` [PATCH 09/12] drm/i915/fbc: convert intel_fbc.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 10/12] drm/i915/rps: convert intel_display_rps.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 11/12] drm/i915/ddi: convert intel_wait_ddi_buf_idle() " Jani Nikula
2025-02-25 16:49 ` [PATCH 12/12] drm/i915/fdi: convert intel_fdi.[ch] " Jani Nikula
2025-02-25 18:52 ` ✓ CI.Patch_applied: success for drm/i915: struct intel_display conversions, part 2434235 Patchwork
2025-02-25 18:52 ` ✗ CI.checkpatch: warning " Patchwork
2025-02-25 18:53 ` ✓ CI.KUnit: success " Patchwork
2025-02-25 19:10 ` ✓ CI.Build: " Patchwork
2025-02-25 19:12 ` ✓ CI.Hooks: " Patchwork
2025-02-25 19:14 ` ✗ CI.checksparse: warning " Patchwork
2025-02-25 19:32 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-26 1:15 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-26 9:12 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2025-02-26 9:12 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-02-26 9:34 ` ✓ i915.CI.BAT: success " Patchwork
2025-02-26 11:44 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-27 10:16 ` [PATCH 00/12] " Kandpal, Suraj
2025-02-27 10:36 ` 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.1740502116.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.