diff options
| author | John Clements <John.Clements@amd.com> | 2019-08-01 17:59:55 +0800 | 
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2019-08-02 10:30:39 -0500 | 
| commit | b86f8d8b2bc07b0f6802e9c6b481049a63f4a637 (patch) | |
| tree | 49d8aac62394441af0601378e2f6cf589452a7bc /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | |
| parent | 8fda90e8214413cc7f9e3c64ad0df7eddffcff62 (diff) | |
drm/amdgpu: extend PSP FW loading support to 8 SDMA instances
Arcturus has 8 instances of SDMA.  Update host to PSP interface
to handle it.
Signed-off-by: John Clements <john.clements@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h index 4f1b167a9394..b34f00d42049 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h @@ -271,6 +271,12 @@ union amdgpu_firmware_header {  enum AMDGPU_UCODE_ID {  	AMDGPU_UCODE_ID_SDMA0 = 0,  	AMDGPU_UCODE_ID_SDMA1, +	AMDGPU_UCODE_ID_SDMA2, +	AMDGPU_UCODE_ID_SDMA3, +	AMDGPU_UCODE_ID_SDMA4, +	AMDGPU_UCODE_ID_SDMA5, +	AMDGPU_UCODE_ID_SDMA6, +	AMDGPU_UCODE_ID_SDMA7,  	AMDGPU_UCODE_ID_CP_CE,  	AMDGPU_UCODE_ID_CP_PFP,  	AMDGPU_UCODE_ID_CP_ME, | 
