diff options
author | James Smart <james.smart@emulex.com> | 2010-09-29 11:18:53 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-10-07 18:28:37 -0400 |
commit | dcf2a4e0792e837d6133506444a033a95cbc9616 (patch) | |
tree | 9ff7c9e1e4f7545a391cee4c205ef358f1894acc /drivers/scsi/lpfc/lpfc_hw.h | |
parent | d439d286f573afab8c164dbc953ce1d214585a40 (diff) |
[SCSI] lpfc 8.3.17: SLI Additions and Fixes
- Added driver support for management application to pass down two security
specific mailbox commands (MBX_SECURITY_MGMT and MBX_AUTH_PORT)
- Added driver support for handling FIPS zeroization trap of host ERATT ER8,
performing selective reset and bringing the device up.
- Added code to detect INIT_LINK mailbox command completion returning status
MBXERR_SEC_NO_PERMISSION.
- Increased the wait timeout on host status register HS_FFRDY and HS_MBRDY
being set.
- Remove the port offline code from the Heartbeat TMO handler.
Signed-off-by: Alex Iannicelli <alex.iannicelli@emulex.com>
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_hw.h')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_hw.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_hw.h b/drivers/scsi/lpfc/lpfc_hw.h index 1676f61291e7..a631647051d9 100644 --- a/drivers/scsi/lpfc/lpfc_hw.h +++ b/drivers/scsi/lpfc/lpfc_hw.h | |||
@@ -1380,6 +1380,9 @@ typedef struct { /* FireFly BIU registers */ | |||
1380 | #define MBX_INIT_VFI 0xA3 | 1380 | #define MBX_INIT_VFI 0xA3 |
1381 | #define MBX_INIT_VPI 0xA4 | 1381 | #define MBX_INIT_VPI 0xA4 |
1382 | 1382 | ||
1383 | #define MBX_AUTH_PORT 0xF8 | ||
1384 | #define MBX_SECURITY_MGMT 0xF9 | ||
1385 | |||
1383 | /* IOCB Commands */ | 1386 | /* IOCB Commands */ |
1384 | 1387 | ||
1385 | #define CMD_RCV_SEQUENCE_CX 0x01 | 1388 | #define CMD_RCV_SEQUENCE_CX 0x01 |
@@ -1502,7 +1505,8 @@ typedef struct { /* FireFly BIU registers */ | |||
1502 | #define MBXERR_DMA_ERROR 15 | 1505 | #define MBXERR_DMA_ERROR 15 |
1503 | #define MBXERR_ERROR 16 | 1506 | #define MBXERR_ERROR 16 |
1504 | #define MBXERR_LINK_DOWN 0x33 | 1507 | #define MBXERR_LINK_DOWN 0x33 |
1505 | #define MBX_NOT_FINISHED 255 | 1508 | #define MBXERR_SEC_NO_PERMISSION 0xF02 |
1509 | #define MBX_NOT_FINISHED 255 | ||
1506 | 1510 | ||
1507 | #define MBX_BUSY 0xffffff /* Attempted cmd to busy Mailbox */ | 1511 | #define MBX_BUSY 0xffffff /* Attempted cmd to busy Mailbox */ |
1508 | #define MBX_TIMEOUT 0xfffffe /* time-out expired waiting for */ | 1512 | #define MBX_TIMEOUT 0xfffffe /* time-out expired waiting for */ |