All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches 2020 July 27
@ 2020-07-30 19:11 Aurabindo Pillai
  2020-07-30 19:11 ` [PATCH 01/16] drm/amd/display: DSC Slice height debugfs write entry Aurabindo Pillai
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Aurabindo Pillai @ 2020-07-30 19:11 UTC (permalink / raw)
  To: amd-gfx
  Cc: Eryk.Brol, Sunpeng.Li, Harry.Wentland, Qingqing.Zhuo,
	Rodrigo.Siqueira, Aurabindo.Pillai, Bhawanpreet.Lakha

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

* Display Core version 3.2.97
* New firmware release
* DSC improvements
* Bug fixes across DML, pipe managment
* Regression fixes for DP

--

Alvin Lee (1):
  drm/amd/display: Separate pipe disconnect from rest of progrmaming

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

Aric Cyr (2):
  drm/amd/display: AMD OUI (DPCD 0x00300) skipped on some sink
  drm/amd/display: 3.2.97

Dmytro Laktyushkin (1):
  drm/amd/display: populate new dml variable

Eric Bernstein (2):
  drm/amd/display: Update virtual stream encoder
  drm/amd/display: Use parameter for call to set output mux

Eryk Brol (3):
  drm/amd/display: DSC Slice height debugfs write entry
  drm/amd/display: DSC Bit target rate debugfs write entry
  drm/amd/display: Comments on how to use DSC debugfs some entries

George Shen (1):
  drm/amd/display: Change null plane state swizzle mode to 4kb_s

Harry Wentland (1):
  drm/amd/display: Fix logger context

Igor Kravchenko (2):
  drm/amd/display: Read VBIOS Golden Settings Tbl
  drm/amd/display: Display goes blank after inst

JinZe.Xu (1):
  drm/amd/display: Use helper function to check for HDMI signal

Victor Lu (1):
  drm/amd/display: Add debugfs for forcing stream timing sync

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |  36 ++-
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |   5 +
 .../amd/display/amdgpu_dm/amdgpu_dm_debugfs.c | 259 ++++++++++++++++++
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |  16 +-
 .../gpu/drm/amd/display/dc/bios/bios_parser.c |   2 +
 .../drm/amd/display/dc/bios/bios_parser2.c    |  81 ++++++
 drivers/gpu/drm/amd/display/dc/core/dc.c      |  23 +-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  12 +-
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |  16 --
 drivers/gpu/drm/amd/display/dc/dc.h           |   2 +-
 .../gpu/drm/amd/display/dc/dc_bios_types.h    |   4 +
 drivers/gpu/drm/amd/display/dc/dc_stream.h    |   2 +
 drivers/gpu/drm/amd/display/dc/dc_types.h     |  14 +
 .../drm/amd/display/dc/dce/dce_link_encoder.h |   4 +-
 .../amd/display/dc/dcn10/dcn10_link_encoder.h |  10 +-
 .../drm/amd/display/dc/dcn20/dcn20_hwseq.c    | 114 ++++++++
 .../drm/amd/display/dc/dcn20/dcn20_hwseq.h    |   7 +
 .../gpu/drm/amd/display/dc/dcn20/dcn20_init.c |   2 +
 .../amd/display/dc/dcn20/dcn20_link_encoder.c |  14 +-
 .../amd/display/dc/dcn20/dcn20_link_encoder.h |   5 +-
 .../drm/amd/display/dc/dcn20/dcn20_resource.c |   4 +-
 .../gpu/drm/amd/display/dc/dcn21/dcn21_init.c |   2 +
 .../display/dc/dcn30/dcn30_dio_link_encoder.c |  53 +++-
 .../display/dc/dcn30/dcn30_dio_link_encoder.h |   2 +
 .../gpu/drm/amd/display/dc/dcn30/dcn30_init.c |   2 +
 .../drm/amd/display/dc/dml/display_mode_vba.c |   3 +-
 .../amd/display/dc/inc/hw/clk_mgr_internal.h  |   3 +-
 .../gpu/drm/amd/display/dc/inc/hw_sequencer.h |   4 +
 .../dc/virtual/virtual_stream_encoder.c       |  13 +
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |  15 +-
 drivers/gpu/drm/amd/include/atomfirmware.h    |  54 +++-
 31 files changed, 740 insertions(+), 43 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] 17+ messages in thread

end of thread, other threads:[~2020-07-30 19:12 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-30 19:11 [PATCH 00/16] DC Patches 2020 July 27 Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 01/16] drm/amd/display: DSC Slice height debugfs write entry Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 02/16] drm/amd/display: Update virtual stream encoder Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 03/16] drm/amd/display: Use parameter for call to set output mux Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 04/16] drm/amd/display: Read VBIOS Golden Settings Tbl Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 05/16] drm/amd/display: populate new dml variable Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 06/16] drm/amd/display: DSC Bit target rate debugfs write entry Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 07/16] drm/amd/display: Fix logger context Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 08/16] drm/amd/display: Comments on how to use DSC debugfs some entries Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 09/16] drm/amd/display: AMD OUI (DPCD 0x00300) skipped on some sink Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 10/16] drm/amd/display: Use helper function to check for HDMI signal Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 11/16] drm/amd/display: Change null plane state swizzle mode to 4kb_s Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 12/16] drm/amd/display: Display goes blank after inst Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 13/16] drm/amd/display: Add debugfs for forcing stream timing sync Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 14/16] drm/amd/display: Separate pipe disconnect from rest of progrmaming Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 15/16] drm/amd/display: [FW Promotion] Release 0.0.27 Aurabindo Pillai
2020-07-30 19:11 ` [PATCH 16/16] drm/amd/display: 3.2.97 Aurabindo Pillai

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.