diff options
author | kn <kn@cvs.openbsd.org> | 2019-12-28 04:38:24 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2019-12-28 04:38:24 +0000 |
commit | d01aeda2562a6d29985c58ae633588e5651045ed (patch) | |
tree | fcb845f5d43ffb7cf70108e99918c45a47b11d2a /sys/dev | |
parent | 33ad1a1da24788653be88ffd41975064bf272066 (diff) |
Attach Symbios Logic Flash Accelerator eMLC cards
Those can be found in SPARC T4 machines, mine has the F80 800G model.
Since other devices with different flash configurations use the same
vendor/product ID, use the LSI chip name as product name as pointed out
by jmatthew, thanks.
OK jmatthew deraadt
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/mpii.c | 3 | ||||
-rw-r--r-- | sys/dev/pci/pcidevs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/mpii.c b/sys/dev/pci/mpii.c index 28c2f0e7490..ca7331ad132 100644 --- a/sys/dev/pci/mpii.c +++ b/sys/dev/pci/mpii.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpii.c,v 1.121 2019/09/12 22:22:53 jmatthew Exp $ */ +/* $OpenBSD: mpii.c,v 1.122 2019/12/28 04:38:22 kn Exp $ */ /* * Copyright (c) 2010, 2012 Mike Belopuhov * Copyright (c) 2009 James Giannoules @@ -413,6 +413,7 @@ mpii_dvatosge(struct mpii_sge *sge, u_int64_t dva) static const struct pci_matchid mpii_devices[] = { { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2004 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2008 }, + { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SSS6200 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_3 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_4 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_5 }, diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index 0400de478ff..d0a021b89bc 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$OpenBSD: pcidevs,v 1.1902 2019/11/20 16:33:00 patrick Exp $ +$OpenBSD: pcidevs,v 1.1903 2019/12/28 04:38:23 kn Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -6195,6 +6195,7 @@ product SYMBIOS SAS2108_5 0x0077 SAS2108 product SYMBIOS SAS2108_1 0x0078 MegaRAID SAS2108 CRYPTO GEN2 product SYMBIOS SAS2108_2 0x0079 MegaRAID SAS2108 GEN2 product SYMBIOS SAS1078DE 0x007c SAS1078DE +product SYMBIOS SSS6200 0x007e SSS6200 product SYMBIOS SAS2208_1 0x0080 SAS2208 product SYMBIOS SAS2208_2 0x0081 SAS2208 product SYMBIOS SAS2208_3 0x0082 SAS2208 |