intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] drm/i915/display: hdmi and dp related struct intel_display conversions
@ 2024-08-30 10:15 Jani Nikula
  2024-08-30 10:15 ` [PATCH 01/11] drm/xe/display: use xe && 0 to avoid warnings about unused variables Jani Nikula
                   ` (14 more replies)
  0 siblings, 15 replies; 18+ messages in thread
From: Jani Nikula @ 2024-08-30 10:15 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2024-09-03 14:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-30 10:15 [PATCH 00/11] drm/i915/display: hdmi and dp related struct intel_display conversions Jani Nikula
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 11:20 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: hdmi and dp related struct intel_display conversions Patchwork
2024-08-30 11:20 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-08-30 11:27 ` ✓ Fi.CI.BAT: success " Patchwork
2024-09-01  2:10 ` ✓ Fi.CI.IGT: " Patchwork

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).