Skip to content

Commit bb75105

Browse files
alexdeucheropsiff
authored andcommitted
drm/amdgpu: add support for cyan skillfish gpu_info
[ Upstream commit fa819e3 ] Some SOCs which are part of the cyan skillfish family rely on an explicit firmware for IP discovery. Add support for the gpu_info firmware. Signed-off-by: Alex Deucher <[email protected]> Signed-off-by: Sasha Levin <[email protected]> (cherry picked from commit 3c66bc0acc08304961ca0ba98a5aee2c77def074) Signed-off-by: Wentao Guan <[email protected]>
1 parent 582bffc commit bb75105

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ MODULE_FIRMWARE("amdgpu/picasso_gpu_info.bin");
9393
MODULE_FIRMWARE("amdgpu/raven2_gpu_info.bin");
9494
MODULE_FIRMWARE("amdgpu/arcturus_gpu_info.bin");
9595
MODULE_FIRMWARE("amdgpu/navi12_gpu_info.bin");
96+
MODULE_FIRMWARE("amdgpu/cyan_skillfish_gpu_info.bin");
9697

9798
#define AMDGPU_RESUME_MS 2000
9899
#define AMDGPU_MAX_RETRY_LIMIT 2
@@ -1939,6 +1940,9 @@ static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
19391940
case CHIP_NAVI12:
19401941
chip_name = "navi12";
19411942
break;
1943+
case CHIP_CYAN_SKILLFISH:
1944+
chip_name = "cyan_skillfish";
1945+
break;
19421946
}
19431947

19441948
snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);

0 commit comments

Comments
 (0)