Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * * |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 3 | * Copyright (c) 2000-2008 LSI Corporation. All rights reserved. * |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 4 | * * |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 5 | * Description * |
| 6 | * ------------ * |
| 7 | * This include file contains SAS firmware interface IOC Log Info codes * |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 8 | * * |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 9 | *-------------------------------------------------------------------------* |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef IOPI_IOCLOGINFO_H_INCLUDED |
| 13 | #define IOPI_IOCLOGINFO_H_INCLUDED |
| 14 | |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 15 | #define SAS_LOGINFO_NEXUS_LOSS 0x31170000 |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 16 | #define SAS_LOGINFO_MASK 0xFFFF0000 |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 17 | |
| 18 | /****************************************************************************/ |
| 19 | /* IOC LOGINFO defines, 0x00000000 - 0x0FFFFFFF */ |
| 20 | /* Format: */ |
| 21 | /* Bits 31-28: MPI_IOCLOGINFO_TYPE_SAS (3) */ |
| 22 | /* Bits 27-24: IOC_LOGINFO_ORIGINATOR: 0=IOP, 1=PL, 2=IR */ |
| 23 | /* Bits 23-16: LOGINFO_CODE */ |
| 24 | /* Bits 15-0: LOGINFO_CODE Specific */ |
| 25 | /****************************************************************************/ |
| 26 | |
| 27 | /****************************************************************************/ |
| 28 | /* IOC_LOGINFO_ORIGINATOR defines */ |
| 29 | /****************************************************************************/ |
| 30 | #define IOC_LOGINFO_ORIGINATOR_IOP (0x00000000) |
| 31 | #define IOC_LOGINFO_ORIGINATOR_PL (0x01000000) |
| 32 | #define IOC_LOGINFO_ORIGINATOR_IR (0x02000000) |
| 33 | |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 34 | #define IOC_LOGINFO_ORIGINATOR_MASK (0x0F000000) |
| 35 | |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 36 | /****************************************************************************/ |
| 37 | /* LOGINFO_CODE defines */ |
| 38 | /****************************************************************************/ |
| 39 | #define IOC_LOGINFO_CODE_MASK (0x00FF0000) |
| 40 | #define IOC_LOGINFO_CODE_SHIFT (16) |
| 41 | |
| 42 | /****************************************************************************/ |
| 43 | /* IOP LOGINFO_CODE defines, valid if IOC_LOGINFO_ORIGINATOR = IOP */ |
| 44 | /****************************************************************************/ |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 45 | #define IOP_LOGINFO_CODE_INVALID_SAS_ADDRESS (0x00010000) |
| 46 | #define IOP_LOGINFO_CODE_UNUSED2 (0x00020000) |
| 47 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE (0x00030000) |
| 48 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_RT (0x00030100) /* Route Table Entry not found */ |
| 49 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_PN (0x00030200) /* Invalid Page Number */ |
| 50 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_FORM (0x00030300) /* Invalid FORM */ |
| 51 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_PT (0x00030400) /* Invalid Page Type */ |
| 52 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_DNM (0x00030500) /* Device Not Mapped */ |
| 53 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_PERSIST (0x00030600) /* Persistent Page not found */ |
| 54 | #define IOP_LOGINFO_CODE_CONFIG_INVALID_PAGE_DEFAULT (0x00030700) /* Default Page not found */ |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 55 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 56 | #define IOP_LOGINFO_CODE_FWUPLOAD_NO_FLASH_AVAILABLE (0x0003E000) /* Tried to upload from flash, but there is none */ |
| 57 | #define IOP_LOGINFO_CODE_FWUPLOAD_UNKNOWN_IMAGE_TYPE (0x0003E001) /* ImageType field contents were invalid */ |
| 58 | #define IOP_LOGINFO_CODE_FWUPLOAD_WRONG_IMAGE_SIZE (0x0003E002) /* ImageSize field in TCSGE was bad/offset in MfgPg 4 was wrong */ |
| 59 | #define IOP_LOGINFO_CODE_FWUPLOAD_ENTIRE_FLASH_UPLOAD_FAILED (0x0003E003) /* Error occured while attempting to upload the entire flash */ |
| 60 | #define IOP_LOGINFO_CODE_FWUPLOAD_REGION_UPLOAD_FAILED (0x0003E004) /* Error occured while attempting to upload single flash region */ |
| 61 | #define IOP_LOGINFO_CODE_FWUPLOAD_DMA_FAILURE (0x0003E005) /* Problem occured while DMAing FW to host memory */ |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 62 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 63 | #define IOP_LOGINFO_CODE_DIAG_MSG_ERROR (0x00040000) /* Error handling diag msg - or'd with diag status */ |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 64 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 65 | #define IOP_LOGINFO_CODE_TASK_TERMINATED (0x00050000) |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 66 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 67 | #define IOP_LOGINFO_CODE_ENCL_MGMT_READ_ACTION_ERR0R (0x00060001) /* Read Action not supported for SEP msg */ |
| 68 | #define IOP_LOGINFO_CODE_ENCL_MGMT_INVALID_BUS_ID_ERR0R (0x00060002) /* Invalid Bus/ID in SEP msg */ |
| 69 | |
| 70 | #define IOP_LOGINFO_CODE_TARGET_ASSIST_TERMINATED (0x00070001) |
| 71 | #define IOP_LOGINFO_CODE_TARGET_STATUS_SEND_TERMINATED (0x00070002) |
| 72 | #define IOP_LOGINFO_CODE_TARGET_MODE_ABORT_ALL_IO (0x00070003) |
| 73 | #define IOP_LOGINFO_CODE_TARGET_MODE_ABORT_EXACT_IO (0x00070004) |
| 74 | #define IOP_LOGINFO_CODE_TARGET_MODE_ABORT_EXACT_IO_REQ (0x00070005) |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 75 | |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 76 | #define IOP_LOGINFO_CODE_LOG_TIMESTAMP_EVENT (0x00080000) |
| 77 | |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 78 | /****************************************************************************/ |
| 79 | /* PL LOGINFO_CODE defines, valid if IOC_LOGINFO_ORIGINATOR = PL */ |
| 80 | /****************************************************************************/ |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 81 | #define PL_LOGINFO_CODE_OPEN_FAILURE (0x00010000) /* see SUB_CODE_OPEN_FAIL_ below */ |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 82 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 83 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_NO_DEST_TIME_OUT (0x00000001) |
| 84 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_PATHWAY_BLOCKED (0x00000002) |
| 85 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_CONTINUE0 (0x00000003) |
| 86 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_CONTINUE1 (0x00000004) |
| 87 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_INITIALIZE0 (0x00000005) |
| 88 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_INITIALIZE1 (0x00000006) |
| 89 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_STOP0 (0x00000007) |
| 90 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RES_STOP1 (0x00000008) |
| 91 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RETRY (0x00000009) |
| 92 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_BREAK (0x0000000A) |
| 93 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_UNUSED_0B (0x0000000B) |
| 94 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_OPEN_TIMEOUT_EXP (0x0000000C) |
| 95 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_UNUSED_0D (0x0000000D) |
| 96 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_DVTBLE_ACCSS_FAIL (0x0000000E) |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 97 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_BAD_DEST (0x00000011) |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 98 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RATE_NOT_SUPP (0x00000012) |
| 99 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_PROT_NOT_SUPP (0x00000013) |
| 100 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RESERVED_ABANDON0 (0x00000014) |
| 101 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RESERVED_ABANDON1 (0x00000015) |
| 102 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RESERVED_ABANDON2 (0x00000016) |
| 103 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_RESERVED_ABANDON3 (0x00000017) |
| 104 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_STP_RESOURCES_BSY (0x00000018) |
| 105 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_WRONG_DESTINATION (0x00000019) |
| 106 | |
| 107 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_PATH_BLOCKED (0x0000001B) /* Retry Timeout */ |
| 108 | #define PL_LOGINFO_SUB_CODE_OPEN_FAIL_AWT_MAXED (0x0000001C) /* Retry Timeout */ |
Moore, Eric | 5bf52c4 | 2006-03-14 09:14:01 -0700 | [diff] [blame] | 109 | |
| 110 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 111 | |
| 112 | #define PL_LOGINFO_CODE_INVALID_SGL (0x00020000) |
| 113 | #define PL_LOGINFO_CODE_WRONG_REL_OFF_OR_FRAME_LENGTH (0x00030000) |
| 114 | #define PL_LOGINFO_CODE_FRAME_XFER_ERROR (0x00040000) |
| 115 | #define PL_LOGINFO_CODE_TX_FM_CONNECTED_LOW (0x00050000) |
| 116 | #define PL_LOGINFO_CODE_SATA_NON_NCQ_RW_ERR_BIT_SET (0x00060000) |
| 117 | #define PL_LOGINFO_CODE_SATA_READ_LOG_RECEIVE_DATA_ERR (0x00070000) |
| 118 | #define PL_LOGINFO_CODE_SATA_NCQ_FAIL_ALL_CMDS_AFTR_ERR (0x00080000) |
| 119 | #define PL_LOGINFO_CODE_SATA_ERR_IN_RCV_SET_DEV_BIT_FIS (0x00090000) |
| 120 | #define PL_LOGINFO_CODE_RX_FM_INVALID_MESSAGE (0x000A0000) |
| 121 | #define PL_LOGINFO_CODE_RX_CTX_MESSAGE_VALID_ERROR (0x000B0000) |
| 122 | #define PL_LOGINFO_CODE_RX_FM_CURRENT_FRAME_ERROR (0x000C0000) |
| 123 | #define PL_LOGINFO_CODE_SATA_LINK_DOWN (0x000D0000) |
| 124 | #define PL_LOGINFO_CODE_DISCOVERY_SATA_INIT_W_IOS (0x000E0000) |
| 125 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE (0x000F0000) |
| 126 | #define PL_LOGINFO_CODE_CONFIG_PL_NOT_INITIALIZED (0x000F0001) /* PL not yet initialized, can't do config page req. */ |
| 127 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_PT (0x000F0100) /* Invalid Page Type */ |
| 128 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_NUM_PHYS (0x000F0200) /* Invalid Number of Phys */ |
| 129 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_NOT_IMP (0x000F0300) /* Case Not Handled */ |
| 130 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_NO_DEV (0x000F0400) /* No Device Found */ |
| 131 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_FORM (0x000F0500) /* Invalid FORM */ |
| 132 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_PHY (0x000F0600) /* Invalid Phy */ |
| 133 | #define PL_LOGINFO_CODE_CONFIG_INVALID_PAGE_NO_OWNER (0x000F0700) /* No Owner Found */ |
| 134 | #define PL_LOGINFO_CODE_DSCVRY_SATA_INIT_TIMEOUT (0x00100000) |
| 135 | #define PL_LOGINFO_CODE_RESET (0x00110000) /* See Sub-Codes below (PL_LOGINFO_SUB_CODE) */ |
| 136 | #define PL_LOGINFO_CODE_ABORT (0x00120000) /* See Sub-Codes below (PL_LOGINFO_SUB_CODE)*/ |
| 137 | #define PL_LOGINFO_CODE_IO_NOT_YET_EXECUTED (0x00130000) |
| 138 | #define PL_LOGINFO_CODE_IO_EXECUTED (0x00140000) |
| 139 | #define PL_LOGINFO_CODE_PERS_RESV_OUT_NOT_AFFIL_OWNER (0x00150000) |
| 140 | #define PL_LOGINFO_CODE_OPEN_TXDMA_ABORT (0x00160000) |
| 141 | #define PL_LOGINFO_CODE_IO_DEVICE_MISSING_DELAY_RETRY (0x00170000) |
| 142 | #define PL_LOGINFO_CODE_IO_CANCELLED_DUE_TO_R_ERR (0x00180000) |
| 143 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE (0x00000100) |
| 144 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_NO_DEST_TIMEOUT (0x00000101) |
| 145 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_SATA_NEG_RATE_2HI (0x00000102) |
| 146 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_RATE_NOT_SUPPORTED (0x00000103) |
| 147 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_BREAK (0x00000104) |
| 148 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ZONE_VIOLATION (0x00000114) |
| 149 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ABANDON0 (0x00000114) /* Open Reject (Zone Violation) - available on SAS-2 devices */ |
| 150 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ABANDON1 (0x00000115) |
| 151 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ABANDON2 (0x00000116) |
| 152 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ABANDON3 (0x00000117) |
| 153 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_ORR_TIMEOUT (0x0000011A) /* Open Reject (Retry) Timeout */ |
| 154 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_PATH_BLOCKED (0x0000011B) |
| 155 | #define PL_LOGINFO_SUB_CODE_OPEN_FAILURE_AWT_MAXED (0x0000011C) /* Arbitration Wait Timer Maxed */ |
| 156 | |
| 157 | #define PL_LOGINFO_SUB_CODE_TARGET_BUS_RESET (0x00000120) |
| 158 | #define PL_LOGINFO_SUB_CODE_TRANSPORT_LAYER (0x00000130) /* Leave lower nibble (1-f) reserved. */ |
| 159 | #define PL_LOGINFO_SUB_CODE_PORT_LAYER (0x00000140) /* Leave lower nibble (1-f) reserved. */ |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 160 | |
| 161 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 162 | #define PL_LOGINFO_SUB_CODE_INVALID_SGL (0x00000200) |
| 163 | #define PL_LOGINFO_SUB_CODE_WRONG_REL_OFF_OR_FRAME_LENGTH (0x00000300) |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 164 | #define PL_LOGINFO_SUB_CODE_FRAME_XFER_ERROR (0x00000400) |
| 165 | /* Bits 0-3 encode Transport Status Register (offset 0x08) */ |
| 166 | /* Bit 0 is Status Bit 0: FrameXferErr */ |
| 167 | /* Bit 1 & 2 are Status Bits 16 and 17: FrameXmitErrStatus */ |
| 168 | /* Bit 3 is Status Bit 18 WriteDataLenghtGTDataLengthErr */ |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 169 | |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 170 | #define PL_LOGINFO_SUB_CODE_TX_FM_CONNECTED_LOW (0x00000500) |
| 171 | #define PL_LOGINFO_SUB_CODE_SATA_NON_NCQ_RW_ERR_BIT_SET (0x00000600) |
| 172 | #define PL_LOGINFO_SUB_CODE_SATA_READ_LOG_RECEIVE_DATA_ERR (0x00000700) |
| 173 | #define PL_LOGINFO_SUB_CODE_SATA_NCQ_FAIL_ALL_CMDS_AFTR_ERR (0x00000800) |
| 174 | #define PL_LOGINFO_SUB_CODE_SATA_ERR_IN_RCV_SET_DEV_BIT_FIS (0x00000900) |
| 175 | #define PL_LOGINFO_SUB_CODE_RX_FM_INVALID_MESSAGE (0x00000A00) |
| 176 | #define PL_LOGINFO_SUB_CODE_RX_CTX_MESSAGE_VALID_ERROR (0x00000B00) |
| 177 | #define PL_LOGINFO_SUB_CODE_RX_FM_CURRENT_FRAME_ERROR (0x00000C00) |
| 178 | #define PL_LOGINFO_SUB_CODE_SATA_LINK_DOWN (0x00000D00) |
| 179 | #define PL_LOGINFO_SUB_CODE_DISCOVERY_SATA_INIT_W_IOS (0x00000E00) |
| 180 | #define PL_LOGINFO_SUB_CODE_DISCOVERY_REMOTE_SEP_RESET (0x00000E01) |
| 181 | #define PL_LOGINFO_SUB_CODE_SECOND_OPEN (0x00000F00) |
| 182 | #define PL_LOGINFO_SUB_CODE_DSCVRY_SATA_INIT_TIMEOUT (0x00001000) |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 183 | #define PL_LOGINFO_SUB_CODE_BREAK_ON_SATA_CONNECTION (0x00002000) |
| 184 | /* not currently used in mainline */ |
| 185 | #define PL_LOGINFO_SUB_CODE_BREAK_ON_STUCK_LINK (0x00003000) |
| 186 | #define PL_LOGINFO_SUB_CODE_BREAK_ON_STUCK_LINK_AIP (0x00004000) |
| 187 | #define PL_LOGINFO_SUB_CODE_BREAK_ON_INCOMPLETE_BREAK_RCVD (0x00005000) |
Eric Moore | eae225e | 2007-01-19 18:46:17 -0700 | [diff] [blame] | 188 | |
| 189 | #define PL_LOGINFO_CODE_ENCL_MGMT_SMP_FRAME_FAILURE (0x00200000) /* Can't get SMP Frame */ |
| 190 | #define PL_LOGINFO_CODE_ENCL_MGMT_SMP_READ_ERROR (0x00200010) /* Error occured on SMP Read */ |
| 191 | #define PL_LOGINFO_CODE_ENCL_MGMT_SMP_WRITE_ERROR (0x00200020) /* Error occured on SMP Write */ |
| 192 | #define PL_LOGINFO_CODE_ENCL_MGMT_NOT_SUPPORTED_ON_ENCL (0x00200040) /* Encl Mgmt services not available for this WWID */ |
| 193 | #define PL_LOGINFO_CODE_ENCL_MGMT_ADDR_MODE_NOT_SUPPORTED (0x00200050) /* Address Mode not suppored */ |
| 194 | #define PL_LOGINFO_CODE_ENCL_MGMT_BAD_SLOT_NUM (0x00200060) /* Invalid Slot Number in SEP Msg */ |
| 195 | #define PL_LOGINFO_CODE_ENCL_MGMT_SGPIO_NOT_PRESENT (0x00200070) /* SGPIO not present/enabled */ |
| 196 | #define PL_LOGINFO_CODE_ENCL_MGMT_GPIO_NOT_CONFIGURED (0x00200080) /* GPIO not configured */ |
| 197 | #define PL_LOGINFO_CODE_ENCL_MGMT_GPIO_FRAME_ERROR (0x00200090) /* GPIO can't allocate a frame */ |
| 198 | #define PL_LOGINFO_CODE_ENCL_MGMT_GPIO_CONFIG_PAGE_ERROR (0x002000A0) /* GPIO failed config page request */ |
| 199 | #define PL_LOGINFO_CODE_ENCL_MGMT_SES_FRAME_ALLOC_ERROR (0x002000B0) /* Can't get frame for SES command */ |
| 200 | #define PL_LOGINFO_CODE_ENCL_MGMT_SES_IO_ERROR (0x002000C0) /* I/O execution error */ |
| 201 | #define PL_LOGINFO_CODE_ENCL_MGMT_SES_RETRIES_EXHAUSTED (0x002000D0) /* SEP I/O retries exhausted */ |
| 202 | #define PL_LOGINFO_CODE_ENCL_MGMT_SMP_FRAME_ALLOC_ERROR (0x002000E0) /* Can't get frame for SMP command */ |
| 203 | |
| 204 | #define PL_LOGINFO_DA_SEP_NOT_PRESENT (0x00200100) /* SEP not present when msg received */ |
| 205 | #define PL_LOGINFO_DA_SEP_SINGLE_THREAD_ERROR (0x00200101) /* Can only accept 1 msg at a time */ |
| 206 | #define PL_LOGINFO_DA_SEP_ISTWI_INTR_IN_IDLE_STATE (0x00200102) /* ISTWI interrupt recvd. while IDLE */ |
| 207 | #define PL_LOGINFO_DA_SEP_RECEIVED_NACK_FROM_SLAVE (0x00200103) /* SEP NACK'd, it is busy */ |
| 208 | #define PL_LOGINFO_DA_SEP_DID_NOT_RECEIVE_ACK (0x00200104) /* SEP didn't rcv. ACK (Last Rcvd Bit = 1) */ |
| 209 | #define PL_LOGINFO_DA_SEP_BAD_STATUS_HDR_CHKSUM (0x00200105) /* SEP stopped or sent bad chksum in Hdr */ |
| 210 | #define PL_LOGINFO_DA_SEP_STOP_ON_DATA (0x00200106) /* SEP stopped while transfering data */ |
| 211 | #define PL_LOGINFO_DA_SEP_STOP_ON_SENSE_DATA (0x00200107) /* SEP stopped while transfering sense data */ |
| 212 | #define PL_LOGINFO_DA_SEP_UNSUPPORTED_SCSI_STATUS_1 (0x00200108) /* SEP returned unknown scsi status */ |
| 213 | #define PL_LOGINFO_DA_SEP_UNSUPPORTED_SCSI_STATUS_2 (0x00200109) /* SEP returned unknown scsi status */ |
| 214 | #define PL_LOGINFO_DA_SEP_CHKSUM_ERROR_AFTER_STOP (0x0020010A) /* SEP returned bad chksum after STOP */ |
| 215 | #define PL_LOGINFO_DA_SEP_CHKSUM_ERROR_AFTER_STOP_GETDATA (0x0020010B) /* SEP returned bad chksum after STOP while gettin data*/ |
| 216 | #define PL_LOGINFO_DA_SEP_UNSUPPORTED_COMMAND (0x0020010C) /* SEP doesn't support CDB opcode f/w location 1 */ |
| 217 | #define PL_LOGINFO_DA_SEP_UNSUPPORTED_COMMAND_2 (0x0020010D) /* SEP doesn't support CDB opcode f/w location 2 */ |
| 218 | #define PL_LOGINFO_DA_SEP_UNSUPPORTED_COMMAND_3 (0x0020010E) /* SEP doesn't support CDB opcode f/w location 3 */ |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 219 | |
| 220 | |
| 221 | /****************************************************************************/ |
| 222 | /* IR LOGINFO_CODE defines, valid if IOC_LOGINFO_ORIGINATOR = IR */ |
| 223 | /****************************************************************************/ |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 224 | #define IR_LOGINFO_RAID_ACTION_ERROR (0x00010000) |
| 225 | #define IR_LOGINFO_CODE_UNUSED2 (0x00020000) |
| 226 | |
| 227 | /* Amount of information passed down for Create Volume is too large */ |
| 228 | #define IR_LOGINFO_VOLUME_CREATE_INVALID_LENGTH (0x00010001) |
| 229 | /* Creation of duplicate volume attempted (Bus/Target ID checked) */ |
| 230 | #define IR_LOGINFO_VOLUME_CREATE_DUPLICATE (0x00010002) |
| 231 | /* Creation failed due to maximum number of supported volumes exceeded */ |
| 232 | #define IR_LOGINFO_VOLUME_CREATE_NO_SLOTS (0x00010003) |
| 233 | /* Creation failed due to DMA error in trying to read from host */ |
| 234 | #define IR_LOGINFO_VOLUME_CREATE_DMA_ERROR (0x00010004) |
| 235 | /* Creation failed due to invalid volume type passed down */ |
| 236 | #define IR_LOGINFO_VOLUME_CREATE_INVALID_VOLUME_TYPE (0x00010005) |
| 237 | /* Creation failed due to error reading MFG Page 4 */ |
| 238 | #define IR_LOGINFO_VOLUME_MFG_PAGE4_ERROR (0x00010006) |
| 239 | /* Creation failed when trying to create internal structures */ |
| 240 | #define IR_LOGINFO_VOLUME_INTERNAL_CONFIG_STRUCTURE_ERROR (0x00010007) |
| 241 | |
| 242 | /* Activation failed due to trying to activate an already active volume */ |
| 243 | #define IR_LOGINFO_VOLUME_ACTIVATING_AN_ACTIVE_VOLUME (0x00010010) |
| 244 | /* Activation failed due to trying to active unsupported volume type */ |
| 245 | #define IR_LOGINFO_VOLUME_ACTIVATING_INVALID_VOLUME_TYPE (0x00010011) |
| 246 | /* Activation failed due to trying to active too many volumes */ |
| 247 | #define IR_LOGINFO_VOLUME_ACTIVATING_TOO_MANY_VOLUMES (0x00010012) |
| 248 | /* Activation failed due to Volume ID in use already */ |
| 249 | #define IR_LOGINFO_VOLUME_ACTIVATING_VOLUME_ID_IN_USE (0x00010013) |
| 250 | /* Activation failed call to activateVolume returned failure */ |
| 251 | #define IR_LOGINFO_VOLUME_ACTIVATE_VOLUME_FAILED (0x00010014) |
| 252 | /* Activation failed trying to import the volume */ |
| 253 | #define IR_LOGINFO_VOLUME_ACTIVATING_IMPORT_VOLUME_FAILED (0x00010015) |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 254 | /* Activation failed trying to import the volume */ |
| 255 | #define IR_LOGINFO_VOLUME_ACTIVATING_TOO_MANY_PHYS_DISKS (0x00010016) |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 256 | |
| 257 | /* Phys Disk failed, too many phys disks */ |
| 258 | #define IR_LOGINFO_PHYSDISK_CREATE_TOO_MANY_DISKS (0x00010020) |
| 259 | /* Amount of information passed down for Create Pnysdisk is too large */ |
| 260 | #define IR_LOGINFO_PHYSDISK_CREATE_INVALID_LENGTH (0x00010021) |
| 261 | /* Creation failed due to DMA error in trying to read from host */ |
| 262 | #define IR_LOGINFO_PHYSDISK_CREATE_DMA_ERROR (0x00010022) |
| 263 | /* Creation failed due to invalid Bus TargetID passed down */ |
| 264 | #define IR_LOGINFO_PHYSDISK_CREATE_BUS_TID_INVALID (0x00010023) |
| 265 | /* Creation failed due to error in creating RAID Phys Disk Config Page */ |
| 266 | #define IR_LOGINFO_PHYSDISK_CREATE_CONFIG_PAGE_ERROR (0x00010024) |
| 267 | |
| 268 | |
| 269 | /* Compatibility Error : IR Disabled */ |
| 270 | #define IR_LOGINFO_COMPAT_ERROR_RAID_DISABLED (0x00010030) |
| 271 | /* Compatibility Error : Inquiry Comand failed */ |
| 272 | #define IR_LOGINFO_COMPAT_ERROR_INQUIRY_FAILED (0x00010031) |
| 273 | /* Compatibility Error : Device not direct access device */ |
| 274 | #define IR_LOGINFO_COMPAT_ERROR_NOT_DIRECT_ACCESS (0x00010032) |
| 275 | /* Compatibility Error : Removable device found */ |
| 276 | #define IR_LOGINFO_COMPAT_ERROR_REMOVABLE_FOUND (0x00010033) |
| 277 | /* Compatibility Error : Device SCSI Version not 2 or higher */ |
| 278 | #define IR_LOGINFO_COMPAT_ERROR_NEED_SCSI_2_OR_HIGHER (0x00010034) |
| 279 | /* Compatibility Error : SATA device, 48 BIT LBA not supported */ |
| 280 | #define IR_LOGINFO_COMPAT_ERROR_SATA_48BIT_LBA_NOT_SUPPORTED (0x00010035) |
| 281 | /* Compatibility Error : Device does not have 512 byte block sizes */ |
| 282 | #define IR_LOGINFO_COMPAT_ERROR_DEVICE_NOT_512_BYTE_BLOCK (0x00010036) |
| 283 | /* Compatibility Error : Volume Type check failed */ |
| 284 | #define IR_LOGINFO_COMPAT_ERROR_VOLUME_TYPE_CHECK_FAILED (0x00010037) |
| 285 | /* Compatibility Error : Volume Type is unsupported by FW */ |
| 286 | #define IR_LOGINFO_COMPAT_ERROR_UNSUPPORTED_VOLUME_TYPE (0x00010038) |
| 287 | /* Compatibility Error : Disk drive too small for use in volume */ |
| 288 | #define IR_LOGINFO_COMPAT_ERROR_DISK_TOO_SMALL (0x00010039) |
| 289 | /* Compatibility Error : Phys disk for Create Volume not found */ |
| 290 | #define IR_LOGINFO_COMPAT_ERROR_PHYS_DISK_NOT_FOUND (0x0001003A) |
| 291 | /* Compatibility Error : membership count error, too many or too few disks for volume type */ |
| 292 | #define IR_LOGINFO_COMPAT_ERROR_MEMBERSHIP_COUNT (0x0001003B) |
| 293 | /* Compatibility Error : Disk stripe sizes must be 64KB */ |
| 294 | #define IR_LOGINFO_COMPAT_ERROR_NON_64K_STRIPE_SIZE (0x0001003C) |
| 295 | /* Compatibility Error : IME size limited to < 2TB */ |
| 296 | #define IR_LOGINFO_COMPAT_ERROR_IME_VOL_NOT_CURRENTLY_SUPPORTED (0x0001003D) |
| 297 | |
Kashyap, Desai | fd7a253 | 2009-01-06 14:56:31 +0530 | [diff] [blame] | 298 | /* Device Firmware Update: DFU can only be started once */ |
| 299 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_DFU_IN_PROGRESS (0x00010050) |
| 300 | /* Device Firmware Update: Volume must be Optimal/Active/non-Quiesced */ |
| 301 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_DEVICE_IN_INVALID_STATE (0x00010051) |
| 302 | /* Device Firmware Update: DFU Timeout cannot be zero */ |
| 303 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_INVALID_TIMEOUT (0x00010052) |
| 304 | /* Device Firmware Update: CREATE TIMER FAILED */ |
| 305 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_NO_TIMERS (0x00010053) |
| 306 | /* Device Firmware Update: Failed to read SAS_IO_UNIT_PG_1 */ |
| 307 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_READING_CFG_PAGE (0x00010054) |
| 308 | /* Device Firmware Update: Invalid SAS_IO_UNIT_PG_1 value(s) */ |
| 309 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_PORT_IO_TIMEOUTS_REQUIRED (0x00010055) |
| 310 | /* Device Firmware Update: Unable to allocate memory for page */ |
| 311 | #define IR_LOGINFO_DEV_FW_UPDATE_ERR_ALLOC_CFG_PAGE (0x00010056) |
| 312 | |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 313 | |
| 314 | /****************************************************************************/ |
Eric Moore | 2076eb6 | 2006-06-27 14:39:06 -0600 | [diff] [blame] | 315 | /* Defines for convenience */ |
Moore, Eric | 4b915a7 | 2006-01-13 16:25:23 -0700 | [diff] [blame] | 316 | /****************************************************************************/ |
| 317 | #define IOC_LOGINFO_PREFIX_IOP ((MPI_IOCLOGINFO_TYPE_SAS << MPI_IOCLOGINFO_TYPE_SHIFT) | IOC_LOGINFO_ORIGINATOR_IOP) |
| 318 | #define IOC_LOGINFO_PREFIX_PL ((MPI_IOCLOGINFO_TYPE_SAS << MPI_IOCLOGINFO_TYPE_SHIFT) | IOC_LOGINFO_ORIGINATOR_PL) |
| 319 | #define IOC_LOGINFO_PREFIX_IR ((MPI_IOCLOGINFO_TYPE_SAS << MPI_IOCLOGINFO_TYPE_SHIFT) | IOC_LOGINFO_ORIGINATOR_IR) |
| 320 | |
| 321 | #endif /* end of file */ |
| 322 | |