diff options
| author | Junwei Zhang <[email protected]> | 2018-10-24 08:19:09 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2018-11-05 19:21:46 +0000 |
| commit | 1cf03c54b3d89ccbaee45abbbf10c098f23801d5 (patch) | |
| tree | cc527cbe921c48427478f04a7b775f19bf9cd51e /drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | |
| parent | drm/amdgpu: update smu firmware images for VI variants (v2) (diff) | |
| download | kernel-1cf03c54b3d89ccbaee45abbbf10c098f23801d5.tar.gz kernel-1cf03c54b3d89ccbaee45abbbf10c098f23801d5.zip | |
drm/amdgpu: disable page queue on SDMA for Vega12
It blocks most of sanity tests, so disable it for now.
Tested-by: Chen Gong <[email protected]>
Signed-off-by: Junwei Zhang <[email protected]>
Acked-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c index 2b944db86950..ec1b2f3ec01e 100644 --- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c +++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c @@ -1453,7 +1453,8 @@ static int sdma_v4_0_early_init(void *handle) adev->sdma.has_page_queue = false; } else { adev->sdma.num_instances = 2; - if (adev->asic_type != CHIP_VEGA20) + if (adev->asic_type != CHIP_VEGA20 && + adev->asic_type != CHIP_VEGA12) adev->sdma.has_page_queue = true; } |
