[PATCH 00/31] DC Patches May 12, 2017
Harry Wentland
harry.wentland at amd.com
Fri May 12 15:20:33 UTC 2017
* Fix deadlock when plugging MST display
* Fix DVI->HDMI dongles
* Bunch of raven bandwidth changes
* Some more cleanup for i2c/aux
Amy Zhang (1):
drm/amd/display: Move output transfer function to stream updates
Andrey Grodzovsky (4):
drm/amd/display: i2c Remove link index.
drm/amd/display: DP aux Remove link index.
drm/amd/display: i2c/aux Remove link index.
drm/amd/display: Fix race.
Anthony Koo (2):
drm/amd/display: use signal type to decide whether to set backlight
drm/amd/display: Implement support for backlight optimization
Charlene Liu (1):
drm/amd/display: single channel bandwidth verses dual channel
bandwidth
Corbin McElhanney (1):
drm/amd/display: fix freesync not working on raven
Dmytro Laktyushkin (9):
drm/amd/display: bw debug options now apply to dml as well
drm/amd/display: prevent assert on error of 1 in calc_freesync_range
drm/amd/display: refactor bw related variable structure in val_ctx
drm/amd/display: switch to using calc_clk and cur_clk for dcn bw
setting
drm/amd/display: enable watermark range reporting to pplib
drm/amd/display: fix scaling calculation for proper surface input
format
drm/amd/display: add yuv pixel formats to pixel_format_to_bpp()
drm/amd/display: fix scaling info based surface update type check
drm/amd/display: add explanation for surface_update_type
Harry Wentland (6):
drm/amd/display: Don't call PSR func if DMCU is off
drm/amd/display: Keep DVI_SINGLE_LINK signal if low clk
drm/amd/display: ifdef some code only needed for DCN
drm/amd/display: Use MED update type if clip position changes
drm/amd/display: Add mem_input header to non-DCN builds
drm/amd/display: DCE12 num_timing_generators should be 6
Ken Chalmers (1):
drm/amd/display: Continue with stream enable if DP link training
fails.
Leon Elazar (1):
drm/amd/display: Allow MPO on Raven
Pratik Vishwakarma (1):
drm/amd/display: get_atomic_property missing for drm_connector_funcs
Sun peng Li (1):
drm/amd/display: Reverting locks around updating freesync property
Tony Cheng (1):
drm/amd/display: do not set_mpc_tree if tree is already setup
Yongqiang Sun (2):
drm/amd/display: Only apply ctx for specific surface.
drm/amd/display: Add 64KB_S_T and 64KB_D_T swizzle mode.
drivers/gpu/drm/amd/amdgpu/amdgpu_mode.h | 6 +-
.../amd/display/amdgpu_dm/amdgpu_dm_mst_types.c | 38 +++---
.../drm/amd/display/amdgpu_dm/amdgpu_dm_types.c | 82 +++++++++---
.../drm/amd/display/amdgpu_dm/amdgpu_dm_types.h | 6 +
drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c | 18 +--
drivers/gpu/drm/amd/display/dc/calcs/dcn_calcs.c | 131 +++++++++++--------
drivers/gpu/drm/amd/display/dc/core/dc.c | 140 ++++++++-------------
drivers/gpu/drm/amd/display/dc/core/dc_link.c | 59 +++++----
drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 4 +-
drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 69 ++++++----
drivers/gpu/drm/amd/display/dc/dc.h | 51 +++++---
drivers/gpu/drm/amd/display/dc/dc_hw_types.h | 20 +--
drivers/gpu/drm/amd/display/dc/dce/dce_abm.c | 36 ++++--
drivers/gpu/drm/amd/display/dc/dce/dce_clocks.c | 11 +-
drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c | 6 +-
drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.h | 12 +-
.../amd/display/dc/dce100/dce100_hw_sequencer.c | 9 +-
.../drm/amd/display/dc/dce100/dce100_resource.c | 4 +-
.../amd/display/dc/dce110/dce110_hw_sequencer.c | 100 ++++++++-------
.../drm/amd/display/dc/dce110/dce110_mem_input.c | 12 +-
.../drm/amd/display/dc/dce110/dce110_mem_input.h | 6 +-
.../drm/amd/display/dc/dce110/dce110_mem_input_v.c | 30 ++---
.../drm/amd/display/dc/dce110/dce110_mem_input_v.h | 6 +-
.../drm/amd/display/dc/dce110/dce110_resource.c | 63 +++++-----
.../drm/amd/display/dc/dce112/dce112_resource.c | 63 +++++-----
.../drm/amd/display/dc/dce120/dce120_resource.c | 4 +-
.../gpu/drm/amd/display/dc/dce80/dce80_resource.c | 4 +-
.../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c | 121 +++++++++++++-----
.../gpu/drm/amd/display/dc/dcn10/dcn10_mem_input.c | 6 +-
.../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c | 4 +-
drivers/gpu/drm/amd/display/dc/inc/core_status.h | 1 +
drivers/gpu/drm/amd/display/dc/inc/core_types.h | 61 +++++++--
drivers/gpu/drm/amd/display/dc/inc/dce_calcs.h | 29 +----
drivers/gpu/drm/amd/display/dc/inc/hw/abm.h | 2 +
drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h | 2 +
drivers/gpu/drm/amd/display/dc/inc/hw/mem_input.h | 20 +--
drivers/gpu/drm/amd/display/dc/inc/hw/opp.h | 2 +
drivers/gpu/drm/amd/display/dc/inc/hw_sequencer.h | 1 -
.../drm/amd/display/modules/freesync/freesync.c | 16 ++-
39 files changed, 741 insertions(+), 514 deletions(-)
--
2.11.0
More information about the amd-gfx
mailing list