David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * QLogic iSCSI HBA Driver |
Vikas Chaudhary | c68cdbf | 2012-08-22 07:55:09 -0400 | [diff] [blame] | 3 | * Copyright (c) 2003-2012 QLogic Corporation |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 4 | * |
| 5 | * See LICENSE.qla4xxx for copyright and licensing details. |
| 6 | */ |
| 7 | |
| 8 | #ifndef _QLA4X_FW_H |
| 9 | #define _QLA4X_FW_H |
| 10 | |
| 11 | |
| 12 | #define MAX_PRST_DEV_DB_ENTRIES 64 |
| 13 | #define MIN_DISC_DEV_DB_ENTRY MAX_PRST_DEV_DB_ENTRIES |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 14 | #define MAX_DEV_DB_ENTRIES 512 |
Mike Christie | 1348373 | 2011-12-01 21:38:41 -0600 | [diff] [blame] | 15 | #define MAX_DEV_DB_ENTRIES_40XX 256 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 16 | |
| 17 | /************************************************************************* |
| 18 | * |
| 19 | * ISP 4010 I/O Register Set Structure and Definitions |
| 20 | * |
| 21 | *************************************************************************/ |
| 22 | |
| 23 | struct port_ctrl_stat_regs { |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 24 | __le32 ext_hw_conf; /* 0x50 R/W */ |
| 25 | __le32 rsrvd0; /* 0x54 */ |
| 26 | __le32 port_ctrl; /* 0x58 */ |
| 27 | __le32 port_status; /* 0x5c */ |
| 28 | __le32 rsrvd1[32]; /* 0x60-0xdf */ |
| 29 | __le32 gp_out; /* 0xe0 */ |
| 30 | __le32 gp_in; /* 0xe4 */ |
| 31 | __le32 rsrvd2[5]; /* 0xe8-0xfb */ |
| 32 | __le32 port_err_status; /* 0xfc */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | struct host_mem_cfg_regs { |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 36 | __le32 rsrvd0[12]; /* 0x50-0x79 */ |
| 37 | __le32 req_q_out; /* 0x80 */ |
| 38 | __le32 rsrvd1[31]; /* 0x84-0xFF */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 41 | /* |
| 42 | * ISP 82xx I/O Register Set structure definitions. |
| 43 | */ |
| 44 | struct device_reg_82xx { |
| 45 | __le32 req_q_out; /* 0x0000 (R): Request Queue out-Pointer. */ |
| 46 | __le32 reserve1[63]; /* Request Queue out-Pointer. (64 * 4) */ |
| 47 | __le32 rsp_q_in; /* 0x0100 (R/W): Response Queue In-Pointer. */ |
| 48 | __le32 reserve2[63]; /* Response Queue In-Pointer. */ |
| 49 | __le32 rsp_q_out; /* 0x0200 (R/W): Response Queue Out-Pointer. */ |
| 50 | __le32 reserve3[63]; /* Response Queue Out-Pointer. */ |
| 51 | |
| 52 | __le32 mailbox_in[8]; /* 0x0300 (R/W): Mail box In registers */ |
| 53 | __le32 reserve4[24]; |
| 54 | __le32 hint; /* 0x0380 (R/W): Host interrupt register */ |
| 55 | #define HINT_MBX_INT_PENDING BIT_0 |
| 56 | __le32 reserve5[31]; |
| 57 | __le32 mailbox_out[8]; /* 0x0400 (R): Mail box Out registers */ |
| 58 | __le32 reserve6[56]; |
| 59 | |
| 60 | __le32 host_status; /* Offset 0x500 (R): host status */ |
| 61 | #define HSRX_RISC_MB_INT BIT_0 /* RISC to Host Mailbox interrupt */ |
| 62 | #define HSRX_RISC_IOCB_INT BIT_1 /* RISC to Host IOCB interrupt */ |
| 63 | |
| 64 | __le32 host_int; /* Offset 0x0504 (R/W): Interrupt status. */ |
| 65 | #define ISRX_82XX_RISC_INT BIT_0 /* RISC interrupt. */ |
| 66 | }; |
| 67 | |
Vikas Chaudhary | 6e7b429 | 2012-08-22 07:55:08 -0400 | [diff] [blame] | 68 | /* ISP 83xx I/O Register Set structure */ |
| 69 | struct device_reg_83xx { |
| 70 | __le32 mailbox_in[16]; /* 0x0000 */ |
| 71 | __le32 reserve1[496]; /* 0x0040 */ |
| 72 | __le32 mailbox_out[16]; /* 0x0800 */ |
| 73 | __le32 reserve2[496]; |
| 74 | __le32 mbox_int; /* 0x1000 */ |
| 75 | __le32 reserve3[63]; |
| 76 | __le32 req_q_out; /* 0x1100 */ |
| 77 | __le32 reserve4[63]; |
| 78 | |
| 79 | __le32 rsp_q_in; /* 0x1200 */ |
| 80 | __le32 reserve5[1919]; |
| 81 | |
| 82 | __le32 req_q_in; /* 0x3000 */ |
| 83 | __le32 reserve6[3]; |
| 84 | __le32 iocb_int_mask; /* 0x3010 */ |
| 85 | __le32 reserve7[3]; |
| 86 | __le32 rsp_q_out; /* 0x3020 */ |
| 87 | __le32 reserve8[3]; |
| 88 | __le32 anonymousbuff; /* 0x3030 */ |
| 89 | __le32 mb_int_mask; /* 0x3034 */ |
| 90 | |
| 91 | __le32 host_intr; /* 0x3038 - Host Interrupt Register */ |
| 92 | __le32 risc_intr; /* 0x303C - RISC Interrupt Register */ |
| 93 | __le32 reserve9[544]; |
| 94 | __le32 leg_int_ptr; /* 0x38C0 - Legacy Interrupt Pointer Register */ |
| 95 | __le32 leg_int_trig; /* 0x38C4 - Legacy Interrupt Trigger Control */ |
| 96 | __le32 leg_int_mask; /* 0x38C8 - Legacy Interrupt Mask Register */ |
| 97 | }; |
| 98 | |
| 99 | #define INT_ENABLE_FW_MB (1 << 2) |
| 100 | #define INT_MASK_FW_MB (1 << 2) |
| 101 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 102 | /* remote register set (access via PCI memory read/write) */ |
| 103 | struct isp_reg { |
| 104 | #define MBOX_REG_COUNT 8 |
| 105 | __le32 mailbox[MBOX_REG_COUNT]; |
| 106 | |
| 107 | __le32 flash_address; /* 0x20 */ |
| 108 | __le32 flash_data; |
| 109 | __le32 ctrl_status; |
| 110 | |
| 111 | union { |
| 112 | struct { |
| 113 | __le32 nvram; |
| 114 | __le32 reserved1[2]; /* 0x30 */ |
| 115 | } __attribute__ ((packed)) isp4010; |
| 116 | struct { |
| 117 | __le32 intr_mask; |
| 118 | __le32 nvram; /* 0x30 */ |
| 119 | __le32 semaphore; |
| 120 | } __attribute__ ((packed)) isp4022; |
| 121 | } u1; |
| 122 | |
| 123 | __le32 req_q_in; /* SCSI Request Queue Producer Index */ |
| 124 | __le32 rsp_q_out; /* SCSI Completion Queue Consumer Index */ |
| 125 | |
| 126 | __le32 reserved2[4]; /* 0x40 */ |
| 127 | |
| 128 | union { |
| 129 | struct { |
| 130 | __le32 ext_hw_conf; /* 0x50 */ |
| 131 | __le32 flow_ctrl; |
| 132 | __le32 port_ctrl; |
| 133 | __le32 port_status; |
| 134 | |
| 135 | __le32 reserved3[8]; /* 0x60 */ |
| 136 | |
| 137 | __le32 req_q_out; /* 0x80 */ |
| 138 | |
| 139 | __le32 reserved4[23]; /* 0x84 */ |
| 140 | |
| 141 | __le32 gp_out; /* 0xe0 */ |
| 142 | __le32 gp_in; |
| 143 | |
| 144 | __le32 reserved5[5]; |
| 145 | |
| 146 | __le32 port_err_status; /* 0xfc */ |
| 147 | } __attribute__ ((packed)) isp4010; |
| 148 | struct { |
| 149 | union { |
| 150 | struct port_ctrl_stat_regs p0; |
| 151 | struct host_mem_cfg_regs p1; |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 152 | }; |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 153 | } __attribute__ ((packed)) isp4022; |
| 154 | } u2; |
| 155 | }; /* 256 x100 */ |
| 156 | |
| 157 | |
| 158 | /* Semaphore Defines for 4010 */ |
| 159 | #define QL4010_DRVR_SEM_BITS 0x00000030 |
| 160 | #define QL4010_GPIO_SEM_BITS 0x000000c0 |
| 161 | #define QL4010_SDRAM_SEM_BITS 0x00000300 |
| 162 | #define QL4010_PHY_SEM_BITS 0x00000c00 |
| 163 | #define QL4010_NVRAM_SEM_BITS 0x00003000 |
| 164 | #define QL4010_FLASH_SEM_BITS 0x0000c000 |
| 165 | |
| 166 | #define QL4010_DRVR_SEM_MASK 0x00300000 |
| 167 | #define QL4010_GPIO_SEM_MASK 0x00c00000 |
| 168 | #define QL4010_SDRAM_SEM_MASK 0x03000000 |
| 169 | #define QL4010_PHY_SEM_MASK 0x0c000000 |
| 170 | #define QL4010_NVRAM_SEM_MASK 0x30000000 |
| 171 | #define QL4010_FLASH_SEM_MASK 0xc0000000 |
| 172 | |
| 173 | /* Semaphore Defines for 4022 */ |
| 174 | #define QL4022_RESOURCE_MASK_BASE_CODE 0x7 |
| 175 | #define QL4022_RESOURCE_BITS_BASE_CODE 0x4 |
| 176 | |
| 177 | |
| 178 | #define QL4022_DRVR_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (1+16)) |
| 179 | #define QL4022_DDR_RAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (4+16)) |
| 180 | #define QL4022_PHY_GIO_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (7+16)) |
| 181 | #define QL4022_NVRAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (10+16)) |
| 182 | #define QL4022_FLASH_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (13+16)) |
| 183 | |
Manish Rangankar | 2a991c2 | 2011-07-25 13:48:55 -0500 | [diff] [blame] | 184 | /* nvram address for 4032 */ |
| 185 | #define NVRAM_PORT0_BOOT_MODE 0x03b1 |
| 186 | #define NVRAM_PORT0_BOOT_PRI_TGT 0x03b2 |
| 187 | #define NVRAM_PORT0_BOOT_SEC_TGT 0x03bb |
| 188 | #define NVRAM_PORT1_BOOT_MODE 0x07b1 |
| 189 | #define NVRAM_PORT1_BOOT_PRI_TGT 0x07b2 |
| 190 | #define NVRAM_PORT1_BOOT_SEC_TGT 0x07bb |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 191 | |
| 192 | |
| 193 | /* Page # defines for 4022 */ |
| 194 | #define PORT_CTRL_STAT_PAGE 0 /* 4022 */ |
| 195 | #define HOST_MEM_CFG_PAGE 1 /* 4022 */ |
| 196 | #define LOCAL_RAM_CFG_PAGE 2 /* 4022 */ |
| 197 | #define PROT_STAT_PAGE 3 /* 4022 */ |
| 198 | |
| 199 | /* Register Mask - sets corresponding mask bits in the upper word */ |
| 200 | static inline uint32_t set_rmask(uint32_t val) |
| 201 | { |
| 202 | return (val & 0xffff) | (val << 16); |
| 203 | } |
| 204 | |
| 205 | |
| 206 | static inline uint32_t clr_rmask(uint32_t val) |
| 207 | { |
| 208 | return 0 | (val << 16); |
| 209 | } |
| 210 | |
| 211 | /* ctrl_status definitions */ |
| 212 | #define CSR_SCSI_PAGE_SELECT 0x00000003 |
| 213 | #define CSR_SCSI_INTR_ENABLE 0x00000004 /* 4010 */ |
| 214 | #define CSR_SCSI_RESET_INTR 0x00000008 |
| 215 | #define CSR_SCSI_COMPLETION_INTR 0x00000010 |
| 216 | #define CSR_SCSI_PROCESSOR_INTR 0x00000020 |
| 217 | #define CSR_INTR_RISC 0x00000040 |
| 218 | #define CSR_BOOT_ENABLE 0x00000080 |
| 219 | #define CSR_NET_PAGE_SELECT 0x00000300 /* 4010 */ |
| 220 | #define CSR_FUNC_NUM 0x00000700 /* 4022 */ |
| 221 | #define CSR_NET_RESET_INTR 0x00000800 /* 4010 */ |
| 222 | #define CSR_FORCE_SOFT_RESET 0x00002000 /* 4022 */ |
| 223 | #define CSR_FATAL_ERROR 0x00004000 |
| 224 | #define CSR_SOFT_RESET 0x00008000 |
| 225 | #define ISP_CONTROL_FN_MASK CSR_FUNC_NUM |
| 226 | #define ISP_CONTROL_FN0_SCSI 0x0500 |
| 227 | #define ISP_CONTROL_FN1_SCSI 0x0700 |
| 228 | |
| 229 | #define INTR_PENDING (CSR_SCSI_COMPLETION_INTR |\ |
| 230 | CSR_SCSI_PROCESSOR_INTR |\ |
| 231 | CSR_SCSI_RESET_INTR) |
| 232 | |
| 233 | /* ISP InterruptMask definitions */ |
| 234 | #define IMR_SCSI_INTR_ENABLE 0x00000004 /* 4022 */ |
| 235 | |
| 236 | /* ISP 4022 nvram definitions */ |
| 237 | #define NVR_WRITE_ENABLE 0x00000010 /* 4022 */ |
| 238 | |
Harish Zunjarrao | 7c07d13 | 2011-08-01 03:26:16 -0700 | [diff] [blame] | 239 | #define QL4010_NVRAM_SIZE 0x200 |
| 240 | #define QL40X2_NVRAM_SIZE 0x800 |
| 241 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 242 | /* ISP port_status definitions */ |
| 243 | |
| 244 | /* ISP Semaphore definitions */ |
| 245 | |
| 246 | /* ISP General Purpose Output definitions */ |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 247 | #define GPOR_TOPCAT_RESET 0x00000004 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 248 | |
| 249 | /* shadow registers (DMA'd from HA to system memory. read only) */ |
| 250 | struct shadow_regs { |
| 251 | /* SCSI Request Queue Consumer Index */ |
| 252 | __le32 req_q_out; /* 0 x0 R */ |
| 253 | |
| 254 | /* SCSI Completion Queue Producer Index */ |
| 255 | __le32 rsp_q_in; /* 4 x4 R */ |
| 256 | }; /* 8 x8 */ |
| 257 | |
| 258 | |
| 259 | /* External hardware configuration register */ |
| 260 | union external_hw_config_reg { |
| 261 | struct { |
| 262 | /* FIXME: Do we even need this? All values are |
| 263 | * referred to by 16 bit quantities. Platform and |
| 264 | * endianess issues. */ |
| 265 | __le32 bReserved0:1; |
| 266 | __le32 bSDRAMProtectionMethod:2; |
| 267 | __le32 bSDRAMBanks:1; |
| 268 | __le32 bSDRAMChipWidth:1; |
| 269 | __le32 bSDRAMChipSize:2; |
| 270 | __le32 bParityDisable:1; |
| 271 | __le32 bExternalMemoryType:1; |
| 272 | __le32 bFlashBIOSWriteEnable:1; |
| 273 | __le32 bFlashUpperBankSelect:1; |
| 274 | __le32 bWriteBurst:2; |
| 275 | __le32 bReserved1:3; |
| 276 | __le32 bMask:16; |
| 277 | }; |
| 278 | uint32_t Asuint32_t; |
| 279 | }; |
| 280 | |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 281 | /* 82XX Support start */ |
| 282 | /* 82xx Default FLT Addresses */ |
| 283 | #define FA_FLASH_LAYOUT_ADDR_82 0xFC400 |
| 284 | #define FA_FLASH_DESCR_ADDR_82 0xFC000 |
| 285 | #define FA_BOOT_LOAD_ADDR_82 0x04000 |
| 286 | #define FA_BOOT_CODE_ADDR_82 0x20000 |
| 287 | #define FA_RISC_CODE_ADDR_82 0x40000 |
| 288 | #define FA_GOLD_RISC_CODE_ADDR_82 0x80000 |
Lalit Chandivade | 4549415 | 2011-10-07 16:55:42 -0700 | [diff] [blame] | 289 | #define FA_FLASH_ISCSI_CHAP 0x540000 |
| 290 | #define FA_FLASH_CHAP_SIZE 0xC0000 |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 291 | |
| 292 | /* Flash Description Table */ |
| 293 | struct qla_fdt_layout { |
| 294 | uint8_t sig[4]; |
| 295 | uint16_t version; |
| 296 | uint16_t len; |
| 297 | uint16_t checksum; |
| 298 | uint8_t unused1[2]; |
| 299 | uint8_t model[16]; |
| 300 | uint16_t man_id; |
| 301 | uint16_t id; |
| 302 | uint8_t flags; |
| 303 | uint8_t erase_cmd; |
| 304 | uint8_t alt_erase_cmd; |
| 305 | uint8_t wrt_enable_cmd; |
| 306 | uint8_t wrt_enable_bits; |
| 307 | uint8_t wrt_sts_reg_cmd; |
| 308 | uint8_t unprotect_sec_cmd; |
| 309 | uint8_t read_man_id_cmd; |
| 310 | uint32_t block_size; |
| 311 | uint32_t alt_block_size; |
| 312 | uint32_t flash_size; |
| 313 | uint32_t wrt_enable_data; |
| 314 | uint8_t read_id_addr_len; |
| 315 | uint8_t wrt_disable_bits; |
| 316 | uint8_t read_dev_id_len; |
| 317 | uint8_t chip_erase_cmd; |
| 318 | uint16_t read_timeout; |
| 319 | uint8_t protect_sec_cmd; |
| 320 | uint8_t unused2[65]; |
| 321 | }; |
| 322 | |
| 323 | /* Flash Layout Table */ |
| 324 | |
| 325 | struct qla_flt_location { |
| 326 | uint8_t sig[4]; |
| 327 | uint16_t start_lo; |
| 328 | uint16_t start_hi; |
| 329 | uint8_t version; |
| 330 | uint8_t unused[5]; |
| 331 | uint16_t checksum; |
| 332 | }; |
| 333 | |
| 334 | struct qla_flt_header { |
| 335 | uint16_t version; |
| 336 | uint16_t length; |
| 337 | uint16_t checksum; |
| 338 | uint16_t unused; |
| 339 | }; |
| 340 | |
| 341 | /* 82xx FLT Regions */ |
| 342 | #define FLT_REG_FDT 0x1a |
| 343 | #define FLT_REG_FLT 0x1c |
| 344 | #define FLT_REG_BOOTLOAD_82 0x72 |
| 345 | #define FLT_REG_FW_82 0x74 |
Nilesh Javali | 9382395 | 2011-10-07 16:55:39 -0700 | [diff] [blame] | 346 | #define FLT_REG_FW_82_1 0x97 |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 347 | #define FLT_REG_GOLD_FW_82 0x75 |
| 348 | #define FLT_REG_BOOT_CODE_82 0x78 |
Manish Rangankar | 2a991c2 | 2011-07-25 13:48:55 -0500 | [diff] [blame] | 349 | #define FLT_REG_ISCSI_PARAM 0x65 |
Lalit Chandivade | 4549415 | 2011-10-07 16:55:42 -0700 | [diff] [blame] | 350 | #define FLT_REG_ISCSI_CHAP 0x63 |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 351 | |
| 352 | struct qla_flt_region { |
| 353 | uint32_t code; |
| 354 | uint32_t size; |
| 355 | uint32_t start; |
| 356 | uint32_t end; |
| 357 | }; |
| 358 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 359 | /************************************************************************* |
| 360 | * |
| 361 | * Mailbox Commands Structures and Definitions |
| 362 | * |
| 363 | *************************************************************************/ |
| 364 | |
| 365 | /* Mailbox command definitions */ |
| 366 | #define MBOX_CMD_ABOUT_FW 0x0009 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 367 | #define MBOX_CMD_PING 0x000B |
Vikas Chaudhary | c0b9d3f | 2012-02-13 18:30:49 +0530 | [diff] [blame] | 368 | #define PING_IPV6_PROTOCOL_ENABLE 0x1 |
| 369 | #define PING_IPV6_LINKLOCAL_ADDR 0x4 |
| 370 | #define PING_IPV6_ADDR0 0x8 |
| 371 | #define PING_IPV6_ADDR1 0xC |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 372 | #define MBOX_CMD_ENABLE_INTRS 0x0010 |
| 373 | #define INTR_DISABLE 0 |
| 374 | #define INTR_ENABLE 1 |
| 375 | #define MBOX_CMD_STOP_FW 0x0014 |
Vikas Chaudhary | 09a0f71 | 2010-04-28 11:42:24 +0530 | [diff] [blame] | 376 | #define MBOX_CMD_ABORT_TASK 0x0015 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 377 | #define MBOX_CMD_LUN_RESET 0x0016 |
Mike Christie | ce54503 | 2008-02-29 18:25:20 -0600 | [diff] [blame] | 378 | #define MBOX_CMD_TARGET_WARM_RESET 0x0017 |
David C Somayajulu | d915058 | 2006-11-15 17:38:40 -0800 | [diff] [blame] | 379 | #define MBOX_CMD_GET_MANAGEMENT_DATA 0x001E |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 380 | #define MBOX_CMD_GET_FW_STATUS 0x001F |
| 381 | #define MBOX_CMD_SET_ISNS_SERVICE 0x0021 |
| 382 | #define ISNS_DISABLE 0 |
| 383 | #define ISNS_ENABLE 1 |
David C Somayajulu | d915058 | 2006-11-15 17:38:40 -0800 | [diff] [blame] | 384 | #define MBOX_CMD_COPY_FLASH 0x0024 |
| 385 | #define MBOX_CMD_WRITE_FLASH 0x0025 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 386 | #define MBOX_CMD_READ_FLASH 0x0026 |
| 387 | #define MBOX_CMD_CLEAR_DATABASE_ENTRY 0x0031 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 388 | #define MBOX_CMD_CONN_OPEN 0x0074 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 389 | #define MBOX_CMD_CONN_CLOSE_SESS_LOGOUT 0x0056 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 390 | #define LOGOUT_OPTION_CLOSE_SESSION 0x0002 |
| 391 | #define LOGOUT_OPTION_RELOGIN 0x0004 |
| 392 | #define LOGOUT_OPTION_FREE_DDB 0x0008 |
Manish Dusane | cfb2787 | 2012-09-20 07:35:01 -0400 | [diff] [blame^] | 393 | #define MBOX_CMD_SET_PARAM 0x0059 |
| 394 | #define SET_DRVR_VERSION 0x200 |
| 395 | #define MAX_DRVR_VER_LEN 24 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 396 | #define MBOX_CMD_EXECUTE_IOCB_A64 0x005A |
| 397 | #define MBOX_CMD_INITIALIZE_FIRMWARE 0x0060 |
| 398 | #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK 0x0061 |
| 399 | #define MBOX_CMD_REQUEST_DATABASE_ENTRY 0x0062 |
| 400 | #define MBOX_CMD_SET_DATABASE_ENTRY 0x0063 |
| 401 | #define MBOX_CMD_GET_DATABASE_ENTRY 0x0064 |
| 402 | #define DDB_DS_UNASSIGNED 0x00 |
| 403 | #define DDB_DS_NO_CONNECTION_ACTIVE 0x01 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 404 | #define DDB_DS_DISCOVERY 0x02 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 405 | #define DDB_DS_SESSION_ACTIVE 0x04 |
| 406 | #define DDB_DS_SESSION_FAILED 0x06 |
| 407 | #define DDB_DS_LOGIN_IN_PROCESS 0x07 |
| 408 | #define MBOX_CMD_GET_FW_STATE 0x0069 |
David C Somayajulu | d915058 | 2006-11-15 17:38:40 -0800 | [diff] [blame] | 409 | #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK_DEFAULTS 0x006A |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 410 | #define MBOX_CMD_GET_SYS_INFO 0x0078 |
Harish Zunjarrao | 7c07d13 | 2011-08-01 03:26:16 -0700 | [diff] [blame] | 411 | #define MBOX_CMD_GET_NVRAM 0x0078 /* For 40xx */ |
| 412 | #define MBOX_CMD_SET_NVRAM 0x0079 /* For 40xx */ |
David C Somayajulu | d915058 | 2006-11-15 17:38:40 -0800 | [diff] [blame] | 413 | #define MBOX_CMD_RESTORE_FACTORY_DEFAULTS 0x0087 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 414 | #define MBOX_CMD_SET_ACB 0x0088 |
| 415 | #define MBOX_CMD_GET_ACB 0x0089 |
| 416 | #define MBOX_CMD_DISABLE_ACB 0x008A |
| 417 | #define MBOX_CMD_GET_IPV6_NEIGHBOR_CACHE 0x008B |
| 418 | #define MBOX_CMD_GET_IPV6_DEST_CACHE 0x008C |
| 419 | #define MBOX_CMD_GET_IPV6_DEF_ROUTER_LIST 0x008D |
| 420 | #define MBOX_CMD_GET_IPV6_LCL_PREFIX_LIST 0x008E |
| 421 | #define MBOX_CMD_SET_IPV6_NEIGHBOR_CACHE 0x0090 |
| 422 | #define MBOX_CMD_GET_IP_ADDR_STATE 0x0091 |
| 423 | #define MBOX_CMD_SEND_IPV6_ROUTER_SOL 0x0092 |
| 424 | #define MBOX_CMD_GET_DB_ENTRY_CURRENT_IP_ADDR 0x0093 |
Tej Parkash | 068237c8 | 2012-05-18 04:41:44 -0400 | [diff] [blame] | 425 | #define MBOX_CMD_MINIDUMP 0x0129 |
| 426 | |
| 427 | /* Minidump subcommand */ |
| 428 | #define MINIDUMP_GET_SIZE_SUBCOMMAND 0x00 |
| 429 | #define MINIDUMP_GET_TMPLT_SUBCOMMAND 0x01 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 430 | |
| 431 | /* Mailbox 1 */ |
| 432 | #define FW_STATE_READY 0x0000 |
| 433 | #define FW_STATE_CONFIG_WAIT 0x0001 |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 434 | #define FW_STATE_WAIT_AUTOCONNECT 0x0002 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 435 | #define FW_STATE_ERROR 0x0004 |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 436 | #define FW_STATE_CONFIGURING_IP 0x0008 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 437 | |
| 438 | /* Mailbox 3 */ |
| 439 | #define FW_ADDSTATE_OPTICAL_MEDIA 0x0001 |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 440 | #define FW_ADDSTATE_DHCPv4_ENABLED 0x0002 |
| 441 | #define FW_ADDSTATE_DHCPv4_LEASE_ACQUIRED 0x0004 |
| 442 | #define FW_ADDSTATE_DHCPv4_LEASE_EXPIRED 0x0008 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 443 | #define FW_ADDSTATE_LINK_UP 0x0010 |
| 444 | #define FW_ADDSTATE_ISNS_SVC_ENABLED 0x0020 |
Vikas Chaudhary | 3254dbe | 2012-01-19 03:06:56 -0800 | [diff] [blame] | 445 | #define FW_ADDSTATE_LINK_SPEED_10MBPS 0x0100 |
| 446 | #define FW_ADDSTATE_LINK_SPEED_100MBPS 0x0200 |
| 447 | #define FW_ADDSTATE_LINK_SPEED_1GBPS 0x0400 |
| 448 | #define FW_ADDSTATE_LINK_SPEED_10GBPS 0x0800 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 449 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 450 | #define MBOX_CMD_GET_DATABASE_ENTRY_DEFAULTS 0x006B |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 451 | #define IPV6_DEFAULT_DDB_ENTRY 0x0001 |
| 452 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 453 | #define MBOX_CMD_CONN_OPEN_SESS_LOGIN 0x0074 |
| 454 | #define MBOX_CMD_GET_CRASH_RECORD 0x0076 /* 4010 only */ |
| 455 | #define MBOX_CMD_GET_CONN_EVENT_LOG 0x0077 |
| 456 | |
| 457 | /* Mailbox status definitions */ |
| 458 | #define MBOX_COMPLETION_STATUS 4 |
| 459 | #define MBOX_STS_BUSY 0x0007 |
| 460 | #define MBOX_STS_INTERMEDIATE_COMPLETION 0x1000 |
| 461 | #define MBOX_STS_COMMAND_COMPLETE 0x4000 |
| 462 | #define MBOX_STS_COMMAND_ERROR 0x4005 |
| 463 | |
| 464 | #define MBOX_ASYNC_EVENT_STATUS 8 |
| 465 | #define MBOX_ASTS_SYSTEM_ERROR 0x8002 |
| 466 | #define MBOX_ASTS_REQUEST_TRANSFER_ERROR 0x8003 |
| 467 | #define MBOX_ASTS_RESPONSE_TRANSFER_ERROR 0x8004 |
| 468 | #define MBOX_ASTS_PROTOCOL_STATISTIC_ALARM 0x8005 |
| 469 | #define MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED 0x8006 |
| 470 | #define MBOX_ASTS_LINK_UP 0x8010 |
| 471 | #define MBOX_ASTS_LINK_DOWN 0x8011 |
| 472 | #define MBOX_ASTS_DATABASE_CHANGED 0x8014 |
| 473 | #define MBOX_ASTS_UNSOLICITED_PDU_RECEIVED 0x8015 |
| 474 | #define MBOX_ASTS_SELF_TEST_FAILED 0x8016 |
| 475 | #define MBOX_ASTS_LOGIN_FAILED 0x8017 |
| 476 | #define MBOX_ASTS_DNS 0x8018 |
| 477 | #define MBOX_ASTS_HEARTBEAT 0x8019 |
| 478 | #define MBOX_ASTS_NVRAM_INVALID 0x801A |
| 479 | #define MBOX_ASTS_MAC_ADDRESS_CHANGED 0x801B |
| 480 | #define MBOX_ASTS_IP_ADDRESS_CHANGED 0x801C |
| 481 | #define MBOX_ASTS_DHCP_LEASE_EXPIRED 0x801D |
| 482 | #define MBOX_ASTS_DHCP_LEASE_ACQUIRED 0x801F |
| 483 | #define MBOX_ASTS_ISNS_UNSOLICITED_PDU_RECEIVED 0x8021 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 484 | #define MBOX_ASTS_DUPLICATE_IP 0x8025 |
| 485 | #define MBOX_ASTS_ARP_COMPLETE 0x8026 |
| 486 | #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027 |
| 487 | #define MBOX_ASTS_RESPONSE_QUEUE_FULL 0x8028 |
| 488 | #define MBOX_ASTS_IP_ADDR_STATE_CHANGED 0x8029 |
| 489 | #define MBOX_ASTS_IPV6_PREFIX_EXPIRED 0x802B |
| 490 | #define MBOX_ASTS_IPV6_ND_PREFIX_IGNORED 0x802C |
| 491 | #define MBOX_ASTS_IPV6_LCL_PREFIX_IGNORED 0x802D |
| 492 | #define MBOX_ASTS_ICMPV6_ERROR_MSG_RCVD 0x802E |
Shyam Sundar | 6434080 | 2010-10-06 22:49:40 -0700 | [diff] [blame] | 493 | #define MBOX_ASTS_TXSCVR_INSERTED 0x8130 |
| 494 | #define MBOX_ASTS_TXSCVR_REMOVED 0x8131 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 495 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 496 | #define ISNS_EVENT_DATA_RECEIVED 0x0000 |
| 497 | #define ISNS_EVENT_CONNECTION_OPENED 0x0001 |
| 498 | #define ISNS_EVENT_CONNECTION_FAILED 0x0002 |
| 499 | #define MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR 0x8022 |
| 500 | #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027 |
| 501 | |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 502 | /* ACB State Defines */ |
| 503 | #define ACB_STATE_UNCONFIGURED 0x00 |
| 504 | #define ACB_STATE_INVALID 0x01 |
| 505 | #define ACB_STATE_ACQUIRING 0x02 |
| 506 | #define ACB_STATE_TENTATIVE 0x03 |
| 507 | #define ACB_STATE_DEPRICATED 0x04 |
| 508 | #define ACB_STATE_VALID 0x05 |
| 509 | #define ACB_STATE_DISABLING 0x06 |
| 510 | |
Mike Christie | d00efe3 | 2011-07-25 13:48:38 -0500 | [diff] [blame] | 511 | /* FLASH offsets */ |
| 512 | #define FLASH_SEGMENT_IFCB 0x04000000 |
| 513 | |
| 514 | #define FLASH_OPT_RMW_HOLD 0 |
| 515 | #define FLASH_OPT_RMW_INIT 1 |
| 516 | #define FLASH_OPT_COMMIT 2 |
| 517 | #define FLASH_OPT_RMW_COMMIT 3 |
| 518 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 519 | /*************************************************************************/ |
| 520 | |
| 521 | /* Host Adapter Initialization Control Block (from host) */ |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 522 | struct addr_ctrl_blk { |
| 523 | uint8_t version; /* 00 */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 524 | #define IFCB_VER_MIN 0x01 |
| 525 | #define IFCB_VER_MAX 0x02 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 526 | uint8_t control; /* 01 */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 527 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 528 | uint16_t fw_options; /* 02-03 */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 529 | #define FWOPT_HEARTBEAT_ENABLE 0x1000 |
| 530 | #define FWOPT_SESSION_MODE 0x0040 |
| 531 | #define FWOPT_INITIATOR_MODE 0x0020 |
| 532 | #define FWOPT_TARGET_MODE 0x0010 |
Shyam Sundar | 2657c80 | 2010-10-06 22:50:29 -0700 | [diff] [blame] | 533 | #define FWOPT_ENABLE_CRBDB 0x8000 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 534 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 535 | uint16_t exec_throttle; /* 04-05 */ |
| 536 | uint8_t zio_count; /* 06 */ |
| 537 | uint8_t res0; /* 07 */ |
| 538 | uint16_t eth_mtu_size; /* 08-09 */ |
| 539 | uint16_t add_fw_options; /* 0A-0B */ |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 540 | #define ADFWOPT_SERIALIZE_TASK_MGMT 0x0400 |
| 541 | #define ADFWOPT_AUTOCONN_DISABLE 0x0002 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 542 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 543 | uint8_t hb_interval; /* 0C */ |
| 544 | uint8_t inst_num; /* 0D */ |
| 545 | uint16_t res1; /* 0E-0F */ |
| 546 | uint16_t rqq_consumer_idx; /* 10-11 */ |
| 547 | uint16_t compq_producer_idx; /* 12-13 */ |
| 548 | uint16_t rqq_len; /* 14-15 */ |
| 549 | uint16_t compq_len; /* 16-17 */ |
| 550 | uint32_t rqq_addr_lo; /* 18-1B */ |
| 551 | uint32_t rqq_addr_hi; /* 1C-1F */ |
| 552 | uint32_t compq_addr_lo; /* 20-23 */ |
| 553 | uint32_t compq_addr_hi; /* 24-27 */ |
| 554 | uint32_t shdwreg_addr_lo; /* 28-2B */ |
| 555 | uint32_t shdwreg_addr_hi; /* 2C-2F */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 556 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 557 | uint16_t iscsi_opts; /* 30-31 */ |
| 558 | uint16_t ipv4_tcp_opts; /* 32-33 */ |
Mike Christie | d00efe3 | 2011-07-25 13:48:38 -0500 | [diff] [blame] | 559 | #define TCPOPT_DHCP_ENABLE 0x0200 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 560 | uint16_t ipv4_ip_opts; /* 34-35 */ |
Vikas Chaudhary | 2bab08f | 2011-07-25 13:48:39 -0500 | [diff] [blame] | 561 | #define IPOPT_IPV4_PROTOCOL_ENABLE 0x8000 |
Vikas Chaudhary | 6ac73e8 | 2011-07-25 13:48:49 -0500 | [diff] [blame] | 562 | #define IPOPT_VLAN_TAGGING_ENABLE 0x2000 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 563 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 564 | uint16_t iscsi_max_pdu_size; /* 36-37 */ |
| 565 | uint8_t ipv4_tos; /* 38 */ |
| 566 | uint8_t ipv4_ttl; /* 39 */ |
| 567 | uint8_t acb_version; /* 3A */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 568 | #define ACB_NOT_SUPPORTED 0x00 |
| 569 | #define ACB_SUPPORTED 0x02 /* Capable of ACB Version 2 |
| 570 | Features */ |
| 571 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 572 | uint8_t res2; /* 3B */ |
| 573 | uint16_t def_timeout; /* 3C-3D */ |
| 574 | uint16_t iscsi_fburst_len; /* 3E-3F */ |
| 575 | uint16_t iscsi_def_time2wait; /* 40-41 */ |
| 576 | uint16_t iscsi_def_time2retain; /* 42-43 */ |
| 577 | uint16_t iscsi_max_outstnd_r2t; /* 44-45 */ |
| 578 | uint16_t conn_ka_timeout; /* 46-47 */ |
| 579 | uint16_t ipv4_port; /* 48-49 */ |
| 580 | uint16_t iscsi_max_burst_len; /* 4A-4B */ |
| 581 | uint32_t res5; /* 4C-4F */ |
| 582 | uint8_t ipv4_addr[4]; /* 50-53 */ |
| 583 | uint16_t ipv4_vlan_tag; /* 54-55 */ |
| 584 | uint8_t ipv4_addr_state; /* 56 */ |
| 585 | uint8_t ipv4_cacheid; /* 57 */ |
| 586 | uint8_t res6[8]; /* 58-5F */ |
| 587 | uint8_t ipv4_subnet[4]; /* 60-63 */ |
| 588 | uint8_t res7[12]; /* 64-6F */ |
| 589 | uint8_t ipv4_gw_addr[4]; /* 70-73 */ |
| 590 | uint8_t res8[0xc]; /* 74-7F */ |
| 591 | uint8_t pri_dns_srvr_ip[4];/* 80-83 */ |
| 592 | uint8_t sec_dns_srvr_ip[4];/* 84-87 */ |
| 593 | uint16_t min_eph_port; /* 88-89 */ |
| 594 | uint16_t max_eph_port; /* 8A-8B */ |
| 595 | uint8_t res9[4]; /* 8C-8F */ |
| 596 | uint8_t iscsi_alias[32];/* 90-AF */ |
| 597 | uint8_t res9_1[0x16]; /* B0-C5 */ |
| 598 | uint16_t tgt_portal_grp;/* C6-C7 */ |
| 599 | uint8_t abort_timer; /* C8 */ |
| 600 | uint8_t ipv4_tcp_wsf; /* C9 */ |
| 601 | uint8_t res10[6]; /* CA-CF */ |
| 602 | uint8_t ipv4_sec_ip_addr[4]; /* D0-D3 */ |
| 603 | uint8_t ipv4_dhcp_vid_len; /* D4 */ |
| 604 | uint8_t ipv4_dhcp_vid[11]; /* D5-DF */ |
| 605 | uint8_t res11[20]; /* E0-F3 */ |
| 606 | uint8_t ipv4_dhcp_alt_cid_len; /* F4 */ |
| 607 | uint8_t ipv4_dhcp_alt_cid[11]; /* F5-FF */ |
| 608 | uint8_t iscsi_name[224]; /* 100-1DF */ |
| 609 | uint8_t res12[32]; /* 1E0-1FF */ |
| 610 | uint32_t cookie; /* 200-203 */ |
| 611 | uint16_t ipv6_port; /* 204-205 */ |
| 612 | uint16_t ipv6_opts; /* 206-207 */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 613 | #define IPV6_OPT_IPV6_PROTOCOL_ENABLE 0x8000 |
Vikas Chaudhary | 6ac73e8 | 2011-07-25 13:48:49 -0500 | [diff] [blame] | 614 | #define IPV6_OPT_VLAN_TAGGING_ENABLE 0x2000 |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 615 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 616 | uint16_t ipv6_addtl_opts; /* 208-209 */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 617 | #define IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE 0x0002 /* Pri ACB |
| 618 | Only */ |
| 619 | #define IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR 0x0001 |
| 620 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 621 | uint16_t ipv6_tcp_opts; /* 20A-20B */ |
| 622 | uint8_t ipv6_tcp_wsf; /* 20C */ |
| 623 | uint16_t ipv6_flow_lbl; /* 20D-20F */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 624 | uint8_t ipv6_dflt_rtr_addr[16]; /* 210-21F */ |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 625 | uint16_t ipv6_vlan_tag; /* 220-221 */ |
| 626 | uint8_t ipv6_lnk_lcl_addr_state;/* 222 */ |
| 627 | uint8_t ipv6_addr0_state; /* 223 */ |
| 628 | uint8_t ipv6_addr1_state; /* 224 */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 629 | #define IP_ADDRSTATE_UNCONFIGURED 0 |
| 630 | #define IP_ADDRSTATE_INVALID 1 |
| 631 | #define IP_ADDRSTATE_ACQUIRING 2 |
| 632 | #define IP_ADDRSTATE_TENTATIVE 3 |
| 633 | #define IP_ADDRSTATE_DEPRICATED 4 |
| 634 | #define IP_ADDRSTATE_PREFERRED 5 |
| 635 | #define IP_ADDRSTATE_DISABLING 6 |
| 636 | |
| 637 | uint8_t ipv6_dflt_rtr_state; /* 225 */ |
| 638 | #define IPV6_RTRSTATE_UNKNOWN 0 |
| 639 | #define IPV6_RTRSTATE_MANUAL 1 |
| 640 | #define IPV6_RTRSTATE_ADVERTISED 3 |
| 641 | #define IPV6_RTRSTATE_STALE 4 |
| 642 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 643 | uint8_t ipv6_traffic_class; /* 226 */ |
| 644 | uint8_t ipv6_hop_limit; /* 227 */ |
| 645 | uint8_t ipv6_if_id[8]; /* 228-22F */ |
| 646 | uint8_t ipv6_addr0[16]; /* 230-23F */ |
| 647 | uint8_t ipv6_addr1[16]; /* 240-24F */ |
| 648 | uint32_t ipv6_nd_reach_time; /* 250-253 */ |
| 649 | uint32_t ipv6_nd_rexmit_timer; /* 254-257 */ |
| 650 | uint32_t ipv6_nd_stale_timeout; /* 258-25B */ |
| 651 | uint8_t ipv6_dup_addr_detect_count; /* 25C */ |
| 652 | uint8_t ipv6_cache_id; /* 25D */ |
| 653 | uint8_t res13[18]; /* 25E-26F */ |
| 654 | uint32_t ipv6_gw_advrt_mtu; /* 270-273 */ |
| 655 | uint8_t res14[140]; /* 274-2FF */ |
| 656 | }; |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 657 | |
Mike Christie | 1348373 | 2011-12-01 21:38:41 -0600 | [diff] [blame] | 658 | #define IP_ADDR_COUNT 4 /* Total 4 IP address supported in one interface |
| 659 | * One IPv4, one IPv6 link local and 2 IPv6 |
| 660 | */ |
| 661 | |
| 662 | #define IP_STATE_MASK 0x0F000000 |
| 663 | #define IP_STATE_SHIFT 24 |
| 664 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 665 | struct init_fw_ctrl_blk { |
| 666 | struct addr_ctrl_blk pri; |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 667 | /* struct addr_ctrl_blk sec;*/ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 668 | }; |
| 669 | |
Vikas Chaudhary | 95d3126 | 2011-08-12 02:51:29 -0700 | [diff] [blame] | 670 | #define PRIMARI_ACB 0 |
| 671 | #define SECONDARY_ACB 1 |
| 672 | |
Mike Christie | d00efe3 | 2011-07-25 13:48:38 -0500 | [diff] [blame] | 673 | struct addr_ctrl_blk_def { |
| 674 | uint8_t reserved1[1]; /* 00 */ |
| 675 | uint8_t control; /* 01 */ |
| 676 | uint8_t reserved2[11]; /* 02-0C */ |
| 677 | uint8_t inst_num; /* 0D */ |
| 678 | uint8_t reserved3[34]; /* 0E-2F */ |
| 679 | uint16_t iscsi_opts; /* 30-31 */ |
| 680 | uint16_t ipv4_tcp_opts; /* 32-33 */ |
| 681 | uint16_t ipv4_ip_opts; /* 34-35 */ |
| 682 | uint16_t iscsi_max_pdu_size; /* 36-37 */ |
| 683 | uint8_t ipv4_tos; /* 38 */ |
| 684 | uint8_t ipv4_ttl; /* 39 */ |
| 685 | uint8_t reserved4[2]; /* 3A-3B */ |
| 686 | uint16_t def_timeout; /* 3C-3D */ |
| 687 | uint16_t iscsi_fburst_len; /* 3E-3F */ |
| 688 | uint8_t reserved5[4]; /* 40-43 */ |
| 689 | uint16_t iscsi_max_outstnd_r2t; /* 44-45 */ |
| 690 | uint8_t reserved6[2]; /* 46-47 */ |
| 691 | uint16_t ipv4_port; /* 48-49 */ |
| 692 | uint16_t iscsi_max_burst_len; /* 4A-4B */ |
| 693 | uint8_t reserved7[4]; /* 4C-4F */ |
| 694 | uint8_t ipv4_addr[4]; /* 50-53 */ |
| 695 | uint16_t ipv4_vlan_tag; /* 54-55 */ |
| 696 | uint8_t ipv4_addr_state; /* 56 */ |
| 697 | uint8_t ipv4_cacheid; /* 57 */ |
| 698 | uint8_t reserved8[8]; /* 58-5F */ |
| 699 | uint8_t ipv4_subnet[4]; /* 60-63 */ |
| 700 | uint8_t reserved9[12]; /* 64-6F */ |
| 701 | uint8_t ipv4_gw_addr[4]; /* 70-73 */ |
| 702 | uint8_t reserved10[84]; /* 74-C7 */ |
| 703 | uint8_t abort_timer; /* C8 */ |
| 704 | uint8_t ipv4_tcp_wsf; /* C9 */ |
| 705 | uint8_t reserved11[10]; /* CA-D3 */ |
| 706 | uint8_t ipv4_dhcp_vid_len; /* D4 */ |
| 707 | uint8_t ipv4_dhcp_vid[11]; /* D5-DF */ |
| 708 | uint8_t reserved12[20]; /* E0-F3 */ |
| 709 | uint8_t ipv4_dhcp_alt_cid_len; /* F4 */ |
| 710 | uint8_t ipv4_dhcp_alt_cid[11]; /* F5-FF */ |
| 711 | uint8_t iscsi_name[224]; /* 100-1DF */ |
| 712 | uint8_t reserved13[32]; /* 1E0-1FF */ |
| 713 | uint32_t cookie; /* 200-203 */ |
| 714 | uint16_t ipv6_port; /* 204-205 */ |
| 715 | uint16_t ipv6_opts; /* 206-207 */ |
| 716 | uint16_t ipv6_addtl_opts; /* 208-209 */ |
| 717 | uint16_t ipv6_tcp_opts; /* 20A-20B */ |
| 718 | uint8_t ipv6_tcp_wsf; /* 20C */ |
| 719 | uint16_t ipv6_flow_lbl; /* 20D-20F */ |
| 720 | uint8_t ipv6_dflt_rtr_addr[16]; /* 210-21F */ |
| 721 | uint16_t ipv6_vlan_tag; /* 220-221 */ |
| 722 | uint8_t ipv6_lnk_lcl_addr_state; /* 222 */ |
| 723 | uint8_t ipv6_addr0_state; /* 223 */ |
| 724 | uint8_t ipv6_addr1_state; /* 224 */ |
| 725 | uint8_t ipv6_dflt_rtr_state; /* 225 */ |
| 726 | uint8_t ipv6_traffic_class; /* 226 */ |
| 727 | uint8_t ipv6_hop_limit; /* 227 */ |
| 728 | uint8_t ipv6_if_id[8]; /* 228-22F */ |
| 729 | uint8_t ipv6_addr0[16]; /* 230-23F */ |
| 730 | uint8_t ipv6_addr1[16]; /* 240-24F */ |
| 731 | uint32_t ipv6_nd_reach_time; /* 250-253 */ |
| 732 | uint32_t ipv6_nd_rexmit_timer; /* 254-257 */ |
| 733 | uint32_t ipv6_nd_stale_timeout; /* 258-25B */ |
| 734 | uint8_t ipv6_dup_addr_detect_count; /* 25C */ |
| 735 | uint8_t ipv6_cache_id; /* 25D */ |
| 736 | uint8_t reserved14[18]; /* 25E-26F */ |
| 737 | uint32_t ipv6_gw_advrt_mtu; /* 270-273 */ |
| 738 | uint8_t reserved15[140]; /* 274-2FF */ |
| 739 | }; |
| 740 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 741 | /*************************************************************************/ |
| 742 | |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 743 | #define MAX_CHAP_ENTRIES_40XX 128 |
| 744 | #define MAX_CHAP_ENTRIES_82XX 1024 |
Lalit Chandivade | 4549415 | 2011-10-07 16:55:42 -0700 | [diff] [blame] | 745 | #define MAX_RESRV_CHAP_IDX 3 |
| 746 | #define FLASH_CHAP_OFFSET 0x06000000 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 747 | |
| 748 | struct ql4_chap_table { |
| 749 | uint16_t link; |
| 750 | uint8_t flags; |
| 751 | uint8_t secret_len; |
| 752 | #define MIN_CHAP_SECRET_LEN 12 |
| 753 | #define MAX_CHAP_SECRET_LEN 100 |
| 754 | uint8_t secret[MAX_CHAP_SECRET_LEN]; |
| 755 | #define MAX_CHAP_NAME_LEN 256 |
| 756 | uint8_t name[MAX_CHAP_NAME_LEN]; |
| 757 | uint16_t reserved; |
| 758 | #define CHAP_VALID_COOKIE 0x4092 |
| 759 | #define CHAP_INVALID_COOKIE 0xFFEE |
| 760 | uint16_t cookie; |
| 761 | }; |
| 762 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 763 | struct dev_db_entry { |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 764 | uint16_t options; /* 00-01 */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 765 | #define DDB_OPT_DISC_SESSION 0x10 |
| 766 | #define DDB_OPT_TARGET 0x02 /* device is a target */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 767 | #define DDB_OPT_IPV6_DEVICE 0x100 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 768 | #define DDB_OPT_AUTO_SENDTGTS_DISABLE 0x40 |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 769 | #define DDB_OPT_IPV6_NULL_LINK_LOCAL 0x800 /* post connection */ |
| 770 | #define DDB_OPT_IPV6_FW_DEFINED_LINK_LOCAL 0x800 /* pre connection */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 771 | |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 772 | uint16_t exec_throttle; /* 02-03 */ |
| 773 | uint16_t exec_count; /* 04-05 */ |
| 774 | uint16_t res0; /* 06-07 */ |
| 775 | uint16_t iscsi_options; /* 08-09 */ |
| 776 | uint16_t tcp_options; /* 0A-0B */ |
| 777 | uint16_t ip_options; /* 0C-0D */ |
| 778 | uint16_t iscsi_max_rcv_data_seg_len; /* 0E-0F */ |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 779 | #define BYTE_UNITS 512 |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 780 | uint32_t res1; /* 10-13 */ |
| 781 | uint16_t iscsi_max_snd_data_seg_len; /* 14-15 */ |
| 782 | uint16_t iscsi_first_burst_len; /* 16-17 */ |
| 783 | uint16_t iscsi_def_time2wait; /* 18-19 */ |
| 784 | uint16_t iscsi_def_time2retain; /* 1A-1B */ |
| 785 | uint16_t iscsi_max_outsnd_r2t; /* 1C-1D */ |
| 786 | uint16_t ka_timeout; /* 1E-1F */ |
| 787 | uint8_t isid[6]; /* 20-25 big-endian, must be converted |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 788 | * to little-endian */ |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 789 | uint16_t tsid; /* 26-27 */ |
| 790 | uint16_t port; /* 28-29 */ |
| 791 | uint16_t iscsi_max_burst_len; /* 2A-2B */ |
| 792 | uint16_t def_timeout; /* 2C-2D */ |
| 793 | uint16_t res2; /* 2E-2F */ |
| 794 | uint8_t ip_addr[0x10]; /* 30-3F */ |
| 795 | uint8_t iscsi_alias[0x20]; /* 40-5F */ |
| 796 | uint8_t tgt_addr[0x20]; /* 60-7F */ |
| 797 | uint16_t mss; /* 80-81 */ |
| 798 | uint16_t res3; /* 82-83 */ |
| 799 | uint16_t lcl_port; /* 84-85 */ |
| 800 | uint8_t ipv4_tos; /* 86 */ |
| 801 | uint16_t ipv6_flow_lbl; /* 87-89 */ |
| 802 | uint8_t res4[0x36]; /* 8A-BF */ |
| 803 | uint8_t iscsi_name[0xE0]; /* C0-19F : xxzzy Make this a |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 804 | * pointer to a string so we |
Justin P. Mattock | 42b2aa8 | 2011-11-28 20:31:00 -0800 | [diff] [blame] | 805 | * don't have to reserve so |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 806 | * much RAM */ |
Vikas Chaudhary | 2a49a78 | 2010-04-28 11:37:07 +0530 | [diff] [blame] | 807 | uint8_t link_local_ipv6_addr[0x10]; /* 1A0-1AF */ |
David C Somayajulu | b285431 | 2007-05-23 17:52:26 -0700 | [diff] [blame] | 808 | uint8_t res5[0x10]; /* 1B0-1BF */ |
| 809 | uint16_t ddb_link; /* 1C0-1C1 */ |
| 810 | uint16_t chap_tbl_idx; /* 1C2-1C3 */ |
| 811 | uint16_t tgt_portal_grp; /* 1C4-1C5 */ |
| 812 | uint8_t tcp_xmt_wsf; /* 1C6 */ |
| 813 | uint8_t tcp_rcv_wsf; /* 1C7 */ |
| 814 | uint32_t stat_sn; /* 1C8-1CB */ |
| 815 | uint32_t exp_stat_sn; /* 1CC-1CF */ |
Manish Rangankar | 2a991c2 | 2011-07-25 13:48:55 -0500 | [diff] [blame] | 816 | uint8_t res6[0x2b]; /* 1D0-1FB */ |
| 817 | #define DDB_VALID_COOKIE 0x9034 |
| 818 | uint16_t cookie; /* 1FC-1FD */ |
| 819 | uint16_t len; /* 1FE-1FF */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 820 | }; |
| 821 | |
| 822 | /*************************************************************************/ |
| 823 | |
| 824 | /* Flash definitions */ |
| 825 | |
| 826 | #define FLASH_OFFSET_SYS_INFO 0x02000000 |
| 827 | #define FLASH_DEFAULTBLOCKSIZE 0x20000 |
| 828 | #define FLASH_EOF_OFFSET (FLASH_DEFAULTBLOCKSIZE-8) /* 4 bytes |
| 829 | * for EOF |
| 830 | * signature */ |
Manish Rangankar | 2a991c2 | 2011-07-25 13:48:55 -0500 | [diff] [blame] | 831 | #define FLASH_RAW_ACCESS_ADDR 0x8e000000 |
| 832 | |
| 833 | #define BOOT_PARAM_OFFSET_PORT0 0x3b0 |
| 834 | #define BOOT_PARAM_OFFSET_PORT1 0x7b0 |
| 835 | |
| 836 | #define FLASH_OFFSET_DB_INFO 0x05000000 |
| 837 | #define FLASH_OFFSET_DB_END (FLASH_OFFSET_DB_INFO + 0x7fff) |
| 838 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 839 | |
| 840 | struct sys_info_phys_addr { |
| 841 | uint8_t address[6]; /* 00-05 */ |
| 842 | uint8_t filler[2]; /* 06-07 */ |
| 843 | }; |
| 844 | |
| 845 | struct flash_sys_info { |
| 846 | uint32_t cookie; /* 00-03 */ |
| 847 | uint32_t physAddrCount; /* 04-07 */ |
| 848 | struct sys_info_phys_addr physAddr[4]; /* 08-27 */ |
| 849 | uint8_t vendorId[128]; /* 28-A7 */ |
| 850 | uint8_t productId[128]; /* A8-127 */ |
| 851 | uint32_t serialNumber; /* 128-12B */ |
| 852 | |
| 853 | /* PCI Configuration values */ |
| 854 | uint32_t pciDeviceVendor; /* 12C-12F */ |
| 855 | uint32_t pciDeviceId; /* 130-133 */ |
| 856 | uint32_t pciSubsysVendor; /* 134-137 */ |
| 857 | uint32_t pciSubsysId; /* 138-13B */ |
| 858 | |
| 859 | /* This validates version 1. */ |
| 860 | uint32_t crumbs; /* 13C-13F */ |
| 861 | |
| 862 | uint32_t enterpriseNumber; /* 140-143 */ |
| 863 | |
| 864 | uint32_t mtu; /* 144-147 */ |
| 865 | uint32_t reserved0; /* 148-14b */ |
| 866 | uint32_t crumbs2; /* 14c-14f */ |
| 867 | uint8_t acSerialNumber[16]; /* 150-15f */ |
| 868 | uint32_t crumbs3; /* 160-16f */ |
| 869 | |
| 870 | /* Leave this last in the struct so it is declared invalid if |
| 871 | * any new items are added. |
| 872 | */ |
| 873 | uint32_t reserved1[39]; /* 170-1ff */ |
| 874 | }; /* 200 */ |
| 875 | |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 876 | struct mbx_sys_info { |
Vikas Chaudhary | 2ccdf0d | 2010-07-30 14:27:45 +0530 | [diff] [blame] | 877 | uint8_t board_id_str[16]; /* 0-f Keep board ID string first */ |
| 878 | /* in this structure for GUI. */ |
| 879 | uint16_t board_id; /* 10-11 board ID code */ |
| 880 | uint16_t phys_port_cnt; /* 12-13 number of physical network ports */ |
| 881 | uint16_t port_num; /* 14-15 network port for this PCI function */ |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 882 | /* (port 0 is first port) */ |
Vikas Chaudhary | 2ccdf0d | 2010-07-30 14:27:45 +0530 | [diff] [blame] | 883 | uint8_t mac_addr[6]; /* 16-1b MAC address for this PCI function */ |
| 884 | uint32_t iscsi_pci_func_cnt; /* 1c-1f number of iSCSI PCI functions */ |
| 885 | uint32_t pci_func; /* 20-23 this PCI function */ |
| 886 | unsigned char serial_number[16]; /* 24-33 serial number string */ |
| 887 | uint8_t reserved[12]; /* 34-3f */ |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 888 | }; |
| 889 | |
Harish Zunjarrao | 7ad633c | 2011-05-17 23:17:11 -0700 | [diff] [blame] | 890 | struct about_fw_info { |
| 891 | uint16_t fw_major; /* 00 - 01 */ |
| 892 | uint16_t fw_minor; /* 02 - 03 */ |
| 893 | uint16_t fw_patch; /* 04 - 05 */ |
| 894 | uint16_t fw_build; /* 06 - 07 */ |
| 895 | uint8_t fw_build_date[16]; /* 08 - 17 ASCII String */ |
| 896 | uint8_t fw_build_time[16]; /* 18 - 27 ASCII String */ |
| 897 | uint8_t fw_build_user[16]; /* 28 - 37 ASCII String */ |
| 898 | uint16_t fw_load_source; /* 38 - 39 */ |
| 899 | /* 1 = Flash Primary, |
| 900 | 2 = Flash Secondary, |
| 901 | 3 = Host Download |
| 902 | */ |
| 903 | uint8_t reserved1[6]; /* 3A - 3F */ |
| 904 | uint16_t iscsi_major; /* 40 - 41 */ |
| 905 | uint16_t iscsi_minor; /* 42 - 43 */ |
| 906 | uint16_t bootload_major; /* 44 - 45 */ |
| 907 | uint16_t bootload_minor; /* 46 - 47 */ |
| 908 | uint16_t bootload_patch; /* 48 - 49 */ |
| 909 | uint16_t bootload_build; /* 4A - 4B */ |
| 910 | uint8_t reserved2[180]; /* 4C - FF */ |
| 911 | }; |
| 912 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 913 | struct crash_record { |
| 914 | uint16_t fw_major_version; /* 00 - 01 */ |
| 915 | uint16_t fw_minor_version; /* 02 - 03 */ |
| 916 | uint16_t fw_patch_version; /* 04 - 05 */ |
| 917 | uint16_t fw_build_version; /* 06 - 07 */ |
| 918 | |
| 919 | uint8_t build_date[16]; /* 08 - 17 */ |
| 920 | uint8_t build_time[16]; /* 18 - 27 */ |
| 921 | uint8_t build_user[16]; /* 28 - 37 */ |
| 922 | uint8_t card_serial_num[16]; /* 38 - 47 */ |
| 923 | |
| 924 | uint32_t time_of_crash_in_secs; /* 48 - 4B */ |
| 925 | uint32_t time_of_crash_in_ms; /* 4C - 4F */ |
| 926 | |
| 927 | uint16_t out_RISC_sd_num_frames; /* 50 - 51 */ |
| 928 | uint16_t OAP_sd_num_words; /* 52 - 53 */ |
| 929 | uint16_t IAP_sd_num_frames; /* 54 - 55 */ |
| 930 | uint16_t in_RISC_sd_num_words; /* 56 - 57 */ |
| 931 | |
| 932 | uint8_t reserved1[28]; /* 58 - 7F */ |
| 933 | |
| 934 | uint8_t out_RISC_reg_dump[256]; /* 80 -17F */ |
| 935 | uint8_t in_RISC_reg_dump[256]; /*180 -27F */ |
| 936 | uint8_t in_out_RISC_stack_dump[0]; /*280 - ??? */ |
| 937 | }; |
| 938 | |
| 939 | struct conn_event_log_entry { |
| 940 | #define MAX_CONN_EVENT_LOG_ENTRIES 100 |
| 941 | uint32_t timestamp_sec; /* 00 - 03 seconds since boot */ |
| 942 | uint32_t timestamp_ms; /* 04 - 07 milliseconds since boot */ |
| 943 | uint16_t device_index; /* 08 - 09 */ |
| 944 | uint16_t fw_conn_state; /* 0A - 0B */ |
| 945 | uint8_t event_type; /* 0C - 0C */ |
| 946 | uint8_t error_code; /* 0D - 0D */ |
| 947 | uint16_t error_code_detail; /* 0E - 0F */ |
| 948 | uint8_t num_consecutive_events; /* 10 - 10 */ |
| 949 | uint8_t rsvd[3]; /* 11 - 13 */ |
| 950 | }; |
| 951 | |
| 952 | /************************************************************************* |
| 953 | * |
| 954 | * IOCB Commands Structures and Definitions |
| 955 | * |
| 956 | *************************************************************************/ |
| 957 | #define IOCB_MAX_CDB_LEN 16 /* Bytes in a CBD */ |
| 958 | #define IOCB_MAX_SENSEDATA_LEN 32 /* Bytes of sense data */ |
Karen Higgins | 94bced3 | 2009-07-15 15:02:58 -0500 | [diff] [blame] | 959 | #define IOCB_MAX_EXT_SENSEDATA_LEN 60 /* Bytes of extended sense data */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 960 | |
| 961 | /* IOCB header structure */ |
| 962 | struct qla4_header { |
| 963 | uint8_t entryType; |
| 964 | #define ET_STATUS 0x03 |
| 965 | #define ET_MARKER 0x04 |
| 966 | #define ET_CONT_T1 0x0A |
| 967 | #define ET_STATUS_CONTINUATION 0x10 |
| 968 | #define ET_CMND_T3 0x19 |
| 969 | #define ET_PASSTHRU0 0x3A |
| 970 | #define ET_PASSTHRU_STATUS 0x3C |
Vikas Chaudhary | c0b9d3f | 2012-02-13 18:30:49 +0530 | [diff] [blame] | 971 | #define ET_MBOX_CMD 0x38 |
| 972 | #define ET_MBOX_STATUS 0x39 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 973 | |
| 974 | uint8_t entryStatus; |
| 975 | uint8_t systemDefined; |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 976 | #define SD_ISCSI_PDU 0x01 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 977 | uint8_t entryCount; |
| 978 | |
| 979 | /* SyetemDefined definition */ |
| 980 | }; |
| 981 | |
| 982 | /* Generic queue entry structure*/ |
| 983 | struct queue_entry { |
| 984 | uint8_t data[60]; |
| 985 | uint32_t signature; |
| 986 | |
| 987 | }; |
| 988 | |
| 989 | /* 64 bit addressing segment counts*/ |
| 990 | |
| 991 | #define COMMAND_SEG_A64 1 |
| 992 | #define CONTINUE_SEG_A64 5 |
| 993 | |
| 994 | /* 64 bit addressing segment definition*/ |
| 995 | |
| 996 | struct data_seg_a64 { |
| 997 | struct { |
| 998 | uint32_t addrLow; |
| 999 | uint32_t addrHigh; |
| 1000 | |
| 1001 | } base; |
| 1002 | |
| 1003 | uint32_t count; |
| 1004 | |
| 1005 | }; |
| 1006 | |
| 1007 | /* Command Type 3 entry structure*/ |
| 1008 | |
| 1009 | struct command_t3_entry { |
| 1010 | struct qla4_header hdr; /* 00-03 */ |
| 1011 | |
| 1012 | uint32_t handle; /* 04-07 */ |
| 1013 | uint16_t target; /* 08-09 */ |
| 1014 | uint16_t connection_id; /* 0A-0B */ |
| 1015 | |
| 1016 | uint8_t control_flags; /* 0C */ |
| 1017 | |
| 1018 | /* data direction (bits 5-6) */ |
| 1019 | #define CF_WRITE 0x20 |
| 1020 | #define CF_READ 0x40 |
| 1021 | #define CF_NO_DATA 0x00 |
| 1022 | |
| 1023 | /* task attributes (bits 2-0) */ |
| 1024 | #define CF_HEAD_TAG 0x03 |
| 1025 | #define CF_ORDERED_TAG 0x02 |
| 1026 | #define CF_SIMPLE_TAG 0x01 |
| 1027 | |
| 1028 | /* STATE FLAGS FIELD IS A PLACE HOLDER. THE FW WILL SET BITS |
| 1029 | * IN THIS FIELD AS THE COMMAND IS PROCESSED. WHEN THE IOCB IS |
| 1030 | * CHANGED TO AN IOSB THIS FIELD WILL HAVE THE STATE FLAGS SET |
| 1031 | * PROPERLY. |
| 1032 | */ |
| 1033 | uint8_t state_flags; /* 0D */ |
| 1034 | uint8_t cmdRefNum; /* 0E */ |
| 1035 | uint8_t reserved1; /* 0F */ |
| 1036 | uint8_t cdb[IOCB_MAX_CDB_LEN]; /* 10-1F */ |
| 1037 | struct scsi_lun lun; /* FCP LUN (BE). */ |
| 1038 | uint32_t cmdSeqNum; /* 28-2B */ |
| 1039 | uint16_t timeout; /* 2C-2D */ |
| 1040 | uint16_t dataSegCnt; /* 2E-2F */ |
| 1041 | uint32_t ttlByteCnt; /* 30-33 */ |
| 1042 | struct data_seg_a64 dataseg[COMMAND_SEG_A64]; /* 34-3F */ |
| 1043 | |
| 1044 | }; |
| 1045 | |
| 1046 | |
| 1047 | /* Continuation Type 1 entry structure*/ |
| 1048 | struct continuation_t1_entry { |
| 1049 | struct qla4_header hdr; |
| 1050 | |
| 1051 | struct data_seg_a64 dataseg[CONTINUE_SEG_A64]; |
| 1052 | |
| 1053 | }; |
| 1054 | |
| 1055 | /* Parameterize for 64 or 32 bits */ |
| 1056 | #define COMMAND_SEG COMMAND_SEG_A64 |
| 1057 | #define CONTINUE_SEG CONTINUE_SEG_A64 |
| 1058 | |
| 1059 | #define ET_COMMAND ET_CMND_T3 |
| 1060 | #define ET_CONTINUE ET_CONT_T1 |
| 1061 | |
| 1062 | /* Marker entry structure*/ |
Mathieu Desnoyers | 1c3f0b8 | 2007-10-18 23:41:04 -0700 | [diff] [blame] | 1063 | struct qla4_marker_entry { |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1064 | struct qla4_header hdr; /* 00-03 */ |
| 1065 | |
| 1066 | uint32_t system_defined; /* 04-07 */ |
| 1067 | uint16_t target; /* 08-09 */ |
| 1068 | uint16_t modifier; /* 0A-0B */ |
David C Somayajulu | 9d56291 | 2008-03-19 11:23:03 -0700 | [diff] [blame] | 1069 | #define MM_LUN_RESET 0 |
| 1070 | #define MM_TGT_WARM_RESET 1 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1071 | |
| 1072 | uint16_t flags; /* 0C-0D */ |
| 1073 | uint16_t reserved1; /* 0E-0F */ |
| 1074 | struct scsi_lun lun; /* FCP LUN (BE). */ |
| 1075 | uint64_t reserved2; /* 18-1F */ |
| 1076 | uint64_t reserved3; /* 20-27 */ |
| 1077 | uint64_t reserved4; /* 28-2F */ |
| 1078 | uint64_t reserved5; /* 30-37 */ |
| 1079 | uint64_t reserved6; /* 38-3F */ |
| 1080 | }; |
| 1081 | |
| 1082 | /* Status entry structure*/ |
| 1083 | struct status_entry { |
| 1084 | struct qla4_header hdr; /* 00-03 */ |
| 1085 | |
| 1086 | uint32_t handle; /* 04-07 */ |
| 1087 | |
| 1088 | uint8_t scsiStatus; /* 08 */ |
| 1089 | #define SCSI_CHECK_CONDITION 0x02 |
| 1090 | |
| 1091 | uint8_t iscsiFlags; /* 09 */ |
| 1092 | #define ISCSI_FLAG_RESIDUAL_UNDER 0x02 |
| 1093 | #define ISCSI_FLAG_RESIDUAL_OVER 0x04 |
| 1094 | |
| 1095 | uint8_t iscsiResponse; /* 0A */ |
| 1096 | |
| 1097 | uint8_t completionStatus; /* 0B */ |
| 1098 | #define SCS_COMPLETE 0x00 |
| 1099 | #define SCS_INCOMPLETE 0x01 |
| 1100 | #define SCS_RESET_OCCURRED 0x04 |
| 1101 | #define SCS_ABORTED 0x05 |
| 1102 | #define SCS_TIMEOUT 0x06 |
| 1103 | #define SCS_DATA_OVERRUN 0x07 |
| 1104 | #define SCS_DATA_UNDERRUN 0x15 |
| 1105 | #define SCS_QUEUE_FULL 0x1C |
| 1106 | #define SCS_DEVICE_UNAVAILABLE 0x28 |
| 1107 | #define SCS_DEVICE_LOGGED_OUT 0x29 |
| 1108 | |
| 1109 | uint8_t reserved1; /* 0C */ |
| 1110 | |
| 1111 | /* state_flags MUST be at the same location as state_flags in |
| 1112 | * the Command_T3/4_Entry */ |
| 1113 | uint8_t state_flags; /* 0D */ |
| 1114 | |
| 1115 | uint16_t senseDataByteCnt; /* 0E-0F */ |
| 1116 | uint32_t residualByteCnt; /* 10-13 */ |
| 1117 | uint32_t bidiResidualByteCnt; /* 14-17 */ |
| 1118 | uint32_t expSeqNum; /* 18-1B */ |
| 1119 | uint32_t maxCmdSeqNum; /* 1C-1F */ |
| 1120 | uint8_t senseData[IOCB_MAX_SENSEDATA_LEN]; /* 20-3F */ |
| 1121 | |
| 1122 | }; |
| 1123 | |
Karen Higgins | 94bced3 | 2009-07-15 15:02:58 -0500 | [diff] [blame] | 1124 | /* Status Continuation entry */ |
| 1125 | struct status_cont_entry { |
| 1126 | struct qla4_header hdr; /* 00-03 */ |
| 1127 | uint8_t ext_sense_data[IOCB_MAX_EXT_SENSEDATA_LEN]; /* 04-63 */ |
| 1128 | }; |
| 1129 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1130 | struct passthru0 { |
| 1131 | struct qla4_header hdr; /* 00-03 */ |
| 1132 | uint32_t handle; /* 04-07 */ |
| 1133 | uint16_t target; /* 08-09 */ |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1134 | uint16_t connection_id; /* 0A-0B */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1135 | #define ISNS_DEFAULT_SERVER_CONN_ID ((uint16_t)0x8000) |
| 1136 | |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1137 | uint16_t control_flags; /* 0C-0D */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1138 | #define PT_FLAG_ETHERNET_FRAME 0x8000 |
| 1139 | #define PT_FLAG_ISNS_PDU 0x8000 |
| 1140 | #define PT_FLAG_SEND_BUFFER 0x0200 |
| 1141 | #define PT_FLAG_WAIT_4_RESPONSE 0x0100 |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1142 | #define PT_FLAG_ISCSI_PDU 0x1000 |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1143 | |
| 1144 | uint16_t timeout; /* 0E-0F */ |
| 1145 | #define PT_DEFAULT_TIMEOUT 30 /* seconds */ |
| 1146 | |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1147 | struct data_seg_a64 out_dsd; /* 10-1B */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1148 | uint32_t res1; /* 1C-1F */ |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1149 | struct data_seg_a64 in_dsd; /* 20-2B */ |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1150 | uint8_t res2[20]; /* 2C-3F */ |
| 1151 | }; |
| 1152 | |
| 1153 | struct passthru_status { |
| 1154 | struct qla4_header hdr; /* 00-03 */ |
| 1155 | uint32_t handle; /* 04-07 */ |
| 1156 | uint16_t target; /* 08-09 */ |
| 1157 | uint16_t connectionID; /* 0A-0B */ |
| 1158 | |
| 1159 | uint8_t completionStatus; /* 0C */ |
| 1160 | #define PASSTHRU_STATUS_COMPLETE 0x01 |
| 1161 | |
| 1162 | uint8_t residualFlags; /* 0D */ |
| 1163 | |
| 1164 | uint16_t timeout; /* 0E-0F */ |
| 1165 | uint16_t portNumber; /* 10-11 */ |
| 1166 | uint8_t res1[10]; /* 12-1B */ |
| 1167 | uint32_t outResidual; /* 1C-1F */ |
| 1168 | uint8_t res2[12]; /* 20-2B */ |
| 1169 | uint32_t inResidual; /* 2C-2F */ |
| 1170 | uint8_t res4[16]; /* 30-3F */ |
| 1171 | }; |
| 1172 | |
Vikas Chaudhary | c0b9d3f | 2012-02-13 18:30:49 +0530 | [diff] [blame] | 1173 | struct mbox_cmd_iocb { |
| 1174 | struct qla4_header hdr; /* 00-03 */ |
| 1175 | uint32_t handle; /* 04-07 */ |
| 1176 | uint32_t in_mbox[8]; /* 08-25 */ |
| 1177 | uint32_t res1[6]; /* 26-3F */ |
| 1178 | }; |
| 1179 | |
| 1180 | struct mbox_status_iocb { |
| 1181 | struct qla4_header hdr; /* 00-03 */ |
| 1182 | uint32_t handle; /* 04-07 */ |
| 1183 | uint32_t out_mbox[8]; /* 08-25 */ |
| 1184 | uint32_t res1[6]; /* 26-3F */ |
| 1185 | }; |
| 1186 | |
Vikas Chaudhary | f4f5df23 | 2010-07-28 15:53:44 +0530 | [diff] [blame] | 1187 | /* |
| 1188 | * ISP queue - response queue entry definition. |
| 1189 | */ |
| 1190 | struct response { |
| 1191 | uint8_t data[60]; |
| 1192 | uint32_t signature; |
| 1193 | #define RESPONSE_PROCESSED 0xDEADDEAD /* Signature */ |
| 1194 | }; |
| 1195 | |
Manish Rangankar | b3a271a | 2011-07-25 13:48:53 -0500 | [diff] [blame] | 1196 | struct ql_iscsi_stats { |
| 1197 | uint8_t reserved1[656]; /* 0000-028F */ |
| 1198 | uint32_t tx_cmd_pdu; /* 0290-0293 */ |
| 1199 | uint32_t tx_resp_pdu; /* 0294-0297 */ |
| 1200 | uint32_t rx_cmd_pdu; /* 0298-029B */ |
| 1201 | uint32_t rx_resp_pdu; /* 029C-029F */ |
| 1202 | |
| 1203 | uint64_t tx_data_octets; /* 02A0-02A7 */ |
| 1204 | uint64_t rx_data_octets; /* 02A8-02AF */ |
| 1205 | |
| 1206 | uint32_t hdr_digest_err; /* 02B0–02B3 */ |
| 1207 | uint32_t data_digest_err; /* 02B4–02B7 */ |
| 1208 | uint32_t conn_timeout_err; /* 02B8–02BB */ |
| 1209 | uint32_t framing_err; /* 02BC–02BF */ |
| 1210 | |
| 1211 | uint32_t tx_nopout_pdus; /* 02C0–02C3 */ |
| 1212 | uint32_t tx_scsi_cmd_pdus; /* 02C4–02C7 */ |
| 1213 | uint32_t tx_tmf_cmd_pdus; /* 02C8–02CB */ |
| 1214 | uint32_t tx_login_cmd_pdus; /* 02CC–02CF */ |
| 1215 | uint32_t tx_text_cmd_pdus; /* 02D0–02D3 */ |
| 1216 | uint32_t tx_scsi_write_pdus; /* 02D4–02D7 */ |
| 1217 | uint32_t tx_logout_cmd_pdus; /* 02D8–02DB */ |
| 1218 | uint32_t tx_snack_req_pdus; /* 02DC–02DF */ |
| 1219 | |
| 1220 | uint32_t rx_nopin_pdus; /* 02E0–02E3 */ |
| 1221 | uint32_t rx_scsi_resp_pdus; /* 02E4–02E7 */ |
| 1222 | uint32_t rx_tmf_resp_pdus; /* 02E8–02EB */ |
| 1223 | uint32_t rx_login_resp_pdus; /* 02EC–02EF */ |
| 1224 | uint32_t rx_text_resp_pdus; /* 02F0–02F3 */ |
| 1225 | uint32_t rx_scsi_read_pdus; /* 02F4–02F7 */ |
| 1226 | uint32_t rx_logout_resp_pdus; /* 02F8–02FB */ |
| 1227 | |
| 1228 | uint32_t rx_r2t_pdus; /* 02FC–02FF */ |
| 1229 | uint32_t rx_async_pdus; /* 0300–0303 */ |
| 1230 | uint32_t rx_reject_pdus; /* 0304–0307 */ |
| 1231 | |
| 1232 | uint8_t reserved2[264]; /* 0x0308 - 0x040F */ |
| 1233 | }; |
| 1234 | |
Vikas Chaudhary | de8c72d | 2012-08-22 09:14:24 -0400 | [diff] [blame] | 1235 | #define QLA8XXX_DBG_STATE_ARRAY_LEN 16 |
| 1236 | #define QLA8XXX_DBG_CAP_SIZE_ARRAY_LEN 8 |
| 1237 | #define QLA8XXX_DBG_RSVD_ARRAY_LEN 8 |
Vikas Chaudhary | 6e7b429 | 2012-08-22 07:55:08 -0400 | [diff] [blame] | 1238 | #define QLA83XX_DBG_OCM_WNDREG_ARRAY_LEN 16 |
| 1239 | #define QLA83XX_SS_OCM_WNDREG_INDEX 3 |
| 1240 | #define QLA83XX_SS_PCI_INDEX 0 |
Tej Parkash | 068237c8 | 2012-05-18 04:41:44 -0400 | [diff] [blame] | 1241 | |
| 1242 | struct qla4_8xxx_minidump_template_hdr { |
| 1243 | uint32_t entry_type; |
| 1244 | uint32_t first_entry_offset; |
| 1245 | uint32_t size_of_template; |
| 1246 | uint32_t capture_debug_level; |
| 1247 | uint32_t num_of_entries; |
| 1248 | uint32_t version; |
| 1249 | uint32_t driver_timestamp; |
| 1250 | uint32_t checksum; |
| 1251 | |
| 1252 | uint32_t driver_capture_mask; |
| 1253 | uint32_t driver_info_word2; |
| 1254 | uint32_t driver_info_word3; |
| 1255 | uint32_t driver_info_word4; |
| 1256 | |
Vikas Chaudhary | de8c72d | 2012-08-22 09:14:24 -0400 | [diff] [blame] | 1257 | uint32_t saved_state_array[QLA8XXX_DBG_STATE_ARRAY_LEN]; |
| 1258 | uint32_t capture_size_array[QLA8XXX_DBG_CAP_SIZE_ARRAY_LEN]; |
Vikas Chaudhary | 6e7b429 | 2012-08-22 07:55:08 -0400 | [diff] [blame] | 1259 | uint32_t ocm_window_reg[QLA83XX_DBG_OCM_WNDREG_ARRAY_LEN]; |
Tej Parkash | 068237c8 | 2012-05-18 04:41:44 -0400 | [diff] [blame] | 1260 | }; |
| 1261 | |
David Somayajulu | afaf5a2 | 2006-09-19 10:28:00 -0700 | [diff] [blame] | 1262 | #endif /* _QLA4X_FW_H */ |