[PATCH 00/28] DC Patches Mar 6, 2018
Harry Wentland
harry.wentland at amd.com
Wed Mar 7 00:51:40 UTC 2018
Note: sending with --no-validate since dce_calcs has ridiculously long lines.
* Fix corrupt screen issue when booting on Raven
* Enable backlight support for pre-DCE11 ASICs
* Update dce_calcs formula
* Bunch of Raven patches and fixes all around
Anthony Koo (2):
drm/amd/display: Implement stats logging
drm/amd/display: Add variable refresh rate parameters to DC structures
Bhawanpreet Lakha (3):
drm/amd/display: Fix takover from VGA mode
drm/amd/display: Move DTRACE and dml_print defines
drm/amd/display: Use MACROS instead of dm_logger
Dmytro Laktyushkin (2):
drm/amd/display: update dce_calcs to latest version
drm/amd/display: clean up dcn pplib notification call
Eric Yang (2):
drm/amd/display: fix check condition for edp power control
drm/amd/display: early return if not in vga mode in disable_vga
Harry Wentland (1):
drm/amd/display: Check for HW blocks in HWSS, rather than DC core for
cursor
Jerry (Fangzhi) Zuo (2):
drm/amd/display: Allow passing of syspll id to get_smu_clock_info
drm/amd/display: Use actual TG instance instead of pipe instance
Krunoslav Kovac (1):
drm/amd/display: use HW hdr mult for brightness boost
Leo (Sunpeng) Li (3):
drm/amd/display: Fix memleaks when atomic check fails.
drm/amd/display: Use correct error codes
drm/amd/display: Convert CTM to 2's complement
Mikita Lipski (1):
drm/amd/display: Enable backlight support for pre-DCE11 ASICs
Samson Tam (1):
drm/amd/display: add support for regkey "LCDFreeSyncDefault"
Shirish S (1):
drm/amd/display: Correct the plane enumeration order
SivapiriyanKumarasamy (3):
drm/amd/display: Vari-bright looks disabled near end of MM14
drm/amd/display: Varibright fix bug and review comments
drm/amd/display: Varibright add null check
Tony Cheng (1):
drm/amd/display: dal 3.1.38
Vitaly Prosyak (1):
drm/amd/display: Fix handling of linear transfer function
Yongqiang Sun (4):
drm/amd/display: Remove 300Mhz minimum disp clk limit.
drm/amd/display: Modified set bandwidth sequence.
drm/amd/display: Set disp clk in a safe way to avoid over high dpp
clk.
drm/amd/display: Fixed dim around 1sec when resume from S3
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 112 ++++---
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 23 ++
.../drm/amd/display/amdgpu_dm/amdgpu_dm_color.c | 15 +-
drivers/gpu/drm/amd/display/dc/basics/logger.c | 3 +-
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 6 +-
.../gpu/drm/amd/display/dc/bios/command_table2.c | 5 +-
.../gpu/drm/amd/display/dc/bios/command_table2.h | 2 +-
drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c | 160 ++++++----
drivers/gpu/drm/amd/display/dc/calcs/dcn_calcs.c | 23 +-
drivers/gpu/drm/amd/display/dc/core/dc.c | 20 +-
drivers/gpu/drm/amd/display/dc/core/dc_debug.c | 32 +-
drivers/gpu/drm/amd/display/dc/core/dc_link.c | 5 +
drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 5 +
drivers/gpu/drm/amd/display/dc/core/dc_stream.c | 3 +-
drivers/gpu/drm/amd/display/dc/dc.h | 9 +-
drivers/gpu/drm/amd/display/dc/dc_hw_types.h | 12 +-
drivers/gpu/drm/amd/display/dc/dc_stream.h | 7 +
drivers/gpu/drm/amd/display/dc/dc_types.h | 18 ++
drivers/gpu/drm/amd/display/dc/dce/dce_clocks.c | 2 -
drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.h | 35 +++
drivers/gpu/drm/amd/display/dc/dce/dce_hwseq.c | 10 +-
drivers/gpu/drm/amd/display/dc/dce/dce_hwseq.h | 18 +-
.../gpu/drm/amd/display/dc/dce/dce_link_encoder.c | 3 +-
.../drm/amd/display/dc/dce100/dce100_resource.c | 50 +++
.../amd/display/dc/dce110/dce110_hw_sequencer.c | 28 +-
.../gpu/drm/amd/display/dc/dce80/dce80_resource.c | 87 ++++++
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.c | 1 +
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.h | 16 +-
.../gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm.c | 9 +
.../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c | 257 ++++++++++++----
.../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c | 7 +-
.../amd/display/dc/dml/display_rq_dlg_helpers.c | 1 +
.../gpu/drm/amd/display/dc/dml/dml_common_defs.h | 2 -
.../gpu/drm/amd/display/dc/dml/dml_inline_defs.h | 1 +
drivers/gpu/drm/amd/display/dc/dml/dml_logger.h | 38 +++
drivers/gpu/drm/amd/display/dc/inc/core_types.h | 2 +
drivers/gpu/drm/amd/display/dc/inc/dce_calcs.h | 6 +
drivers/gpu/drm/amd/display/dc/inc/hw/dpp.h | 3 +
drivers/gpu/drm/amd/display/include/logger_types.h | 1 +
.../drm/amd/display/modules/color/color_gamma.c | 6 +-
.../drm/amd/display/modules/freesync/freesync.c | 155 ++++++++--
.../gpu/drm/amd/display/modules/inc/mod_freesync.h | 9 +
.../gpu/drm/amd/display/modules/inc/mod_stats.h | 65 ++++
drivers/gpu/drm/amd/display/modules/stats/stats.c | 334 +++++++++++++++++++++
44 files changed, 1357 insertions(+), 249 deletions(-)
create mode 100644 drivers/gpu/drm/amd/display/dc/dml/dml_logger.h
create mode 100644 drivers/gpu/drm/amd/display/modules/inc/mod_stats.h
create mode 100644 drivers/gpu/drm/amd/display/modules/stats/stats.c
--
2.14.1
More information about the amd-gfx
mailing list