All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] DC Patches November 16, 2020
@ 2020-11-13 20:56 Bindu Ramamurthy
  2020-11-13 20:56 ` [PATCH 01/17] drm/amd/display: Program dpp dto based on actual dpp clk Bindu Ramamurthy
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Bindu Ramamurthy @ 2020-11-13 20:56 UTC (permalink / raw)
  To: amd-gfx
  Cc: Eryk.Brol, Sunpeng.Li, Harry.Wentland, Qingqing.Zhuo,
	Rodrigo.Siqueira, roman.li, Aurabindo.Pillai, Bhawanpreet.Lakha,
	bindu.r


This DC patchset brings improvements in multiple areas. In summary, we have:

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

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

Dmytro Laktyushkin (1):
  drm/amd/display: remove unused dml variables

Jacky Liao (1):
  drm/amd/display: Add I2C memory low power support

Raymond Yang (1):
  drm/amd/display: correct data type

Roy Chan (1):
  drm/amd/display: Detect dynamic backlight support in eDP sink

Samson Tam (1):
  drm/amd/display: fix cursor calculation for 1xnY rotated display
    groups

Sung Lee (2):
  drm/amd/display: Populate hostvm parameter before DML calculation
  drm/amd/display: Handle Unknown Result for SMU Periodic Retraining on
    DCN2.1

Wayne Lin (1):
  drm/amd/display: Expose new CRC window property

Wenjing Liu (1):
  drm/amd/display: minor restructuring of pbn calculation functions

Wyatt Wood (2):
  drm/amd/display: Hook up PSR residency command to DSAT
  drm/amd/display: Increase sr enter/exit in rn ddr4 watermark table

Yongqiang Sun (4):
  drm/amd/display: Program dpp dto based on actual dpp clk
  drm/amd/display: set dpp dto as per requested clk for lower case.
  drm/amd/display: Add dual edp optimization flag.
  drm/amd/display: update vgh bounding box

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 142 +++++++++++++++++-
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |  19 +++
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c |  43 +++++-
 .../drm/amd/display/amdgpu_dm/amdgpu_dm_crc.h |   3 +
 .../amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c |  53 ++++++-
 .../dc/clk_mgr/dcn21/rn_clk_mgr_vbios_smu.c   |   3 +-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |  30 +++-
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |   7 +
 drivers/gpu/drm/amd/display/dc/dc.h           |   6 +-
 drivers/gpu/drm/amd/display/dc/dc_link.h      |   2 +
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   2 +
 .../gpu/drm/amd/display/dc/dce/dce_i2c_hw.c   |  12 ++
 .../gpu/drm/amd/display/dc/dce/dce_i2c_hw.h   |  16 ++
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c |  15 ++
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h |   1 +
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |  64 +++++++-
 .../drm/amd/display/dc/dcn21/dcn21_hubbub.c   |   2 +
 .../drm/amd/display/dc/dcn21/dcn21_resource.c |   2 +-
 .../drm/amd/display/dc/dcn30/dcn30_resource.c |   6 +-
 .../amd/display/dc/dcn301/dcn301_resource.c   |  60 ++++++--
 .../amd/display/dc/dml/display_mode_structs.h |   2 -
 .../drm/amd/display/dc/dml/display_mode_vba.c |   2 -
 .../drm/amd/display/dc/dml/display_mode_vba.h |   1 -
 .../gpu/drm/amd/display/dc/inc/hw/dchubbub.h  |   1 +
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |   7 +-
 25 files changed, 448 insertions(+), 53 deletions(-)

-- 
2.25.1

Thanks,
Bindu R 

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

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

end of thread, other threads:[~2020-12-16 22:43 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13 20:56 [PATCH 00/17] DC Patches November 16, 2020 Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 01/17] drm/amd/display: Program dpp dto based on actual dpp clk Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 02/17] drm/amd/display: Hook up PSR residency command to DSAT Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 03/17] drm/amd/display: Populate hostvm parameter before DML calculation Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 04/17] drm/amd/display: Handle Unknown Result for SMU Periodic Retraining on DCN2.1 Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 05/17] drm/amd/display: remove unused dml variables Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 06/17] drm/amd/display: fix cursor calculation for 1xnY rotated display groups Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 07/17] drm/amd/display: minor restructuring of pbn calculation functions Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 08/17] drm/amd/display: Detect dynamic backlight support in eDP sink Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 09/17] drm/amd/display: Add I2C memory low power support Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 10/17] drm/amd/display: set dpp dto as per requested clk for lower case Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 11/17] drm/amd/display: Add dual edp optimization flag Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 12/17] drm/amd/display: [FW Promotion] Release 0.0.42 Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 13/17] drm/amd/display: Expose new CRC window property Bindu Ramamurthy
2020-12-16 22:43   ` Daniel Vetter
2020-12-16 22:43     ` Daniel Vetter
2020-11-13 20:56 ` [PATCH 14/17] drm/amd/display: correct data type Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 15/17] drm/amd/display: 3.2.112 Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 16/17] drm/amd/display: Increase sr enter/exit in rn ddr4 watermark table Bindu Ramamurthy
2020-11-13 20:56 ` [PATCH 17/17] drm/amd/display: update vgh bounding box Bindu Ramamurthy

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.