mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: disable page queue on SDMA for Vega12
It blocks most of sanity tests, so disable it for now. Tested-by: Chen Gong <Curry.Gong@amd.com> Signed-off-by: Junwei Zhang <Jerry.Zhang@amd.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
965632adc8
commit
1cf03c54b3
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue