diff options
author | Kashyap, Desai <kashyap.desai@lsi.com> | 2011-02-10 11:50:39 +0530 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-12 13:57:28 -0600 |
commit | d75733d51fdab5c99a0d9491b25f22e13b39cdc1 (patch) | |
tree | e5aff7828c3306b172281244544e1ffb729dd432 /drivers/message/fusion/lsi/mpi_cnfg.h | |
parent | 8597ae8bfe35f5e438b00ba5df852e97ebe1ac23 (diff) | |
download | kernel_replicant_linux-d75733d51fdab5c99a0d9491b25f22e13b39cdc1.tar.gz kernel_replicant_linux-d75733d51fdab5c99a0d9491b25f22e13b39cdc1.tar.bz2 kernel_replicant_linux-d75733d51fdab5c99a0d9491b25f22e13b39cdc1.zip |
[SCSI] mptfusion: Support SAS2.0 Devices with SAS1.0 Controllers
SAS1.0 Controller was not able to detect SAS2.0 Expanders due to Link
RATE detection was limited to 1.5 Gbps and 3.0 Gbps for SAS1
controllers. Added detection for 6.0 Gbps link. Now, user can mix-up
6.0 Gpbs links with SAS1.0 controller.
e.g SAS1.0 HBA <----> SAS2.0 Expander <------> SAS2.0 Expander <--------> SAS1.0 Drive.
Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/message/fusion/lsi/mpi_cnfg.h')
-rw-r--r-- | drivers/message/fusion/lsi/mpi_cnfg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/message/fusion/lsi/mpi_cnfg.h b/drivers/message/fusion/lsi/mpi_cnfg.h index 013c7d881948..22027e7946f7 100644 --- a/drivers/message/fusion/lsi/mpi_cnfg.h +++ b/drivers/message/fusion/lsi/mpi_cnfg.h @@ -2593,6 +2593,7 @@ typedef struct _CONFIG_PAGE_SAS_IO_UNIT_0 #define MPI_SAS_IOUNIT0_RATE_SATA_OOB_COMPLETE (0x03) #define MPI_SAS_IOUNIT0_RATE_1_5 (0x08) #define MPI_SAS_IOUNIT0_RATE_3_0 (0x09) +#define MPI_SAS_IOUNIT0_RATE_6_0 (0x0A) /* see mpi_sas.h for values for SAS IO Unit Page 0 ControllerPhyDeviceInfo values */ |