diff options
author | Jerome Glisse <jglisse@redhat.com> | 2010-02-02 11:51:45 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-02-05 02:49:52 +0100 |
commit | 655efd3dc92cd0d37292157178d33deb0430aeaa (patch) | |
tree | 9177003ca9a830e4cb976b93e491c53ceccb49df /drivers/gpu/drm/radeon/radeon.h | |
parent | drivers/gpu/drm/radeon/radeon_combios.c: fix warning (diff) | |
download | linux-655efd3dc92cd0d37292157178d33deb0430aeaa.tar.xz linux-655efd3dc92cd0d37292157178d33deb0430aeaa.zip |
drm/radeon/kms: don't call suspend path before cleaning up GPU
In suspend path we unmap the GART table while in cleaning up
path we will unbind buffer and thus try to write to unmapped
GART leading to oops. In order to avoid this we don't call the
suspend path in cleanup path. Cleanup path is clever enough
to desactive GPU like the suspend path is doing, thus this was
redondant.
Tested on: RV370, R420, RV515, RV570, RV610, RV770 (all PCIE)
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon.h')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 37150fc406b5..f57480ba1355 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -1150,6 +1150,7 @@ extern bool r600_card_posted(struct radeon_device *rdev); extern void r600_cp_stop(struct radeon_device *rdev); extern void r600_ring_init(struct radeon_device *rdev, unsigned ring_size); extern int r600_cp_resume(struct radeon_device *rdev); +extern void r600_cp_fini(struct radeon_device *rdev); extern int r600_count_pipe_bits(uint32_t val); extern int r600_gart_clear_page(struct radeon_device *rdev, int i); extern int r600_mc_wait_for_idle(struct radeon_device *rdev); |