[git pull] drm fixes for 6.17-rc2

From: Dave Airlie
Date: Fri Aug 15 2025 - 17:24:55 EST


Hi Linus,

Relatively quiet week, usual amdgpu/i915/xe fixes along with a set of
fixes for fbdev format info, which fix some regressions seen in with
rc1.

Thanks,
Dave.

drm-fixes-2025-08-16:
drm fixes for 6.17-rc2

bridge:
- fix OF-node leak
- fix documentation

fbdev-emulation:
- pass correct format info to drm_helper_mode_fill_fb_struct()

panfrost:
- print correct RSS size

amdgpu:
- PSP fix
- VRAM reservation fix
- CSA fix
- Process kill fix

i915:
- Fix the implementation of wa_18038517565 [fbc]
- Do not trigger Frame Change events from frontbuffer flush [psr]

xe:
- Some more xe_migrate_access_memory fixes (Auld)
- Defer buffer object shrinker write-backs and GPU waits (Thomas)
- HWMON fix for clamping limits (Karthik)
- SRIOV-PF: Set VF LMEM BAR size (Michal)
The following changes since commit 8f5ae30d69d7543eee0d70083daf4de8fe15d585:

Linux 6.17-rc1 (2025-08-10 19:41:16 +0300)

are available in the Git repository at:

https://gitlab.freedesktop.org/drm/kernel.git tags/drm-fixes-2025-08-16

for you to fetch changes up to 00062ea01d35eaca34d561e5c76cd988dc8c3b83:

Merge tag 'drm-xe-fixes-2025-08-14' of
https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes
(2025-08-15 09:50:26 +1000)

----------------------------------------------------------------
drm fixes for 6.17-rc2

bridge:
- fix OF-node leak
- fix documentation

fbdev-emulation:
- pass correct format info to drm_helper_mode_fill_fb_struct()

panfrost:
- print correct RSS size

amdgpu:
- PSP fix
- VRAM reservation fix
- CSA fix
- Process kill fix

i915:
- Fix the implementation of wa_18038517565 [fbc]
- Do not trigger Frame Change events from frontbuffer flush [psr]

xe:
- Some more xe_migrate_access_memory fixes (Auld)
- Defer buffer object shrinker write-backs and GPU waits (Thomas)
- HWMON fix for clamping limits (Karthik)
- SRIOV-PF: Set VF LMEM BAR size (Michal)

----------------------------------------------------------------
Adrián Larumbe (1):
drm/panfrost: Print RSS for tiler heap BO's in debugfs GEMS file

Andy Yan (1):
drm/bridge: Describe the newly introduced drm_connector
parameter for drm_bridge_detect

Dave Airlie (4):
Merge tag 'drm-misc-next-fixes-2025-08-12' of
https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes
Merge tag 'amd-drm-fixes-6.17-2025-08-13' of
https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
Merge tag 'drm-intel-fixes-2025-08-13' of
https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes
Merge tag 'drm-xe-fixes-2025-08-14' of
https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes

Dmitry Baryshkov (1):
drm/bridge: document HDMI CEC callbacks

Frank Min (1):
drm/amdgpu: Add PSP fw version check for fw reserve GFX command

Imre Deak (3):
drm/omap: Pass along the format info from .fb_create() to
drm_helper_mode_fill_fb_struct()
drm/nouveau: Pass along the format info from .fb_create() to
drm_helper_mode_fill_fb_struct()
drm/radeon: Pass along the format info from .fb_create() to
drm_helper_mode_fill_fb_struct()

Jack Xiao (1):
drm/amdgpu: fix incorrect vm flags to map bo

Johan Hovold (1):
drm/bridge: fix OF node leak

Jouni Högander (1):
drm/i915/psr: Do not trigger Frame Change events from frontbuffer flush

Karthik Poosa (1):
drm/xe/hwmon: Add SW clamp for power limits writes

Liu01 Tong (1):
drm/amdgpu: fix task hang from failed job submission during process kill

Maarten Lankhorst (1):
Merge remote-tracking branch 'drm/drm-next' into drm-misc-next-fixes

Matthew Auld (3):
drm/xe/migrate: prevent infinite recursion
drm/xe/migrate: don't overflow max copy size
drm/xe/migrate: prevent potential UAF

Michał Winiarski (1):
drm/xe/pf: Set VF LMEM BAR size

Thomas Hellström (1):
drm/xe: Defer buffer object shrinker write-backs and GPU waits

Vinod Govindapillai (1):
drm/i915/fbc: fix the implementation of wa_18038517565

YiPeng Chai (1):
drm/amdgpu: fix vram reservation issue

drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 3 ++
drivers/gpu/drm/amd/amdgpu/amdgpu_csa.c | 4 +--
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 19 +++++++++--
drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 15 +++++---
drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c | 3 +-
drivers/gpu/drm/bridge/aux-bridge.c | 2 ++
drivers/gpu/drm/drm_bridge.c | 1 +
drivers/gpu/drm/i915/display/intel_fbc.c | 8 ++---
drivers/gpu/drm/i915/display/intel_psr.c | 14 +++++---
drivers/gpu/drm/nouveau/nouveau_display.c | 9 ++---
drivers/gpu/drm/nouveau/nouveau_display.h | 3 ++
drivers/gpu/drm/omapdrm/omap_fb.c | 23 ++++++-------
drivers/gpu/drm/omapdrm/omap_fb.h | 2 ++
drivers/gpu/drm/omapdrm/omap_fbdev.c | 5 ++-
drivers/gpu/drm/panfrost/panfrost_gem.c | 2 +-
drivers/gpu/drm/radeon/radeon_display.c | 5 +--
drivers/gpu/drm/radeon/radeon_fbdev.c | 11 +++---
drivers/gpu/drm/radeon/radeon_mode.h | 2 ++
drivers/gpu/drm/xe/regs/xe_bars.h | 1 +
drivers/gpu/drm/xe/xe_hwmon.c | 29 ++++++++++++++++
drivers/gpu/drm/xe/xe_migrate.c | 42 +++++++++++++++--------
drivers/gpu/drm/xe/xe_pci_sriov.c | 22 ++++++++++++
drivers/gpu/drm/xe/xe_shrinker.c | 51 +++++++++++++++++++++++++---
include/drm/drm_bridge.h | 48 ++++++++++++++++++++++++++
24 files changed, 257 insertions(+), 67 deletions(-)