AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/35] DC Changes Jan 31, 2019
@ 2019-02-01 15:28 Bhawanpreet Lakha
       [not found] ` <20190201152847.11151-1-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 48+ messages in thread
From: Bhawanpreet Lakha @ 2019-02-01 15:28 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Bhawanpreet Lakha

Summary of Changes
*Fix a DP compliance test
*Refactoring some things (amdgpu_dm, DRR, init_hw, vupdate etc)
*MST fixes

Anthony Koo (8):
  drm/amd/display: fix issue with DC brightness low with VB
  drm/amd/display: link_rate_set should index into table
  drm/amd/display: interface to check if timing can be seamless
  drm/amd/display: refactor out programming of vupdate interrupt
  drm/amd/display: add way to determine if link is active
  drm/amd/display: add seamless boot flag to stream
  drm/amd/display: refactor programming of DRR
  drm/amd/display: refactor init_hw to isolate pipe related init

Chiawen Huang (1):
  drm/amd/display: add gpio lock/unlock

Dmytro Laktyushkin (2):
  drm/amd/display: add a debug flag to force odm combine
  drm/amd/display: add n_vid_mul and half pix_rate for odm

Eryk Brol (1):
  drm/amd/display: DC VM Fixes

Ilya Bakoulin (1):
  drm/amd/display: Check that vrefresh is in freesync range

Jerry (Fangzhi) Zuo (2):
  drm/amd/display: Apply fake sink back to MST sequence
  drm/amd/display: Clear dc_sink after it gets released

John Barberiz (1):
  drm/amd/display: Use udelay when waiting between aux retries

Josip Pavic (1):
  drm/amd/display: Modify ABM 2.2 Max Reduction

Krunoslav Kovac (1):
  drm/amd/display: DGAM enabled for HDR

Murton Liu (1):
  drm/amd/display: PIP overlay corruption

Nicholas Kazlauskas (7):
  drm/amd/display: Apply all surface updates onto surfaces
  drm/amd/display: Use the right surface for flip and FreeSync
  drm/amd/display: Reformat dm_determine_update_type_for_commit
  drm/amd/display: Initialize stream_update to zero
  drm/amd/display: Remove FreeSync timing changed debug output
  drm/amd/display: Disconnect mpcc when changing tg
  drm/amd/display: Don't re-program planes for DPMS changes

Paul Hsieh (1):
  drm/amd/display: dmcu is blocking due to wrong disable ABM command

Steven Chiu (1):
  drm/amd/display: 3.2.16

Su Sung Chung (1):
  drm/amd/display: store timing sync info in dc_stream_status

Wenjing Liu (1):
  drm/amd/display: determine if a pipe is synced by plane state

Wesley Chalmers (1):
  drm/amd/display: Disable Stutter for Stereo 3D

Xiaodong Yan (1):
  drm/amd/display: Add monitor patch for backlight

Yongqiang Sun (2):
  drm/amd/display: make vline_config parameter const.
  drm/amd/display: Calc vline position in dc.

mmcgarri (1):
  drm/amd/display:3.2.17

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 182 +++++++---------
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |   5 +
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 189 +++++++++++++++--
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  65 +++---
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |  35 +---
 .../drm/amd/display/dc/core/dc_link_hwss.c    |   4 +
 .../gpu/drm/amd/display/dc/core/dc_resource.c |  56 ++++-
 .../drm/amd/display/dc/core/dc_vm_helper.c    |  18 +-
 drivers/gpu/drm/amd/display/dc/dc.h           |   8 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h      |   2 +
 drivers/gpu/drm/amd/display/dc/dc_stream.h    |  25 ++-
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   1 +
 drivers/gpu/drm/amd/display/dc/dce/dce_abm.c  |   4 +-
 drivers/gpu/drm/amd/display/dc/dce/dce_aux.c  |   2 +-
 .../drm/amd/display/dc/dce/dce_clock_source.c |  28 ++-
 .../display/dc/dce110/dce110_hw_sequencer.c   |  50 +++--
 .../drm/amd/display/dc/dcn10/dcn10_hubbub.c   |  19 +-
 .../drm/amd/display/dc/dcn10/dcn10_hubbub.h   |   2 +-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_hubp.c |  23 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c | 194 ++++++++---------
 .../amd/display/dc/dcn10/dcn10_link_encoder.c |  10 +
 .../amd/display/dc/dcn10/dcn10_link_encoder.h |   2 +
 .../gpu/drm/amd/display/dc/dcn10/dcn10_optc.c | 197 ++++++++++++++++--
 .../gpu/drm/amd/display/dc/dcn10/dcn10_optc.h |   8 +-
 .../gpu/drm/amd/display/dc/gpio/gpio_base.c   |  12 ++
 .../drm/amd/display/dc/gpio/gpio_service.c    |  28 +++
 .../drm/amd/display/dc/gpio/gpio_service.h    |  10 +
 .../gpu/drm/amd/display/dc/inc/clock_source.h |   4 +
 .../drm/amd/display/dc/inc/hw/link_encoder.h  |   1 +
 .../amd/display/dc/inc/hw/timing_generator.h  |  13 +-
 .../gpu/drm/amd/display/dc/inc/hw_sequencer.h |   2 +
 .../gpu/drm/amd/display/dc/inc/vm_helper.h    |   7 +-
 .../drm/amd/display/include/gpio_interface.h  |   8 +
 .../amd/display/modules/color/color_gamma.c   |  89 ++++----
 .../amd/display/modules/power/power_helpers.c |  38 ++--
 35 files changed, 933 insertions(+), 408 deletions(-)

-- 
2.17.1

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

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

end of thread, other threads:[~2019-02-04 16:21 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-01 15:28 [PATCH 00/35] DC Changes Jan 31, 2019 Bhawanpreet Lakha
     [not found] ` <20190201152847.11151-1-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-01 15:28   ` [PATCH 01/35] drm/amd/display: Use udelay when waiting between aux retries Bhawanpreet Lakha
     [not found]     ` <20190201152847.11151-2-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-01 17:31       ` sylvain.bertrand-Re5JQEeQqe8AvxtiuMwx3w
2019-02-01 19:16         ` Wentland, Harry
     [not found]           ` <fda8f6ec-5a75-6456-3034-f3714b304b77-5C7GfCeVMHo@public.gmane.org>
2019-02-01 20:08             ` sylvain.bertrand-Re5JQEeQqe8AvxtiuMwx3w
2019-02-01 20:47               ` sylvain.bertrand-Re5JQEeQqe8AvxtiuMwx3w
2019-02-01 21:20                 ` Wentland, Harry
     [not found]                   ` <058665e8-0241-8fc1-8a2a-9f1d7484b29e-5C7GfCeVMHo@public.gmane.org>
2019-02-01 22:55                     ` sylvain.bertrand-Re5JQEeQqe8AvxtiuMwx3w
2019-02-04 15:43                       ` Wentland, Harry
     [not found]                         ` <e7211c67-8ea3-e8f5-8f91-d7af94c1a603-5C7GfCeVMHo@public.gmane.org>
