Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd: Make flashing messages quieter

Debug messages related to the kernel process of flashing an updated
IFWI are needlessly noisy and also confusing.

Downgrade them to debug instead and clarify what they are actually
doing.

Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Mario Limonciello and committed by
Alex Deucher
1cc506f0 521289d2

+4 -4
+4 -4
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
··· 3624 3624 adev->psp.vbflash_image_size += count; 3625 3625 mutex_unlock(&adev->psp.mutex); 3626 3626 3627 - dev_info(adev->dev, "VBIOS flash write PSP done"); 3627 + dev_dbg(adev->dev, "IFWI staged for update"); 3628 3628 3629 3629 return count; 3630 3630 } ··· 3644 3644 if (adev->psp.vbflash_image_size == 0) 3645 3645 return -EINVAL; 3646 3646 3647 - dev_info(adev->dev, "VBIOS flash to PSP started"); 3647 + dev_dbg(adev->dev, "PSP IFWI flash process initiated"); 3648 3648 3649 3649 ret = amdgpu_bo_create_kernel(adev, adev->psp.vbflash_image_size, 3650 3650 AMDGPU_GPU_PAGE_SIZE, ··· 3669 3669 adev->psp.vbflash_image_size = 0; 3670 3670 3671 3671 if (ret) { 3672 - dev_err(adev->dev, "Failed to load VBIOS FW, err = %d", ret); 3672 + dev_err(adev->dev, "Failed to load IFWI, err = %d", ret); 3673 3673 return ret; 3674 3674 } 3675 3675 3676 - dev_info(adev->dev, "VBIOS flash to PSP done"); 3676 + dev_dbg(adev->dev, "PSP IFWI flash process done"); 3677 3677 return 0; 3678 3678 } 3679 3679