diff options
author | David Zhang <david1.zhang@amd.com> | 2015-07-08 05:29:27 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-08-17 16:50:27 -0400 |
commit | 1a5bbb669597d7c47da2d7fd03ed7c33989257b8 (patch) | |
tree | 18fca484d630995b1143dacd553c985b7a07433d /drivers/gpu/drm/amd/amdgpu/vi.c | |
parent | af15a2d51dba75498b7802fd67399a093961ddc4 (diff) |
drm/amdgpu: Add Fiji support to the SDMA 3.0 IP module
Signed-off-by: David Zhang <david1.zhang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/vi.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/vi.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/vi.c b/drivers/gpu/drm/amd/amdgpu/vi.c index 0cd248b937e8..8881dd82fd68 100644 --- a/drivers/gpu/drm/amd/amdgpu/vi.c +++ b/drivers/gpu/drm/amd/amdgpu/vi.c | |||
@@ -1209,6 +1209,13 @@ static const struct amdgpu_ip_block_version fiji_ip_blocks[] = | |||
1209 | .rev = 0, | 1209 | .rev = 0, |
1210 | .funcs = &gfx_v8_0_ip_funcs, | 1210 | .funcs = &gfx_v8_0_ip_funcs, |
1211 | }, | 1211 | }, |
1212 | { | ||
1213 | .type = AMD_IP_BLOCK_TYPE_SDMA, | ||
1214 | .major = 3, | ||
1215 | .minor = 0, | ||
1216 | .rev = 0, | ||
1217 | .funcs = &sdma_v3_0_ip_funcs, | ||
1218 | }, | ||
1212 | }; | 1219 | }; |
1213 | 1220 | ||
1214 | static const struct amdgpu_ip_block_version cz_ip_blocks[] = | 1221 | static const struct amdgpu_ip_block_version cz_ip_blocks[] = |