Commit d6d2730c authored by Christian König's avatar Christian König Committed by Dave Airlie

drm/radeon: disable compute rings on cayman for now

Disable the additional compute rings on cayman
until their setup is fully implemented.
Signed-off-by: default avatarChristian König <deathsimple@vodafone.de>
Reviewed-by: default avatarJerome Glisse <jglisse@redhat.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 47492a23
......@@ -1234,8 +1234,8 @@ int cayman_cp_resume(struct radeon_device *rdev)
/* start the rings */
cayman_cp_start(rdev);
rdev->cp[RADEON_RING_TYPE_GFX_INDEX].ready = true;
rdev->cp[CAYMAN_RING_TYPE_CP1_INDEX].ready = true;
rdev->cp[CAYMAN_RING_TYPE_CP2_INDEX].ready = true;
rdev->cp[CAYMAN_RING_TYPE_CP1_INDEX].ready = false;
rdev->cp[CAYMAN_RING_TYPE_CP2_INDEX].ready = false;
/* this only test cp0 */
r = radeon_ring_test(rdev, &rdev->cp[RADEON_RING_TYPE_GFX_INDEX]);
if (r) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment