Hi Dave, Sima, Fixes for 6.8. The following changes since commit d0399da9fb5f8e3d897b9776bffee2d3bfe20210: drm/sched: Re-queue run job worker when drm_sched_entity_pop_job() returns NULL (2024-02-06 12:47:43 +1000) are available in the Git repository at: https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.8-2024-02-08 for you to fetch changes up to 534c8a5b9d5d41d30cdcac93cfa1bca5e17be009: drm/amdgpu: Fix HDP flush for VFs on nbio v7.9 (2024-02-07 18:30:11 -0500) ---------------------------------------------------------------- amd-drm-fixes-6.8-2024-02-08: amdgpu: - Misc NULL/bounds check fixes - ODM pipe policy fix - Aborted suspend fixes - JPEG 4.0.5 fix - DCN 3.5 fixes - PSP fix - DP MST fix - Phantom pipe fix - VRAM vendor fix - Clang fix - SR-IOV fix ---------------------------------------------------------------- Alvin Lee (1): drm/amd/display: Update phantom pipe enable / disable sequence Fangzhi Zuo (1): drm/amd/display: Fix MST Null Ptr for RV Li Ma (1): drm/amdgpu: remove asymmetrical irq disabling in jpeg 4.0.5 suspend Lijo Lazar (2): drm/amdgpu: Avoid fetching VRAM vendor info drm/amdgpu: Fix HDP flush for VFs on nbio v7.9 Mario Limonciello (1): drm/amd/display: Clear phantom stream count and plane count Nathan Chancellor (1): drm/amd/display: Increase frame-larger-than for all display_mode_vba files Nicholas Kazlauskas (1): drm/amd/display: Increase eval/entry delay for DCN35 Prike Liang (2): drm/amdgpu: skip to program GFXDEC registers for suspend abort drm/amdgpu: reset gpu for s3 suspend abort case Rodrigo Siqueira (1): drm/amd/display: Disable ODM by default for DCN35 Srinivasan Shanmugam (3): drm/amd/display: Fix 'panel_cntl' could be null in 'dcn21_set_backlight_level()' drm/amd/display: Add NULL test for 'timing generator' in 'dcn21_set_pipe()' drm/amd/display: Implement bounds check for stream encoder creation in DCN301 Stanley.Yang (1): drm/amdgpu: Fix shared buff copy to user Wenjing Liu (1): drm/amd/display: set odm_combine_policy based on context in dcn32 resource drivers/gpu/drm/amd/amdgpu/amdgpu.h | 2 + drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 2 + drivers/gpu/drm/amd/amdgpu/amdgpu_psp_ta.c | 2 +- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 8 +++ drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c | 8 --- drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c | 9 --- drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_5.c | 10 --- drivers/gpu/drm/amd/amdgpu/nbio_v7_9.c | 6 ++ drivers/gpu/drm/amd/amdgpu/soc15.c | 22 +++++++ drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 12 ++-- drivers/gpu/drm/amd/display/dc/core/dc.c | 4 +- drivers/gpu/drm/amd/display/dc/core/dc_state.c | 3 + drivers/gpu/drm/amd/display/dc/dml/Makefile | 6 +- .../gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c | 15 +++-- .../drm/amd/display/dc/hwss/dce110/dce110_hwseq.c | 4 +- .../drm/amd/display/dc/hwss/dce110/dce110_hwseq.h | 4 ++ .../drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c | 2 +- .../drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.h | 4 ++ .../drm/amd/display/dc/hwss/dcn21/dcn21_hwseq.c | 63 +++++++++--------- .../drm/amd/display/dc/hwss/dcn32/dcn32_hwseq.c | 76 +++++++++++++++++++--- .../drm/amd/display/dc/hwss/dcn32/dcn32_hwseq.h | 2 + .../gpu/drm/amd/display/dc/hwss/dcn32/dcn32_init.c | 3 + drivers/gpu/drm/amd/display/dc/hwss/hw_sequencer.h | 1 + .../drm/amd/display/dc/hwss/hw_sequencer_private.h | 7 ++ drivers/gpu/drm/amd/display/dc/inc/resource.h | 20 +++--- .../display/dc/resource/dcn301/dcn301_resource.c | 2 +- .../amd/display/dc/resource/dcn32/dcn32_resource.c | 16 ++++- .../amd/display/dc/resource/dcn35/dcn35_resource.c | 5 +- 28 files changed, 220 insertions(+), 98 deletions(-)