diff options
Diffstat (limited to 'drivers/scsi/mpt2sas/mpi/mpi2.h')
-rw-r--r-- | drivers/scsi/mpt2sas/mpi/mpi2.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/scsi/mpt2sas/mpi/mpi2.h b/drivers/scsi/mpt2sas/mpi/mpi2.h index 4b1c2f0350f9..8be75e65f763 100644 --- a/drivers/scsi/mpt2sas/mpi/mpi2.h +++ b/drivers/scsi/mpt2sas/mpi/mpi2.h | |||
@@ -8,7 +8,7 @@ | |||
8 | * scatter/gather formats. | 8 | * scatter/gather formats. |
9 | * Creation Date: June 21, 2006 | 9 | * Creation Date: June 21, 2006 |
10 | * | 10 | * |
11 | * mpi2.h Version: 02.00.15 | 11 | * mpi2.h Version: 02.00.16 |
12 | * | 12 | * |
13 | * Version History | 13 | * Version History |
14 | * --------------- | 14 | * --------------- |
@@ -61,6 +61,8 @@ | |||
61 | * Added define for MPI2_FUNCTION_PWR_MGMT_CONTROL. | 61 | * Added define for MPI2_FUNCTION_PWR_MGMT_CONTROL. |
62 | * Added defines for product-specific range of message | 62 | * Added defines for product-specific range of message |
63 | * function codes, 0xF0 to 0xFF. | 63 | * function codes, 0xF0 to 0xFF. |
64 | * 05-12-10 02.00.16 Bumped MPI2_HEADER_VERSION_UNIT. | ||
65 | * Added alternative defines for the SGE Direction bit. | ||
64 | * -------------------------------------------------------------------------- | 66 | * -------------------------------------------------------------------------- |
65 | */ | 67 | */ |
66 | 68 | ||
@@ -86,7 +88,7 @@ | |||
86 | #define MPI2_VERSION_02_00 (0x0200) | 88 | #define MPI2_VERSION_02_00 (0x0200) |
87 | 89 | ||
88 | /* versioning for this MPI header set */ | 90 | /* versioning for this MPI header set */ |
89 | #define MPI2_HEADER_VERSION_UNIT (0x0F) | 91 | #define MPI2_HEADER_VERSION_UNIT (0x10) |
90 | #define MPI2_HEADER_VERSION_DEV (0x00) | 92 | #define MPI2_HEADER_VERSION_DEV (0x00) |
91 | #define MPI2_HEADER_VERSION_UNIT_MASK (0xFF00) | 93 | #define MPI2_HEADER_VERSION_UNIT_MASK (0xFF00) |
92 | #define MPI2_HEADER_VERSION_UNIT_SHIFT (8) | 94 | #define MPI2_HEADER_VERSION_UNIT_SHIFT (8) |
@@ -929,6 +931,9 @@ typedef struct _MPI2_MPI_SGE_UNION | |||
929 | #define MPI2_SGE_FLAGS_IOC_TO_HOST (0x00) | 931 | #define MPI2_SGE_FLAGS_IOC_TO_HOST (0x00) |
930 | #define MPI2_SGE_FLAGS_HOST_TO_IOC (0x04) | 932 | #define MPI2_SGE_FLAGS_HOST_TO_IOC (0x04) |
931 | 933 | ||
934 | #define MPI2_SGE_FLAGS_DEST (MPI2_SGE_FLAGS_IOC_TO_HOST) | ||
935 | #define MPI2_SGE_FLAGS_SOURCE (MPI2_SGE_FLAGS_HOST_TO_IOC) | ||
936 | |||
932 | /* Address Size */ | 937 | /* Address Size */ |
933 | 938 | ||
934 | #define MPI2_SGE_FLAGS_32_BIT_ADDRESSING (0x00) | 939 | #define MPI2_SGE_FLAGS_32_BIT_ADDRESSING (0x00) |