git: 56eef386f512 - stable/13 - mfi(4): Add subvendor and subdevice for Fujitsu RAID Controller SAS 6Gbit/s 1GB (D3116)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 06 Jan 2026 19:13:59 UTC
The branch stable/13 has been updated by michaelo:
URL: https://cgit.FreeBSD.org/src/commit/?id=56eef386f51284901bd4a6d45bc2b9cd8f957c28
commit 56eef386f51284901bd4a6d45bc2b9cd8f957c28
Author: Michael Osipov <michaelo@FreeBSD.org>
AuthorDate: 2025-12-21 15:53:27 +0000
Commit: Michael Osipov <michaelo@FreeBSD.org>
CommitDate: 2026-01-06 19:13:39 +0000
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)
---
share/man/man4/mfi.4 | 2 ++
sys/dev/mfi/mfi_pci.c | 1 +
2 files changed, 3 insertions(+)
diff --git a/share/man/man4/mfi.4 b/share/man/man4/mfi.4
index 9795c5b78be0..fe6679403bfb 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 942503100610..63cdb8c67148 100644
--- a/sys/dev/mfi/mfi_pci.c
+++ b/sys/dev/mfi/mfi_pci.c
@@ -132,6 +132,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"},