]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/amdgpu: disable rlc fw info print
authorLikun Gao <Likun.Gao@amd.com>
Fri, 13 Feb 2026 20:22:56 +0000 (04:22 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 11 Mar 2026 17:58:08 +0000 (13:58 -0400)
Disable to print RLC v2_5 related firmware information by default.

Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c

index 1ab61e7b35db6c46102ada0737419d6b9163713b..82333aeb4453029943bdc84078b6c5a449b5921a 100644 (file)
@@ -291,22 +291,22 @@ void amdgpu_ucode_print_rlc_hdr(const struct common_firmware_header *hdr)
                        break;
                case 5:
                        /* rlc_hdr v2_5 */
-                       DRM_INFO("rlc_iram_ucode_size_bytes: %u\n",
+                       DRM_DEBUG("rlc_iram_ucode_size_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->v2_2.rlc_iram_ucode_size_bytes));
-                       DRM_INFO("rlc_iram_ucode_offset_bytes: %u\n",
+                       DRM_DEBUG("rlc_iram_ucode_offset_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->v2_2.rlc_iram_ucode_offset_bytes));
-                       DRM_INFO("rlc_dram_ucode_size_bytes: %u\n",
+                       DRM_DEBUG("rlc_dram_ucode_size_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->v2_2.rlc_dram_ucode_size_bytes));
-                       DRM_INFO("rlc_dram_ucode_offset_bytes: %u\n",
+                       DRM_DEBUG("rlc_dram_ucode_offset_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->v2_2.rlc_dram_ucode_offset_bytes));
                        /* rlc_hdr v2_5 */
-                       DRM_INFO("rlc_1_iram_ucode_size_bytes: %u\n",
+                       DRM_DEBUG("rlc_1_iram_ucode_size_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->rlc_1_iram_ucode_size_bytes));
-                       DRM_INFO("rlc_1_iram_ucode_offset_bytes: %u\n",
+                       DRM_DEBUG("rlc_1_iram_ucode_offset_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->rlc_1_iram_ucode_offset_bytes));
-                       DRM_INFO("rlc_1_dram_ucode_size_bytes: %u\n",
+                       DRM_DEBUG("rlc_1_dram_ucode_size_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->rlc_1_dram_ucode_size_bytes));
-                       DRM_INFO("rlc_1_dram_ucode_offset_bytes: %u\n",
+                       DRM_DEBUG("rlc_1_dram_ucode_offset_bytes: %u\n",
                                  le32_to_cpu(rlc_hdr_v2_5->rlc_1_dram_ucode_offset_bytes));
                        break;
                default: