[PATCH 00/11] DC Patches Feb 26th, 2021

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



DC version 3.2.125 brings improvements in multiple areas. In summary, we
highlight:

- DSC fixes
- Firmware relase 0.0.54
- eDP interface refactor for multiple eDP 

Cc: Daniel Wheeler <daniel.wheeler@xxxxxxx>

Best Regards
Siqueira

Anthony Koo (1):
  drm/amd/display: [FW Promotion] Release 0.0.54

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

Dillon Varone (1):
  drm/amd/display: Fix HSplit causing increase in DSC Slice Count

Eryk Brol (1):
  drm/amd/display: Add max bpc debugfs

Hugo Hu (1):
  drm/amd/display: treat memory as a single-channel for asymmetric
    memory

Jake Wang (1):
  drm/amd/display: Refactored DC interfaces to support multiple eDP

Jimmy Kizito (1):
  drm/amd/display: Update link encoder object creation

Max.Tseng (1):
  drm/amd/display: Add flag for building infopacket

Meenakshikumar Somasundaram (1):
  drm/amd/display: Support for DMUB AUX

Wyatt Wood (1):
  drm/amd/display: Return invalid state if GPINT times out

Yongqiang Sun (1):
  drm/amd/display: Implement dmub trace event

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |   4 +-
 .../amd/display/amdgpu_dm/amdgpu_dm_debugfs.c | 153 +++++++++++++++++-
 .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c |   6 +
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |  17 +-
 drivers/gpu/drm/amd/display/dc/Makefile       |   2 +-
 .../gpu/drm/amd/display/dc/clk_mgr/clk_mgr.c  |  17 +-
 .../amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c |  48 +++++-
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 112 ++++++++++++-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  14 +-
 .../gpu/drm/amd/display/dc/core/dc_link_ddc.c |   3 +-
 drivers/gpu/drm/amd/display/dc/core/dc_stat.c |  64 ++++++++
 drivers/gpu/drm/amd/display/dc/dc.h           |  17 +-
 drivers/gpu/drm/amd/display/dc/dc_ddc_types.h |  10 --
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c  |  16 ++
 drivers/gpu/drm/amd/display/dc/dc_dmub_srv.h  |   6 +
 drivers/gpu/drm/amd/display/dc/dc_link.h      |  19 ++-
 drivers/gpu/drm/amd/display/dc/dc_stat.h      |  42 +++++
 drivers/gpu/drm/amd/display/dc/dce/Makefile   |   2 +-
 drivers/gpu/drm/amd/display/dc/dce/dce_aux.c  |  40 ++---
 drivers/gpu/drm/amd/display/dc/dce/dce_aux.h  |   3 +-
 .../gpu/drm/amd/display/dc/dce/dmub_outbox.c  |  60 +++++++
 .../gpu/drm/amd/display/dc/dce/dmub_outbox.h  |  33 ++++
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c |  16 +-
 .../display/dc/dce110/dce110_hw_sequencer.c   |  72 ++++++---
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |  34 ++--
 .../drm/amd/display/dc/dcn30/dcn30_hwseq.c    |  31 ++--
 drivers/gpu/drm/amd/display/dc/dm_helpers.h   |   2 +
 .../dc/dml/dcn30/display_mode_vba_30.c        |   2 +-
 .../drm/amd/display/dc/dml/display_mode_vba.c |   3 -
 .../gpu/drm/amd/display/dc/inc/core_types.h   |  13 ++
 .../gpu/drm/amd/display/dc/inc/dc_link_ddc.h  |   3 +-
 .../drm/amd/display/dc/inc/hw/aux_engine.h    |   4 +-
 .../gpu/drm/amd/display/dc/inc/hw/hw_shared.h |   1 +
 drivers/gpu/drm/amd/display/dc/inc/resource.h |   1 +
 drivers/gpu/drm/amd/display/dc/irq_types.h    |   3 +-
 drivers/gpu/drm/amd/display/dmub/dmub_srv.h   |  55 +++++++
 .../gpu/drm/amd/display/dmub/dmub_srv_stat.h  |  41 +++++
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |   7 +-
 .../amd/display/dmub/inc/dmub_trace_buffer.h  |   3 +-
 drivers/gpu/drm/amd/display/dmub/src/Makefile |   2 +-
 .../gpu/drm/amd/display/dmub/src/dmub_dcn20.c |  50 ++++++
 .../gpu/drm/amd/display/dmub/src/dmub_dcn20.h |  28 +++-
 .../gpu/drm/amd/display/dmub/src/dmub_srv.c   |  77 ++++++++-
 .../drm/amd/display/dmub/src/dmub_srv_stat.c  | 105 ++++++++++++
 .../amd/display/modules/freesync/freesync.c   |  28 +++-
 .../amd/display/modules/inc/mod_freesync.h    |   3 +-
 46 files changed, 1135 insertions(+), 137 deletions(-)
 create mode 100644 drivers/gpu/drm/amd/display/dc/core/dc_stat.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/dc_stat.h
 create mode 100644 drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.h
 create mode 100644 drivers/gpu/drm/amd/display/dmub/dmub_srv_stat.h
 create mode 100644 drivers/gpu/drm/amd/display/dmub/src/dmub_srv_stat.c

-- 
2.25.1

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



[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux