aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
diff options
context:
space:
mode:
authorChengming Gui <[email protected]>2020-10-13 06:38:49 +0000
committerAlex Deucher <[email protected]>2021-05-20 02:39:49 +0000
commit2542e3c654f2e513020df5729d51ac2e2e1ae913 (patch)
tree39fb15e30429e35d3da6a958c03e80e624ad50fd /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
parentdrm/amd/amdgpu: add beige_goby asic type (diff)
downloadkernel-2542e3c654f2e513020df5729d51ac2e2e1ae913.tar.gz
kernel-2542e3c654f2e513020df5729d51ac2e2e1ae913.zip
drm/amd/amdgpu: set fw load type for beige_goby
Use direct load for beige_goby Signed-off-by: Chengming Gui <[email protected]> Reviewed-by: Hawking Zhang <[email protected]> Reviewed-by: Tao Zhou <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
index 9733224117e3..47119f91c817 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
@@ -407,6 +407,8 @@ amdgpu_ucode_get_load_type(struct amdgpu_device *adev, int load_type)
return AMDGPU_FW_LOAD_DIRECT;
else
return AMDGPU_FW_LOAD_PSP;
+ case CHIP_BEIGE_GOBY:
+ return AMDGPU_FW_LOAD_DIRECT;
default:
DRM_ERROR("Unknown firmware load type\n");
}