All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] DC Patches Apr 18, 2019
@ 2019-04-18 18:26 sunpeng.li-5C7GfCeVMHo
       [not found] ` <1555612024-359-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 19+ messages in thread
From: sunpeng.li-5C7GfCeVMHo @ 2019-04-18 18:26 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Leo Li

From: Leo Li <sunpeng.li@amd.com>

Summary of change:
* Implement ability to have an active CRTC, without any active planes
* Removed deprecated pplib interface
* Fixed potential register wait warning on boot
* Fixed potential eDP blackscreen on S4 resume


Anthony Koo (3):
  drm/amd/display: Allow system to enter stutter on init
  drm/amd/display: Send DMCU messages only if FW loaded
  drm/amd/display: Fix eDP Black screen after S4 resume

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

Charlene Liu (1):
  drm/amd/display: Add hubp_init entry to hubp vtable

Eric Bernstein (1):
  drm/amd/display: Allow cursor position when plane_res.ipp is NULL

Eric Yang (1):
  drm/amd/display: remove deprecated pplib interface

John Barberiz (1):
  drm/amd/display: Refactor dp vendor parsing logic to a function

Jun Lei (1):
  drm/amd/display: add explicit handshake between x86 and DMCU

Nicholas Kazlauskas (6):
  drm/amd/display: Refactor CRTC interrupt toggling logic
  drm/amd/display: Disable cursors before disabling planes
  drm/amd/display: Fix CRC vblank refs when changing interrupts
  drm/amd/display: Split enabling CRTC interrupts into two passes
  drm/amd/display: Allow commits with no planes active
  drm/amd/display: Do VRR transition before enable_crc_interrupts

Thomas Lim (1):
  drm/amd/display: Add power down display on boot flag

Wenjing Liu (1):
  drm/amd/display: Add function to copy DC streams

Yongqiang Sun (1):
  drm/amd/display: Refactor watermark programming

 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  | 230 ++++++++++++++++-----
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h  |   3 +
 drivers/gpu/drm/amd/display/dc/core/dc_link.c      |  71 +++++--
 drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c   |  77 +++----
 drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c |  21 +-
 drivers/gpu/drm/amd/display/dc/core/dc_stream.c    |  23 ++-
 drivers/gpu/drm/amd/display/dc/dc.h                |   3 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h           |   1 +
 drivers/gpu/drm/amd/display/dc/dc_stream.h         |   2 +
 drivers/gpu/drm/amd/display/dc/dce/dce_abm.c       |  18 --
 drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.c      |  35 +++-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_clk_mgr.c   |  27 +--
 .../gpu/drm/amd/display/dc/dcn10/dcn10_hubbub.c    |  49 +++--
 .../gpu/drm/amd/display/dc/dcn10/dcn10_hubbub.h    |  63 +++++-
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.c  |   6 +-
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.h  |   4 +
 .../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c  |  13 +-
 drivers/gpu/drm/amd/display/dc/dm_pp_smu.h         |  23 ---
 drivers/gpu/drm/amd/display/dc/inc/core_types.h    |   1 -
 drivers/gpu/drm/amd/display/dc/inc/hw/dchubbub.h   |   6 +
 drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h       |   2 +
 drivers/gpu/drm/amd/display/dc/inc/hw/hubp.h       |   1 +
 22 files changed, 462 insertions(+), 217 deletions(-)

-- 
2.7.4

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2019-04-18 18:27 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-18 18:26 [PATCH 00/18] DC Patches Apr 18, 2019 sunpeng.li-5C7GfCeVMHo
     [not found] ` <1555612024-359-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2019-04-18 18:26   ` [PATCH 01/18] drm/amd/display: Allow system to enter stutter on init sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 02/18] drm/amd/display: Add function to copy DC streams sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 03/18] drm/amd/display: Send DMCU messages only if FW loaded sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 04/18] drm/amd/display: Fix eDP Black screen after S4 resume sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 05/18] drm/amd/display: 3.2.27 sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 06/18] drm/amd/display: Allow cursor position when plane_res.ipp is NULL sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 07/18] drm/amd/display: add explicit handshake between x86 and DMCU sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 08/18] drm/amd/display: Refactor CRTC interrupt toggling logic sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 09/18] drm/amd/display: Disable cursors before disabling planes sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 10/18] drm/amd/display: Fix CRC vblank refs when changing interrupts sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 11/18] drm/amd/display: Split enabling CRTC interrupts into two passes sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 12/18] drm/amd/display: Allow commits with no planes active sunpeng.li-5C7GfCeVMHo
2019-04-18 18:26   ` [PATCH 13/18] drm/amd/display: Refactor watermark programming sunpeng.li-5C7GfCeVMHo
2019-04-18 18:27   ` [PATCH 14/18] drm/amd/display: Add power down display on boot flag sunpeng.li-5C7GfCeVMHo
2019-04-18 18:27   ` [PATCH 15/18] drm/amd/display: remove deprecated pplib interface sunpeng.li-5C7GfCeVMHo
2019-04-18 18:27   ` [PATCH 16/18] drm/amd/display: Add hubp_init entry to hubp vtable sunpeng.li-5C7GfCeVMHo
2019-04-18 18:27   ` [PATCH 17/18] drm/amd/display: Refactor dp vendor parsing logic to a function sunpeng.li-5C7GfCeVMHo
2019-04-18 18:27   ` [PATCH 18/18] drm/amd/display: Do VRR transition before enable_crc_interrupts sunpeng.li-5C7GfCeVMHo

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.