AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] DC Patches September 22, 2023
@ 2023-09-20  3:16 Wayne Lin
  2023-09-20  3:16 ` [PATCH 01/19] drm/amd/display: remove unused mmhub_reg_offsets Wayne Lin
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Wayne Lin @ 2023-09-20  3:16 UTC (permalink / raw)
  To: amd-gfx
  Cc: stylon.wang, Sunpeng.Li, Harry.Wentland, qingqing.zhuo,
	Rodrigo.Siqueira, roman.li, solomon.chiu, Daniel Wheeler,
	Aurabindo.Pillai, Wayne Lin, Bhawanpreet.Lakha, agustin.gutierrez,
	pavle.kotarac

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

- fix incorrect odm change detection logic
- add primary pipe check when building slice table for dcn3x
- add get primary dpp pipe resource interface
- add missing function pointer for DCN321 resource
- Rename DisableMinDispClkODM in dc_config
- Break after finding supported vlevel for repopulate
- Update OPP counter from new interface
- augment display clock in dc_cap structure
- Improve code style on bios_parser2
- skip audio config for virtual signal
- block MPO if it prevents pstate support
- Fix DP2.0 timing sync
- Improve x86 and dmub ips handshake
- remove guaranteed viewports limitation for odm
- add new windowed mpo odm minimal transition sequence
- reset stream slice count for new ODM policy
- determine fast update only before commit minimal transition state
- remove unused mmhub_reg_offsets

Cc: Daniel Wheeler <daniel.wheeler@amd.com>
---
Alex Hung (1):
  drm/amd/display: skip audio config for virtual signal

Alvin Lee (1):
  drm/amd/display: Break after finding supported vlevel for repopulate

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

Dmytro Laktyushkin (1):
  drm/amd/display: block MPO if it prevents pstate support

Duncan Ma (1):
  drm/amd/display: Improve x86 and dmub ips handshake

Gabe Teeger (1):
  drm/amd/display: Rename DisableMinDispClkODM in dc_config

Hong-lu Cheng (1):
  drm/amd/display: Update OPP counter from new interface

Ilya Bakoulin (1):
  drm/amd/display: Fix DP2.0 timing sync

Max Tseng (1):
  drm/amd/display: augment display clock in dc_cap structure

Qingqing Zhuo (1):
  drm/amd/display: remove unused mmhub_reg_offsets

Rodrigo Siqueira (1):
  drm/amd/display: Improve code style on bios_parser2

Wenjing Liu (8):
  drm/amd/display: determine fast update only before commit minimal
    transition state
  drm/amd/display: reset stream slice count for new ODM policy
  drm/amd/display: add new windowed mpo odm minimal transition sequence
  drm/amd/display: remove guaranteed viewports limitation for odm
  drm/amd/display: add missing function pointer for DCN321 resource
  drm/amd/display: add get primary dpp pipe resource interface
  drm/amd/display: add primary pipe check when building slice table for
    dcn3x
  drm/amd/display: fix incorrect odm change detection logic

 .../drm/amd/display/dc/bios/bios_parser2.c    |  37 +--
 .../display/dc/clk_mgr/dcn35/dcn35_clk_mgr.c  |  37 +++
 .../amd/display/dc/clk_mgr/dcn35/dcn35_smu.c  |  14 +-
 .../amd/display/dc/clk_mgr/dcn35/dcn35_smu.h  |   4 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 311 ++++++++++++------
 .../gpu/drm/amd/display/dc/core/dc_resource.c |  46 +++
 drivers/gpu/drm/amd/display/dc/dc.h           |  13 +-
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c  |  57 +++-
 .../gpu/drm/amd/display/dc/dce/dce_audio.c    |   4 +
 .../drm/amd/display/dc/dcn20/dcn20_hwseq.c    |  89 ++---
 .../drm/amd/display/dc/dcn314/dcn314_dccg.c   |   1 +
 .../amd/display/dc/dcn314/dcn314_resource.c   |   2 +
 .../amd/display/dc/dcn315/dcn315_resource.c   |   4 +-
 .../gpu/drm/amd/display/dc/dcn32/dcn32_dccg.c |   1 +
 .../amd/display/dc/dcn321/dcn321_resource.c   |   1 +
 .../gpu/drm/amd/display/dc/dcn35/dcn35_dccg.c |   1 +
 .../drm/amd/display/dc/dcn35/dcn35_hwseq.c    |  30 +-
 .../drm/amd/display/dc/dcn35/dcn35_hwseq.h    |   3 +
 .../gpu/drm/amd/display/dc/dcn35/dcn35_init.c |   4 +-
 .../drm/amd/display/dc/dcn35/dcn35_resource.c |  14 +-
 .../drm/amd/display/dc/dml/dcn32/dcn32_fpu.c  |  44 +--
 .../gpu/drm/amd/display/dc/inc/core_types.h   |  11 +
 .../gpu/drm/amd/display/dc/inc/hw/clk_mgr.h   |   2 +
 drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h  |   4 +
 .../gpu/drm/amd/display/dc/inc/hw_sequencer.h |   3 +-
 drivers/gpu/drm/amd/display/dc/inc/resource.h |  16 +
 26 files changed, 527 insertions(+), 226 deletions(-)

-- 
2.37.3


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

end of thread, other threads:[~2023-09-20  3:22 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-20  3:16 [PATCH 00/19] DC Patches September 22, 2023 Wayne Lin
2023-09-20  3:16 ` [PATCH 01/19] drm/amd/display: remove unused mmhub_reg_offsets Wayne Lin
2023-09-20  3:16 ` [PATCH 02/19] drm/amd/display: determine fast update only before commit minimal transition state Wayne Lin
2023-09-20  3:16 ` [PATCH 03/19] drm/amd/display: reset stream slice count for new ODM policy Wayne Lin
2023-09-20  3:16 ` [PATCH 04/19] drm/amd/display: add new windowed mpo odm minimal transition sequence Wayne Lin
2023-09-20  3:16 ` [PATCH 05/19] drm/amd/display: remove guaranteed viewports limitation for odm Wayne Lin
2023-09-20  3:16 ` [PATCH 06/19] drm/amd/display: Improve x86 and dmub ips handshake Wayne Lin
2023-09-20  3:16 ` [PATCH 07/19] drm/amd/display: Fix DP2.0 timing sync Wayne Lin
2023-09-20  3:16 ` [PATCH 08/19] drm/amd/display: block MPO if it prevents pstate support Wayne Lin
2023-09-20  3:16 ` [PATCH 09/19] drm/amd/display: skip audio config for virtual signal Wayne Lin
2023-09-20  3:16 ` [PATCH 10/19] drm/amd/display: Improve code style on bios_parser2 Wayne Lin
2023-09-20  3:16 ` [PATCH 11/19] drm/amd/display: augment display clock in dc_cap structure Wayne Lin
2023-09-20  3:16 ` [PATCH 12/19] drm/amd/display: Update OPP counter from new interface Wayne Lin
2023-09-20  3:16 ` [PATCH 13/19] drm/amd/display: Break after finding supported vlevel for repopulate Wayne Lin
2023-09-20  3:16 ` [PATCH 14/19] drm/amd/display: Rename DisableMinDispClkODM in dc_config Wayne Lin
2023-09-20  3:16 ` [PATCH 15/19] drm/amd/display: add missing function pointer for DCN321 resource Wayne Lin
2023-09-20  3:16 ` [PATCH 16/19] drm/amd/display: add get primary dpp pipe resource interface Wayne Lin
2023-09-20  3:16 ` [PATCH 17/19] drm/amd/display: add primary pipe check when building slice table for dcn3x Wayne Lin
2023-09-20  3:16 ` [PATCH 18/19] drm/amd/display: fix incorrect odm change detection logic Wayne Lin
2023-09-20  3:16 ` [PATCH 19/19] drm/amd/display: 3.2.253 Wayne Lin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox