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
Subject: [PATCH 00/11] drm/i915/display: hdmi and dp related struct intel_display conversions
Date: Fri, 30 Aug 2024 13:15:37 +0300	[thread overview]
Message-ID: <cover.1725012870.git.jani.nikula@intel.com> (raw)

More of the same, this time with the goal of hiding dp_to_i915().

Jani Nikula (11):
  drm/xe/display: use xe && 0 to avoid warnings about unused variables
  drm/i915/hdmi: convert to struct intel_display
  drm/i915/dp: convert g4x_dp.[ch] to struct intel_display
  drm/i915/dp: convert intel_dp_tunnel.[ch] to struct intel_display
  drm/i915/dp: convert intel_dp_aux.[ch] to struct intel_display
  drm/i915/dp: convert intel_dp_link_training.[ch] to struct
    intel_display
  drm/i915/pps: pass intel_dp to pps_name()
  drm/i915/pps: convert intel_pps.[ch] to struct intel_display
  drm/i915/psr: convert intel_psr.[ch] to struct intel_display
  drm/i915/ddi: stop using dp_to_i915()
  drm/i915/dp: hide dp_to_i915() inside intel_dp.c

 drivers/gpu/drm/i915/display/g4x_dp.c         | 152 ++--
 drivers/gpu/drm/i915/display/intel_ddi.c      |  14 +-
 drivers/gpu/drm/i915/display/intel_display.c  |   2 +-
 .../drm/i915/display/intel_display_debugfs.c  |   2 +-
 .../drm/i915/display/intel_display_driver.c   |   8 +-
 .../gpu/drm/i915/display/intel_display_irq.c  |  13 +-
 .../i915/display/intel_display_power_well.c   |  15 +-
 .../drm/i915/display/intel_display_reset.c    |   7 +-
 .../drm/i915/display/intel_display_types.h    |   2 -
 drivers/gpu/drm/i915/display/intel_dp.c       |   2 +
 drivers/gpu/drm/i915/display/intel_dp_aux.c   | 114 +--
 drivers/gpu/drm/i915/display/intel_dp_aux.h   |   4 +-
 .../drm/i915/display/intel_dp_link_training.c | 105 +--
 .../gpu/drm/i915/display/intel_dp_tunnel.c    |  77 +-
 .../gpu/drm/i915/display/intel_dp_tunnel.h    |  11 +-
 drivers/gpu/drm/i915/display/intel_dpll.c     |   9 +-
 .../gpu/drm/i915/display/intel_frontbuffer.c  |   7 +-
 drivers/gpu/drm/i915/display/intel_hdmi.c     | 500 ++++++-----
 drivers/gpu/drm/i915/display/intel_hdmi.h     |   1 -
 .../gpu/drm/i915/display/intel_hotplug_irq.c  |   6 +-
 .../gpu/drm/i915/display/intel_pch_display.c  |   3 +-
 drivers/gpu/drm/i915/display/intel_pps.c      | 563 ++++++------
 drivers/gpu/drm/i915/display/intel_pps.h      |  10 +-
 drivers/gpu/drm/i915/display/intel_psr.c      | 848 +++++++++---------
 drivers/gpu/drm/i915/display/intel_psr.h      |   8 +-
 drivers/gpu/drm/i915/i915_driver.c            |   2 +-
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h |   6 +-
 27 files changed, 1314 insertions(+), 1177 deletions(-)

-- 
2.39.2


             reply	other threads:[~2024-08-30 10:15 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-30 10:15 Jani Nikula [this message]
2024-08-30 10:15 ` [PATCH 01/11] drm/xe/display: use xe && 0 to avoid warnings about unused variables Jani Nikula
2024-08-30 10:15 ` [PATCH 02/11] drm/i915/hdmi: convert to struct intel_display Jani Nikula
2024-08-30 10:15 ` [PATCH 03/11] drm/i915/dp: convert g4x_dp.[ch] " Jani Nikula
2024-08-30 10:15 ` [PATCH 04/11] drm/i915/dp: convert intel_dp_tunnel.[ch] " Jani Nikula
2024-08-30 10:15 ` [PATCH 05/11] drm/i915/dp: convert intel_dp_aux.[ch] " Jani Nikula
2024-08-30 10:15 ` [PATCH 06/11] drm/i915/dp: convert intel_dp_link_training.[ch] " Jani Nikula
2024-08-30 10:15 ` [PATCH 07/11] drm/i915/pps: pass intel_dp to pps_name() Jani Nikula
2024-09-03 12:33   ` Ville Syrjälä
2024-09-03 14:32     ` Jani Nikula
2024-08-30 10:15 ` [PATCH 08/11] drm/i915/pps: convert intel_pps.[ch] to struct intel_display Jani Nikula
2024-08-30 10:15 ` [PATCH 09/11] drm/i915/psr: convert intel_psr.[ch] " Jani Nikula
2024-08-30 10:15 ` [PATCH 10/11] drm/i915/ddi: stop using dp_to_i915() Jani Nikula
2024-08-30 10:15 ` [PATCH 11/11] drm/i915/dp: hide dp_to_i915() inside intel_dp.c Jani Nikula
2024-08-30 10:24 ` ✓ CI.Patch_applied: success for drm/i915/display: hdmi and dp related struct intel_display conversions Patchwork
2024-08-30 10:25 ` ✗ CI.checkpatch: warning " Patchwork
2024-08-30 10:26 ` ✓ CI.KUnit: success " Patchwork
2024-08-30 10:38 ` ✓ CI.Build: " Patchwork
2024-08-30 10:40 ` ✓ CI.Hooks: " Patchwork
2024-08-30 10:42 ` ✗ CI.checksparse: warning " Patchwork
2024-08-30 11:07 ` ✓ CI.BAT: success " Patchwork
2024-08-30 11:20 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-08-30 11:20 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-08-30 11:27 ` ✓ Fi.CI.BAT: success " Patchwork
2024-08-30 22:38 ` ✗ CI.FULL: failure " Patchwork
2024-09-01  2:10 ` ✓ Fi.CI.IGT: success " 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.1725012870.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.