aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-09-25 17:32:14 -0400
committerDave Airlie <airlied@linux.ie>2009-09-25 19:07:43 -0400
commit2b5d6c538b48772ba3351b8a8eed096f7af8de5d (patch)
tree163532c42500621837990cf68b566212f59f678f /drivers/gpu
parentc5e617e2f84225a28823a3e19951273b9f59eb27 (diff)
drm/radeon/kms/r600: fix forcing pci mode on agp cards
All we need to do on r6xx/r7xx is clear the RADEON_IS_AGP flag; the rest is handled in r600.c fixes fdo bug 23990: http://bugs.freedesktop.org/show_bug.cgi?id=23990 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/radeon/radeon_device.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c
index 8a40c616b534..a6733cff1fb8 100644
--- a/drivers/gpu/drm/radeon/radeon_device.c
+++ b/drivers/gpu/drm/radeon/radeon_device.c
@@ -520,10 +520,13 @@ int radeon_device_init(struct radeon_device *rdev,
520 520
521 if (radeon_agpmode == -1) { 521 if (radeon_agpmode == -1) {
522 rdev->flags &= ~RADEON_IS_AGP; 522 rdev->flags &= ~RADEON_IS_AGP;
523 if (rdev->family >= CHIP_RV515 || 523 if (rdev->family >= CHIP_R600) {
524 rdev->family == CHIP_RV380 || 524 DRM_INFO("Forcing AGP to PCIE mode\n");
525 rdev->family == CHIP_RV410 || 525 rdev->flags |= RADEON_IS_PCIE;
526 rdev->family == CHIP_R423) { 526 } else if (rdev->family >= CHIP_RV515 ||
527 rdev->family == CHIP_RV380 ||
528 rdev->family == CHIP_RV410 ||
529 rdev->family == CHIP_R423) {
527 DRM_INFO("Forcing AGP to PCIE mode\n"); 530 DRM_INFO("Forcing AGP to PCIE mode\n");
528 rdev->flags |= RADEON_IS_PCIE; 531 rdev->flags |= RADEON_IS_PCIE;
529 rdev->asic->gart_init = &rv370_pcie_gart_init; 532 rdev->asic->gart_init = &rv370_pcie_gart_init;