Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] drm/i915: Hoist some stuff out from intel_display.c
@ 2025-02-13 15:02 Ville Syrjala
  2025-02-13 15:02 ` [PATCH 01/12] drm/i915: Move modeset_retry stuff into intel_connector.c Ville Syrjala
                   ` (21 more replies)
  0 siblings, 22 replies; 36+ messages in thread
From: Ville Syrjala @ 2025-02-13 15:02 UTC (permalink / raw)
  To: intel-gfx

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

intel_display.c still has a bunch of random stuff in it.
Move some of it into a slightly better place.

Ville Syrjälä (12):
  drm/i915: Move modeset_retry stuff into intel_connector.c
  drm/i915: Always initialize connector->modeset_retry_work
  drm/i915: Extract intel_connector_cancel_modeset_retry_work()
  drm/i915: Extract intel_hdcp_cancel_works()
  drm/i915: Move intel_hpd_poll_fini() into intel_hotplug.c
  drm/i915: Move intel_plane_destroy() into intel_atomic_plane.c
  drm/i915: Relocate vlv_wait_port_ready()
  drm/i915: Simplify vlv_wait_port_ready() arguments
  drm/i915: Relocate intel_plane_uses_fence()
  drm/i915: Relocate intel_{rotation,remapped}_info_size()
  drm/i915: Relocate some other plane fb related stuff into intel_fb.c
  drm/i915: s/state/plane_state/

 drivers/gpu/drm/i915/display/g4x_dp.c         |   2 +-
 drivers/gpu/drm/i915/display/g4x_hdmi.c       |   6 +-
 .../gpu/drm/i915/display/intel_atomic_plane.c |  13 ++
 .../gpu/drm/i915/display/intel_atomic_plane.h |   1 +
 .../gpu/drm/i915/display/intel_connector.c    |  42 +++++
 .../gpu/drm/i915/display/intel_connector.h    |   2 +
 drivers/gpu/drm/i915/display/intel_display.c  | 143 ------------------
 drivers/gpu/drm/i915/display/intel_display.h  |  17 ---
 drivers/gpu/drm/i915/display/intel_dp.c       |  45 +-----
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |   2 -
 drivers/gpu/drm/i915/display/intel_dpio_phy.c |  34 +++++
 drivers/gpu/drm/i915/display/intel_dpio_phy.h |   6 +
 drivers/gpu/drm/i915/display/intel_fb.c       |  96 ++++++++++--
 drivers/gpu/drm/i915/display/intel_fb.h       |  17 ++-
 drivers/gpu/drm/i915/display/intel_hdcp.c     |   9 ++
 drivers/gpu/drm/i915/display/intel_hdcp.h     |   1 +
 drivers/gpu/drm/i915/display/intel_hotplug.c  |  16 ++
 drivers/gpu/drm/i915/display/intel_hotplug.h  |   1 +
 drivers/gpu/drm/i915/i915_vma.c               |   2 +-
 19 files changed, 232 insertions(+), 223 deletions(-)

-- 
2.45.3


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

end of thread, other threads:[~2025-02-15  6:56 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-13 15:02 [PATCH 00/12] drm/i915: Hoist some stuff out from intel_display.c Ville Syrjala
2025-02-13 15:02 ` [PATCH 01/12] drm/i915: Move modeset_retry stuff into intel_connector.c Ville Syrjala
2025-02-13 19:11   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 02/12] drm/i915: Always initialize connector->modeset_retry_work Ville Syrjala
2025-02-13 19:11   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 03/12] drm/i915: Extract intel_connector_cancel_modeset_retry_work() Ville Syrjala
2025-02-13 19:12   ` Jani Nikula
2025-02-13 19:13   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 04/12] drm/i915: Extract intel_hdcp_cancel_works() Ville Syrjala
2025-02-13 19:14   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 05/12] drm/i915: Move intel_hpd_poll_fini() into intel_hotplug.c Ville Syrjala
2025-02-13 19:15   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 06/12] drm/i915: Move intel_plane_destroy() into intel_atomic_plane.c Ville Syrjala
2025-02-13 19:17   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 07/12] drm/i915: Relocate vlv_wait_port_ready() Ville Syrjala
2025-02-13 19:18   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 08/12] drm/i915: Simplify vlv_wait_port_ready() arguments Ville Syrjala
2025-02-13 19:19   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 09/12] drm/i915: Relocate intel_plane_uses_fence() Ville Syrjala
2025-02-13 19:20   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 10/12] drm/i915: Relocate intel_{rotation, remapped}_info_size() Ville Syrjala
2025-02-13 19:21   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 11/12] drm/i915: Relocate some other plane fb related stuff into intel_fb.c Ville Syrjala
2025-02-13 19:22   ` Jani Nikula
2025-02-13 15:02 ` [PATCH 12/12] drm/i915: s/state/plane_state/ Ville Syrjala
2025-02-13 19:23   ` Jani Nikula
2025-02-13 15:25 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Hoist some stuff out from intel_display.c Patchwork
2025-02-13 15:25 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-02-13 15:44 ` ✗ i915.CI.BAT: failure " Patchwork
2025-02-14 18:22 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Hoist some stuff out from intel_display.c (rev2) Patchwork
2025-02-14 18:22 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-02-14 18:39 ` ✗ i915.CI.BAT: failure " Patchwork
2025-02-15  3:02 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Hoist some stuff out from intel_display.c (rev3) Patchwork
2025-02-15  3:02 ` ✗ Fi.CI.SPARSE: " Patchwork
2025-02-15  3:18 ` ✓ i915.CI.BAT: success " Patchwork
2025-02-15  6:56 ` ✗ i915.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox