drm/radeon/kms: add r600 KMS support
This adds the r600 KMS + CS support to the Linux kernel. The r600 TTM support is quite basic and still needs more work esp around using interrupts, but the polled fencing should work okay for now. Also currently TTM is using memcpy to do VRAM moves, the code is here to use a 3D blit to do this, but isn't fully debugged yet. Authors: Alex Deucher <alexdeucher@gmail.com> Dave Airlie <airlied@redhat.com> Jerome Glisse <jglisse@redhat.com> Signed-off-by: Jerome Glisse <jglisse@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
4ce001abaf
commit
3ce0a23d2d
33 changed files with 8297 additions and 614 deletions
|
@ -63,7 +63,7 @@ void rs400_gart_adjust_size(struct radeon_device *rdev)
|
|||
break;
|
||||
default:
|
||||
DRM_ERROR("Unable to use IGP GART size %uM\n",
|
||||
rdev->mc.gtt_size >> 20);
|
||||
(unsigned)(rdev->mc.gtt_size >> 20));
|
||||
DRM_ERROR("Valid GART size for IGP are 32M,64M,128M,256M,512M,1G,2G\n");
|
||||
DRM_ERROR("Forcing to 32M GART size\n");
|
||||
rdev->mc.gtt_size = 32 * 1024 * 1024;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue