All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] DC Patches Mar 28, 2017
@ 2017-03-28 21:09 Harry Wentland
       [not found] ` <20170328210955.11281-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Harry Wentland @ 2017-03-28 21:09 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Harry Wentland

* Switching to CRTC_VERTICAL_INTERRUPT for vblank notifications.
  This should resolve some problems with frame time that were observed
  by haagch and Evillina
* Fix for dmif timeout that was getting hit constantly and caused
  issues on some systems
* Bunch of other fixes and rework

Andrey Grodzovsky (2):
  drm/amd/display: use CRTC_VERTICAL_INTERRUPT0 as VBLANK trigger.
  drm/amd/display: use CRTC_VERTICAL_INTERRUPT0 as a trigger for VBLANK.

Charlene Liu (2):
  drm/amd/display: using calculated values for VReady/Startup
  drm/amd/display: voltage request related change

Ding Wang (1):
  drm/amd/display: obtain usHBR3En bit from BP 1

Harry Wentland (1):
  drm/amd/display: Rename bandwidth_calcs.h to dce_calcs.h

Roman Li (1):
  drm/amd/display: increase timeout for dmif dealloc

Tony Cheng (1):
  drm/amd/display: use CP2520-3 for PHY compliance automation

Vitaly Prosyak (1):
  drm/amd/display: stereo support

Yongqiang Sun (2):
  drm/amd/display: Power on front end during set mode.
  drm/amd/display: Fix MPO exit and cursor issue.

xhdu (1):
  drm/amd/display: Add audio/video ContainerId implementation

 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  |  3 +-
 drivers/gpu/drm/amd/display/dc/bios/bios_parser.c  | 14 ++---
 drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c   |  2 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c           |  2 +-
 drivers/gpu/drm/amd/display/dc/core/dc_resource.c  | 34 ++++++++---
 drivers/gpu/drm/amd/display/dc/core/dc_sink.c      | 39 ++++++++++++-
 drivers/gpu/drm/amd/display/dc/core/dc_stream.c    | 19 ++++--
 drivers/gpu/drm/amd/display/dc/dc.h                | 16 ++++-
 drivers/gpu/drm/amd/display/dc/dc_hw_types.h       |  9 +++
 .../gpu/drm/amd/display/dc/dce/dce_clock_source.c  |  1 +
 drivers/gpu/drm/amd/display/dc/dce/dce_clocks.c    | 27 ++++-----
 .../gpu/drm/amd/display/dc/dce/dce_link_encoder.c  |  5 +-
 drivers/gpu/drm/amd/display/dc/dce/dce_mem_input.c |  2 +-
 .../amd/display/dc/dce110/dce110_hw_sequencer.c    |  3 +
 .../drm/amd/display/dc/dce110/dce110_mem_input_v.c |  2 +-
 .../display/dc/dce110/dce110_timing_generator.c    | 46 ++++++++++++++-
 .../display/dc/dce110/dce110_timing_generator.h    |  3 +
 .../display/dc/dce120/dce120_timing_generator.c    | 32 +++++++++-
 .../gpu/drm/amd/display/dc/dce80/dce80_mem_input.c |  2 +-
 .../amd/display/dc/dce80/dce80_timing_generator.c  |  1 +
 drivers/gpu/drm/amd/display/dc/dm_services_types.h |  2 +
 drivers/gpu/drm/amd/display/dc/inc/core_types.h    |  2 +-
 .../dc/inc/{bandwidth_calcs.h => dce_calcs.h}      |  8 ++-
 .../gpu/drm/amd/display/dc/inc/hw/display_clock.h  |  2 +
 drivers/gpu/drm/amd/display/dc/inc/hw/mem_input.h  |  2 +-
 .../drm/amd/display/dc/inc/hw/timing_generator.h   |  3 +-
 drivers/gpu/drm/amd/display/dc/inc/hw_sequencer.h  |  5 ++
 .../amd/display/dc/irq/dce110/irq_service_dce110.c | 68 +++++++++++++++-------
 .../amd/display/dc/irq/dce110/irq_service_dce110.h |  5 ++
 .../amd/display/dc/irq/dce120/irq_service_dce120.c | 11 ++--
 .../amd/display/dc/irq/dce80/irq_service_dce80.c   | 22 ++++---
 .../drm/amd/display/include/link_service_types.h   |  2 +-
 drivers/gpu/drm/amd/display/include/logger_types.h |  2 +
 33 files changed, 309 insertions(+), 87 deletions(-)
 rename drivers/gpu/drm/amd/display/dc/inc/{bandwidth_calcs.h => dce_calcs.h} (99%)

-- 
2.11.0

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

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

end of thread, other threads:[~2017-03-28 21:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-28 21:09 [PATCH 00/12] DC Patches Mar 28, 2017 Harry Wentland
     [not found] ` <20170328210955.11281-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2017-03-28 21:09   ` [PATCH 01/12] drm/amd/display: using calculated values for VReady/Startup Harry Wentland
2017-03-28 21:09   ` [PATCH 02/12] drm/amd/display: Add audio/video ContainerId implementation Harry Wentland
2017-03-28 21:09   ` [PATCH 03/12] drm/amd/display: Power on front end during set mode Harry Wentland
2017-03-28 21:09   ` [PATCH 04/12] drm/amd/display: Rename bandwidth_calcs.h to dce_calcs.h Harry Wentland
2017-03-28 21:09   ` [PATCH 05/12] drm/amd/display: use CRTC_VERTICAL_INTERRUPT0 as VBLANK trigger Harry Wentland
2017-03-28 21:09   ` [PATCH 06/12] drm/amd/display: use CRTC_VERTICAL_INTERRUPT0 as a trigger for VBLANK Harry Wentland
2017-03-28 21:09   ` [PATCH 07/12] drm/amd/display: voltage request related change Harry Wentland
2017-03-28 21:09   ` [PATCH 08/12] drm/amd/display: increase timeout for dmif dealloc Harry Wentland
2017-03-28 21:09   ` [PATCH 09/12] drm/amd/display: Fix MPO exit and cursor issue Harry Wentland
2017-03-28 21:09   ` [PATCH 10/12] drm/amd/display: use CP2520-3 for PHY compliance automation Harry Wentland
2017-03-28 21:09   ` [PATCH 11/12] drm/amd/display: stereo support Harry Wentland
2017-03-28 21:09   ` [PATCH 12/12] drm/amd/display: obtain usHBR3En bit from BP 1 Harry Wentland

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.