Hi folks, I recently built a system using the HighPoint 2720 SAS controller, which is based on the Marvell 88SE9485. In my limited testing (read: it boots), the following patch is needed to get mvsas to recognize the board. With this patch, the system boots without issue and SATA passthrough seems to work. Note that I have not tested the board with any SAS drives, as I only have SATA drives at present. Any thoughts/comments on if anything further is needed for this board? Signed-off-by: Benjamin LaHaise <bcrl@xxxxxxxxx> diff --git a/drivers/scsi/mvsas/mv_init.c b/drivers/scsi/mvsas/mv_init.c index 19ad34f..4590faa 100644 --- a/drivers/scsi/mvsas/mv_init.c +++ b/drivers/scsi/mvsas/mv_init.c @@ -648,6 +648,15 @@ static struct pci_device_id __devinitdata mvs_pci_table[] = { { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 }, { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 }, + { /* HighPoint RocketRAID 2720 */ + .vendor = 0x1103, + .device = 0x2720, + .subvendor = PCI_ANY_ID, + .subdevice = 0x0000, + .class = 0, + .class_mask = 0, + .driver_data = chip_1320, + }, { .vendor = PCI_VENDOR_ID_MARVELL, .device = 0x6440, .subvendor = PCI_ANY_ID, -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html