This DC patchset brings improvements in multiple areas. In summary, we have:
- Cleanup, refactoring of panel replay code to prepare for non-eDP replay - Switch to drm_dbg_macros instead of DRM_DEBUG variants - Add pwait status to DMCUB debug logging - Adjust PHY FSM transition to TX_EN-to-PLL_ON for TMDS on DCN35 - Always update divider settings for DP tunnel - correct clip x assignment in cursor programming - Bump the HDMI clock to 340MHz Cc: Dan Wheeler <[email protected]> Aurabindo Pillai (2): drm/amd/display: switch to drm_dbg_kms() from DRM_DEBUG_KMS drm/amd/display: switch to drm_dbg_ macros instead of DRM_DEBUG_ variants Ausef Yousof (1): drm/amd/display: correct clip x assignment in cursor programming Cruise Hung (1): drm/amd/display: Always update divider settings for DP tunnel Derek Lai (1): drm/amd/display: revert "write default Vesa Aux backlight control in dmub" Dmytro Laktyushkin (1): drm/amd/display: only power down dig on phy endpoints Jack Chang (2): drm/amd/display: DPCD for Selective Update drm/amd/display: PR error HPD_IRQ handling Joshua Aberback (1): drm/amd/display: Re-implement minimal transition deferral Leo Chen (1): drm/amd/display: Add global fgcg function prototype to DCCG Mario Limonciello (1): drm/amd/display: Bump the HDMI clock to 340MHz Mario Limonciello (AMD) (1): drm/amd/display: Show link name in PSR status message Nicholas Kazlauskas (2): drm/amd/display: Adjust PHY FSM transition to TX_EN-to-PLL_ON for TMDS on DCN35 drm/amd/display: Add pwait status to DMCUB debug logging Peichen Huang (3): drm/amd/display: move panel replay out from edp drm/amd/display: init code for external panel replay drm/amd/display: Add replay_events in replay settings Ray Wu (1): drm/amd/display: disable replay when crc source is enabled Robin Chen (1): drm/amd/display: Remove unused DMUB replay commands Taimur Hassan (2): drm/amd/display: [FW Promotion] Release 0.1.42.0 drm/amd/display: Promote DC to 3.2.365 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 58 +-- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 1 + .../drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c | 25 +- .../amd/display/amdgpu_dm/amdgpu_dm_replay.c | 9 +- drivers/gpu/drm/amd/display/dc/core/dc.c | 49 ++- .../drm/amd/display/dc/core/dc_link_exports.c | 9 +- drivers/gpu/drm/amd/display/dc/dc.h | 2 +- drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c | 1 + drivers/gpu/drm/amd/display/dc/dc_dp_types.h | 34 +- .../gpu/drm/amd/display/dc/dc_hdmi_types.h | 2 +- drivers/gpu/drm/amd/display/dc/dc_hw_types.h | 6 + drivers/gpu/drm/amd/display/dc/dc_types.h | 3 +- .../drm/amd/display/dc/dce/dmub_hw_lock_mgr.c | 2 +- .../gpu/drm/amd/display/dc/dce/dmub_replay.c | 13 - .../amd/display/dc/hwss/dcn10/dcn10_hwseq.c | 6 +- .../amd/display/dc/hwss/dcn35/dcn35_hwseq.c | 52 +++ .../amd/display/dc/hwss/dcn35/dcn35_hwseq.h | 3 + .../amd/display/dc/hwss/dcn35/dcn35_init.c | 2 +- .../amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 2 + drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h | 1 + .../gpu/drm/amd/display/dc/inc/link_service.h | 12 +- drivers/gpu/drm/amd/display/dc/link/Makefile | 2 +- .../display/dc/link/accessories/link_dp_cts.c | 7 +- .../drm/amd/display/dc/link/link_detection.c | 6 +- .../gpu/drm/amd/display/dc/link/link_dpms.c | 8 +- .../drm/amd/display/dc/link/link_factory.c | 19 +- .../dc/link/protocols/link_dp_capability.c | 49 ++- .../dc/link/protocols/link_dp_irq_handler.c | 43 +++ .../dc/link/protocols/link_dp_panel_replay.c | 343 ++++++++++++++++++ .../dc/link/protocols/link_dp_panel_replay.h | 38 ++ .../link/protocols/link_edp_panel_control.c | 297 +-------------- .../link/protocols/link_edp_panel_control.h | 10 +- .../dc/resource/dcn31/dcn31_resource.c | 11 +- .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 54 +-- .../gpu/drm/amd/display/include/dpcd_defs.h | 30 ++ 35 files changed, 763 insertions(+), 446 deletions(-) create mode 100644 drivers/gpu/drm/amd/display/dc/link/protocols/link_dp_panel_replay.c create mode 100644 drivers/gpu/drm/amd/display/dc/link/protocols/link_dp_panel_replay.h -- 2.52.0
