From: Le Ma Date: Tue, 11 Sep 2018 03:35:34 +0000 (+0800) Subject: drm/amdgpu: set Arcturus fw load type as direct X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7fafd613c03b044883b1b538c57a4149260215a8;p=linux.git drm/amdgpu: set Arcturus fw load type as direct We currently only support direct firmware loading. Signed-off-by: Le Ma Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c index 9e99736aa984e..df5ebf72a9795 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -356,6 +356,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_ARCTURUS: + return AMDGPU_FW_LOAD_DIRECT; default: DRM_ERROR("Unknown firmware load type\n"); }