]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
drm/radeon/kms: fix possible mis-detection of sideport on rs690/rs740
authorAlex Deucher <alexdeucher@gmail.com>
Mon, 12 Jul 2010 21:33:50 +0000 (17:33 -0400)
committerDave Airlie <airlied@redhat.com>
Tue, 13 Jul 2010 23:08:36 +0000 (09:08 +1000)
Check ulBootUpMemoryClock on AMD IGPs.

Fix regression noticed by Torsten Kaiser <just.for.lkml@googlemail.com>

Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Cc: stable@kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_atombios.c

index 99bd8a9c56b38f8431510bf3cde781345510feb1..125155af8881cd8f9a2a9e2e621770235b66c680 100644 (file)
@@ -1029,8 +1029,15 @@ bool radeon_atombios_sideport_present(struct radeon_device *rdev)
                                      data_offset);
                switch (crev) {
                case 1:
-                       if (igp_info->info.ucMemoryType & 0xf0)
-                               return true;
+                       /* AMD IGPS */
+                       if ((rdev->family == CHIP_RS690) ||
+                           (rdev->family == CHIP_RS740)) {
+                               if (igp_info->info.ulBootUpMemoryClock)
+                                       return true;
+                       } else {
+                               if (igp_info->info.ucMemoryType & 0xf0)
+                                       return true;
+                       }
                        break;
                case 2:
                        if (igp_info->info_2.ucMemoryType & 0x0f)