2019-02-04 16:21                           ` sylvain.bertrand-Re5JQEeQqe8AvxtiuMwx3w
2019-02-01 15:28   ` [PATCH 02/35] drm/amd/display: Apply all surface updates onto surfaces Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 03/35] drm/amd/display: Use the right surface for flip and FreeSync Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 04/35] drm/amd/display: Reformat dm_determine_update_type_for_commit Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 05/35] drm/amd/display: Initialize stream_update to zero Bhawanpreet Lakha
     [not found]     ` <20190201152847.11151-6-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-03 17:45       ` Nils Wallménius
2019-02-01 15:28   ` [PATCH 06/35] drm/amd/display: Remove FreeSync timing changed debug output Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 07/35] drm/amd/display: Add monitor patch for backlight Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 08/35] drm/amd/display: fix issue with DC brightness low with VB Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 09/35] drm/amd/display: dmcu is blocking due to wrong disable ABM command Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 10/35] drm/amd/display: Check that vrefresh is in freesync range Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 11/35] drm/amd/display: DGAM enabled for HDR Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 12/35] drm/amd/display: determine if a pipe is synced by plane state Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 13/35] drm/amd/display: 3.2.16 Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 14/35] drm/amd/display: add gpio lock/unlock Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 15/35] drm/amd/display: make vline_config parameter const Bhawanpreet Lakha
     [not found]     ` <20190201152847.11151-16-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-03 17:49       ` Nils Wallménius
     [not found]         ` <CA+nq7DtCqojJynhoxwyPnUGXf4gPzkrypi7dUT_ahQ9DDygqKQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-02-04 15:45           ` [PATCH 15/35] drm/amd/display: pass vline_config parameter by reference Bhawanpreet Lakha
     [not found]             ` <20190204154522.22215-15-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-04 15:49               ` Fw: " Lakha, Bhawanpreet
2019-02-01 15:28   ` [PATCH 16/35] drm/amd/display: Modify ABM 2.2 Max Reduction Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 17/35] drm/amd/display: store timing sync info in dc_stream_status Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 18/35] drm/amd/display: add a debug flag to force odm combine Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 19/35] drm/amd/display: Apply fake sink back to MST sequence Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 20/35] drm/amd/display: Disconnect mpcc when changing tg Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 21/35] drm/amd/display: Don't re-program planes for DPMS changes Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 22/35] drm/amd/display: Clear dc_sink after it gets released Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 23/35] drm/amd/display: Calc vline position in dc Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 24/35] drm/amd/display: Disable Stutter for Stereo 3D Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 25/35] drm/amd/display: DC VM Fixes Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 26/35] drm/amd/display: link_rate_set should index into table Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 27/35] drm/amd/display: PIP overlay corruption Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 28/35] drm/amd/display:3.2.17 Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 29/35] drm/amd/display: interface to check if timing can be seamless Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 30/35] drm/amd/display: refactor out programming of vupdate interrupt Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 31/35] drm/amd/display: add way to determine if link is active Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 32/35] drm/amd/display: add seamless boot flag to stream Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 33/35] drm/amd/display: refactor programming of DRR Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 34/35] drm/amd/display: refactor init_hw to isolate pipe related init Bhawanpreet Lakha
2019-02-01 15:28   ` [PATCH 35/35] drm/amd/display: add n_vid_mul and half pix_rate for odm Bhawanpreet Lakha

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