All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches Nov 26, 2021
@ 2021-11-26 19:49 Bhawanpreet Lakha
  2021-11-26 19:49 ` [PATCH 01/16] drm/amd/display: Enable P010 for DCN3x ASICs Bhawanpreet Lakha
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Bhawanpreet Lakha @ 2021-11-26 19:49 UTC (permalink / raw)
  To: amd-gfx
  Cc: stylon.wang, solomon.chiu, Sunpeng.Li, Harry.Wentland,
	qingqing.zhuo, Rodrigo.Siqueira, roman.li, Anson.Jacob,
	Aurabindo.Pillai, wayne.lin, mikita.lipski, Bhawanpreet.Lakha,
	agustin.gutierrez, pavle.kotarac

This DC patchset brings improvements in multiple areas. In summary, we have:
- FW promotion to 0.0.95
- DSC fixes for supported Docks
- Fixes eDP display issue
- Vendor LTTR workarounds
- Fixes Tiled display audio issue


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

Aric Cyr (1):
  drm/amd/display: 3.2.164

Brandon Syu (1):
  drm/amd/display: Fix dual eDP abnormal display issue

Dale Zhao (1):
  drm/amd/display: add hdmi disable debug check

Evgenii Krasnikov (1):
  drm/amd/display: add function for eDP and backlight power on

George Shen (3):
  drm/amd/display: Add vendor specific LTTPR workarounds for DCN31
  drm/amd/display: Skip vendor specific LTTPR w/a outside link training
  drm/amd/display: Add 16ms AUX RD interval W/A for specific LTTPR

Jimmy Kizito (1):
  drm/amd/display: Add work around for tunneled MST.

Meenakshikumar Somasundaram (1):
  drm/amd/display: Fix for otg synchronization logic

Michael Strauss (1):
  drm/amd/display: Add force detile buffer size debug flag

Mikita Lipski (1):
  drm/amd/display: PSR panel capability debugfs

Mustapha Ghaddar (1):
  drm/amd/display: Fix for the no Audio bug with Tiled Displays

Nicholas Kazlauskas (1):
  drm/amd/display: Allow DSC on supported MST branch devices

Shen, George (1):
  drm/amd/display: Clear DPCD lane settings after repeater training

Stylon Wang (1):
  drm/amd/display: Enable P010 for DCN3x ASICs

 .../amd/display/amdgpu_dm/amdgpu_dm_debugfs.c |  44 ++++
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |  20 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      |  35 +--
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  16 ++
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  | 227 +++++++++++++++++-
 .../gpu/drm/amd/display/dc/core/dc_resource.c |  78 +++++-
 drivers/gpu/drm/amd/display/dc/dc.h           |  19 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h      |   6 +
 .../drm/amd/display/dc/dce/dce_link_encoder.c |   5 +-
 .../display/dc/dce110/dce110_hw_sequencer.c   |  16 +-
 .../amd/display/dc/dcn10/dcn10_link_encoder.c |   5 +-
 .../drm/amd/display/dc/dcn30/dcn30_resource.c |   2 +-
 .../amd/display/dc/dcn301/dcn301_resource.c   |   2 +-
 .../amd/display/dc/dcn302/dcn302_resource.c   |   2 +-
 .../amd/display/dc/dcn303/dcn303_resource.c   |   2 +-
 .../drm/amd/display/dc/dcn31/dcn31_resource.c |   9 +-
 .../gpu/drm/amd/display/dc/inc/core_types.h   |   1 +
 .../gpu/drm/amd/display/dc/inc/dc_link_dp.h   |   1 +
 drivers/gpu/drm/amd/display/dc/inc/resource.h |  11 +
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |   4 +-
 20 files changed, 457 insertions(+), 48 deletions(-)

-- 
2.25.1


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

end of thread, other threads:[~2021-11-29 14:16 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-26 19:49 [PATCH 00/16] DC Patches Nov 26, 2021 Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 01/16] drm/amd/display: Enable P010 for DCN3x ASICs Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 02/16] drm/amd/display: Allow DSC on supported MST branch devices Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 03/16] drm/amd/display: add hdmi disable debug check Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 04/16] drm/amd/display: Clear DPCD lane settings after repeater training Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 05/16] drm/amd/display: Fix for otg synchronization logic Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 06/16] drm/amd/display: Fix for the no Audio bug with Tiled Displays Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 07/16] drm/amd/display: add function for eDP and backlight power on Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 08/16] drm/amd/display: Add work around for tunneled MST Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 09/16] drm/amd/display: Fix dual eDP abnormal display issue Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 10/16] drm/amd/display: PSR panel capability debugfs Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 11/16] drm/amd/display: Add vendor specific LTTPR workarounds for DCN31 Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 12/16] drm/amd/display: Skip vendor specific LTTPR w/a outside link training Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 13/16] drm/amd/display: Add force detile buffer size debug flag Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 14/16] drm/amd/display: Add 16ms AUX RD interval W/A for specific LTTPR Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 15/16] drm/amd/display: [FW Promotion] Release 0.0.95 Bhawanpreet Lakha
2021-11-26 19:49 ` [PATCH 16/16] drm/amd/display: 3.2.164 Bhawanpreet Lakha
2021-11-29 14:16 ` [PATCH 00/16] DC Patches Nov 26, 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.