AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches August 18, 2023
@ 2023-08-16  6:06 Wayne Lin
  2023-08-16  6:06 ` [PATCH 01/16] drm/amd/display: Expose mall capability Wayne Lin
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Wayne Lin @ 2023-08-16  6:06 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 have:

- Ensure FS is enabled before sending request to DMUB for FS changes
- Add check for PMFW hard min request complete
- Save addr update in scratch before flip
- Fix static screen detection setting
- Write flip addr to scratch reg for subvp
- set minimum of VBlank_nom
- Correct unit conversion for vstartup
- Roll back unit correction
- Enable runtime register offset init for DCN32 DMUB
- Refactor edp power control
- PQ regamma end point
- PQ tail accuracy
- Blank phantom OTG before enabling
- Expose mall capability

Cc: Daniel Wheeler <daniel.wheeler@amd.com>

---

Alvin Lee (3):
  drm/amd/display: Blank phantom OTG before enabling
  drm/amd/display: Write flip addr to scratch reg for subvp
  drm/amd/display: Save addr update in scratch before flip

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

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

Aurabindo Pillai (2):
  drm/amd/display: Expose mall capability
  drm/amd/display: Enable runtime register offset init for DCN32 DMUB

ChunTao Tso (1):
  drm/amd/display: set minimum of VBlank_nom

Ian Chen (1):
  drm/amd/display: Refactor edp power control

Krunoslav Kovac (2):
  drm/amd/display: PQ tail accuracy
  drm/amd/display: PQ regamma end point

Ovidiu Bunea (1):
  drm/amd/display: Roll back unit correction

Reza Amini (1):
  drm/amd/display: Correct unit conversion for vstartup

Samson Tam (2):
  drm/amd/display: add check for PMFW hard min request complete
  drm/amd/display: ensure FS is enabled before sending request to DMUB
    for FS changes

SungHuai Wang (1):
  drm/amd/display: fix static screen detection setting

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |   5 +
 .../amd/display/amdgpu_dm/amdgpu_dm_debugfs.c |  19 +++
 .../drm/amd/display/dc/clk_mgr/dcn32/dalsmc.h |  11 +-
 .../dc/clk_mgr/dcn32/dcn32_clk_mgr_smu_msg.c  | 154 +++++++++++++++++-
 drivers/gpu/drm/amd/display/dc/core/dc.c      |  71 +++-----
 .../drm/amd/display/dc/core/dc_hw_sequencer.c |  23 +++
 drivers/gpu/drm/amd/display/dc/dc.h           |   6 +-
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c  |  11 +-
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.h  |   1 +
 drivers/gpu/drm/amd/display/dc/dc_stream.h    |   1 -
 .../display/dc/dce110/dce110_hw_sequencer.c   |   2 +-
 .../drm/amd/display/dc/dcn20/dcn20_hwseq.c    |  22 ++-
 .../amd/display/dc/dcn30/dcn30_cm_common.c    | 104 ++++--------
 .../drm/amd/display/dc/dcn30/dcn30_hwseq.c    |  17 ++
 .../drm/amd/display/dc/dcn30/dcn30_hwseq.h    |   2 +
 .../gpu/drm/amd/display/dc/dcn30/dcn30_init.c |   2 +-
 .../gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c  |  17 --
 .../gpu/drm/amd/display/dc/dcn31/dcn31_init.c |   2 +-
 .../drm/amd/display/dc/dcn314/dcn314_hwseq.c  |   3 +-
 .../drm/amd/display/dc/dcn314/dcn314_init.c   |   2 +-
 .../drm/amd/display/dc/dcn32/dcn32_hwseq.c    |  46 ++++++
 .../drm/amd/display/dc/dcn32/dcn32_hwseq.h    |   5 +
 .../gpu/drm/amd/display/dc/dcn32/dcn32_init.c |   3 +-
 .../amd/display/dc/dml/dcn314/dcn314_fpu.c    |  21 ++-
 .../drm/amd/display/dc/dml/dcn32/dcn32_fpu.c  |  18 ++
 .../gpu/drm/amd/display/dc/inc/core_types.h   |   2 +
 .../gpu/drm/amd/display/dc/inc/hw_sequencer.h |  15 +-
 drivers/gpu/drm/amd/display/dc/inc/link.h     |   1 +
 .../gpu/drm/amd/display/dc/link/link_dpms.c   |   9 +-
 .../drm/amd/display/dc/link/link_factory.c    |   1 +
 .../display/dc/link/protocols/link_dp_phy.c   |   3 +-
 .../link/protocols/link_edp_panel_control.c   |  29 ++++
 .../link/protocols/link_edp_panel_control.h   |   1 +
 drivers/gpu/drm/amd/display/dmub/dmub_srv.h   |  21 ++-
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |   5 -
 .../gpu/drm/amd/display/dmub/src/dmub_dcn32.c |  64 ++++++--
 .../gpu/drm/amd/display/dmub/src/dmub_dcn32.h |  17 +-
 .../gpu/drm/amd/display/dmub/src/dmub_srv.c   |  13 ++
 .../amd/display/modules/color/color_gamma.c   | 115 ++++++++++++-
 39 files changed, 674 insertions(+), 190 deletions(-)

-- 
2.37.3


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

end of thread, other threads:[~2023-08-21 13:28 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-16  6:06 [PATCH 00/16] DC Patches August 18, 2023 Wayne Lin
2023-08-16  6:06 ` [PATCH 01/16] drm/amd/display: Expose mall capability Wayne Lin
2023-08-16  6:06 ` [PATCH 02/16] drm/amd/display: Blank phantom OTG before enabling Wayne Lin
2023-08-16  6:06 ` [PATCH 03/16] drm/amd/display: PQ tail accuracy Wayne Lin
2023-08-16  6:06 ` [PATCH 04/16] drm/amd/display: PQ regamma end point Wayne Lin
2023-08-16  6:06 ` [PATCH 05/16] drm/amd/display: Refactor edp power control Wayne Lin
2023-08-16  6:06 ` [PATCH 06/16] drm/amd/display: Enable runtime register offset init for DCN32 DMUB Wayne Lin
2023-08-16  6:06 ` [PATCH 07/16] drm/amd/display: Roll back unit correction Wayne Lin
2023-08-16  6:06 ` [PATCH 08/16] drm/amd/display: Correct unit conversion for vstartup Wayne Lin
2023-08-16  6:06 ` [PATCH 09/16] drm/amd/display: set minimum of VBlank_nom Wayne Lin
2023-08-16  6:06 ` [PATCH 10/16] drm/amd/display: Write flip addr to scratch reg for subvp Wayne Lin
2023-08-16  6:06 ` [PATCH 11/16] drm/amd/display: fix static screen detection setting Wayne Lin
2023-08-16  6:06 ` [PATCH 12/16] drm/amd/display: Save addr update in scratch before flip Wayne Lin
2023-08-16  6:06 ` [PATCH 13/16] drm/amd/display: add check for PMFW hard min request complete Wayne Lin
2023-08-16  6:06 ` [PATCH 14/16] drm/amd/display: ensure FS is enabled before sending request to DMUB for FS changes Wayne Lin
2023-08-16  6:06 ` [PATCH 15/16] drm/amd/display: [FW Promotion] Release 0.0.180.0 Wayne Lin
2023-08-16  6:06 ` [PATCH 16/16] drm/amd/display: 3.2.248 Wayne Lin
2023-08-21 13:28 ` [PATCH 00/16] DC Patches August 18, 2023 Wheeler, Daniel

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