diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2007-07-19 18:05:57 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-20 10:02:04 -0400 |
commit | c76f2c013f7fce83d54acd9d414af7e989e0a1dd (patch) | |
tree | a6ad292a7afce772d848354a11d8f3794b82ef2a /drivers/scsi/qla2xxx/qla_def.h | |
parent | e428924ccdf4644c58e23c2314ab970ff3afc607 (diff) |
[SCSI] qla2xxx: Generalize iIDMA support.
In preparation for new ISP types.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_def.h')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index b818c43e2f9e..d505c0456de3 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h | |||
@@ -2215,6 +2215,7 @@ typedef struct scsi_qla_host { | |||
2215 | #define DT_ISP5432 BIT_10 | 2215 | #define DT_ISP5432 BIT_10 |
2216 | #define DT_ISP_LAST (DT_ISP5432 << 1) | 2216 | #define DT_ISP_LAST (DT_ISP5432 << 1) |
2217 | 2217 | ||
2218 | #define DT_IIDMA BIT_26 | ||
2218 | #define DT_FWI2 BIT_27 | 2219 | #define DT_FWI2 BIT_27 |
2219 | #define DT_ZIO_SUPPORTED BIT_28 | 2220 | #define DT_ZIO_SUPPORTED BIT_28 |
2220 | #define DT_OEM_001 BIT_29 | 2221 | #define DT_OEM_001 BIT_29 |
@@ -2239,6 +2240,7 @@ typedef struct scsi_qla_host { | |||
2239 | #define IS_QLA24XX(ha) (IS_QLA2422(ha) || IS_QLA2432(ha)) | 2240 | #define IS_QLA24XX(ha) (IS_QLA2422(ha) || IS_QLA2432(ha)) |
2240 | #define IS_QLA54XX(ha) (IS_QLA5422(ha) || IS_QLA5432(ha)) | 2241 | #define IS_QLA54XX(ha) (IS_QLA5422(ha) || IS_QLA5432(ha)) |
2241 | 2242 | ||
2243 | #define IS_IIDMA_CAPABLE(ha) ((ha)->device_type & DT_IIDMA) | ||
2242 | #define IS_FWI2_CAPABLE(ha) ((ha)->device_type & DT_FWI2) | 2244 | #define IS_FWI2_CAPABLE(ha) ((ha)->device_type & DT_FWI2) |
2243 | #define IS_ZIO_SUPPORTED(ha) ((ha)->device_type & DT_ZIO_SUPPORTED) | 2245 | #define IS_ZIO_SUPPORTED(ha) ((ha)->device_type & DT_ZIO_SUPPORTED) |
2244 | #define IS_OEM_001(ha) ((ha)->device_type & DT_OEM_001) | 2246 | #define IS_OEM_001(ha) ((ha)->device_type & DT_OEM_001) |