From: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
To: amd-gfx@lists.freedesktop.org
Cc: Sunpeng.Li@amd.com, Bhawanpreet.Lakha@amd.com,
Rodrigo.Siqueira@amd.com, Harry.Wentland@amd.com
Subject: [PATCH 00/19] DC Patches March 16th, 2020
Date: Mon, 16 Mar 2020 09:49:01 -0400 [thread overview]
Message-ID: <20200316134920.2526155-1-Rodrigo.Siqueira@amd.com> (raw)
This DC patchset brings improvements in multiple areas. In summary, we
highlight:
* Updates on MST;
* Improvements in HMDI;
* Add fallback to DMCUB for PSR.
Charlene Liu (1):
drm/amd/display: guard DPPHY_Internal_ctrl
Dmytro Laktyushkin (2):
drm/amd/display: fix split threshold w/a to work with mpo
drm/amd/display: add on demand pipe merge logic for dcn2+
Hersen Wu (1):
drm/amd/display: update connector->display_info after read edid
Isabel Zhang (1):
drm/amd/display: Remove redundant hdcp display state
Jerry (Fangzhi) Zuo (1):
drm/amd/display: Fix test pattern color space inconsistency for Linux
Martin Tsai (1):
drm/amd/display: differentiate vsc sdp colorimetry use criteria
between MST and SST
Nicholas Kazlauskas (2):
drm/amd/display: Pass triplebuffer surface flip flags down to plane
state
drm/amd/display: Explicitly disable triplebuffer flips
Nikola Cornij (1):
drm/amd/display: Remove connect DIG FE to its BE during timing
programming
Roman Li (1):
drm/amd/display: Remove PSR dependency on swizzle mode
Sung Lee (1):
drm/amd/display: Program self refresh control register on boot
Wenjing Liu (1):
drm/amd/display: remove magic numbers in hdcp_ddc
Wyatt Wood (3):
drm/amd/display: Set disable_dmcu flag properly per asic
drm/amd/display: Fallback to dmcub for psr when dmcu is disabled
drm/amd/display: Allocate scratch space for DMUB CW7
Yongqiang Sun (3):
drm/amd/display: workaround for HDMI hotplug in DPMSOFF state
drm/amd/display: combine watermark change and clock change for update
clocks.
drm/amd/display: DPP DTO isn't update properly.
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 36 ++++---
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 3 +
.../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 14 +++
.../display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c | 5 +-
drivers/gpu/drm/amd/display/dc/core/dc.c | 15 +--
drivers/gpu/drm/amd/display/dc/core/dc_link.c | 11 +--
.../gpu/drm/amd/display/dc/core/dc_link_dp.c | 9 +-
.../drm/amd/display/dc/core/dc_link_hwss.c | 2 +-
.../gpu/drm/amd/display/dc/core/dc_resource.c | 7 +-
drivers/gpu/drm/amd/display/dc/dc.h | 5 +-
.../amd/display/dc/dcn10/dcn10_hw_sequencer.c | 7 +-
.../amd/display/dc/dcn10/dcn10_link_encoder.h | 2 +-
.../drm/amd/display/dc/dcn10/dcn10_resource.c | 4 +-
.../gpu/drm/amd/display/dc/dcn20/dcn20_dccg.c | 2 +
.../drm/amd/display/dc/dcn20/dcn20_hwseq.c | 10 +-
.../drm/amd/display/dc/dcn20/dcn20_resource.c | 99 ++++++++++++-------
.../drm/amd/display/dc/dcn20/dcn20_resource.h | 9 +-
.../drm/amd/display/dc/dcn21/dcn21_hwseq.c | 22 +++++
.../drm/amd/display/dc/dcn21/dcn21_hwseq.h | 3 +
.../gpu/drm/amd/display/dc/dcn21/dcn21_init.c | 1 +
.../drm/amd/display/dc/dcn21/dcn21_resource.c | 6 +-
.../gpu/drm/amd/display/dc/inc/dc_link_dp.h | 1 -
drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h | 3 +-
.../amd/display/dc/inc/hw_sequencer_private.h | 2 +
.../gpu/drm/amd/display/dmub/inc/dmub_srv.h | 3 +-
.../gpu/drm/amd/display/dmub/src/dmub_srv.c | 17 +++-
.../gpu/drm/amd/display/modules/hdcp/hdcp.c | 5 +-
.../gpu/drm/amd/display/modules/hdcp/hdcp.h | 28 ++----
.../display/modules/hdcp/hdcp1_execution.c | 2 +-
.../display/modules/hdcp/hdcp2_execution.c | 2 +-
.../drm/amd/display/modules/hdcp/hdcp_ddc.c | 12 +--
.../drm/amd/display/modules/hdcp/hdcp_psp.c | 37 +++----
.../drm/amd/display/modules/inc/mod_hdcp.h | 1 -
.../amd/display/modules/inc/mod_info_packet.h | 3 +-
.../display/modules/info_packet/info_packet.c | 20 +---
35 files changed, 234 insertions(+), 174 deletions(-)
--
2.25.1
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
next reply other threads:[~2020-03-16 13:49 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-16 13:49 Rodrigo Siqueira [this message]
2020-03-16 13:49 ` [PATCH 01/19] drm/amd/display: update connector->display_info after read edid Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 02/19] drm/amd/display: Fix test pattern color space inconsistency for Linux Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 03/19] drm/amd/display: Remove redundant hdcp display state Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 04/19] drm/amd/display: workaround for HDMI hotplug in DPMSOFF state Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 05/19] drm/amd/display: fix split threshold w/a to work with mpo Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 06/19] drm/amd/display: Pass triplebuffer surface flip flags down to plane state Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 07/19] drm/amd/display: Explicitly disable triplebuffer flips Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 08/19] drm/amd/display: Remove PSR dependency on swizzle mode Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 09/19] drm/amd/display: Set disable_dmcu flag properly per asic Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 10/19] drm/amd/display: Fallback to dmcub for psr when dmcu is disabled Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 11/19] drm/amd/display: remove magic numbers in hdcp_ddc Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 12/19] drm/amd/display: Program self refresh control register on boot Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 13/19] drm/amd/display: differentiate vsc sdp colorimetry use criteria between MST and SST Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 14/19] drm/amd/display: guard DPPHY_Internal_ctrl Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 15/19] drm/amd/display: combine watermark change and clock change for update clocks Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 16/19] drm/amd/display: Remove connect DIG FE to its BE during timing programming Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 17/19] drm/amd/display: DPP DTO isn't update properly Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 18/19] drm/amd/display: Allocate scratch space for DMUB CW7 Rodrigo Siqueira
2020-03-16 13:49 ` [PATCH 19/19] drm/amd/display: add on demand pipe merge logic for dcn2+ Rodrigo Siqueira
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200316134920.2526155-1-Rodrigo.Siqueira@amd.com \
--to=rodrigo.siqueira@amd.com \
--cc=Bhawanpreet.Lakha@amd.com \
--cc=Harry.Wentland@amd.com \
--cc=Sunpeng.Li@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox