All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] DC Patches February 07, 2020
@ 2020-02-07 15:47 Rodrigo Siqueira
  0 siblings, 0 replies; 2+ messages in thread
From: Rodrigo Siqueira @ 2020-02-07 15:47 UTC (permalink / raw)
  To: amd-gfx; +Cc: Sunpeng.Li, Bhawanpreet.Lakha, Harry.Wentland

This DC patchset brings improvements in multiple areas. In summary, we
highlight:
 
* Enable backlight support via AUX for OLED displays.
* Improvements in the PSR.
* Improvements in the dmub code.
* ODM calculation improvements.

Anthony Koo (2):
  drm/amd/display: Update register defines
  drm/amd/display: 3.2.72

Calvin Hou (1):
  drm/amd/display: Pass override OUI in to dc_init_data

Dmytro Laktyushkin (1):
  drm/amd/display: add odm split logic to scaling calculations

Martin Leung (2):
  drm/amd/display: always apply T7/T9 delay logic
  drm/amd/display: add monitor patch to disable SCDC read/write

Nicholas Kazlauskas (3):
  drm/amd/display: Don't treat missing command table as failure
  drm/amd/display: Don't map ATOM_ENABLE to ATOM_INIT
  drm/amd/display: Use fb_base/fb_offset if available for translation

Nikola Cornij (1):
  drm/amd/display: Drop unused field from dc_panel_patch

Peikang Zhang (1):
  drm/amd/display: Toggle VSR button cause system crash

Rodrigo Siqueira (2):
  drm/amd/display: Add AUX backlight register
  drm/amd/display: Add backlight support via AUX

Sung Lee (1):
  drm/amd/display: DCN2.x Do not program DPPCLK if same value

Wyatt Wood (3):
  drm/amd/display: Remove unused values from psr struct
  drm/amd/display: Hookup psr set version call
  drm/amd/display: Add psr get_state call

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 161 ++++++++++++++---
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |  34 +++-
 .../drm/amd/display/dc/bios/command_table2.c  |   8 +-
 .../display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c  |   2 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      |   2 +-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |   6 +-
 .../gpu/drm/amd/display/dc/core/dc_link_ddc.c |   8 +
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |  49 +++--
 .../drm/amd/display/dc/core/dc_link_hwss.c    |  56 +++---
 .../gpu/drm/amd/display/dc/core/dc_resource.c | 171 +++++++++++-------
 drivers/gpu/drm/amd/display/dc/dc.h           |   4 +-
 drivers/gpu/drm/amd/display/dc/dc_dp_types.h  |  14 ++
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   2 +-
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c |  43 ++---
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h |   3 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |   8 +-
 .../amd/display/dc/dcn10/dcn10_link_encoder.c |   5 +
 .../drm/amd/display/dc/dcn20/dcn20_mmhubbub.h |  20 --
 .../drm/amd/display/dc/dcn20/dcn20_resource.c |  40 ++--
 .../drm/amd/display/dc/dcn20/dcn20_resource.h |   1 +
 .../gpu/drm/amd/display/dc/dcn20/dcn20_vmid.h |   7 -
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |  10 -
 .../gpu/drm/amd/display/dmub/src/dmub_dcn20.c |   6 +
 .../gpu/drm/amd/display/include/dpcd_defs.h   |   8 +
 24 files changed, 433 insertions(+), 235 deletions(-)

-- 
2.25.0

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

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

* [PATCH 00/17] DC Patches February 07, 2020
@ 2020-02-07 15:49 Rodrigo Siqueira
  0 siblings, 0 replies; 2+ messages in thread
From: Rodrigo Siqueira @ 2020-02-07 15:49 UTC (permalink / raw)
  To: amd-gfx; +Cc: Sunpeng.Li, Bhawanpreet.Lakha, Harry.Wentland

This DC patchset brings improvements in multiple areas. In summary, we
highlight:
 
* Enable backlight support via AUX for OLED displays.
* Improvements in the PSR.
* Improvements in the dmub code.
* ODM calculation improvements.

Anthony Koo (2):
  drm/amd/display: Update register defines
  drm/amd/display: 3.2.72

Calvin Hou (1):
  drm/amd/display: Pass override OUI in to dc_init_data

Dmytro Laktyushkin (1):
  drm/amd/display: add odm split logic to scaling calculations

Martin Leung (2):
  drm/amd/display: always apply T7/T9 delay logic
  drm/amd/display: add monitor patch to disable SCDC read/write

Nicholas Kazlauskas (3):
  drm/amd/display: Don't treat missing command table as failure
  drm/amd/display: Don't map ATOM_ENABLE to ATOM_INIT
  drm/amd/display: Use fb_base/fb_offset if available for translation

Nikola Cornij (1):
  drm/amd/display: Drop unused field from dc_panel_patch

Peikang Zhang (1):
  drm/amd/display: Toggle VSR button cause system crash

Rodrigo Siqueira (2):
  drm/amd/display: Add AUX backlight register
  drm/amd/display: Add backlight support via AUX

Sung Lee (1):
  drm/amd/display: DCN2.x Do not program DPPCLK if same value

Wyatt Wood (3):
  drm/amd/display: Remove unused values from psr struct
  drm/amd/display: Hookup psr set version call
  drm/amd/display: Add psr get_state call

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 161 ++++++++++++++---
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |  34 +++-
 .../drm/amd/display/dc/bios/command_table2.c  |   8 +-
 .../display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c  |   2 +-
 drivers/gpu/drm/amd/display/dc/core/dc.c      |   2 +-
 drivers/gpu/drm/amd/display/dc/core/dc_link.c |   6 +-
 .../gpu/drm/amd/display/dc/core/dc_link_ddc.c |   8 +
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  |  49 +++--
 .../drm/amd/display/dc/core/dc_link_hwss.c    |  56 +++---
 .../gpu/drm/amd/display/dc/core/dc_resource.c | 171 +++++++++++-------
 drivers/gpu/drm/amd/display/dc/dc.h           |   4 +-
 drivers/gpu/drm/amd/display/dc/dc_dp_types.h  |  14 ++
 drivers/gpu/drm/amd/display/dc/dc_types.h     |   2 +-
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c |  43 ++---
 drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h |   3 +-
 .../amd/display/dc/dcn10/dcn10_hw_sequencer.c |   8 +-
 .../amd/display/dc/dcn10/dcn10_link_encoder.c |   5 +
 .../drm/amd/display/dc/dcn20/dcn20_mmhubbub.h |  20 --
 .../drm/amd/display/dc/dcn20/dcn20_resource.c |  40 ++--
 .../drm/amd/display/dc/dcn20/dcn20_resource.h |   1 +
 .../gpu/drm/amd/display/dc/dcn20/dcn20_vmid.h |   7 -
 .../gpu/drm/amd/display/dmub/inc/dmub_cmd.h   |  10 -
 .../gpu/drm/amd/display/dmub/src/dmub_dcn20.c |   6 +
 .../gpu/drm/amd/display/include/dpcd_defs.h   |   8 +
 24 files changed, 433 insertions(+), 235 deletions(-)

-- 
2.25.0

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

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

end of thread, other threads:[~2020-02-07 15:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 15:47 [PATCH 00/17] DC Patches February 07, 2020 Rodrigo Siqueira
2020-02-07 15:49 Rodrigo Siqueira

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.