Hi Dave, Daniel, Fixes for 6.1. The following changes since commit 094226ad94f471a9f19e8f8e7140a09c2625abaa: Linux 6.1-rc5 (2022-11-13 13:12:55 -0800) are available in the Git repository at: https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.1-2022-11-16 for you to fetch changes up to 4b14841c9a820e484bc8c4c3f5a6fed1bc528cbc: drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround (2022-11-15 13:29:06 -0500) ---------------------------------------------------------------- amd-drm-fixes-6.1-2022-11-16: amdgpu: - Fix a possible memory leak in ganng submit error path - DP tunneling fixes - DCN 3.1 page flip fix - DCN 3.2.x fixes - DCN 3.1.4 fixes - Don't expose degamma on hardware that doesn't support it - BACO fixes for SMU 11.x - BACO fixes for SMU 13.x - Virtual display fix for devices with no display hardware amdkfd: - Memory limit regression fix ---------------------------------------------------------------- Alex Deucher (1): drm/amdgpu: there is no vbios fb on devices with no display hw (v2) Candice Li (1): drm/amdgpu: Add psp_13_0_10_ta firmware to modinfo Dillon Varone (3): drm/amd/display: Fix prefetch calculations for dcn32 drm/amd/display: use uclk pstate latency for fw assisted mclk validation dcn32 drm/amd/display: Set max for prefetch lines on dcn32 Dong Chenchen (1): drm/amdgpu: Fix memory leak in amdgpu_cs_pass1 Eric Huang (1): drm/amdkfd: Fix a memory limit issue Evan Quan (3): drm/amd/pm: enable runpm support over BACO for SMU13.0.0 drm/amd/pm: enable runpm support over BACO for SMU13.0.7 drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround George Shen (2): drm/amd/display: Support parsing VRAM info v3.0 from VBIOS drm/amd/display: Fix calculation for cursor CAB allocation Guchun Chen (1): drm/amdgpu: disable BACO support on more cards Melissa Wen (1): drm/amd/display: don't enable DRM CRTC degamma property for DCE Rodrigo Siqueira (1): drm/amd/display: Add HUBP surface flip interrupt handler Roman Li (1): drm/amd/display: Fix optc2_configure warning on dcn314 Stylon Wang (2): drm/amd/display: Fix access timeout to DPIA AUX at boot time drm/amd/display: Fix invalid DPIA AUX reply causing system hang drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 + drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c | 4 +-- drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 6 ++-- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 41 ++++++++++++++++++++++ drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c | 2 +- drivers/gpu/drm/amd/amdgpu/psp_v13_0.c | 1 + drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 32 +++++++++++++---- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 6 ---- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crtc.c | 10 ++++-- drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 30 ++++++++++++++++ drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c | 1 + .../gpu/drm/amd/display/dc/dcn314/dcn314_optc.c | 2 +- drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c | 14 +++----- .../gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c | 16 ++++++++- .../amd/display/dc/dml/dcn32/display_mode_vba_32.c | 2 ++ .../amd/display/dc/dml/dcn32/display_mode_vba_32.h | 2 ++ .../dc/dml/dcn32/display_mode_vba_util_32.c | 7 ++-- drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 23 ++++++------ drivers/gpu/drm/amd/pm/swsmu/inc/amdgpu_smu.h | 8 +++++ drivers/gpu/drm/amd/pm/swsmu/inc/smu_v11_0.h | 10 +----- drivers/gpu/drm/amd/pm/swsmu/inc/smu_v13_0.h | 11 ++---- .../drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c | 4 +++ drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c | 2 +- drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c | 9 +++++ .../gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c | 30 ++++++++++++++-- .../gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c | 30 ++++++++++++++-- 26 files changed, 235 insertions(+), 69 deletions(-)