All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches November 22nd, 2021
@ 2021-11-19 19:43 Qingqing Zhuo
  2021-11-19 19:43 ` [PATCH 01/16] drm/amd/display: Fix DPIA outbox timeout after GPU reset Qingqing Zhuo
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Qingqing Zhuo @ 2021-11-19 19:43 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 highlight:
- DC 3.2.163
- FW promotion to 0.0.94
- Enable seamless boot for DCN301
- Improvements in bandwidth validation
- Fixes in flags update, link encoder assignments, DSC, ODM combine and more

Thank you,
Lillian

---

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

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

Charlene Liu (1):
  drm/amd/display: based on flag reset z10 function pointer

Guo, Bing (1):
  drm/amd/display: fixed an error related to 4:2:0/4:2:2 DSC

Martin Leung (1):
  drm/amd/display: add else to avoid double destroy clk_mgr

Mikita Lipski (1):
  drm/amd/display: fix accidental casting enum to bool

Nevenko Stupar (1):
  drm/amd/display: Display object info table changes

Nicholas Kazlauskas (4):
  drm/amd/display: Fix DPIA outbox timeout after GPU reset
  drm/amd/display: Run full global validation in dc_commit_state
  drm/amd/display: Set plane update flags for all planes in reset
  drm/amd/display: Reset link encoder assignments for GPU reset

Sung Joon Kim (1):
  drm/amd/display: retain/release at proper places in link_enc
    assignment

Yi-Ling Chen (1):
  drm/amd/display: Fixed DSC would not PG after removing DSC stream

Zhan Liu (2):
  drm/amd/display: enable seamless boot for DCN301
  drm/amd/display: Rename dcn_validate_bandwidth to
    dcn10_validate_bandwidth

sungwang (1):
  drm/amd/display: Fix ODM combine issue with fast boot

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 66 +++++++++++++------
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |  3 +
 .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c |  2 +-
 .../drm/amd/display/dc/bios/bios_parser2.c    |  6 +-
 .../gpu/drm/amd/display/dc/calcs/dcn_calcs.c  |  2 +-
 .../gpu/drm/amd/display/dc/clk_mgr/clk_mgr.c  |  3 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 17 +++++
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  3 +-
 .../drm/amd/display/dc/core/dc_link_enc_cfg.c |  6 +-
 .../gpu/drm/amd/display/dc/core/dc_resource.c |  1 -
 drivers/gpu/drm/amd/display/dc/dc.h           |  2 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |  6 +-
 .../drm/amd/display/dc/dcn10/dcn10_resource.c |  2 +-
 .../drm/amd/display/dc/dcn20/dcn20_hwseq.c    |  2 +-
 .../amd/display/dc/dcn301/dcn301_resource.c   |  2 +-
 .../drm/amd/display/dc/dcn31/dcn31_hwseq.c    |  2 +-
 .../gpu/drm/amd/display/dc/dcn31/dcn31_init.c |  5 ++
 .../drm/amd/display/dc/dml/dsc/rc_calc_fpu.c  | 31 ---------
 .../drm/amd/display/dc/dml/dsc/rc_calc_fpu.h  |  4 --
 drivers/gpu/drm/amd/display/dc/dsc/rc_calc.c  | 28 --------
 drivers/gpu/drm/amd/display/dc/dsc/rc_calc.h  |  1 -
 .../gpu/drm/amd/display/dc/dsc/rc_calc_dpi.c  |  5 +-
 .../gpu/drm/amd/display/dc/inc/dcn_calcs.h    |  2 +-
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   | 11 +---
 24 files changed, 99 insertions(+), 113 deletions(-)

-- 
2.25.1


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

end of thread, other threads:[~2021-11-22 17:15 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-19 19:43 [PATCH 00/16] DC Patches November 22nd, 2021 Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 01/16] drm/amd/display: Fix DPIA outbox timeout after GPU reset Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 02/16] drm/amd/display: based on flag reset z10 function pointer Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 03/16] drm/amd/display: Run full global validation in dc_commit_state Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 04/16] drm/amd/display: enable seamless boot for DCN301 Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 05/16] drm/amd/display: Set plane update flags for all planes in reset Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 06/16] drm/amd/display: fixed an error related to 4:2:0/4:2:2 DSC Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 07/16] drm/amd/display: Reset link encoder assignments for GPU reset Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 08/16] drm/amd/display: Rename dcn_validate_bandwidth to dcn10_validate_bandwidth Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 09/16] drm/amd/display: retain/release at proper places in link_enc assignment Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 10/16] drm/amd/display: fix accidental casting enum to bool Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 11/16] drm/amd/display: Display object info table changes Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 12/16] drm/amd/display: Fixed DSC would not PG after removing DSC stream Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 13/16] drm/amd/display: Fix ODM combine issue with fast boot Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 14/16] drm/amd/display: add else to avoid double destroy clk_mgr Qingqing Zhuo
2021-11-22 15:38   ` Deucher, Alexander
2021-11-22 17:15     ` Zhuo, Qingqing (Lillian)
2021-11-19 19:43 ` [PATCH 15/16] drm/amd/display: [FW Promotion] Release 0.0.94 Qingqing Zhuo
2021-11-19 19:43 ` [PATCH 16/16] drm/amd/display: 3.2.163 Qingqing Zhuo
2021-11-22 14:27 ` [PATCH 00/16] DC Patches November 22nd, 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.