AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches November 5, 2024
@ 2024-11-05 20:22 Hamza Mahfooz
  2024-11-05 20:22 ` [PATCH 01/16] drm/amd/display: Refactor HPD IRQ error checking flow Hamza Mahfooz
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Hamza Mahfooz @ 2024-11-05 20:22 UTC (permalink / raw)
  To: amd-gfx
  Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Hamza Mahfooz,
	Aurabindo Pillai, Roman Li, Wayne Lin, Tom Chung, Fangzhi Zuo,
	Zaeem Mohamed, Solomon Chiu, Daniel Wheeler

Cc: Daniel Wheeler <daniel.wheeler@amd.com>

Aric Cyr (1):
  drm/amd/display: 3.2.309

Aurabindo Pillai (1):
  drm/amd/display: Read DP tunneling support only for DPIA endpoints

Austin Zheng (1):
  drm/amd/display: Update SPL Taps Required For Integer Scaling

Dillon Varone (1):
  drm/amd/display: Require minimum VBlank size for stutter optimization

Emily Nie (1):
  drm/amd/display: disabling p-state checks for DCN31 and DCN314

Fudongwang (1):
  drm/amd/display: always blank stream before disable crtc

JinZe Xu (1):
  drm/amd/display: Use region6 size in fw_meta_info

Leon Huang (1):
  drm/amd/display: Refactor HPD IRQ error checking flow

Meenakshikumar Somasundaram (1):
  drm/amd/display: Adding flag for forced MST blocked discovery

Revalla Hari Krishna (1):
  drm/amd/display: Change parameters to fix certain compiler errors

Rodrigo Siqueira (2):
  drm/amd/display: Remove unused code
  drm/amd/display: Adjust VSDB parser for replay feature

Ryan Seto (1):
  drm/amd/display: Handle dml allocation failure to avoid crash

Tom Chung (2):
  drm/amd/display: Change some variable name of psr
  drm/amd/display: Fix Panel Replay not update screen correctly

Yihan Zhu (1):
  drm/amd/display: update pipe selection policy to check head pipe

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 140 +++++++++++-------
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |   2 +-
 .../amd/display/amdgpu_dm/amdgpu_dm_crtc.c    |   5 +-
 .../display/amdgpu_dm/amdgpu_dm_irq_params.h  |   2 +-
 .../gpu/drm/amd/display/dc/core/dc_state.c    |   3 +
 drivers/gpu/drm/amd/display/dc/dc.h           |   2 +-
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   1 +
 .../dc/dcn10/dcn10_hw_sequencer_debug.c       |   2 +-
 drivers/gpu/drm/amd/display/dc/dm_services.h  |   2 +-
 .../dml21/src/dml2_pmo/dml2_pmo_dcn4_fams2.c  |  11 +-
 .../display/dc/dml2/dml2_dc_resource_mgmt.c   |  19 ++-
 .../amd/display/dc/hwss/dcn31/dcn31_hwseq.c   |  13 +-
 .../dc/link/protocols/link_dp_capability.c    |   8 +-
 .../dc/link/protocols/link_dp_irq_handler.c   |  16 +-
 .../dc/resource/dcn10/dcn10_resource.c        |  13 --
 .../dc/resource/dcn31/dcn31_resource.c        |   2 +-
 .../dc/resource/dcn314/dcn314_resource.c      |   2 +-
 drivers/gpu/drm/amd/display/dc/spl/dc_spl.c   |  15 +-
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |  35 ++++-
 .../gpu/drm/amd/display/dmub/src/dmub_srv.c   |   4 +-
 20 files changed, 182 insertions(+), 115 deletions(-)

-- 
2.46.1


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

end of thread, other threads:[~2024-11-07 15:03 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05 20:22 [PATCH 00/16] DC Patches November 5, 2024 Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 01/16] drm/amd/display: Refactor HPD IRQ error checking flow Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 02/16] drm/amd/display: Change parameters to fix certain compiler errors Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 03/16] drm/amd/display: Change some variable name of psr Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 04/16] drm/amd/display: Fix Panel Replay not update screen correctly Hamza Mahfooz
2024-11-06 20:25   ` Mario Limonciello
2024-11-07 14:15     ` Mario Limonciello
2024-11-07 15:03       ` Mario Limonciello
2024-11-05 20:22 ` [PATCH 05/16] drm/amd/display: Adding flag for forced MST blocked discovery Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 06/16] drm/amd/display: Read DP tunneling support only for DPIA endpoints Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 07/16] drm/amd/display: always blank stream before disable crtc Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 08/16] drm/amd/display: disabling p-state checks for DCN31 and DCN314 Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 09/16] drm/amd/display: Update SPL Taps Required For Integer Scaling Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 10/16] drm/amd/display: Use region6 size in fw_meta_info Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 11/16] drm/amd/display: Handle dml allocation failure to avoid crash Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 12/16] drm/amd/display: Require minimum VBlank size for stutter optimization Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 13/16] drm/amd/display: update pipe selection policy to check head pipe Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 14/16] drm/amd/display: Remove unused code Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 15/16] drm/amd/display: Adjust VSDB parser for replay feature Hamza Mahfooz
2024-11-05 20:22 ` [PATCH 16/16] drm/amd/display: 3.2.309 Hamza Mahfooz

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