mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-01 08:46:36 +09:00
drm/radeon/kms: Add MSI quirk for Dell RS690
commit 01e718ec19 upstream.
Some Dell laptops only seem to work with MSIs. This
looks like a platform/bios bug.
Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=37679
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
74fce3bc7b
commit
d75d680945
@@ -125,6 +125,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
|
||||
(rdev->pdev->subsystem_device == 0x30c2))
|
||||
return true;
|
||||
|
||||
/* Dell RS690 only seems to work with MSIs. */
|
||||
if ((rdev->pdev->device == 0x791f) &&
|
||||
(rdev->pdev->subsystem_vendor == 0x1028) &&
|
||||
(rdev->pdev->subsystem_device == 0x01fd))
|
||||
return true;
|
||||
|
||||
if (rdev->flags & RADEON_IS_IGP) {
|
||||
/* APUs work fine with MSIs */
|
||||
if (rdev->family >= CHIP_PALM)
|
||||
|
||||
Reference in New Issue
Block a user