All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/27] DC Patches Feb. 25, 2025
@ 2025-02-25  6:35 Wayne Lin
  2025-02-25  6:35 ` [PATCH 01/27] drm/amd/display: Request HW cursor on DCN3.2 with SubVP Wayne Lin
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: Wayne Lin @ 2025-02-25  6:35 UTC (permalink / raw)
  To: amd-gfx
  Cc: Harry Wentland, Leo Li, Aurabindo Pillai, Roman Li, Wayne Lin,
	Tom Chung, Fangzhi Zuo, Zaeem Mohamed, Solomon Chiu,
	Daniel Wheeler, Alex Hung, Wayne Lin

This DC patchset brings improvements in multiple areas. In summary, we highlight:
- Various cleanups to amdgpu dm
- Add DP tunneling IRQ handler
- Fix display corruption for dcn35
- Fix dmcub reset problem
- Adjust BW determination for PCON
- DIO encoder refactor
- Fix performance with SubVP under gaming

---

Alex Hung (1):
  drm/amd/display: Check NULL connector before it is used

Aric Cyr (1):
  drm/amd/display: Request HW cursor on DCN3.2 with SubVP

Ausef Yousof (1):
  drm/amd/display: wait for outstanding hw updates

Cruise Hung (1):
  drm/amd/display: Add tunneling IRQ handler

Dillon Varone (2):
  drm/amd/display: Fix p-state type when p-state is unsupported
  drm/amd/display: Fix DMUB reset sequence for DCN401

George Shen (2):
  drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination
  drm/amd/display: Remove unused struct definition

Hansen Dsouza (1):
  drm/amd/display: read mso dpcd caps

Leo Zeng (1):
  drm/amd/display: Added visual confirm for DCC

Mario Limonciello (13):
  drm/amd/display: Change amdgpu_dm_irq_suspend() to void
  drm/amd/display: Drop `ret` variable from dm_suspend()
  drm/amd/display: Catch failures for amdgpu_dm_commit_zero_streams()
  drm/amd/display: Use _free() macro for amdgpu_dm_commit_zero_streams()
  drm/amd/display: Use drm_err() instead of DRM_ERROR in dm_resume()
  drm/amd/display: Use scoped guard for dm_resume()
  drm/amd/display: Change amdgpu_dm_irq_resume_*() to use drm_dbg()
  drm/amd/display: Change amdgpu_dm_irq_resume_*() to void
  drm/amd/display: Use _free(kfree) for dm_gpureset_commit_state()
  drm/amd/display: Use scoped guard for
    amdgpu_dm_update_connector_after_detect()
  drm/amd/display: Use _free() macro for
    amdgpu_dm_update_connector_after_detect()
  drm/amd/display: Use scoped guards for handle_hpd_irq_helper()
  drm/amd/display: Use drm_err() for handle_hpd_irq_helper()

Nicholas Kazlauskas (2):
  drm/amd/display: Revert "Increase halt timeout for DMCUB to 1s"
  drm/amd/display: Ensure DMCUB idle before reset on DCN31/DCN35

Peichen Huang (1):
  drm/amd/display: misc for dio encoder refactor

Taimur Hassan (1):
  drm/amd/display: Promote DAL to 3.2.323

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 89 ++++++++-----------
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c | 14 ++-
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_irq.h |  6 +-
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |  3 +
 .../display/dc/clk_mgr/dcn35/dcn35_clk_mgr.c  | 20 +++--
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 14 +--
 .../drm/amd/display/dc/core/dc_hw_sequencer.c | 49 ++++++++++
 .../gpu/drm/amd/display/dc/core/dc_resource.c |  5 +-
 .../gpu/drm/amd/display/dc/core/dc_stream.c   |  3 +-
 drivers/gpu/drm/amd/display/dc/dc.h           |  3 +-
 drivers/gpu/drm/amd/display/dc/dc_dp_types.h  | 50 ++++++++---
 .../dc/dio/dcn35/dcn35_dio_link_encoder.c     | 50 ++++++++++-
 .../dc/dio/dcn35/dcn35_dio_link_encoder.h     | 23 +++++
 .../drm/amd/display/dc/dml/dcn32/dcn32_fpu.c  |  1 +
 .../amd/display/dc/hwss/dcn31/dcn31_hwseq.c   |  3 +-
 .../amd/display/dc/hwss/dcn35/dcn35_init.c    |  1 +
 .../drm/amd/display/dc/hwss/hw_sequencer.h    |  5 ++
 .../amd/display/dc/link/hwss/link_hwss_dio.c  |  5 +-
 .../amd/display/dc/link/hwss/link_hwss_dpia.c | 40 ++++-----
 .../drm/amd/display/dc/link/link_detection.c  |  5 +-
 .../dc/link/protocols/link_dp_capability.c    | 41 +++++----
 .../dc/link/protocols/link_dp_dpia_bw.c       | 26 ++++++
 .../dc/link/protocols/link_dp_dpia_bw.h       | 10 +++
 .../dc/link/protocols/link_dp_irq_handler.c   | 43 ++++++++-
 .../dc/link/protocols/link_dp_training.c      |  3 +-
 .../dc/link/protocols/link_dp_training_dpia.c | 13 +--
 .../amd/display/dc/optc/dcn35/dcn35_optc.c    |  3 +
 .../gpu/drm/amd/display/dmub/src/dmub_dcn31.c |  4 +-
 .../gpu/drm/amd/display/dmub/src/dmub_dcn35.c |  4 +-
 .../drm/amd/display/dmub/src/dmub_dcn401.c    | 47 ++++++----
 .../drm/amd/display/dmub/src/dmub_dcn401.h    |  3 +-
 31 files changed, 424 insertions(+), 162 deletions(-)

-- 
2.37.3


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

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

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-25  6:35 [PATCH 00/27] DC Patches Feb. 25, 2025 Wayne Lin
2025-02-25  6:35 ` [PATCH 01/27] drm/amd/display: Request HW cursor on DCN3.2 with SubVP Wayne Lin
2025-02-25  6:35 ` [PATCH 02/27] drm/amd/display: Fix p-state type when p-state is unsupported Wayne Lin
2025-02-25  6:35 ` [PATCH 03/27] drm/amd/display: Fix DMUB reset sequence for DCN401 Wayne Lin
2025-02-25  6:35 ` [PATCH 04/27] drm/amd/display: read mso dpcd caps Wayne Lin
2025-02-25  6:35 ` [PATCH 05/27] drm/amd/display: misc for dio encoder refactor Wayne Lin
2025-02-25  6:35 ` [PATCH 06/27] drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination Wayne Lin
2025-02-25  6:35 ` [PATCH 07/27] drm/amd/display: Remove unused struct definition Wayne Lin
2025-02-25  6:35 ` [PATCH 08/27] drm/amd/display: Check NULL connector before it is used Wayne Lin
2025-02-25  6:35 ` [PATCH 09/27] drm/amd/display: Revert "Increase halt timeout for DMCUB to 1s" Wayne Lin
2025-02-25  6:35 ` [PATCH 10/27] drm/amd/display: Ensure DMCUB idle before reset on DCN31/DCN35 Wayne Lin
2025-02-25  6:35 ` [PATCH 11/27] drm/amd/display: Added visual confirm for DCC Wayne Lin
2025-02-25  6:35 ` [PATCH 12/27] drm/amd/display: wait for outstanding hw updates Wayne Lin
2025-02-25  6:35 ` [PATCH 13/27] drm/amd/display: Add tunneling IRQ handler Wayne Lin
2025-02-25  6:35 ` [PATCH 14/27] drm/amd/display: Change amdgpu_dm_irq_suspend() to void Wayne Lin
2025-02-25  6:35 ` [PATCH 15/27] drm/amd/display: Drop `ret` variable from dm_suspend() Wayne Lin
2025-02-25  6:35 ` [PATCH 16/27] drm/amd/display: Catch failures for amdgpu_dm_commit_zero_streams() Wayne Lin
2025-02-25  6:36 ` [PATCH 17/27] drm/amd/display: Use _free() macro " Wayne Lin
2025-02-25  6:36 ` [PATCH 18/27] drm/amd/display: Use drm_err() instead of DRM_ERROR in dm_resume() Wayne Lin
2025-02-25  6:36 ` [PATCH 19/27] drm/amd/display: Use scoped guard for dm_resume() Wayne Lin
2025-02-25  6:36 ` [PATCH 20/27] drm/amd/display: Change amdgpu_dm_irq_resume_*() to use drm_dbg() Wayne Lin
2025-02-25  6:36 ` [PATCH 21/27] drm/amd/display: Change amdgpu_dm_irq_resume_*() to void Wayne Lin
2025-02-25  6:36 ` [PATCH 22/27] drm/amd/display: Use _free(kfree) for dm_gpureset_commit_state() Wayne Lin
2025-02-25  6:36 ` [PATCH 23/27] drm/amd/display: Use scoped guard for amdgpu_dm_update_connector_after_detect() Wayne Lin
2025-02-25  6:36 ` [PATCH 24/27] drm/amd/display: Use _free() macro " Wayne Lin
2025-02-25  6:36 ` [PATCH 25/27] drm/amd/display: Use scoped guards for handle_hpd_irq_helper() Wayne Lin
2025-02-25  6:36 ` [PATCH 26/27] drm/amd/display: Use drm_err() " Wayne Lin
2025-02-25  6:36 ` [PATCH 27/27] drm/amd/display: Promote DAL to 3.2.323 Wayne Lin

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.