* Fixed hotplug issue (mainly on HDMI, but affected DP as well) * Use new DRM state iterators * Couple of Dave's cleanups rerolled on new DML * Bunch of Raven work Anthony Koo (2): drm/amd/display: Add APU cap in dc_caps drm/amd/display: DMCU FW loading from PSP Bhawanpreet Lakha (2): drm/amd/display: Add null check for 24BPP (xfm and dpp) drm/amd/display: Atomic freesync ASSERT fix Dave Airlie (3): amdgpu/dc: drop dml_util_is_420 amdgpu/dc: inline dml_round_to_multiple drm/amd/display: Use DRM new-style object iterators. Harry Wentland (6): drm/amd/display: Small comment on dc_commit_planes_to_stream amdgpu/dc: inline a bunch of the dml wrappers. drm/amd/display: Add bunch of missing license headers in DML drm/amd/display: Cleanup some fail labels in dcn10_resource drm/amd/display: Clean some unneeded defines from ddc_service_types.h drm/amd/display: Explicit casting for grph object ids Jerry Zuo (1): drm/amd/display: Fix no display on Fiji Leo (Sunpeng) Li (9): drm/amd/display: Use new DRM API where possible drm/amd/display: Unify DRM state variable namings. drm/amd/display: Unify amdgpu_dm state variable namings. drm/amd/display: Fix typo drm/amd/display: Remove useless pcrtc pointer drm/amd/display: Do not release DC state on S3 resume drm/amd/display: Cleanup code that enables freesync drm/amd/display: Should disable when new stream is null drm/amd/display: Only add stream to freesync when modeset required Mikita Lipski (1): drm/amd/display: Adding DCN1 registers Yongqiang Sun (3): drm/amd/display: Move lock to front end program. drm/amd/display: Check cursor address before program. drm/amd/display: Set cursor position as per address. Yue Hin Lau (1): drm/amd/display: cleaning up hubp for dcn drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 441 ++++++++++----------- drivers/gpu/drm/amd/display/dc/core/dc.c | 60 +-- drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 18 +- drivers/gpu/drm/amd/display/dc/dc.h | 1 + drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.c | 176 +++++++- drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.h | 12 +- .../amd/display/dc/dce110/dce110_hw_sequencer.c | 41 +- .../drm/amd/display/dc/dce110/dce110_resource.c | 1 + .../gpu/drm/amd/display/dc/dce80/dce80_resource.c | 2 + drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.c | 16 +- drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.h | 345 ++++++++-------- .../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c | 26 +- .../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c | 62 ++- .../amd/display/dc/dcn10/dcn10_timing_generator.h | 33 +- .../gpu/drm/amd/display/dc/dml/display_mode_vba.c | 27 ++ .../gpu/drm/amd/display/dc/dml/display_mode_vba.h | 24 +- .../drm/amd/display/dc/dml/display_rq_dlg_calc.c | 2 + .../amd/display/dc/dml/dml1_display_rq_dlg_calc.c | 2 + .../gpu/drm/amd/display/dc/dml/dml_common_defs.c | 119 +----- .../gpu/drm/amd/display/dc/dml/dml_common_defs.h | 17 - .../gpu/drm/amd/display/dc/dml/dml_inline_defs.h | 121 ++++++ .../gpu/drm/amd/display/dc/dml/soc_bounding_box.c | 1 + drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h | 16 + .../drm/amd/display/include/ddc_service_types.h | 33 -- .../gpu/drm/amd/display/include/grph_object_id.h | 12 +- 25 files changed, 894 insertions(+), 714 deletions(-) create mode 100644 drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h -- 2.14.1