drm/radeon: narrow scope of Apple re-POST hack
authorAlex Deucher <alexander.deucher@amd.com>
Wed, 22 May 2013 17:29:33 +0000 (13:29 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 29 May 2013 16:35:45 +0000 (12:35 -0400)
This narrows the scope of the apple re-POST hack added in:
drm/radeon: re-POST the asic on Apple hardware when booted via EFI

That patch prevents UVD from working on macs when booted in EFI
mode.  The original patch fixed macbook2,1 systems which were
r5xx and hence have no UVD.  Limit the hack to those systems to
prevent UVD breakage on newer systems.

Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=63935

Cc: Matthew Garrett <mjg59@srcf.ucam.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Matthew Garrett <matthew.garrett@nebula.com>
drivers/gpu/drm/radeon/radeon_device.c

index af82c9b6a28b671991b3b2846f39623274bf7c64..189973836cff691ced976818f1bf045ed58e424b 100644 (file)
@@ -467,8 +467,10 @@ bool radeon_card_posted(struct radeon_device *rdev)
 {
        uint32_t reg;
 
+       /* required for EFI mode on macbook2,1 which uses an r5xx asic */
        if (efi_enabled(EFI_BOOT) &&
-           rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE)
+           (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) &&
+           (rdev->family < CHIP_R600))
                return false;
 
        if (ASIC_IS_NODCE(rdev))