* Bunch of Raven fixes and other work * Stop powering down clock sources in atomic check * Stop using amdgpu_connector and use our own * Fix display unplug during S3 or fbcon Andrew Jiang (1): drm/amd/display: Fix context alloc failed logging Charlene Liu (1): drm/amd/display: fix crc_source_select use hardcoded color depth Eric Bernstein (1): drm/amd/display: remove output_format from ipp_setup Harry Wentland (10): drm/amd/display: Enable dcn10_power_on_fe log by default drm/amd/display: Don't reset clock source at unref drm/amd/display: Power down clock source at commit drm/amd/display: Remove switching of clk sources at end of commit drm/amd/display: No need to keep track of unreffed clk sources drm/amd/display: Break out amdgpu_dm_connector drm/amd/display: Create fake sink if needed when commit stream drm/amd/display: Format changes to bring in line with internal tree drm/amd/display: Change comments to bring in line with internal tree drm/amd/display: Update include to bring in line with internal tree Hersen Wu (2): drm/amd/display: Request to have DCN RV pipe Harvesting drm/amd/display: USB-C to HDMI dongle not light Logatharshan Thothiralingam (1): drm/amd/display: Get OTG info if OTG master enabled Martin Tsai (1): drm/amd/display: To prevent detecting new sink from spurious HPD Roman Li (1): drm/amd/display: Disable FBC for linear tiling Shirish S (1): drm/amd/display: dce110: fix plane validation Tony Cheng (1): drm/amd/display: fix default dithering Vitaly Prosyak (1): drm/amd/display: Update DPP registers Wenjing Liu (2): drm/amd/display: Use TPS4 instead of CP2520_3 for phy pattern 7 drm/amd/display: set CP2520 Test pattern to use DP_TEST_PATTERN_HBR2_COMPLIANCE_EYE Yongqiang Sun (2): drm/amd/display: Added negative check for vertical line start. drm/amd/display: Remove sanity check. Yue Hin Lau (2): drm/amd/display: seperate dpp_cm_helper functions into new file drm/amd/display: move dwb registers to header file pana (1): drm/amd/display: Add 2X Cursor Magnification Code drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 184 +++++++------ drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 55 +++- .../drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 20 +- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c | 16 +- .../amd/display/amdgpu_dm/amdgpu_dm_mst_types.c | 34 +-- .../amd/display/amdgpu_dm/amdgpu_dm_mst_types.h | 4 +- drivers/gpu/drm/amd/display/dc/core/dc.c | 29 +-- drivers/gpu/drm/amd/display/dc/core/dc_link.c | 80 ++++-- drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 4 +- drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 38 ++- drivers/gpu/drm/amd/display/dc/dc.h | 8 +- .../amd/display/dc/dce110/dce110_hw_sequencer.c | 87 +++---- .../drm/amd/display/dc/dce110/dce110_resource.c | 19 +- drivers/gpu/drm/amd/display/dc/dcn10/Makefile | 2 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.c | 3 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.h | 23 +- .../gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm.c | 263 ++++++++----------- .../drm/amd/display/dc/dcn10/dcn10_dpp_cm_helper.c | 123 +++++++++ .../drm/amd/display/dc/dcn10/dcn10_dpp_cm_helper.h | 99 +++++++ drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dwb.c | 288 +-------------------- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dwb.h | 247 +++++++++++++++++- .../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c | 34 +-- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_ipp.c | 2 - drivers/gpu/drm/amd/display/dc/dcn10/dcn10_ipp.h | 11 + .../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c | 97 ++++++- .../amd/display/dc/dcn10/dcn10_timing_generator.c | 13 +- .../amd/display/dc/dcn10/dcn10_timing_generator.h | 1 + drivers/gpu/drm/amd/display/dc/gpio/hw_factory.c | 1 - .../display/dc/i2caux/dce110/aux_engine_dce110.c | 2 +- drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h | 3 +- drivers/gpu/drm/amd/display/dc/inc/hw/transform.h | 3 +- drivers/gpu/drm/amd/display/dc/inc/resource.h | 2 +- drivers/gpu/drm/amd/display/include/dal_asic_id.h | 1 + 33 files changed, 1048 insertions(+), 748 deletions(-) create mode 100644 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm_helper.c create mode 100644 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm_helper.h -- 2.11.0