projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61cf44c
)
drm/amdgpu: set Arcturus fw load type as direct
author
Le Ma
<le.ma@amd.com>
Tue, 11 Sep 2018 03:35:34 +0000
(11:35 +0800)
committer
Alex Deucher
<alexander.deucher@amd.com>
Thu, 18 Jul 2019 19:18:02 +0000
(14:18 -0500)
We currently only support direct firmware loading.
Signed-off-by: Le Ma <le.ma@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
index 9e99736aa984e6d9017ba8b6784f3de7a871ddfa..df5ebf72a9795db221c52b65ceeff7730d916560 100644
(file)
--- 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");
}