aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu
diff options
context:
space:
mode:
authorJunwei Zhang <Jerry.Zhang@amd.com>2018-12-07 02:15:03 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-12-10 15:28:04 -0500
commitd55d8be0747c96db28a1d08fc24d22ccd9b448ac (patch)
tree237398cdc6512e2f675277636d3de00851616183 /drivers/gpu/drm/amd/amdgpu
parent9bd206f89fa758f130fde09bf6f876f955ed989a (diff)
drm/amdgpu: update SMC firmware image for polaris10 variants
Some new variants require different firmwares. Signed-off-by: Junwei Zhang <Jerry.Zhang@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c
index ceadeeadfa56..387f1cf1dc20 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c
@@ -381,7 +381,8 @@ static int amdgpu_cgs_get_firmware_info(struct cgs_device *cgs_device,
381 (adev->pdev->revision == 0xe7) || 381 (adev->pdev->revision == 0xe7) ||
382 (adev->pdev->revision == 0xef))) || 382 (adev->pdev->revision == 0xef))) ||
383 ((adev->pdev->device == 0x6fdf) && 383 ((adev->pdev->device == 0x6fdf) &&
384 (adev->pdev->revision == 0xef))) { 384 ((adev->pdev->revision == 0xef) ||
385 (adev->pdev->revision == 0xff)))) {
385 info->is_kicker = true; 386 info->is_kicker = true;
386 strcpy(fw_name, "amdgpu/polaris10_k_smc.bin"); 387 strcpy(fw_name, "amdgpu/polaris10_k_smc.bin");
387 } else if ((adev->pdev->device == 0x67df) && 388 } else if ((adev->pdev->device == 0x67df) &&