[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAPM=9txeA4G80xej2orc-_y1=cEBaxY2Hw-48v0sw485UjuWyQ@mail.gmail.com>
Date: Fri, 14 Feb 2025 13:34:04 +1000
From: Dave Airlie <airlied@...il.com>
To: Linus Torvalds <torvalds@...ux-foundation.org>, Sima Vetter <sima@...ll.ch>
Cc: dri-devel <dri-devel@...ts.freedesktop.org>, LKML <linux-kernel@...r.kernel.org>
Subject: [git pull] drm fixes for 6.14-rc3
Hi Linus,
Weekly drm fixes pull request, nothing too unusual, the hdmi tests
needs a bit of refactoring after lockdep shouted at them, otherwise
amdgpu and xe lead and a few misc otherwise.
Thanks,
Dave.
drm-fixes-2025-02-14:
drm fixes for 6.14-rc3
amdgpu:
- Fix shutdown regression on old APUs
- Fix compute queue hang on gfx9 APUs
- Fix possible invalid access in PSP failure path
- Avoid possible buffer overflow in pptable override
amdkfd:
- Properly free gang bo in failure path
- GFX12 trap handler fix
i915:
- selftest fix: avoid using uninitialized context
xe:
- Remove bo->clients out of bos_lock area
- Carve out wopcm portion from the stolen memory
tests:
- fix lockdep with hdmi infrastructure tests
host1x:
- fix uninitialised mutex usage
panthor:
- fix uninit variable
hibmc:
- fix missing Kconfig select
The following changes since commit a64dcfb451e254085a7daee5fe51bf22959d52d3:
Linux 6.14-rc2 (2025-02-09 12:45:03 -0800)
are available in the Git repository at:
https://gitlab.freedesktop.org/drm/kernel.git tags/drm-fixes-2025-02-14
for you to fetch changes up to 04485cc34868892a823b909c6d5468ba21b63569:
Merge tag 'drm-xe-fixes-2025-02-13' of
https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes
(2025-02-14 12:15:59 +1000)
----------------------------------------------------------------
drm fixes for 6.14-rc3
amdgpu:
- Fix shutdown regression on old APUs
- Fix compute queue hang on gfx9 APUs
- Fix possible invalid access in PSP failure path
- Avoid possible buffer overflow in pptable override
amdkfd:
- Properly free gang bo in failure path
- GFX12 trap handler fix
i915:
- selftest fix: avoid using uninitialized context
xe:
- Remove bo->clients out of bos_lock area
- Carve out wopcm portion from the stolen memory
tests:
- fix lockdep with hdmi infrastructure tests
host1x:
- fix uninitialised mutex usage
panthor:
- fix uninit variable
hibmc:
- fix missing Kconfig select
----------------------------------------------------------------
Alex Deucher (3):
drm/amdgpu/pm: fix UVD handing in amdgpu_dpm_set_powergating_by_smu()
drm/amdgpu/gfx9: manually control gfxoff for CS on RV
drm/amdgpu: bump version for RV/PCO compute fix
Arnd Bergmann (1):
drm/hisilicon/hibmc: select CONFIG_DRM_DISPLAY_DP_HELPER
Dave Airlie (4):
Merge tag 'drm-misc-fixes-2025-02-13' of
https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes
Merge tag 'amd-drm-fixes-6.14-2025-02-13' of
https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
Merge tag 'drm-intel-fixes-2025-02-13' of
https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes
Merge tag 'drm-xe-fixes-2025-02-13' of
https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes
Imre Deak (1):
drm: Fix DSC BPP increment decoding
Jiang Liu (2):
drm/amdgpu: bail out when failed to load fw in psp_init_cap_microcode()
drm/amdgpu: avoid buffer overflow attach in smu_sys_set_pp_table()
Krzysztof Karas (1):
drm/i915/selftests: avoid using uninitialized context
Lancelot SIX (1):
drm/amdkfd: Ensure consistent barrier state saved in gfx12 trap handler
Maxime Ripard (4):
drm/tests: hdmi: Fix WW_MUTEX_SLOWPATH failures
drm/tests: hdmi: Remove redundant assignments
drm/tests: hdmi: Reorder DRM entities variables assignment
drm/tests: hdmi: Fix recursive locking
Nirmoy Das (1):
drm/xe: Carve out wopcm portion from the stolen memory
Rupinderjit Singh (1):
gpu: host1x: Fix a use of uninitialized mutex
Su Hui (1):
drm/panthor: avoid garbage value in panthor_ioctl_dev_query()
Tejas Upadhyay (1):
drm/xe/client: bo->client does not need bos_lock
Zhu Lingshan (1):
amdkfd: properly free gang_ctx_bo when failed to init user queue
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 3 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 5 +-
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 36 +++-
drivers/gpu/drm/amd/amdkfd/cwsr_trap_handler.h | 3 +-
.../gpu/drm/amd/amdkfd/cwsr_trap_handler_gfx12.asm | 4 +
.../gpu/drm/amd/amdkfd/kfd_process_queue_manager.c | 2 +-
drivers/gpu/drm/amd/pm/amdgpu_dpm.c | 2 +-
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 3 +-
drivers/gpu/drm/display/drm_dp_helper.c | 2 +-
drivers/gpu/drm/hisilicon/hibmc/Kconfig | 2 +
drivers/gpu/drm/i915/selftests/i915_gem_gtt.c | 4 +-
drivers/gpu/drm/panthor/panthor_drv.c | 1 +
drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c | 200 +++++++++++----------
drivers/gpu/drm/xe/xe_drm_client.c | 2 +-
drivers/gpu/drm/xe/xe_ttm_stolen_mgr.c | 70 ++++----
drivers/gpu/host1x/dev.c | 2 +
drivers/gpu/host1x/intr.c | 2 -
include/drm/display/drm_dp.h | 1 +
18 files changed, 200 insertions(+), 144 deletions(-)
Powered by blists - more mailing lists