[SCSI] aic94xx: Add new PCI ID for ASC58300
Add new HBA PCI ID (0x416) for ASC58300 which has eight port SAS and SATA PCI-X 133MHz low profile host bus adapter with two mini SAS 4x external connectors. Signed-off-by: Gilbert Wu <gilbert_wu@adaptec.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
c0d9a413a5
commit
f9755bea9c
|
@ -40,18 +40,6 @@
|
||||||
#define ASD_MAX_PHYS 8
|
#define ASD_MAX_PHYS 8
|
||||||
#define ASD_PCBA_SN_SIZE 12
|
#define ASD_PCBA_SN_SIZE 12
|
||||||
|
|
||||||
/* Those are to be further named properly, the "RAZORx" part, and
|
|
||||||
* subsequently included in include/linux/pci_ids.h.
|
|
||||||
*/
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR10 0x410
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR12 0x412
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR1E 0x41E
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR1F 0x41F
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR30 0x430
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR32 0x432
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR3E 0x43E
|
|
||||||
#define PCI_DEVICE_ID_ADAPTEC2_RAZOR3F 0x43F
|
|
||||||
|
|
||||||
struct asd_ha_addrspace {
|
struct asd_ha_addrspace {
|
||||||
void __iomem *addr;
|
void __iomem *addr;
|
||||||
unsigned long start; /* pci resource start */
|
unsigned long start; /* pci resource start */
|
||||||
|
|
|
@ -829,22 +829,15 @@ static struct sas_domain_function_template aic94xx_transport_functions = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct pci_device_id aic94xx_pci_table[] __devinitdata = {
|
static const struct pci_device_id aic94xx_pci_table[] __devinitdata = {
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR10),
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x410),0, 0, 1},
|
||||||
0, 0, 1},
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x412),0, 0, 1},
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR12),
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x416),0, 0, 1},
|
||||||
0, 0, 1},
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x41E),0, 0, 1},
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR1E),
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x41F),0, 0, 1},
|
||||||
0, 0, 1},
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x430),0, 0, 2},
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR1F),
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x432),0, 0, 2},
|
||||||
0, 0, 1},
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x43E),0, 0, 2},
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR30),
|
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x43F),0, 0, 2},
|
||||||
0, 0, 2},
|
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR32),
|
|
||||||
0, 0, 2},
|
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR3E),
|
|
||||||
0, 0, 2},
|
|
||||||
{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_RAZOR3F),
|
|
||||||
0, 0, 2},
|
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue