mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add support for LSI 1078DE (ServeRAID-AR10is SAS/SATA
Controller) MFC after: 2 weeks
This commit is contained in:
parent
108e8dd925
commit
18b2a6d976
1 changed files with 6 additions and 0 deletions
|
|
@ -185,6 +185,10 @@ __FBSDID("$FreeBSD$");
|
|||
#define PCI_PRODUCT_LSI_SAS1078 0x0062
|
||||
#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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue