amd-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* DC Patches Apri 6, 2022
@ 2022-04-08 17:18 Pavle Kotarac
  2022-04-08 17:18 ` [PATCH 01/20] drm/amd/display: undo clearing of z10 related function pointers Pavle Kotarac
                   ` (20 more replies)
  0 siblings, 21 replies; 28+ messages in thread
From: Pavle Kotarac @ 2022-04-08 17:18 UTC (permalink / raw)
  To: amd-gfx
  Cc: stylon.wang, Sunpeng.Li, Harry.Wentland, qingqing.zhuo,
	Rodrigo.Siqueira, roman.li, solomon.chiu, Aurabindo.Pillai,
	wayne.lin, Bhawanpreet.Lakha, agustin.gutierrez, Pavle Kotarac

This DC patchset brings improvements in multiple areas. In summary, we highlight:
    
    *Disabling Z10 on DCN31
    *Fix issue breaking 32bit Linux build
    *Fix inconsistent timestamp type
    *Add DCN30 support FEC init
    *Fix crash on setting VRR with no display connected
    *Disable FEC if DSC not supported for EDP
    *Add odm seamless boot support
    *Select correct DTO source
    *Power down hardware if timer not trigger


AMD\syerizvi (1):
  drm/amd/display: Disabling Z10 on DCN31

Angus Wang (1):
  drm/amd/display: Fix inconsistent timestamp type

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

Charlene Liu (1):
  drm/amd/display: remove dtbclk_ss compensation for dcn316

David Zhang (1):
  drm/amd/display: implement shared PSR-SU sink validation helper

Dillon Varone (2):
  drm/amd/display: Add dtb clock to dc_clocks
  drm/amd/display: Select correct DTO source

Duncan Ma (1):
  drm/amd/display: Add odm seamless boot support

Eric Yang (1):
  drm/amd/display: undo clearing of z10 related function pointers

Evgenii Krasnikov (1):
  drm/amd/display: ensure PSR force_static flag can always be set

Harry VanZyllDeJong (1):
  drm/amd/display: Fix crash on setting VRR with no display connected

Hayden Goodfellow (1):
  drm/amd/display: Fix issue breaking 32bit Linux build

Iswara Nagulendran (1):
  drm/amd/display: Disable FEC if DSC not supported for EDP

Jingwen Zhu (1):
  drm/amd/display: add DCN30 support FEC init

Josip Pavic (1):
  drm/amd/display: do not wait for mpc idle if tg is disabled

Max Erenberg (1):
  drm/amd/display: Disallow entering PSR when panel is disconnected

Oliver Logush (2):
  drm/amd/display: Insert pulling smu busy status before sending another
    request
  drm/amd/display: Always update DPPCLK_DTO when clock increase

Paul Hsieh (1):
  drm/amd/display: Power down hardware if timer not trigger

hersen wu (1):
  drm/amd/display: expose skip_detection_link_training to debugfs

 .../amd/display/amdgpu_dm/amdgpu_dm_debugfs.c | 37 +++++++++
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c |  9 +-
 .../display/dc/clk_mgr/dce100/dce_clk_mgr.c   |  2 +-
 .../dc/clk_mgr/dcn201/dcn201_clk_mgr.c        |  3 +-
 .../amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c | 17 +++-
 .../dc/clk_mgr/dcn21/rn_clk_mgr_vbios_smu.c   |  3 +
 .../display/dc/clk_mgr/dcn301/vg_clk_mgr.c    |  3 +-
 .../display/dc/clk_mgr/dcn31/dcn31_clk_mgr.c  | 26 +++++-
 .../dc/clk_mgr/dcn316/dcn316_clk_mgr.c        |  4 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 13 +++
 drivers/gpu/drm/amd/display/dc/core/dc_link.c | 17 +++-
 .../gpu/drm/amd/display/dc/core/dc_resource.c | 82 ++++++++++++-------
 drivers/gpu/drm/amd/display/dc/dc.h           |  6 +-
 drivers/gpu/drm/amd/display/dc/dc_stream.h    |  1 +
 .../drm/amd/display/dc/dce/dce_clock_source.c |  2 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c | 40 +++++++--
 .../drm/amd/display/dc/dcn30/dcn30_hwseq.c    |  6 +-
 .../gpu/drm/amd/display/dc/dcn31/dcn31_init.c |  5 --
 .../gpu/drm/amd/display/dc/dcn31/dcn31_optc.c | 21 +++++
 .../gpu/drm/amd/display/dc/dcn31/dcn31_optc.h |  2 +
 .../drm/amd/display/dc/dcn31/dcn31_resource.c |  1 +
 .../amd/display/dc/inc/hw/timing_generator.h  |  2 +
 .../amd/display/modules/freesync/freesync.c   |  5 +-
 .../amd/display/modules/power/power_helpers.c | 38 +++++++++
 .../amd/display/modules/power/power_helpers.h |  1 +
 25 files changed, 285 insertions(+), 61 deletions(-)

-- 
2.32.0


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

end of thread, other threads:[~2022-06-28 19:10 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-08 17:18 DC Patches Apri 6, 2022 Pavle Kotarac
2022-04-08 17:18 ` [PATCH 01/20] drm/amd/display: undo clearing of z10 related function pointers Pavle Kotarac
2022-04-09 19:17   ` Paul Menzel
2022-04-08 17:18 ` [PATCH 02/20] drm/amd/display: do not wait for mpc idle if tg is disabled Pavle Kotarac
2022-04-09 19:21   ` Paul Menzel
2022-04-08 17:18 ` [PATCH 03/20] drm/amd/display: Disabling Z10 on DCN31 Pavle Kotarac
2022-04-09 19:26   ` Paul Menzel
2022-04-08 17:18 ` [PATCH 04/20] drm/amd/display: Disallow entering PSR when panel is disconnected Pavle Kotarac
2022-04-09 20:19   ` Paul Menzel
2022-04-08 17:18 ` [PATCH 05/20] drm/amd/display: Disable FEC if DSC not supported for EDP Pavle Kotarac
2022-04-08 17:18 ` [PATCH 06/20] drm/amd/display: Fix crash on setting VRR with no display connected Pavle Kotarac
2022-04-08 17:18 ` [PATCH 07/20] drm/amd/display: ensure PSR force_static flag can always be set Pavle Kotarac
2022-04-08 17:18 ` [PATCH 08/20] drm/amd/display: remove dtbclk_ss compensation for dcn316 Pavle Kotarac
2022-04-08 17:19 ` [PATCH 09/20] drm/amd/display: Power down hardware if timer not trigger Pavle Kotarac
2022-04-08 17:19 ` [PATCH 10/20] drm/amd/display: Insert pulling smu busy status before sending another request Pavle Kotarac
2022-06-28 19:09   ` Mike Lothian
2022-04-08 17:19 ` [PATCH 11/20] drm/amd/display: Always update DPPCLK_DTO when clock increase Pavle Kotarac
2022-04-08 17:19 ` [PATCH 12/20] drm/amd/display: Add odm seamless boot support Pavle Kotarac
2022-04-09 20:10   ` Paul Menzel
2022-04-08 17:19 ` [PATCH 13/20] drm/amd/display: add DCN30 support FEC init Pavle Kotarac
2022-04-08 17:19 ` [PATCH 14/20] drm/amd/display: Fix inconsistent timestamp type Pavle Kotarac
2022-04-08 17:19 ` [PATCH 15/20] drm/amd/display: Add dtb clock to dc_clocks Pavle Kotarac
2022-04-08 17:19 ` [PATCH 16/20] drm/amd/display: expose skip_detection_link_training to debugfs Pavle Kotarac
2022-04-08 17:19 ` [PATCH 17/20] drm/amd/display: Fix issue breaking 32bit Linux build Pavle Kotarac
2022-04-08 17:19 ` [PATCH 18/20] drm/amd/display: Select correct DTO source Pavle Kotarac
2022-04-08 17:19 ` [PATCH 19/20] drm/amd/display: 3.2.181 Pavle Kotarac
2022-04-08 17:19 ` [PATCH 20/20] drm/amd/display: implement shared PSR-SU sink validation helper Pavle Kotarac
2022-04-11 13:26 ` DC Patches Apri 6, 2022 Wheeler, Daniel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).