projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f46c012
)
drm/radeon/kms: disable MSI on IGP chips
author
Alex Deucher
<
[email protected]
>
Tue, 30 Mar 2010 21:22:32 +0000
(17:22 -0400)
committer
Dave Airlie
<
[email protected]
>
Wed, 31 Mar 2010 04:55:02 +0000
(14:55 +1000)
Doesn't seem to work reliably and the pci quirks don't
always work.
Signed-off-by: Alex Deucher <
[email protected]
>
Signed-off-by: Dave Airlie <
[email protected]
>
drivers/gpu/drm/radeon/radeon_irq_kms.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_irq_kms.c
b/drivers/gpu/drm/radeon/radeon_irq_kms.c
index 68519b406ca6681e1d0bb62b3bda227d0c5a31ae..a212041e8b0b0a5ef0d47d7949f057d38be480ed 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_irq_kms.c
+++ b/
drivers/gpu/drm/radeon/radeon_irq_kms.c
@@
-114,13
+114,11
@@
int radeon_irq_kms_init(struct radeon_device *rdev)
}
/* enable msi */
rdev->msi_enabled = 0;
- /* MSIs don't seem to work on my rs780;
- * not sure about rs880 or other rs780s.
- * Needs more investigation.
+ /* MSIs don't seem to work reliably on all IGP
+ * chips. Disable MSI on them for now.
*/
if ((rdev->family >= CHIP_RV380) &&
- (rdev->family != CHIP_RS780) &&
- (rdev->family != CHIP_RS880)) {
+ (!(rdev->flags & RADEON_IS_IGP))) {
int ret = pci_enable_msi(rdev->pdev);
if (!ret) {
rdev->msi_enabled = 1;