]> bbs.cooldavid.org Git - net-next-2.6.git/commit
drm/radeon/kms: fix gtt MC base alignment on rs4xx/rs690/rs740 asics
authorAlex Deucher <alexdeucher@gmail.com>
Thu, 15 Jul 2010 14:51:10 +0000 (10:51 -0400)
committerDave Airlie <airlied@redhat.com>
Fri, 16 Jul 2010 01:27:01 +0000 (11:27 +1000)
commit8d369bb196f1f9111cb7ab839d4f420378fa7b30
tree50fab6e264572f10b5635581789532d3962d54c9
parent5099fa7f23d3711538cbe9fe072b4ce1ba814035
drm/radeon/kms: fix gtt MC base alignment on rs4xx/rs690/rs740 asics

The asics in question have the following requirements with regard to
their gart setups:

1. The GART aperture size has to be in the form of 2^X bytes, where X is from 25 to 31
2. The GART aperture MC base has to be aligned to a boundary equal to the size of the
aperture.
3. The GART page table has to be aligned to the boundary equal to the size of the table.
4. The GART page table size is: table_entry_size * (aperture_size / page_size)
5. The GART page table has to be allocated in non-paged, non-cached, contiguous system
memory.

This patch takes care 2.  The rest should already be handled properly.

This fixes a regression noticed by: Torsten Kaiser <just.for.lkml@googlemail.com>

Tested-by: Torsten Kaiser <just.for.lkml@googlemail.com>
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/r100.c
drivers/gpu/drm/radeon/r300.c
drivers/gpu/drm/radeon/r520.c
drivers/gpu/drm/radeon/r600.c
drivers/gpu/drm/radeon/radeon.h
drivers/gpu/drm/radeon/radeon_device.c
drivers/gpu/drm/radeon/rs400.c
drivers/gpu/drm/radeon/rs600.c
drivers/gpu/drm/radeon/rs690.c
drivers/gpu/drm/radeon/rv515.c