* Don't register backlight device if eDP or LVDS are disconnected * Fix corruption on VT switch with FBC enabled * decouple logging from DC logger * Rework freesync module to fit better with atomic model Anthony Koo (13): drm/amd/display: Program v_total_min/max after v_total_cntl drm/amd/display: Add vmax/min_sel prints to dcn10_log_hw_state drm/amd/display: Refactor FreeSync module drm/amd/display: csc updates require FULL update drm/amd/display: Updated HDR Static Metadata to directly take info packet raw drm/amd/display: Get rid of unused input_tf drm/amd/display: Remove unused fields drm/amd/display: Do not use os types drm/amd/display: csc_transform to dc_csc_transform drm/amd/display: Refactor color module drm/amd/display: move color_transfer_func to color mod drm/amd/display: Fix structure initialization of hdmi_info_packet drm/amd/display: Have DC manage its own allocation of gamma Bhawanpreet Lakha (1): drm/amd/display: Add Dynamic debug prints Charlene Liu (1): drm/amd/display: add delay between panel pwr off to on. Dmytro Laktyushkin (1): drm/amd/display: Update scaler v_active data if interlaced Eric Bernstein (2): drm/amd/display: Refactor stream encoder for HW review drm/amd/display: Make DCN stream encoder shareable Eric Yang (2): drm/amd/display: Set all update flags when we have full update drm/amd/display: fix link bw calculation for 422 and 420 encoding Harry Wentland (5): drm/amd/display: Only register backlight device if embedded panel connected drm/amd/display: Don't register backlight on connector_destroy drm/amd/display: Set ignore_msa_timing_param drm/amd/display: Fix potential access beyond end of array in CM drm/amd/display: Implement dm_get_timestamp Hersen Wu (1): drm/amd/display: Non-HDMI DP active dongle should not support YUV pixel format Jun Lei (2): drm/amd/display: remove unused enum drm/amd/display: Fill calcs date from stream src/dst if available Leo (Sunpeng) Li (1): drm/amd/display: Fix dim display on DCE11 Roman Li (1): drm/amd/display: Fix FBC text console corruption Yongqiang Sun (2): drm/amd/display: Change disable backlight ramp change threshold from 0 to maximum value. drm/amd/display: dal 3.1.41 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 405 +++-- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 18 +- .../amd/display/amdgpu_dm/amdgpu_dm_mst_types.c | 9 +- .../drm/amd/display/amdgpu_dm/amdgpu_dm_services.c | 13 +- drivers/gpu/drm/amd/display/dc/basics/fixpt31_32.c | 158 +- drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c | 13 + drivers/gpu/drm/amd/display/dc/core/dc.c | 74 +- drivers/gpu/drm/amd/display/dc/core/dc_debug.c | 24 +- drivers/gpu/drm/amd/display/dc/core/dc_link.c | 40 +- drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 56 +- drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 220 +-- drivers/gpu/drm/amd/display/dc/core/dc_stream.c | 6 +- drivers/gpu/drm/amd/display/dc/core/dc_surface.c | 8 +- drivers/gpu/drm/amd/display/dc/dc.h | 29 +- drivers/gpu/drm/amd/display/dc/dc_hw_types.h | 11 +- drivers/gpu/drm/amd/display/dc/dc_link.h | 9 + drivers/gpu/drm/amd/display/dc/dc_stream.h | 39 +- drivers/gpu/drm/amd/display/dc/dc_types.h | 28 +- drivers/gpu/drm/amd/display/dc/dce/dce_audio.c | 9 +- .../gpu/drm/amd/display/dc/dce/dce_clock_source.c | 11 +- .../drm/amd/display/dc/dce/dce_stream_encoder.c | 39 +- .../drm/amd/display/dc/dce110/dce110_compressor.c | 67 +- .../amd/display/dc/dce110/dce110_hw_sequencer.c | 76 +- .../display/dc/dce110/dce110_timing_generator.c | 16 +- .../display/dc/dce120/dce120_timing_generator.c | 12 +- drivers/gpu/drm/amd/display/dc/dcn10/Makefile | 2 +- .../gpu/drm/amd/display/dc/dcn10/dcn10_cm_common.c | 12 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.c | 2 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.h | 2 +- .../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c | 52 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c | 18 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.h | 2 + .../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c | 36 +- .../amd/display/dc/dcn10/dcn10_stream_encoder.c | 1487 ++++++++++++++++ .../amd/display/dc/dcn10/dcn10_stream_encoder.h | 524 ++++++ drivers/gpu/drm/amd/display/dc/dm_services.h | 4 + drivers/gpu/drm/amd/display/dc/inc/hw/dpp.h | 2 +- drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h | 22 +- drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h | 2 +- drivers/gpu/drm/amd/display/dc/inc/hw/transform.h | 2 +- drivers/gpu/drm/amd/display/dc/inc/hw_sequencer.h | 2 + drivers/gpu/drm/amd/display/include/fixed31_32.h | 40 +- drivers/gpu/drm/amd/display/include/logger_types.h | 64 +- .../gpu/drm/amd/display/include/set_mode_types.h | 12 - .../drm/amd/display/modules/freesync/freesync.c | 1836 +++++++------------- .../gpu/drm/amd/display/modules/inc/mod_freesync.h | 144 +- 46 files changed, 3471 insertions(+), 2186 deletions(-) create mode 100644 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_stream_encoder.c create mode 100644 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_stream_encoder.h -- 2.15.1