aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/hpsa.c
diff options
context:
space:
mode:
authorStephen M. Cameron <scameron@beardog.cce.hp.com>2014-02-18 14:58:02 -0500
committerJames Bottomley <JBottomley@Parallels.com>2014-03-15 13:19:10 -0400
commit8e616a5ee6e389f855a9fa0ab57194b4b049d9c8 (patch)
tree0963385c6283deffb6201251a362ce3d439599cc /drivers/scsi/hpsa.c
parent4b409c50343f41596f76006460cb5adc4d25824e (diff)
[SCSI] hpsa: Add support for a few HP Storage controllers
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/hpsa.c')
-rw-r--r--drivers/scsi/hpsa.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 09119c299794..49ad8c56c535 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -119,6 +119,11 @@ static const struct pci_device_id hpsa_pci_device_id[] = {
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7}, 119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8}, 120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9}, 121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
122 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
123 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
124 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
125 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
126 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
122 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 127 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
123 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, 128 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
124 {0,} 129 {0,}
@@ -164,6 +169,11 @@ static struct board_type products[] = {
164 {0x21C7103C, "Smart Array", &SA5_access}, 169 {0x21C7103C, "Smart Array", &SA5_access},
165 {0x21C8103C, "Smart Array", &SA5_access}, 170 {0x21C8103C, "Smart Array", &SA5_access},
166 {0x21C9103C, "Smart Array", &SA5_access}, 171 {0x21C9103C, "Smart Array", &SA5_access},
172 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
173 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
174 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
175 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
176 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
167 {0xFFFF103C, "Unknown Smart Array", &SA5_access}, 177 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
168}; 178};
169 179