AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] DC Patches November 03, 2025
@ 2025-11-05 15:36 Fangzhi Zuo
  2025-11-05 15:36 ` [PATCH 01/13] drm/amd/display: Only initialize LSDMA if it is supported in DMU Fangzhi Zuo
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Fangzhi Zuo @ 2025-11-05 15:36 UTC (permalink / raw)
  To: amd-gfx
  Cc: Harry Wentland, Leo Li, Aurabindo Pillai, Roman Li, Wayne Lin,
	Tom Chung, Fangzhi Zuo, Dan Wheeler, Ray Wu, Ivan Lipski,
	Alex Hung, Fangzhi Zuo

Summary:

* Enable VRR when unsynced with the stream
* Refactor DSC cap calculation for dcn35
* Add debug log for power feature
* Fix fill latency issue
* Do not initialize LSDMA if it is not supported by dmu

Alvin Lee (1):
  drm/amd/display: Only initialize LSDMA if it is supported in DMU

Chuntao Tso (1):
  drm/amd/display: To support Replay frame skip mode

Dillon Varone (1):
  drm/amd/display: Fix index bug for fill latency

Dominik Kaszewski (2):
  drm/amd/display: Change lock descriptor values
  drm/amd/display: Revert in_transfer_func_change to MED

Fangzhi Zuo (1):
  drm/amd/display: Refactor HDCP Status Log Format

George Shen (1):
  drm/amd/display: Add interface to capture power feature status for
    debug logging

Ian Chen (1):
  drm/amd/display: Add new SMART POWER OLED interfaces

Ivan Lipski (1):
  drm/amd/display: Allow VRR params change if unsynced with the stream

Leo Chen (1):
  drm/amd/display: dynamically clock gate before and after prefetch

Mohit Bawa (1):
  drm/amd/display: refactor DSC cap calculation for dcn35

Taimur Hassan (2):
  drm/amd/display: [FW Promotion] Release 0.1.35.0
  drm/amd/display: Promote DC to 3.2.358

 .../amd/display/amdgpu_dm/amdgpu_dm_replay.c  |   2 +-
 .../display/dc/clk_mgr/dcn35/dcn35_clk_mgr.c  |  30 +++
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 242 ++++++++++++------
 drivers/gpu/drm/amd/display/dc/dc.h           |  28 +-
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c  |   3 +
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   6 +
 .../gpu/drm/amd/display/dc/dce/dmub_replay.c  |   7 +-
 .../gpu/drm/amd/display/dc/dce/dmub_replay.h  |   5 +-
 .../src/dml2_core/dml2_core_dcn4_calcs.c      |   2 +-
 .../drm/amd/display/dc/dsc/dcn35/dcn35_dsc.c  |  31 ++-
 .../display/dc/hubbub/dcn31/dcn31_hubbub.c    |   7 +-
 .../display/dc/hubbub/dcn35/dcn35_hubbub.c    |  52 +++-
 .../display/dc/hubbub/dcn35/dcn35_hubbub.h    |   1 +
 .../gpu/drm/amd/display/dc/inc/hw/dchubbub.h  |   2 +
 .../gpu/drm/amd/display/dc/inc/link_service.h |   4 +-
 .../link/protocols/link_edp_panel_control.c   |  17 +-
 .../link/protocols/link_edp_panel_control.h   |   4 +-
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |  10 +-
 .../amd/display/modules/freesync/freesync.c   |  11 +
 .../drm/amd/display/modules/hdcp/hdcp_log.c   | 124 +--------
 .../drm/amd/display/modules/inc/mod_hdcp.h    | 126 ++++-----
 .../amd/display/modules/power/power_helpers.c |  30 +++
 .../amd/display/modules/power/power_helpers.h |   5 +
 23 files changed, 464 insertions(+), 285 deletions(-)

-- 
2.43.0


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

end of thread, other threads:[~2025-11-10 14:10 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-05 15:36 [PATCH 00/13] DC Patches November 03, 2025 Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 01/13] drm/amd/display: Only initialize LSDMA if it is supported in DMU Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 02/13] drm/amd/display: Fix index bug for fill latency Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 03/13] drm/amd/display: Allow VRR params change if unsynced with the stream Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 04/13] drm/amd/display: Add interface to capture power feature status for debug logging Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 05/13] drm/amd/display: Add new SMART POWER OLED interfaces Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 06/13] drm/amd/display: refactor DSC cap calculation for dcn35 Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 07/13] drm/amd/display: Change lock descriptor values Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 08/13] drm/amd/display: To support Replay frame skip mode Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 09/13] drm/amd/display: Revert in_transfer_func_change to MED Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 10/13] drm/amd/display: dynamically clock gate before and after prefetch Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 11/13] drm/amd/display: Refactor HDCP Status Log Format Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 12/13] drm/amd/display: [FW Promotion] Release 0.1.35.0 Fangzhi Zuo
2025-11-05 15:36 ` [PATCH 13/13] drm/amd/display: Promote DC to 3.2.358 Fangzhi Zuo
2025-11-10 14:10 ` [PATCH 00/13] DC Patches November 03, 2025 Wheeler, Daniel

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