All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] DC Linux Patches May 31, 2017
@ 2017-05-31 15:51 Harry Wentland
       [not found] ` <20170531155218.29934-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 26+ messages in thread
From: Harry Wentland @ 2017-05-31 15:51 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Harry Wentland

 * Fix missed scaler programming
 * Some cleanups in atomic_check and commit_tail
 * Restrict DCN to x86
 * Bunch of DCN and other fixes


Amy Zhang (1):
  drm/amd/display: Disable PSR entry abort to prevent intermittent
    freezes

Andrey Grodzovsky (4):
  drm/amd/display: program scaler not called.
  drm/amd/display: Fix handling of scaling and underscan.
  drm/amd/display: Clean unused interface.
  drm/amd/display: Get rid of get_dm_commit_action

Charlene Liu (1):
  drm/amd/display: Add disable_psr debug flag

Corbin McElhanney (1):
  drm/amd/display: Allow update stream without surface

Dmytro Laktyushkin (2):
  drm/amd/display: add always_scale debug flag to dc
  drm/amd/display: stop adjusting scl taps when scl ratio is one on dcn

Harry Wentland (3):
  drm/amd/display: Limit DCN to x86 arch
  drm/amd/display: Don't guard x86 in Makefile
  drm/amd/display: Don't commit surfaces if no stream

Hersen Wu (1):
  drm/amd/display: create_links bug with empty DDI slot

Indrajit Das (1):
  drm/amd/display: enable static audio routing

Jeff Smith (1):
  drm/amd/display: default spd packet to invalid

Jerry Zuo (1):
  drm/amd/display: fix NULL pointer in dm_commit_surfaces

Shirish S (2):
  drm/amd/display: re-order the luma chroma addres updation
  drm/amd/display: update NV12/NV21 as the YUV format

Zeyu Fan (1):
  drm/amd/display: Add FORCE_HDR timing flag

 drivers/gpu/drm/amd/display/Kconfig                |   2 +-
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_types.c    | 343 +++++++++------------
 drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c |   7 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c           | 126 ++++----
 drivers/gpu/drm/amd/display/dc/core/dc_link.c      |   5 +
 drivers/gpu/drm/amd/display/dc/core/dc_resource.c  |   3 +-
 drivers/gpu/drm/amd/display/dc/dc.h                |   8 +-
 drivers/gpu/drm/amd/display/dc/dc_hw_types.h       |   2 +
 .../amd/display/dc/dce110/dce110_hw_sequencer.c    |   6 +-
 .../drm/amd/display/dc/dce110/dce110_mem_input_v.c |   6 +-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_transform.c |  32 +-
 11 files changed, 247 insertions(+), 293 deletions(-)

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

end of thread, other threads:[~2017-06-01 12:54 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-31 15:51 [PATCH 00/19] DC Linux Patches May 31, 2017 Harry Wentland
     [not found] ` <20170531155218.29934-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2017-05-31 15:52   ` [PATCH 01/19] drm/amd/display: add always_scale debug flag to dc Harry Wentland
2017-05-31 15:52   ` [PATCH 02/19] drm/amd/display: program scaler not called Harry Wentland
2017-05-31 15:52   ` [PATCH 03/19] drm/amd/display: Limit DCN to x86 arch Harry Wentland
     [not found]     ` <20170531155218.29934-4-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2017-06-01  4:15       ` zhoucm1
     [not found]         ` <592F94C8.9060808-5C7GfCeVMHo@public.gmane.org>
2017-06-01  8:50           ` Christian König
     [not found]             ` <fc9f8053-ac43-0774-ca52-c2c988685a45-5C7GfCeVMHo@public.gmane.org>
2017-06-01  9:03               ` zhoucm1
2017-06-01 12:54           ` Alex Deucher
2017-05-31 15:52   ` [PATCH 04/19] drm/amd/display: Fix handling of scaling and underscan Harry Wentland
     [not found]     ` <20170531155218.29934-5-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2017-05-31 16:39       ` Kai Wasserbäch
2017-05-31 15:52   ` [PATCH 05/19] drm/amd/display: Clean unused interface Harry Wentland
2017-05-31 15:52   ` [PATCH 06/19] drm/amd/display: Add disable_psr debug flag Harry Wentland
2017-05-31 15:52   ` [PATCH 07/19] drm/amd/display: Allow update stream without surface Harry Wentland
2017-05-31 15:52   ` [PATCH 08/19] drm/amd/display: Add FORCE_HDR timing flag Harry Wentland
2017-05-31 15:52   ` [PATCH 09/19] drm/amd/display: Disable PSR entry abort to prevent intermittent freezes Harry Wentland
2017-05-31 15:52   ` [PATCH 10/19] drm/amd/display: fix NULL pointer in dm_commit_surfaces Harry Wentland
2017-05-31 15:52   ` [PATCH 11/19] drm/amd/display: Get rid of get_dm_commit_action Harry Wentland
2017-05-31 15:52   ` [PATCH 12/19] drm/amd/display: Don't guard x86 in Makefile Harry Wentland
     [not found]     ` <20170531155218.29934-13-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2017-05-31 16:30       ` Kai Wasserbäch
2017-05-31 15:52   ` [PATCH 13/19] drm/amd/display: create_links bug with empty DDI slot Harry Wentland
2017-05-31 15:52   ` [PATCH 14/19] drm/amd/display: re-order the luma chroma addres updation Harry Wentland
2017-05-31 15:52   ` [PATCH 15/19] drm/amd/display: default spd packet to invalid Harry Wentland
2017-05-31 15:52   ` [PATCH 16/19] drm/amd/display: update NV12/NV21 as the YUV format Harry Wentland
2017-05-31 15:52   ` [PATCH 17/19] drm/amd/display: Don't commit surfaces if no stream Harry Wentland
2017-05-31 15:52   ` [PATCH 18/19] drm/amd/display: enable static audio routing Harry Wentland
2017-05-31 15:52   ` [PATCH 19/19] drm/amd/display: stop adjusting scl taps when scl ratio is one on dcn 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.