All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] DC Patches Nov 29, 2018
@ 2018-11-29 15:52 sunpeng.li-5C7GfCeVMHo
       [not found] ` <1543506743-4674-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 27+ messages in thread
From: sunpeng.li-5C7GfCeVMHo @ 2018-11-29 15:52 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Leo Li

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

Summary of change:
* Initial documentation of DC
* Implement tracing in DC
* Fix AUX transaction race

Chiawen Huang (1):
  drm/amd/display: Add customizable tracing event

David Francis (3):
  drm/amd/display: Start documentation of DC
  drm/amd/display: Add tracing to dc
  drm/amd/display: Allow clock lower on dce100

Fatemeh Darbehani (1):
  drm/amd/display: Clean up for DCN1 clock debug logging

Harmanprit Tatla (1):
  drm/amd/display: Info frame cleanup

Joshua Aberback (1):
  drm/amd/display: Remove unused panel patch "disconnect_delay"

Krunoslav Kovac (1):
  drm/amd/display: Fix spelling of axis in modules/color/color_gamma.c

Nevenko Stupar (1):
  drm/amd/display: Re-arrange GFX9 fields

Nicholas Kazlauskas (1):
  drm/amd/display: Copy crc_enabled when duplicating dm_crtc_state

SivapiriyanKumarasamy (1):
  drm/amd/display: Program dithering if requested

Steven Chiu (2):
  drm/amd/display: 3.2.07
  drm/amd/display: 3.2.08

Yogesh Mohan Marimuthu (1):
  drm/amd/display: fix sporadic multiple aux transaction failure

abdoulaye berthe (1):
  drm/amd/display: CTS 4.2.2.7

hersen wu (1):
  drm/amd/display: fbc state could not reach while enable fbc

 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  |  10 +-
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_trace.h    | 104 +++++++++++++++
 drivers/gpu/drm/amd/display/dc/core/dc.c           | 100 +++++++++++++-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c      |  21 ++-
 drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c   |   2 +-
 drivers/gpu/drm/amd/display/dc/core/dc_resource.c  | 145 ++++++---------------
 drivers/gpu/drm/amd/display/dc/core/dc_stream.c    |   2 +-
 drivers/gpu/drm/amd/display/dc/dc.h                |   2 +-
 drivers/gpu/drm/amd/display/dc/dc_hw_types.h       |   7 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h           |   6 +-
 drivers/gpu/drm/amd/display/dc/dc_stream.h         |   3 +
 drivers/gpu/drm/amd/display/dc/dc_types.h          |   9 +-
 .../amd/display/dc/dce100/dce100_hw_sequencer.c    |  14 +-
 .../drm/amd/display/dc/dce110/dce110_compressor.c  |  91 +++++--------
 .../amd/display/dc/dce110/dce110_hw_sequencer.c    |  57 ++++----
 .../gpu/drm/amd/display/dc/dcn10/dcn10_clk_mgr.c   |   4 +-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_clk_mgr.h   |   6 +
 .../gpu/drm/amd/display/dc/dcn10/dcn10_cm_common.c |   4 +-
 .../display/dc/dcn10/dcn10_hw_sequencer_debug.c    |  39 +++---
 .../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c  |   4 -
 drivers/gpu/drm/amd/display/dc/dm_event_log.h      |   1 +
 drivers/gpu/drm/amd/display/dc/dm_pp_smu.h         |   2 +-
 drivers/gpu/drm/amd/display/dc/dm_services.h       |  12 +-
 drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c |  65 +++------
 drivers/gpu/drm/amd/display/dc/gpio/gpio_service.h |   7 +-
 drivers/gpu/drm/amd/display/dc/inc/compressor.h    |   1 +
 drivers/gpu/drm/amd/display/dc/inc/core_types.h    |  12 +-
 .../drm/amd/display/modules/color/color_gamma.c    |  16 +--
 .../drm/amd/display/modules/freesync/freesync.c    |  10 +-
 .../drm/amd/display/modules/inc/mod_info_packet.h  |  14 +-
 .../gpu/drm/amd/display/modules/inc/mod_shared.h   |  27 ++--
 .../amd/display/modules/info_packet/info_packet.c  |  15 +--
 32 files changed, 481 insertions(+), 331 deletions(-)
 create mode 100644 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_trace.h

-- 
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] 27+ messages in thread

end of thread, other threads:[~2018-12-14 21:11 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-29 15:52 [PATCH 00/16] DC Patches Nov 29, 2018 sunpeng.li-5C7GfCeVMHo
     [not found] ` <1543506743-4674-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2018-11-29 15:52   ` [PATCH 01/16] drm/amd/display: fix sporadic multiple aux transaction failure sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 02/16] drm/amd/display: 3.2.07 sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 03/16] drm/amd/display: Start documentation of DC sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 04/16] drm/amd/display: Add tracing to dc sunpeng.li-5C7GfCeVMHo
     [not found]     ` <1543506743-4674-5-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2018-11-29 15:56       ` Christian König
     [not found]         ` <3179d43f-1c48-3987-ba6d-ce70052cc07c-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-11-30 14:57           ` [PATCH 04/16 v2] " David Francis
     [not found]             ` <20181130145706.5984-1-David.Francis-5C7GfCeVMHo@public.gmane.org>
2018-12-07  5:40               ` Kuehling, Felix
     [not found]                 ` <DM5PR12MB17077D9220A92FDC6007F4CC92AA0-2J9CzHegvk9TCtO+SvGBKwdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-12-07 14:41                   ` Wentland, Harry
     [not found]                     ` <66a179f3-88e1-42c5-3e61-52aec61fa1ce-5C7GfCeVMHo@public.gmane.org>
2018-12-07 14:46                       ` Wentland, Harry
     [not found]                         ` <7ec7a6fc-a1d5-61e2-da46-2660b7b46281-5C7GfCeVMHo@public.gmane.org>
2018-12-07 20:32                           ` Kuehling, Felix
     [not found]                             ` <df1b475d-8562-ddf8-836f-f68e8418bc2e-5C7GfCeVMHo@public.gmane.org>
2018-12-14 19:31                               ` Wentland, Harry
     [not found]                                 ` <06229a96-2826-4947-f805-65a12cd07c4f-5C7GfCeVMHo@public.gmane.org>
2018-12-14 21:11                                   ` Kuehling, Felix
2018-11-29 15:52   ` [PATCH 05/16] drm/amd/display: Remove unused panel patch "disconnect_delay" sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 06/16] drm/amd/display: Fix spelling of axis in modules/color/color_gamma.c sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 07/16] drm/amd/display: CTS 4.2.2.7 sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 08/16] drm/amd/display: Info frame cleanup sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 09/16] drm/amd/display: fbc state could not reach while enable fbc sunpeng.li-5C7GfCeVMHo
     [not found]     ` <1543506743-4674-10-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2018-11-29 16:27       ` Deucher, Alexander
     [not found]         ` <BN6PR12MB18092FE3F45C1039E19F2F5AF7D20-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-11-29 18:23           ` Li, Roman
2018-11-29 15:52   ` [PATCH 10/16] drm/amd/display: Re-arrange GFX9 fields sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 11/16] drm/amd/display: Add customizable tracing event sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 12/16] drm/amd/display: Copy crc_enabled when duplicating dm_crtc_state sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 13/16] drm/amd/display: Program dithering if requested sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 14/16] drm/amd/display: Allow clock lower on dce100 sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 15/16] drm/amd/display: 3.2.08 sunpeng.li-5C7GfCeVMHo
2018-11-29 15:52   ` [PATCH 16/16] drm/amd/display: Clean up for DCN1 clock debug logging 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.