All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] drm/i915: MST and DDI cleanups and refactoring
@ 2024-11-18 14:48 Jani Nikula
  2024-11-18 14:48 ` [PATCH 01/11] drm/i915/mst: pass intel_dp around in mst stream helpers Jani Nikula
                   ` (34 more replies)
  0 siblings, 35 replies; 43+ messages in thread
From: Jani Nikula @ 2024-11-18 14:48 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

I've accumulated a bunch of cleanups while preparing for 128b/132b SST
operation. Let's get them merged first.

BR,
Jani.

Jani Nikula (11):
  drm/i915/mst: pass intel_dp around in mst stream helpers
  drm/i915/mst: unify MST connector function naming to mst_connector_*
  drm/i915/mst: simplify mst_connector_get_hw_state()
  drm/i915/mst: unify MST topology callback naming to mst_topology_*
  drm/i915/ddi: use intel_ddi_* naming convention for encoder
    enable/disable
  drm/i915/reg: convert DP_TP_CTL/DP_TP_STATUS to REG_BIT() and friends
  drm/i915/dp: refactor clear/wait for act sent
  drm/i915/ddi: rename temp to ddi_func_ctl in intel_ddi_read_func_ctl()
  drm/i915/ddi: split up intel_ddi_read_func_ctl() by output type
  drm/i915/ddi: refactor intel_ddi_connector_get_hw_state()
  drm/i915/ddi: simplify intel_ddi_get_encoder_pipes() slightly

 drivers/gpu/drm/i915/display/intel_ddi.c    | 319 +++++++++++---------
 drivers/gpu/drm/i915/display/intel_ddi.h    |   8 +-
 drivers/gpu/drm/i915/display/intel_dp_mst.c | 161 +++++-----
 drivers/gpu/drm/i915/i915_reg.h             |  57 ++--
 4 files changed, 288 insertions(+), 257 deletions(-)

-- 
2.39.5


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

end of thread, other threads:[~2024-11-20 12:10 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-18 14:48 [PATCH 00/11] drm/i915: MST and DDI cleanups and refactoring Jani Nikula
2024-11-18 14:48 ` [PATCH 01/11] drm/i915/mst: pass intel_dp around in mst stream helpers Jani Nikula
2024-11-18 14:48 ` [PATCH 02/11] drm/i915/mst: unify MST connector function naming to mst_connector_* Jani Nikula
2024-11-18 14:48 ` [PATCH 03/11] drm/i915/mst: simplify mst_connector_get_hw_state() Jani Nikula
2024-11-18 14:48 ` [PATCH 04/11] drm/i915/mst: unify MST topology callback naming to mst_topology_* Jani Nikula
2024-11-18 14:49 ` [PATCH 05/11] drm/i915/ddi: use intel_ddi_* naming convention for encoder enable/disable Jani Nikula
2024-11-18 14:49 ` [PATCH 06/11] drm/i915/reg: convert DP_TP_CTL/DP_TP_STATUS to REG_BIT() and friends Jani Nikula
2024-11-19 11:47   ` Imre Deak
2024-11-19 13:09     ` Jani Nikula
2024-11-19 15:29     ` Jani Nikula
2024-11-19 15:27   ` [PATCH v2] " Jani Nikula
2024-11-18 14:49 ` [PATCH 07/11] drm/i915/dp: refactor clear/wait for act sent Jani Nikula
2024-11-18 14:49 ` [PATCH 08/11] drm/i915/ddi: rename temp to ddi_func_ctl in intel_ddi_read_func_ctl() Jani Nikula
2024-11-18 14:49 ` [PATCH 09/11] drm/i915/ddi: split up intel_ddi_read_func_ctl() by output type Jani Nikula
2024-11-18 14:49 ` [PATCH 10/11] drm/i915/ddi: refactor intel_ddi_connector_get_hw_state() Jani Nikula
2024-11-18 14:49 ` [PATCH 11/11] drm/i915/ddi: simplify intel_ddi_get_encoder_pipes() slightly Jani Nikula
2024-11-19 11:40   ` Imre Deak
2024-11-19 13:11     ` Jani Nikula
2024-11-20 11:35     ` Jani Nikula
2024-11-18 15:08 ` ✓ CI.Patch_applied: success for drm/i915: MST and DDI cleanups and refactoring Patchwork
2024-11-18 15:09 ` ✓ CI.checkpatch: " Patchwork
2024-11-18 15:10 ` ✓ CI.KUnit: " Patchwork
2024-11-18 15:28 ` ✓ CI.Build: " Patchwork
2024-11-18 15:30 ` ✓ CI.Hooks: " Patchwork
2024-11-18 15:32 ` ✗ CI.checksparse: warning " Patchwork
2024-11-18 15:52 ` ✓ CI.BAT: success " Patchwork
2024-11-18 16:40 ` ✗ Fi.CI.SPARSE: warning " Patchwork
2024-11-18 17:05 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-18 20:17 ` ✗ CI.FULL: " Patchwork
2024-11-19 12:35 ` ✗ Fi.CI.SPARSE: warning for drm/i915: MST and DDI cleanups and refactoring (rev2) Patchwork
2024-11-19 13:00 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-19 15:37 ` ✓ CI.Patch_applied: success " Patchwork
2024-11-19 15:38 ` ✗ CI.checkpatch: warning " Patchwork
2024-11-19 15:39 ` ✓ CI.KUnit: success " Patchwork
2024-11-19 15:55 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: MST and DDI cleanups and refactoring (rev3) Patchwork
2024-11-19 15:55 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-11-19 15:57 ` ✓ CI.Build: success for drm/i915: MST and DDI cleanups and refactoring (rev2) Patchwork
2024-11-19 15:59 ` ✓ CI.Hooks: " Patchwork
2024-11-19 16:01 ` ✗ CI.checksparse: warning " Patchwork
2024-11-19 16:16 ` ✓ Fi.CI.BAT: success for drm/i915: MST and DDI cleanups and refactoring (rev3) Patchwork
2024-11-19 16:20 ` ✗ CI.BAT: failure for drm/i915: MST and DDI cleanups and refactoring (rev2) Patchwork
2024-11-20  1:55 ` ✗ CI.FULL: " Patchwork
2024-11-20 12:10 ` [PATCH 00/11] drm/i915: MST and DDI cleanups and refactoring Imre Deak

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.