aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Osipov <michaelo@FreeBSD.org>2025-12-21 15:53:27 +0000
committerMichael Osipov <michaelo@FreeBSD.org>2026-01-06 19:12:55 +0000
commit3690911c355a85177d534ae19c679d8e5d259f4f (patch)
tree5af3107a0358c7796a5c90e4a086ae06bdacedcb
parent4e4272024e33d06f0b38a7d93c1c65b779220d13 (diff)
mfi(4): Add subvendor and subdevice for Fujitsu RAID Controller SAS 6Gbit/s 1GB (D3116)
This is an OEM card from Fujitsu using an LSI SAS2208 ROC controller shipped with many Fujitsu PRIMERGY servers like RX300 S7. This chip is also recognized by mrsas(4) under the generic name for the controller chip. Controller description: https://www.fujitsu.com/global/products/computing/servers/primergy/blades/connection/cb-pmod-110426.html Reviewed by: ziaee MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D54520 (cherry picked from commit 8b210276cde207ca3dc1f7f46d5a6d32e0a1c51d)
-rw-r--r--share/man/man4/mfi.42
-rw-r--r--sys/dev/mfi/mfi_pci.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/share/man/man4/mfi.4 b/share/man/man4/mfi.4
index 4a55467d81f2..6b660c4cd744 100644
--- a/share/man/man4/mfi.4
+++ b/share/man/man4/mfi.4
@@ -109,6 +109,8 @@ Dell PERC5
.It
Dell PERC6
.It
+Fujitsu RAID Controller SAS 6Gbit/s 1GB (D3116)
+.It
IBM ServeRAID M1015 SAS/SATA
.It
IBM ServeRAID M1115 SAS/SATA
diff --git a/sys/dev/mfi/mfi_pci.c b/sys/dev/mfi/mfi_pci.c
index 82082e6b72cf..ad014774c38b 100644
--- a/sys/dev/mfi/mfi_pci.c
+++ b/sys/dev/mfi/mfi_pci.c
@@ -131,6 +131,7 @@ struct mfi_ident {
{0x1000, 0x005b, 0x1028, 0x1f35, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H710 Adapter"},
{0x1000, 0x005b, 0x1028, 0x1f37, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H710 Mini (blades)"},
{0x1000, 0x005b, 0x1028, 0x1f38, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H710 Mini (monolithics)"},
+ {0x1000, 0x005b, 0x1734, 0x11d3, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Fujitsu RAID Controller SAS 6Gbit/s 1GB (D3116)"},
{0x1000, 0x005b, 0x8086, 0x9265, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Intel (R) RAID Controller RS25DB080"},
{0x1000, 0x005b, 0x8086, 0x9285, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Intel (R) RAID Controller RS25NB008"},
{0x1000, 0x005b, 0xffff, 0xffff, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "ThunderBolt"},