This is a note to let you know that I've just added the patch titled drm/amdgpu: skip gpu_info fw loading on navi12 to the 6.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-amdgpu-skip-gpu_info-fw-loading-on-navi12.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 21f6137c64c65d6808c4a81006956197ca203383 Mon Sep 17 00:00:00 2001 From: Alex Deucher <alexander.deucher@xxxxxxx> Date: Wed, 20 Dec 2023 12:36:08 -0500 Subject: drm/amdgpu: skip gpu_info fw loading on navi12 From: Alex Deucher <alexander.deucher@xxxxxxx> commit 21f6137c64c65d6808c4a81006956197ca203383 upstream. It's no longer required. Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2318 Reviewed-by: Hawking Zhang <Hawking.Zhang@xxxxxxx> Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx> Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1896,15 +1896,8 @@ static int amdgpu_device_parse_gpu_info_ adev->firmware.gpu_info_fw = NULL; - if (adev->mman.discovery_bin) { - /* - * FIXME: The bounding box is still needed by Navi12, so - * temporarily read it from gpu_info firmware. Should be dropped - * when DAL no longer needs it. - */ - if (adev->asic_type != CHIP_NAVI12) - return 0; - } + if (adev->mman.discovery_bin) + return 0; switch (adev->asic_type) { default: Patches currently in stable-queue which might be from alexander.deucher@xxxxxxx are queue-6.6/drm-amd-display-pbn_div-need-be-updated-for-hotplug-event.patch queue-6.6/drm-amd-display-increase-frame-warning-limit-with-ka.patch queue-6.6/drm-amd-display-fix-sending-vsc-colorimetry-packets-for-dp-edp-displays-without-psr.patch queue-6.6/drm-amd-display-increase-num-voltage-states-to-40.patch queue-6.6/drm-amdgpu-skip-gpu_info-fw-loading-on-navi12.patch queue-6.6/drm-amd-display-add-nv12-bounding-box.patch