From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: jani.nikula@intel.com,
"Michał Grzelak" <michal.grzelak@intel.com>,
ville.syrjala@linux.intel.com
Subject: [RESEND 0/4] drm/i915/display: start switching to display specific reg types
Date: Tue, 5 May 2026 12:16:44 +0300 [thread overview]
Message-ID: <cover.1777972548.git.jani.nikula@intel.com> (raw)
Jani Nikula (4):
drm/i915/display: add typedef for intel_reg_t and use it
drm/i915/display: add struct intel_irq_regs and use it
drm/i915/display: add struct intel_error_regs and use it
drm/i915/display: define and use intel_reg_{offset,equal,valid}()
helpers
drivers/gpu/drm/i915/display/g4x_dp.c | 4 +-
drivers/gpu/drm/i915/display/g4x_dp.h | 10 ++--
drivers/gpu/drm/i915/display/g4x_hdmi.c | 2 +-
drivers/gpu/drm/i915/display/g4x_hdmi.h | 6 +--
drivers/gpu/drm/i915/display/icl_dsi.c | 2 +-
drivers/gpu/drm/i915/display/intel_audio.c | 2 +-
drivers/gpu/drm/i915/display/intel_color.c | 4 +-
.../gpu/drm/i915/display/intel_combo_phy.c | 2 +-
drivers/gpu/drm/i915/display/intel_crt.c | 6 +--
drivers/gpu/drm/i915/display/intel_crt.h | 6 +--
drivers/gpu/drm/i915/display/intel_cx0_phy.c | 2 +-
drivers/gpu/drm/i915/display/intel_ddi.c | 26 +++++-----
drivers/gpu/drm/i915/display/intel_ddi.h | 6 +--
drivers/gpu/drm/i915/display/intel_de.c | 30 +++++------
drivers/gpu/drm/i915/display/intel_de.h | 48 +++++++++---------
drivers/gpu/drm/i915/display/intel_display.c | 8 +--
drivers/gpu/drm/i915/display/intel_display.h | 10 ++--
.../drm/i915/display/intel_display_device.c | 2 +-
.../gpu/drm/i915/display/intel_display_irq.c | 20 ++++----
.../drm/i915/display/intel_display_power.c | 4 +-
.../i915/display/intel_display_power_well.c | 8 +--
.../drm/i915/display/intel_display_reg_defs.h | 35 +++++++++++++
.../gpu/drm/i915/display/intel_display_regs.h | 50 +++++++++----------
.../drm/i915/display/intel_display_types.h | 12 ++---
drivers/gpu/drm/i915/display/intel_dmc.c | 50 +++++++++----------
drivers/gpu/drm/i915/display/intel_dmc_wl.c | 14 +++---
drivers/gpu/drm/i915/display/intel_dmc_wl.h | 6 +--
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
drivers/gpu/drm/i915/display/intel_dp_aux.c | 28 +++++------
drivers/gpu/drm/i915/display/intel_dpio_phy.c | 8 +--
drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 32 ++++++------
drivers/gpu/drm/i915/display/intel_dsb.c | 22 ++++----
drivers/gpu/drm/i915/display/intel_dsb.h | 10 ++--
drivers/gpu/drm/i915/display/intel_dvo_dev.h | 2 +-
drivers/gpu/drm/i915/display/intel_fdi.c | 12 ++---
.../drm/i915/display/intel_fifo_underrun.c | 4 +-
drivers/gpu/drm/i915/display/intel_gmbus.c | 4 +-
drivers/gpu/drm/i915/display/intel_hdcp.c | 2 +-
drivers/gpu/drm/i915/display/intel_hdmi.c | 28 +++++------
drivers/gpu/drm/i915/display/intel_lt_phy.c | 6 +--
drivers/gpu/drm/i915/display/intel_lvds.c | 6 +--
drivers/gpu/drm/i915/display/intel_lvds.h | 6 +--
drivers/gpu/drm/i915/display/intel_mchbar.c | 14 +++---
drivers/gpu/drm/i915/display/intel_mchbar.h | 8 +--
.../gpu/drm/i915/display/intel_pch_display.c | 14 +++---
drivers/gpu/drm/i915/display/intel_pps.c | 38 +++++++-------
drivers/gpu/drm/i915/display/intel_psr.c | 36 ++++++-------
drivers/gpu/drm/i915/display/intel_sdvo.c | 6 +--
drivers/gpu/drm/i915/display/intel_sdvo.h | 10 ++--
drivers/gpu/drm/i915/display/intel_snps_phy.c | 4 +-
drivers/gpu/drm/i915/display/intel_tc.c | 10 ++--
drivers/gpu/drm/i915/display/intel_vblank.c | 2 +-
drivers/gpu/drm/i915/display/intel_vdsc.c | 10 ++--
drivers/gpu/drm/i915/display/intel_vga.c | 4 +-
drivers/gpu/drm/i915/display/vlv_dsi.c | 16 +++---
55 files changed, 377 insertions(+), 342 deletions(-)
--
2.47.3
next reply other threads:[~2026-05-05 9:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-05 9:16 Jani Nikula [this message]
2026-05-05 9:16 ` [RESEND 1/4] drm/i915/display: add typedef for intel_reg_t and use it Jani Nikula
2026-05-05 9:16 ` [RESEND 2/4] drm/i915/display: add struct intel_irq_regs " Jani Nikula
2026-05-05 9:16 ` [RESEND 3/4] drm/i915/display: add struct intel_error_regs " Jani Nikula
2026-05-05 9:16 ` [RESEND 4/4] drm/i915/display: define and use intel_reg_{offset, equal, valid}() helpers Jani Nikula
2026-05-05 9:36 ` ✗ CI.checkpatch: warning for drm/i915/display: start switching to display specific reg types (rev2) Patchwork
2026-05-05 9:37 ` ✓ CI.KUnit: success " Patchwork
2026-05-05 11:00 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-05 13:13 ` ✓ i915.CI.BAT: " Patchwork
2026-05-05 19:41 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-05 21:11 ` ✗ i915.CI.Full: " Patchwork
2026-05-08 11:29 ` [RESEND 0/4] drm/i915/display: start switching to display specific reg types Jani Nikula
2026-05-13 12:31 ` Ville Syrjälä
2026-05-13 13:50 ` 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.1777972548.git.jani.nikula@intel.com \
--to=jani.nikula@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=michal.grzelak@intel.com \
--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.