This DC patchset brings improvements in multiple areas. In summary, we highlight: * Properly map audio to engine on NV14 * Improvements on DMCUB and DML * Fixes on MST and DP Alvin Lee (1): drm/amd/display: Revert to old formula in set_vtg_params Aric Cyr (3): drm/amd/display: 3.2.78 drm/amd/display: 3.2.79 drm/amd/display: 3.2.80 Charlene Liu (2): drm/amd/display: initialize get_max_link_cap drm/amd/display: Properly map audio to engine on NV14 Dale Zhao (1): drm/amd/display: Don't verify DP caps again Dmytro Laktyushkin (1): drm/amd/display: fix dml pipe merge logic Eric Yang (1): drm/amd/display: change default pipe_split policy for DCN1 Isabel Zhang (2): drm/amd/display: Remove hdcp display state with mst fix drm/amd/display: Update stream adjust in dc_stream_adjust_vmin_vmax Jaehyun Chung (1): drm/amd/display: Update DRAM watermark before checking to update TTU Jerry (Fangzhi) Zuo (1): drm/amd/display: Avoid create MST prop after registration Joseph Gravenor (1): drm/amd/display: fix typo Joshua Aberback (1): drm/amd/display: Acknowledge wm_optimized_required Josip Pavic (1): drm/amd/display: prevent loop from occuring in pipe list Martin Leung (1): drm/amd/display: Properly map audio to engine on NV14 Michael Strauss (1): drm/amd/display: Check for null fclk voltage when parsing clock table Nicholas Kazlauskas (7): drm/amd/display: Don't change mpcc tree for medium updates on DCN20 hwseq drm/amd/display: Translate cursor position by source rect drm/amd/display: Fix incorrect cursor pos on scaled primary plane drm/amd/display: Program viewport when source pos changes for DCN20 hw seq drm/amd/display: Calculate scaling ratios on every medium/full update drm/amd/display: Make cursor source translation adjustment optional drm/amd/display: Make DMCUB bss/data firmware blob optional Nikola Cornij (1): drm/amd/display: Program DSC before enabling link Stylon Wang (1): drm/amd/display: Refactor color management to take dm plane state Sung Lee (2): drm/amd/display: Power down hw blocks on boot drm/amd/display: Check power_down functions exist before calling Wenjing Liu (1): drm/amd/display: determine USB C DP2 mode only when USB DP Alt is enabled Wyatt Wood (4): drm/amd/display: Implement abm config table copy to dmcub drm/amd/display: Use config flag to disable dmcu obj creation drm/amd/display: Fix ABM config copy for dmcub drm/amd/display: Remove unused defines Xiaodong Yan (2): drm/amd/display: blank dp stream before power off receiver drm/amd/display: only blank dp stream which will be powered off .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 47 +++++----- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 2 +- .../amd/display/amdgpu_dm/amdgpu_dm_color.c | 3 +- .../display/amdgpu_dm/amdgpu_dm_mst_types.c | 8 ++ .../amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c | 2 +- drivers/gpu/drm/amd/display/dc/core/dc.c | 20 ++++- drivers/gpu/drm/amd/display/dc/core/dc_link.c | 35 +++++--- .../gpu/drm/amd/display/dc/core/dc_link_dp.c | 15 +--- .../gpu/drm/amd/display/dc/core/dc_resource.c | 8 +- drivers/gpu/drm/amd/display/dc/dc.h | 4 +- drivers/gpu/drm/amd/display/dc/dc_hw_types.h | 2 + drivers/gpu/drm/amd/display/dc/dce/dce_abm.c | 2 +- .../drm/amd/display/dc/dce/dce_link_encoder.c | 20 ++++- .../drm/amd/display/dc/dce/dce_link_encoder.h | 3 + drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c | 25 +++++- drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c | 3 - .../display/dc/dce110/dce110_hw_sequencer.c | 17 ++++ .../amd/display/dc/dcn10/dcn10_hw_sequencer.c | 89 ++++++++++++++++++- .../amd/display/dc/dcn10/dcn10_link_encoder.c | 20 ++++- .../amd/display/dc/dcn10/dcn10_link_encoder.h | 3 + .../gpu/drm/amd/display/dc/dcn10/dcn10_optc.c | 6 +- .../drm/amd/display/dc/dcn10/dcn10_resource.c | 2 +- .../drm/amd/display/dc/dcn20/dcn20_hwseq.c | 7 ++ .../amd/display/dc/dcn20/dcn20_link_encoder.c | 40 +++++++++ .../amd/display/dc/dcn20/dcn20_link_encoder.h | 4 + .../drm/amd/display/dc/dcn20/dcn20_resource.c | 12 +-- .../gpu/drm/amd/display/dc/dcn21/dcn21_init.c | 1 + .../amd/display/dc/dcn21/dcn21_link_encoder.c | 27 +----- .../drm/amd/display/dc/dcn21/dcn21_resource.c | 8 +- .../dc/dml/dcn20/display_mode_vba_20v2.c | 3 +- drivers/gpu/drm/amd/display/dc/inc/hw/abm.h | 3 +- .../gpu/drm/amd/display/dc/inc/hw/transform.h | 2 + .../gpu/drm/amd/display/dc/inc/hw_sequencer.h | 4 + .../display/dc/virtual/virtual_link_encoder.c | 9 ++ .../drm/amd/display/dmub/inc/dmub_cmd_dal.h | 14 ++- .../gpu/drm/amd/display/dmub/inc/dmub_srv.h | 11 +++ .../gpu/drm/amd/display/dmub/src/dmub_dcn20.c | 24 +++-- .../gpu/drm/amd/display/dmub/src/dmub_srv.c | 25 ++++-- .../gpu/drm/amd/display/modules/hdcp/hdcp.c | 5 +- .../gpu/drm/amd/display/modules/hdcp/hdcp.h | 28 ++---- .../display/modules/hdcp/hdcp1_execution.c | 2 +- .../display/modules/hdcp/hdcp2_execution.c | 2 +- .../drm/amd/display/modules/hdcp/hdcp_log.c | 8 +- .../drm/amd/display/modules/hdcp/hdcp_psp.c | 44 +++++---- .../drm/amd/display/modules/inc/mod_hdcp.h | 5 +- .../amd/display/modules/power/power_helpers.c | 30 ++++--- .../amd/display/modules/power/power_helpers.h | 3 + 47 files changed, 455 insertions(+), 202 deletions(-) -- 2.26.0 _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/amd-gfx