All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] DC Patches May 10, 2021
@ 2021-05-07 14:58 Stylon Wang
  2021-05-07 14:58 ` [PATCH 01/14] drm/amd/display: Update DPRX detection Stylon Wang
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Stylon Wang @ 2021-05-07 14:58 UTC (permalink / raw)
  To: amd-gfx
  Cc: Stylon Wang, Eryk.Brol, Sunpeng.Li, Harry.Wentland,
	Qingqing.Zhuo, Rodrigo.Siqueira, Anson.Jacob, Aurabindo.Pillai,
	Bhawanpreet.Lakha, bindu.r

This DC patchset brings improvements in multiple areas. In summary, we
highlight:

* DC v3.2.135.1
* Improvements across DP, DPP, clock management, pixel formats

Anthony Koo (1):
  drm/amd/display: [FW Promotion] Release 0.0.65

Anthony Wang (1):
  drm/amd/display: Handle potential dpp_inst mismatch with pipe_idx

Aric Cyr (2):
  drm/amd/display: 3.2.135
  drm/amd/display: 3.2.135.1

Chaitanya Dhere (1):
  drm/amd/display: DETBufferSizeInKbyte variable type modifications

Dmytro Laktyushkin (1):
  drm/amd/display: fix use_max_lb flag for 420 pixel formats

Fangzhi Zuo (1):
  drm/amd/display: Add dc log for DP SST DSC enable/disable

Ilya Bakoulin (2):
  drm/amd/display: Fix clock table filling logic
  drm/amd/display: Handle pixel format test request

Jimmy Kizito (4):
  drm/amd/display: Update DPRX detection.
  drm/amd/display: Update setting of DP training parameters.
  drm/amd/display: Add fallback and abort paths for DP link training.
  drm/amd/display: Expand DP module training API.

Wenjing Liu (1):
  drm/amd/display: minor dp link training refactor

 .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c |   6 +-
 .../amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c |  86 ++++---
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  49 +++-
 .../gpu/drm/amd/display/dc/core/dc_link_ddc.c |   4 +
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  | 211 ++++++++++++------
 .../drm/amd/display/dc/core/dc_link_enc_cfg.c |  22 +-
 .../drm/amd/display/dc/core/dc_link_hwss.c    |   3 +-
 drivers/gpu/drm/amd/display/dc/dc.h           |   2 +-
 drivers/gpu/drm/amd/display/dc/dc_dp_types.h  |   1 +
 drivers/gpu/drm/amd/display/dc/dc_link.h      |   7 +-
 .../drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c |   9 +-
 .../drm/amd/display/dc/dcn21/dcn21_resource.c |  33 ++-
 .../dc/dml/dcn20/display_mode_vba_20.c        |  26 +--
 .../dc/dml/dcn20/display_mode_vba_20v2.c      |  26 +--
 .../dc/dml/dcn21/display_mode_vba_21.c        |  58 ++---
 .../dc/dml/dcn30/display_mode_vba_30.c        |  48 ++--
 .../drm/amd/display/dc/dml/display_mode_vba.c |   2 +-
 .../drm/amd/display/dc/dml/display_mode_vba.h |  14 +-
 .../gpu/drm/amd/display/dc/inc/dc_link_dp.h   |  10 +-
 .../gpu/drm/amd/display/dc/inc/link_enc_cfg.h |   7 +-
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   | 123 +++++++++-
 .../amd/display/include/link_service_types.h  |   8 +
 22 files changed, 525 insertions(+), 230 deletions(-)

-- 
2.25.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2021-05-07 18:11 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-07 14:58 [PATCH 00/14] DC Patches May 10, 2021 Stylon Wang
2021-05-07 14:58 ` [PATCH 01/14] drm/amd/display: Update DPRX detection Stylon Wang
2021-05-07 14:58 ` [PATCH 02/14] drm/amd/display: Update setting of DP training parameters Stylon Wang
2021-05-07 14:58 ` [PATCH 03/14] drm/amd/display: Add fallback and abort paths for DP link training Stylon Wang
2021-05-07 14:58 ` [PATCH 04/14] drm/amd/display: Expand DP module training API Stylon Wang
2021-05-07 14:58 ` [PATCH 05/14] drm/amd/display: Add dc log for DP SST DSC enable/disable Stylon Wang
2021-05-07 14:58 ` [PATCH 06/14] drm/amd/display: DETBufferSizeInKbyte variable type modifications Stylon Wang
2021-05-07 14:58 ` [PATCH 07/14] drm/amd/display: minor dp link training refactor Stylon Wang
2021-05-07 14:58 ` [PATCH 08/14] drm/amd/display: Fix clock table filling logic Stylon Wang
2021-05-07 14:58 ` [PATCH 09/14] drm/amd/display: Handle pixel format test request Stylon Wang
2021-05-07 14:58 ` [PATCH 10/14] drm/amd/display: Handle potential dpp_inst mismatch with pipe_idx Stylon Wang
2021-05-07 14:58 ` [PATCH 11/14] drm/amd/display: fix use_max_lb flag for 420 pixel formats Stylon Wang
2021-05-07 14:58 ` [PATCH 12/14] drm/amd/display: 3.2.135 Stylon Wang
2021-05-07 14:58 ` [PATCH 13/14] drm/amd/display: [FW Promotion] Release 0.0.65 Stylon Wang
2021-05-07 14:58 ` [PATCH 14/14] drm/amd/display: 3.2.135.1 Stylon Wang
2021-05-07 18:11 ` [PATCH 00/14] DC Patches May 10, 2021 Wheeler, Daniel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.