aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2008-05-24 00:42:53 +0000
committerXin LI <delphij@FreeBSD.org>2008-05-24 00:42:53 +0000
commit075e5d09ee07047539a080e063cdaad8952509f5 (patch)
treeb4274f77fe403c6ffe74b6adfcbdb6a256f331e1
parent72d0b15870ee12496d927ca59826e2656a9b90ad (diff)
MFC revision 1.52
date: 2008/05/10 01:27:23; author: delphij; state: Exp; lines: +6 -0 Add support for LSI 1078DE (ServeRAID-AR10is SAS/SATA Controller)
Notes
svn path=/stable/5/; revision=179271
-rw-r--r--sys/dev/mpt/mpt_pci.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c
index d65c9c91d606..42f6e1527c2c 100644
--- a/sys/dev/mpt/mpt_pci.c
+++ b/sys/dev/mpt/mpt_pci.c
@@ -185,6 +185,10 @@ __FBSDID("$FreeBSD$");
#define PCI_PRODUCT_LSI_SAS1078 0x0060
#endif
+#ifndef PCI_PRODUCT_LSI_SAS1078DE
+#define PCI_PRODUCT_LSI_SAS1078DE 0x007C
+#endif
+
#ifndef PCIM_CMD_SERRESPEN
#define PCIM_CMD_SERRESPEN 0x0100
#endif
@@ -265,6 +269,7 @@ mpt_pci_probe(device_t dev)
case PCI_PRODUCT_LSI_SAS1068:
case PCI_PRODUCT_LSI_SAS1068E:
case PCI_PRODUCT_LSI_SAS1078:
+ case PCI_PRODUCT_LSI_SAS1078DE:
desc = "LSILogic SAS/SATA Adapter";
break;
default:
@@ -441,6 +446,7 @@ mpt_pci_attach(device_t dev)
case PCI_PRODUCT_LSI_SAS1068:
case PCI_PRODUCT_LSI_SAS1068E:
case PCI_PRODUCT_LSI_SAS1078:
+ case PCI_PRODUCT_LSI_SAS1078DE:
mpt->is_sas = 1;
break;
default: