diff options
| author | Le Ma <[email protected]> | 2018-09-11 03:35:34 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2019-07-18 19:18:02 +0000 |
| commit | 7fafd613c03b044883b1b538c57a4149260215a8 (patch) | |
| tree | 60aefd405859fdc9f99362edb1d80945b70eee14 /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c | |
| parent | drm/amdgpu: add to set Arcturus ip blocks (diff) | |
| download | kernel-7fafd613c03b044883b1b538c57a4149260215a8.tar.gz kernel-7fafd613c03b044883b1b538c57a4149260215a8.zip | |
drm/amdgpu: set Arcturus fw load type as direct
We currently only support direct firmware loading.
Signed-off-by: Le Ma <[email protected]>
Reviewed-by: Alex Deucher <[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.c | 2 |
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 9e99736aa984..df5ebf72a979 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"); } |
