All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Deucher <alexander.deucher@amd.com>
To: <amd-gfx@lists.freedesktop.org>,
	<dri-devel@lists.freedesktop.org>, <airlied@gmail.com>,
	<daniel.vetter@ffwll.ch>
Cc: Alex Deucher <alexander.deucher@amd.com>
Subject: [pull] amdgpu, amdkfd drm-fixes-6.8
Date: Thu, 15 Feb 2024 10:18:15 -0500	[thread overview]
Message-ID: <20240215151815.4976-1-alexander.deucher@amd.com> (raw)

Hi Dave, Sima,

Fixes for 6.8.

The following changes since commit 841c35169323cd833294798e58b9bf63fa4fa1de:

  Linux 6.8-rc4 (2024-02-11 12:18:13 -0800)

are available in the Git repository at:

  https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.8-2024-02-15

for you to fetch changes up to 86e8af451be2786482e7ba6556bbb8257c5c7ccf:

  drm/amdgpu: Fix implicit assumtion in gfx11 debug flags (2024-02-14 18:02:41 -0500)

----------------------------------------------------------------
amd-drm-fixes-6.8-2024-02-15:

amdgpu:
- Add some better debugging support for PSR and panel power saving features
- ABM fix
- PSR fixes
- Suspend/resume fixes
- Link training fix
- Aspect ratio fix
- DCN 3.5 fixes
- VCN 4.x fix
- GFX 11 fix
- Misc display fixes
- Misc small fixes

amdkfd:
- Cache size reporting fix
- SIMD distribution fix

----------------------------------------------------------------
Dan Carpenter (1):
      drm/amd/display: Fix && vs || typos

Hamza Mahfooz (3):
      drm/amd/display: add panel_power_savings sysfs entry to eDP connectors
      drm/amdgpu: respect the abmlevel module parameter value if it is set
      drm/amdgpu: make damage clips support configurable

Kent Russell (1):
      drm/amdkfd: Fix L2 cache size reporting in GFX9.4.3

Mario Limonciello (2):
      drm/amd: Stop evicting resources on APUs in suspend
      Revert "drm/amd: flush any delayed gfxoff on suspend entry"

Nicholas Kazlauskas (1):
      drm/amd/display: Increase ips2_eval delay for DCN35

Rajneesh Bhardwaj (2):
      drm/amdkfd: update SIMD distribution algo for GFXIP 9.4.2 onwards
      drm/amdgpu: Fix implicit assumtion in gfx11 debug flags

Roman Li (1):
      drm/amd/display: Fix array-index-out-of-bounds in dcn35_clkmgr

Sohaib Nadeem (2):
      Revert "drm/amd/display: increased min_dcfclk_mhz and min_fclk_mhz"
      drm/amd/display: fixed integer types and null check locations

Srinivasan Shanmugam (5):
      drm/amd/display: Initialize 'wait_time_microsec' variable in link_dp_training_dpia.c
      drm/amd/display: Fix possible use of uninitialized 'max_chunks_fbc_mode' in 'calculate_bandwidth()'
      drm/amd/display: Fix possible buffer overflow in 'find_dcfclk_for_voltage()'
      drm/amd/display: Fix possible NULL dereference on device remove/driver unload
      drm/amdgpu/display: Initialize gamma correction mode variable in dcn30_get_gamcor_current()

Thong (1):
      drm/amdgpu/soc21: update VCN 4 max HEVC encoding resolution

Tom Chung (1):
      drm/amd/display: Preserve original aspect ratio in create stream

Zhikai Zhai (1):
      drm/amd/display: Add align done check

 drivers/gpu/drm/amd/amdgpu/amdgpu.h                |   5 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c           |  15 +++
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c         |  12 ++-
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            |  24 ++++-
 drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c            |   9 +-
 drivers/gpu/drm/amd/amdgpu/soc21.c                 |   4 +-
 drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v11.c   |   4 +-
 drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c    |   9 ++
 drivers/gpu/drm/amd/amdkfd/kfd_priv.h              |   1 +
 .../gpu/drm/amd/amdkfd/kfd_process_queue_manager.c |   4 +-
 drivers/gpu/drm/amd/amdkfd/kfd_topology.c          |  10 +-
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  | 103 ++++++++++++++++++++-
 drivers/gpu/drm/amd/display/dc/basics/dce_calcs.c  |   2 +-
 drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c |  16 ++--
 .../drm/amd/display/dc/clk_mgr/dcn301/vg_clk_mgr.c |   2 +
 .../amd/display/dc/clk_mgr/dcn35/dcn35_clk_mgr.c   |  15 ++-
 .../gpu/drm/amd/display/dc/dcn30/dcn30_dpp_cm.c    |   5 +-
 .../gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c   |   2 +-
 .../drm/amd/display/dc/hwss/dcn21/dcn21_hwseq.c    |   4 +-
 .../gpu/drm/amd/display/dc/link/link_validation.c  |   2 +-
 .../display/dc/link/protocols/link_dp_training.c   |   5 +-
 .../dc/link/protocols/link_dp_training_dpia.c      |   2 +-
 .../amd/display/dc/resource/dcn35/dcn35_resource.c |   2 +-
 23 files changed, 209 insertions(+), 48 deletions(-)

             reply	other threads:[~2024-02-15 15:18 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-15 15:18 Alex Deucher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-01 18:41 [pull] amdgpu, amdkfd drm-fixes-6.8 Alex Deucher
2024-01-18 22:31 Alex Deucher
2024-01-15 23:43 Alex Deucher
2024-01-15 22:08 Alex Deucher
2024-01-15 23:01 ` Felix Kuehling
2024-01-12 17:56 Alex Deucher
2024-01-15  0:25 ` Dave Airlie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240215151815.4976-1-alexander.deucher@amd.com \
    --to=alexander.deucher@amd.com \
    --cc=airlied@gmail.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.