diff options
author | James Smart <james.smart@emulex.com> | 2012-08-03 12:37:08 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-09-14 09:46:06 -0400 |
commit | 940eb687b34dd070f54aaa2cdf94e9a88188a4ee (patch) | |
tree | 5f32dddeb8be5abbaaa9b85c6ac0a5ef2f119728 | |
parent | c85a65ac55a9adc850c4485d11fac06d13ed2fa5 (diff) |
[SCSI] lpfc 8.3.33: Fixed incomplete list of SLI4 commands with extended timeout value
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_hw.h | 1 | ||||
-rw-r--r-- | drivers/scsi/lpfc/lpfc_hw4.h | 6 | ||||
-rw-r--r-- | drivers/scsi/lpfc/lpfc_mbox.c | 11 | ||||
-rw-r--r-- | drivers/scsi/lpfc/lpfc_sli.c | 1 |
4 files changed, 18 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_hw.h b/drivers/scsi/lpfc/lpfc_hw.h index d74470481ca6..9ff188e1ca32 100644 --- a/drivers/scsi/lpfc/lpfc_hw.h +++ b/drivers/scsi/lpfc/lpfc_hw.h | |||
@@ -1460,6 +1460,7 @@ typedef struct { /* FireFly BIU registers */ | |||
1460 | #define MBX_UNREG_FCFI 0xA2 | 1460 | #define MBX_UNREG_FCFI 0xA2 |
1461 | #define MBX_INIT_VFI 0xA3 | 1461 | #define MBX_INIT_VFI 0xA3 |
1462 | #define MBX_INIT_VPI 0xA4 | 1462 | #define MBX_INIT_VPI 0xA4 |
1463 | #define MBX_ACCESS_VDATA 0xA5 | ||
1463 | 1464 | ||
1464 | #define MBX_AUTH_PORT 0xF8 | 1465 | #define MBX_AUTH_PORT 0xF8 |
1465 | #define MBX_SECURITY_MGMT 0xF9 | 1466 | #define MBX_SECURITY_MGMT 0xF9 |
diff --git a/drivers/scsi/lpfc/lpfc_hw4.h b/drivers/scsi/lpfc/lpfc_hw4.h index 45fbfb623ad9..35af35b5ab97 100644 --- a/drivers/scsi/lpfc/lpfc_hw4.h +++ b/drivers/scsi/lpfc/lpfc_hw4.h | |||
@@ -886,13 +886,19 @@ struct mbox_header { | |||
886 | #define LPFC_MBOX_OPCODE_EQ_DESTROY 0x37 | 886 | #define LPFC_MBOX_OPCODE_EQ_DESTROY 0x37 |
887 | #define LPFC_MBOX_OPCODE_QUERY_FW_CFG 0x3A | 887 | #define LPFC_MBOX_OPCODE_QUERY_FW_CFG 0x3A |
888 | #define LPFC_MBOX_OPCODE_FUNCTION_RESET 0x3D | 888 | #define LPFC_MBOX_OPCODE_FUNCTION_RESET 0x3D |
889 | #define LPFC_MBOX_OPCODE_SET_PHYSICAL_LINK_CONFIG 0x3E | ||
890 | #define LPFC_MBOX_OPCODE_SET_BOOT_CONFIG 0x43 | ||
889 | #define LPFC_MBOX_OPCODE_GET_PORT_NAME 0x4D | 891 | #define LPFC_MBOX_OPCODE_GET_PORT_NAME 0x4D |
890 | #define LPFC_MBOX_OPCODE_MQ_CREATE_EXT 0x5A | 892 | #define LPFC_MBOX_OPCODE_MQ_CREATE_EXT 0x5A |
893 | #define LPFC_MBOX_OPCODE_GET_VPD_DATA 0x5B | ||
894 | #define LPFC_MBOX_OPCODE_SEND_ACTIVATION 0x73 | ||
895 | #define LPFC_MBOX_OPCODE_RESET_LICENSES 0x74 | ||
891 | #define LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO 0x9A | 896 | #define LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO 0x9A |
892 | #define LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT 0x9B | 897 | #define LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT 0x9B |
893 | #define LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT 0x9C | 898 | #define LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT 0x9C |
894 | #define LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT 0x9D | 899 | #define LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT 0x9D |
895 | #define LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG 0xA0 | 900 | #define LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG 0xA0 |
901 | #define LPFC_MBOX_OPCODE_GET_PROFILE_CAPACITIES 0xA1 | ||
896 | #define LPFC_MBOX_OPCODE_GET_PROFILE_CONFIG 0xA4 | 902 | #define LPFC_MBOX_OPCODE_GET_PROFILE_CONFIG 0xA4 |
897 | #define LPFC_MBOX_OPCODE_SET_PROFILE_CONFIG 0xA5 | 903 | #define LPFC_MBOX_OPCODE_SET_PROFILE_CONFIG 0xA5 |
898 | #define LPFC_MBOX_OPCODE_GET_PROFILE_LIST 0xA6 | 904 | #define LPFC_MBOX_OPCODE_GET_PROFILE_LIST 0xA6 |
diff --git a/drivers/scsi/lpfc/lpfc_mbox.c b/drivers/scsi/lpfc/lpfc_mbox.c index 0e5d9a4f3b3d..721ce1f430c7 100644 --- a/drivers/scsi/lpfc/lpfc_mbox.c +++ b/drivers/scsi/lpfc/lpfc_mbox.c | |||
@@ -1612,12 +1612,15 @@ lpfc_mbox_tmo_val(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq) | |||
1612 | 1612 | ||
1613 | switch (mbox->mbxCommand) { | 1613 | switch (mbox->mbxCommand) { |
1614 | case MBX_WRITE_NV: /* 0x03 */ | 1614 | case MBX_WRITE_NV: /* 0x03 */ |
1615 | case MBX_DUMP_MEMORY: /* 0x17 */ | ||
1615 | case MBX_UPDATE_CFG: /* 0x1B */ | 1616 | case MBX_UPDATE_CFG: /* 0x1B */ |
1616 | case MBX_DOWN_LOAD: /* 0x1C */ | 1617 | case MBX_DOWN_LOAD: /* 0x1C */ |
1617 | case MBX_DEL_LD_ENTRY: /* 0x1D */ | 1618 | case MBX_DEL_LD_ENTRY: /* 0x1D */ |
1619 | case MBX_WRITE_VPARMS: /* 0x32 */ | ||
1618 | case MBX_LOAD_AREA: /* 0x81 */ | 1620 | case MBX_LOAD_AREA: /* 0x81 */ |
1619 | case MBX_WRITE_WWN: /* 0x98 */ | 1621 | case MBX_WRITE_WWN: /* 0x98 */ |
1620 | case MBX_LOAD_EXP_ROM: /* 0x9C */ | 1622 | case MBX_LOAD_EXP_ROM: /* 0x9C */ |
1623 | case MBX_ACCESS_VDATA: /* 0xA5 */ | ||
1621 | return LPFC_MBOX_TMO_FLASH_CMD; | 1624 | return LPFC_MBOX_TMO_FLASH_CMD; |
1622 | case MBX_SLI4_CONFIG: /* 0x9b */ | 1625 | case MBX_SLI4_CONFIG: /* 0x9b */ |
1623 | subsys = lpfc_sli_config_mbox_subsys_get(phba, mboxq); | 1626 | subsys = lpfc_sli_config_mbox_subsys_get(phba, mboxq); |
@@ -1628,11 +1631,17 @@ lpfc_mbox_tmo_val(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq) | |||
1628 | case LPFC_MBOX_OPCODE_WRITE_OBJECT: | 1631 | case LPFC_MBOX_OPCODE_WRITE_OBJECT: |
1629 | case LPFC_MBOX_OPCODE_READ_OBJECT_LIST: | 1632 | case LPFC_MBOX_OPCODE_READ_OBJECT_LIST: |
1630 | case LPFC_MBOX_OPCODE_DELETE_OBJECT: | 1633 | case LPFC_MBOX_OPCODE_DELETE_OBJECT: |
1631 | case LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG: | ||
1632 | case LPFC_MBOX_OPCODE_GET_PROFILE_LIST: | 1634 | case LPFC_MBOX_OPCODE_GET_PROFILE_LIST: |
1633 | case LPFC_MBOX_OPCODE_SET_ACT_PROFILE: | 1635 | case LPFC_MBOX_OPCODE_SET_ACT_PROFILE: |
1636 | case LPFC_MBOX_OPCODE_GET_PROFILE_CONFIG: | ||
1634 | case LPFC_MBOX_OPCODE_SET_PROFILE_CONFIG: | 1637 | case LPFC_MBOX_OPCODE_SET_PROFILE_CONFIG: |
1635 | case LPFC_MBOX_OPCODE_GET_FACTORY_PROFILE_CONFIG: | 1638 | case LPFC_MBOX_OPCODE_GET_FACTORY_PROFILE_CONFIG: |
1639 | case LPFC_MBOX_OPCODE_GET_PROFILE_CAPACITIES: | ||
1640 | case LPFC_MBOX_OPCODE_SEND_ACTIVATION: | ||
1641 | case LPFC_MBOX_OPCODE_RESET_LICENSES: | ||
1642 | case LPFC_MBOX_OPCODE_SET_BOOT_CONFIG: | ||
1643 | case LPFC_MBOX_OPCODE_GET_VPD_DATA: | ||
1644 | case LPFC_MBOX_OPCODE_SET_PHYSICAL_LINK_CONFIG: | ||
1636 | return LPFC_MBOX_SLI4_CONFIG_EXTENDED_TMO; | 1645 | return LPFC_MBOX_SLI4_CONFIG_EXTENDED_TMO; |
1637 | } | 1646 | } |
1638 | } | 1647 | } |
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c index b0fe153452aa..84ed28bd4b13 100644 --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c | |||
@@ -2087,6 +2087,7 @@ lpfc_sli_chk_mbx_command(uint8_t mbxCommand) | |||
2087 | case MBX_READ_EVENT_LOG: | 2087 | case MBX_READ_EVENT_LOG: |
2088 | case MBX_SECURITY_MGMT: | 2088 | case MBX_SECURITY_MGMT: |
2089 | case MBX_AUTH_PORT: | 2089 | case MBX_AUTH_PORT: |
2090 | case MBX_ACCESS_VDATA: | ||
2090 | ret = mbxCommand; | 2091 | ret = mbxCommand; |
2091 | break; | 2092 | break; |
2092 | default: | 2093 | default: |