aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pci/pci.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2007-01-12 21:30:25 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2007-01-12 21:30:25 +0000
commit854923ae8648ddfb7c9a4f11cab07cec378fa8ea (patch)
tree9a891befe7e365b699dce25c140ab59685a33dc6 /sys/dev/pci/pci.c
parentca9f93ff42d497b79f16bb76bc773a51069c1dce (diff)
downloadsrc-854923ae8648ddfb7c9a4f11cab07cec378fa8ea.tar.gz
src-854923ae8648ddfb7c9a4f11cab07cec378fa8ea.zip
Blacklist a few more Intel chipsets re: MSI based on user reports:
E7500 and 855.
Notes
Notes: svn path=/head/; revision=165980
Diffstat (limited to 'sys/dev/pci/pci.c')
-rw-r--r--sys/dev/pci/pci.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index cb7a2e1ef7b3..20a78def7c4d 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -178,12 +178,14 @@ struct pci_quirk pci_quirks[] = {
{ 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 },
/*
- * MSI doesn't work on earlier Intel chipsets including the
- * E7501, E7505, and the E7210.
+ * MSI doesn't work on earlier Intel chipsets including
+ * E7500, E7501, E7505, E7210, and 855.
*/
+ { 0x25408086, PCI_QUIRK_DISABLE_MSI, 0, 0 },
{ 0x254c8086, PCI_QUIRK_DISABLE_MSI, 0, 0 },
{ 0x25508086, PCI_QUIRK_DISABLE_MSI, 0, 0 },
{ 0x25788086, PCI_QUIRK_DISABLE_MSI, 0, 0 },
+ { 0x35808086, PCI_QUIRK_DISABLE_MSI, 0, 0 },
{ 0 }
};