All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] DC Patches 25 Feb 2019
@ 2019-02-25 22:45 Bhawanpreet Lakha
       [not found] ` <20190225224615.4507-1-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Bhawanpreet Lakha @ 2019-02-25 22:45 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Bhawanpreet Lakha

Summary of Changes
* Fix Null Pointers
* Update plane tiling attributes
* Overlay and Underlay work

Anthony Koo (2):
  drm/amd/display: Keep clocks high before seamless boot done
  drm/amd/display: Fix soft hang issue when some DPCD data invalid

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

Charlene Liu (2):
  Revert "drm/amd/display: dcn add check surface in_use"
  drm/amd/display: Add pp_smu null pointer check

David Francis (3):
  drm/amd/display: Allow pflips from a framebuffer to itself
  drm/amd/display: Refactor pageflips plane commit
  drm/amd/display: Re-add custom degamma support

Jun Lei (1):
  drm/amd/display: add full update commit hint struct

Martin Leung (1):
  drm/amd/display: half bandwidth for YCbCr420 during validation

Murton Liu (1):
  drm/amd/display: Fix Divide by 0 in memory calculations

Nicholas Kazlauskas (5):
  drm/amd/display: Set stream->mode_changed when connectors change
  drm/amd/display: Add plane capabilities to dc_caps
  drm/amd/display: Drop underlay plane support
  drm/amd/display: Create overlay planes
  drm/amd/display: Update plane tiling attributes for stream updates

Thomas Lim (1):
  drm/amd/display: Respect aux return values

Tyler DiBattista (1):
  drm/amd/display: Add function to create 4d19 fixed point

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 423 +++++++++---------
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |  21 +-
 .../drm/amd/display/dc/basics/fixpt31_32.c    |   5 +
 .../gpu/drm/amd/display/dc/calcs/dcn_calcs.c  |   6 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      |  33 +-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  33 +-
 .../gpu/drm/amd/display/dc/core/dc_link_ddc.c |  22 +-
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |   9 +
 .../gpu/drm/amd/display/dc/core/dc_resource.c |   8 +
 drivers/gpu/drm/amd/display/dc/dc.h           |  27 +-
 drivers/gpu/drm/amd/display/dc/dce/dce_aux.c  | 115 +++--
 drivers/gpu/drm/amd/display/dc/dce/dce_aux.h  |   5 +-
 .../drm/amd/display/dc/dce/dce_clock_source.c |   2 +-
 .../amd/display/dc/dce100/dce100_resource.c   |   8 +
 .../amd/display/dc/dce110/dce110_resource.c   |  20 +
 .../amd/display/dc/dce112/dce112_resource.c   |   8 +
 .../amd/display/dc/dce120/dce120_resource.c   |   8 +
 .../drm/amd/display/dc/dce80/dce80_resource.c |  17 +
 .../drm/amd/display/dc/dcn10/dcn10_clk_mgr.c  |  11 +-
 .../drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c |  20 +-
 .../drm/amd/display/dc/dcn10/dcn10_hubbub.c   |  46 --
 .../drm/amd/display/dc/dcn10/dcn10_hubbub.h   |  25 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |  29 +-
 .../drm/amd/display/dc/dcn10/dcn10_resource.c |  12 +
 .../gpu/drm/amd/display/dc/inc/clock_source.h |   2 +-
 .../gpu/drm/amd/display/dc/inc/core_types.h   |   4 +
 .../gpu/drm/amd/display/dc/inc/dc_link_ddc.h  |   5 +-
 .../gpu/drm/amd/display/dc/inc/hw/dchubbub.h  |   3 -
 .../gpu/drm/amd/display/dc/inc/hw_sequencer.h |   2 -
 .../gpu/drm/amd/display/include/fixed31_32.h  |   2 +
 .../amd/display/modules/color/color_gamma.c   |   2 +
 31 files changed, 558 insertions(+), 375 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] 23+ messages in thread

end of thread, other threads:[~2019-03-05 17:15 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-25 22:45 [PATCH 00/18] DC Patches 25 Feb 2019 Bhawanpreet Lakha
     [not found] ` <20190225224615.4507-1-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-25 22:45   ` [PATCH 01/18] drm/amd/display: add full update commit hint struct Bhawanpreet Lakha
2019-02-25 22:45   ` [PATCH 02/18] drm/amd/display: Add function to create 4d19 fixed point Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 03/18] drm/amd/display: Respect aux return values Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 04/18] drm/amd/display: Set stream->mode_changed when connectors change Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 05/18] drm/amd/display: Add plane capabilities to dc_caps Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 06/18] drm/amd/display: Drop underlay plane support Bhawanpreet Lakha
     [not found]     ` <20190225224615.4507-7-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-03-05 17:09       ` Michel Dänzer
     [not found]         ` <daf986ad-a939-05d2-8ee5-e103727d6b1d-otUistvHUpPR7s880joybQ@public.gmane.org>
2019-03-05 17:15           ` Kazlauskas, Nicholas
2019-02-25 22:46   ` [PATCH 07/18] drm/amd/display: Create overlay planes Bhawanpreet Lakha
     [not found]     ` <20190225224615.4507-8-Bhawanpreet.Lakha-5C7GfCeVMHo@public.gmane.org>
2019-02-27  4:03       ` Vishwakarma, Pratik
     [not found]         ` <390d83da-8de3-08df-4215-e9f2e4502ee8-5C7GfCeVMHo@public.gmane.org>
2019-02-27 12:50           ` Nicholas Kazlauskas
2019-02-25 22:46   ` [PATCH 08/18] drm/amd/display: Allow pflips from a framebuffer to itself Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 09/18] drm/amd/display: Refactor pageflips plane commit Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 10/18] drm/amd/display: Keep clocks high before seamless boot done Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 11/18] drm/amd/display: half bandwidth for YCbCr420 during validation Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 12/18] Revert "drm/amd/display: dcn add check surface in_use" Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 13/18] drm/amd/display: Re-add custom degamma support Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 14/18] drm/amd/display: Update plane tiling attributes for stream updates Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 15/18] drm/amd/display: Fix soft hang issue when some DPCD data invalid Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 16/18] drm/amd/display: 3.2.20 Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 17/18] drm/amd/display: Add pp_smu null pointer check Bhawanpreet Lakha
2019-02-25 22:46   ` [PATCH 18/18] drm/amd/display: Fix Divide by 0 in memory calculations Bhawanpreet Lakha

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.