AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/45] DC Patches Dec 11, 2018
@ 2018-12-11 22:57 sunpeng.li-5C7GfCeVMHo
       [not found] ` <1544569071-7114-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 48+ messages in thread
From: sunpeng.li-5C7GfCeVMHo @ 2018-12-11 22:57 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: sunpeng.li-5C7GfCeVMHo

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

Lots of patches this time around, my appologies :) I've been falling
behind on preparing these, so doing some catch-up here.

Summary of change:
* Fix display corruption on some systems running Polaris
* Remove/demote some error messages to warnings
* Architectural refactors and cleanups on the DC stream object

Dale Zhao (1):
  drm/amd/display: Wait edp HPD to high in detect_sink

David Francis (4):
  drm/amd/display: Detach backlight from stream
  drm/amd/display: Warn instead of error on REG_WAIT timeout
  drm/amd/display: Add backlight pwm debugfs
  drm/amd/display: Remove unused parameter plane_states

Dmytro Laktyushkin (5):
  drm/amd/display: fix surface update sequence
  drm/amd/display: Remove some extra braces
  drm/amd/display: update DCN dml calcs
  drm/amd/display: add dsclk to pipe bw struct
  drm/amd/display: move AYCrCb8888 format to video section

Eric Bernstein (3):
  drm/amd/display: Expose hubp1_vready_workaround function
  drm/amd/display: Fix runtime errors for diagnostic tests
  drm/amd/display: Improve logging of validation failures during
    atomic_check

Eric Yang (3):
  drm/amd/display: update bw formula to v252
  drm/amd/display: fix YCbCr420 blank color
  drm/amd/display: Don't skip link training for empty dongle

Fatemeh Darbehani (2):
  drm/amd/display: Add pixel clock values to dtn logs
  drm/amd/display: Start using the new pp_smu interface

Harry Wentland (1):
  drm/amd/display: Don't log error if we have no connectors

Hugo Hu (1):
  drm/amd/display: Add debug option to force fclk request

Imad Syed (1):
  drm/amd/display: Remove unused headers

Jun Lei (3):
  drm/amd/display: Add a PP_SMU_VER_MAX enum
  drm/amd/display: remove sink reference in dc_stream_state
  drm/amd/display: add stream ID and otg instance in dc_stream_state

Ken Chalmers (2):
  drm/amd/display: Use 100 Hz precision for pipe pixel clocks
  drm/amd/display: Expand set_pixel_clock debug log message

Krunoslav Kovac (1):
  drm/amd/display: Fix issue with VLine interrupt not firing

Leo Li (6):
  drm/amd/display: Remove stream_status->link
  drm/amd/display: Fix driver load crash in amdgpu_dm
  drm/amd/display: Add DCE_VERSION_12_1 enum for Vega 20
  drm/amd/display: Add functionality to get XGMI SS info
  drm/amd/display: Use local variable instead of caching global
  drm/amd/display: Compensate for XGMI SS downspread on dprefclk

Lewis Huang (1):
  drm/amd/display: add plane size change check condition

Paul Hsieh (1):
  drm/amd/display: Add retry to read ddc_clock pin

Roman Li (1):
  drm/amd/display: Raise dispclk value for Polaris

SivapiriyanKumarasamy (2):
  drm/amd/display: Minor code cleanup
  drm/amd/display: Fix bug with not updating VSP infoframe

Steven Chiu (3):
  drm/amd/display: 3.2.09
  drm/amd/display: 3.2.10
  drm/amd/display: 3.2.11

Wenjing Liu (3):
  drm/amd/display: implement dc_init_callbacks to assign callback
    pointers after dc_create
  drm/amd/display: verify lane status before exiting verify link cap
  drm/amd/display: validate extended dongle caps

Yongqiang Sun (1):
  drm/amd/display: Optimize passive update planes.

 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  |  45 ++--
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c  |  49 +++-
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c  |   8 +-
 drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c |  15 ++
 .../gpu/drm/amd/display/dc/bios/command_table.c    |  19 +-
 .../gpu/drm/amd/display/dc/bios/command_table2.c   |  12 +-
 .../amd/display/dc/bios/command_table_helper2.c    |   1 +
 drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c   |  10 +-
 .../gpu/drm/amd/display/dc/calcs/dcn_calc_auto.c   |  43 +++-
 drivers/gpu/drm/amd/display/dc/calcs/dcn_calcs.c   |  19 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c           |  60 +++--
 drivers/gpu/drm/amd/display/dc/core/dc_link.c      | 132 ++++++-----
 drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c   | 256 +++++++++++----------
 drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c |  16 +-
 drivers/gpu/drm/amd/display/dc/core/dc_resource.c  |  32 +--
 drivers/gpu/drm/amd/display/dc/core/dc_stream.c    |  69 ++++--
 drivers/gpu/drm/amd/display/dc/dc.h                |  14 +-
 drivers/gpu/drm/amd/display/dc/dc_helper.c         |   4 +-
 drivers/gpu/drm/amd/display/dc/dc_hw_types.h       |   4 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h           |   4 +-
 drivers/gpu/drm/amd/display/dc/dc_stream.h         |  35 ++-
 drivers/gpu/drm/amd/display/dc/dc_types.h          |   1 +
 drivers/gpu/drm/amd/display/dc/dce/dce_clk_mgr.c   | 122 +++++++---
 drivers/gpu/drm/amd/display/dc/dce/dce_clk_mgr.h   |  35 ++-
 .../gpu/drm/amd/display/dc/dce/dce_clock_source.c  | 196 ++++++++--------
 drivers/gpu/drm/amd/display/dc/dce/dce_hwseq.h     |  12 +
 .../gpu/drm/amd/display/dc/dce/dce_link_encoder.c  |   8 +-
 .../drm/amd/display/dc/dce/dce_stream_encoder.c    |   4 +-
 .../amd/display/dc/dce110/dce110_hw_sequencer.c    |  57 ++---
 .../drm/amd/display/dc/dce110/dce110_resource.c    |  12 +-
 .../drm/amd/display/dc/dce112/dce112_resource.c    |   2 +-
 .../amd/display/dc/dce120/dce120_hw_sequencer.c    |  15 ++
 .../amd/display/dc/dce120/dce120_hw_sequencer.h    |   1 +
 .../drm/amd/display/dc/dce120/dce120_resource.c    |  81 ++++++-
 .../amd/display/dc/dce80/dce80_timing_generator.c  |   8 +-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_clk_mgr.c   | 107 +++------
 .../gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm.c    |  12 +-
 .../gpu/drm/amd/display/dc/dcn10/dcn10_hubbub.c    |  73 +++---
 .../gpu/drm/amd/display/dc/dcn10/dcn10_hubbub.h    |  12 -
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.c  |   2 +-
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hubp.h  |   2 +
 .../drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c  |  32 ++-
 .../display/dc/dcn10/dcn10_hw_sequencer_debug.c    |  11 +-
 .../drm/amd/display/dc/dcn10/dcn10_link_encoder.c  |  20 +-
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c  |  48 ++--
 .../gpu/drm/amd/display/dc/dcn10/dcn10_resource.c  |  10 +-
 .../amd/display/dc/dcn10/dcn10_stream_encoder.c    |   2 +-
 drivers/gpu/drm/amd/display/dc/dm_pp_smu.h         |   3 +-
 .../drm/amd/display/dc/dml/display_mode_enums.h    |  26 +++
 .../gpu/drm/amd/display/dc/dml/display_mode_lib.c  |  28 +++
 .../gpu/drm/amd/display/dc/dml/display_mode_lib.h  |   2 +
 .../drm/amd/display/dc/dml/display_mode_structs.h  | 107 +--------
 .../amd/display/dc/dml/dml1_display_rq_dlg_calc.c  |   4 +-
 drivers/gpu/drm/amd/display/dc/gpio/hw_factory.c   |   1 +
 drivers/gpu/drm/amd/display/dc/gpio/hw_translate.c |   1 +
 drivers/gpu/drm/amd/display/dc/i2caux/i2caux.c     |   1 +
 drivers/gpu/drm/amd/display/dc/inc/clock_source.h  |   8 +-
 drivers/gpu/drm/amd/display/dc/inc/core_status.h   |   2 +-
 drivers/gpu/drm/amd/display/dc/inc/core_types.h    |   7 +-
 drivers/gpu/drm/amd/display/dc/inc/hw/dchubbub.h   |  15 ++
 drivers/gpu/drm/amd/display/dc/inc/hw/dpp.h        |   5 +
 drivers/gpu/drm/amd/display/dc/inc/hw/mem_input.h  |   4 +-
 .../drm/amd/display/include/bios_parser_types.h    |   5 +-
 drivers/gpu/drm/amd/display/include/dal_types.h    |   1 +
 .../drm/amd/display/modules/color/color_gamma.c    |   2 +-
 .../drm/amd/display/modules/freesync/freesync.c    |  12 +-
 66 files changed, 1132 insertions(+), 834 deletions(-)

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

end of thread, other threads:[~2018-12-12 18:29 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-11 22:57 [PATCH 00/45] DC Patches Dec 11, 2018 sunpeng.li-5C7GfCeVMHo
     [not found] ` <1544569071-7114-1-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2018-12-11 22:57   ` [PATCH 01/45] drm/amd/display: 3.2.09 sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 02/45] drm/amd/display: Add a PP_SMU_VER_MAX enum sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 03/45] drm/amd/display: Expose hubp1_vready_workaround function sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 04/45] drm/amd/display: Fix runtime errors for diagnostic tests sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 05/45] drm/amd/display: fix surface update sequence sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 06/45] drm/amd/display: Add pixel clock values to dtn logs sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 07/45] drm/amd/display: Remove some extra braces sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 08/45] drm/amd/display: implement dc_init_callbacks to assign callback pointers after dc_create sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 09/45] drm/amd/display: add plane size change check condition sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 10/45] drm/amd/display: Fix issue with VLine interrupt not firing sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 11/45] drm/amd/display: update bw formula to v252 sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 12/45] drm/amd/display: Add debug option to force fclk request sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 13/45] drm/amd/display: remove sink reference in dc_stream_state sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 14/45] drm/amd/display: Remove unused headers sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 15/45] drm/amd/display: Detach backlight from stream sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 16/45] drm/amd/display: Raise dispclk value for Polaris sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 17/45] drm/amd/display: Warn instead of error on REG_WAIT timeout sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 18/45] drm/amd/display: update DCN dml calcs sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 19/45] drm/amd/display: fix YCbCr420 blank color sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 20/45] drm/amd/display: Wait edp HPD to high in detect_sink sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 21/45] drm/amd/display: Don't skip link training for empty dongle sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 22/45] drm/amd/display: add stream ID and otg instance in dc_stream_state sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 23/45] drm/amd/display: Add backlight pwm debugfs sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 24/45] drm/amd/display: 3.2.10 sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 25/45] drm/amd/display: Remove stream_status->link sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 26/45] drm/amd/display: Add retry to read ddc_clock pin sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 27/45] drm/amd/display: Fix driver load crash in amdgpu_dm sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 28/45] drm/amd/display: Minor code cleanup sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 29/45] drm/amd/display: Use 100 Hz precision for pipe pixel clocks sunpeng.li-5C7GfCeVMHo
     [not found]     ` <1544569071-7114-30-git-send-email-sunpeng.li-5C7GfCeVMHo@public.gmane.org>
2018-12-12  8:19       ` Christian König
     [not found]         ` <2cf9b879-6c37-6879-e4bb-12fb309f8e94-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-12-12 18:29           ` Chalmers, Kenneth
2018-12-11 22:57   ` [PATCH 30/45] drm/amd/display: Improve logging of validation failures during atomic_check sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 31/45] drm/amd/display: Add DCE_VERSION_12_1 enum for Vega 20 sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 32/45] drm/amd/display: Add functionality to get XGMI SS info sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 33/45] drm/amd/display: Use local variable instead of caching global sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 34/45] drm/amd/display: Compensate for XGMI SS downspread on dprefclk sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 35/45] drm/amd/display: 3.2.11 sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 36/45] drm/amd/display: Start using the new pp_smu interface sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 37/45] drm/amd/display: Fix bug with not updating VSP infoframe sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 38/45] drm/amd/display: add dsclk to pipe bw struct sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 39/45] drm/amd/display: move AYCrCb8888 format to video section sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 40/45] drm/amd/display: Don't log error if we have no connectors sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 41/45] drm/amd/display: verify lane status before exiting verify link cap sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 42/45] drm/amd/display: Optimize passive update planes sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 43/45] drm/amd/display: Expand set_pixel_clock debug log message sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 44/45] drm/amd/display: validate extended dongle caps sunpeng.li-5C7GfCeVMHo
2018-12-11 22:57   ` [PATCH 45/45] drm/amd/display: Remove unused parameter plane_states sunpeng.li-5C7GfCeVMHo

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