This source file includes following definitions.
- set_rmask
- clr_rmask
1
2
3
4
5
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
14 #define MAX_DEV_DB_ENTRIES 512
15 #define MAX_DEV_DB_ENTRIES_40XX 256
16
17
18
19
20
21
22
23 struct port_ctrl_stat_regs {
24 __le32 ext_hw_conf;
25 __le32 rsrvd0;
26 __le32 port_ctrl;
27 __le32 port_status;
28 __le32 rsrvd1[32];
29 __le32 gp_out;
30 __le32 gp_in;
31 __le32 rsrvd2[5];
32 __le32 port_err_status;
33 };
34
35 struct host_mem_cfg_regs {
36 __le32 rsrvd0[12];
37 __le32 req_q_out;
38 __le32 rsrvd1[31];
39 };
40
41
42
43
44 struct device_reg_82xx {
45 __le32 req_q_out;
46 __le32 reserve1[63];
47 __le32 rsp_q_in;
48 __le32 reserve2[63];
49 __le32 rsp_q_out;
50 __le32 reserve3[63];
51
52 __le32 mailbox_in[8];
53 __le32 reserve4[24];
54 __le32 hint;
55 #define HINT_MBX_INT_PENDING BIT_0
56 __le32 reserve5[31];
57 __le32 mailbox_out[8];
58 __le32 reserve6[56];
59
60 __le32 host_status;
61 #define HSRX_RISC_MB_INT BIT_0
62 #define HSRX_RISC_IOCB_INT BIT_1
63
64 __le32 host_int;
65 #define ISRX_82XX_RISC_INT BIT_0
66 };
67
68
69 struct device_reg_83xx {
70 __le32 mailbox_in[16];
71 __le32 reserve1[496];
72 __le32 mailbox_out[16];
73 __le32 reserve2[496];
74 __le32 mbox_int;
75 __le32 reserve3[63];
76 __le32 req_q_out;
77 __le32 reserve4[63];
78
79 __le32 rsp_q_in;
80 __le32 reserve5[1919];
81
82 __le32 req_q_in;
83 __le32 reserve6[3];
84 __le32 iocb_int_mask;
85 __le32 reserve7[3];
86 __le32 rsp_q_out;
87 __le32 reserve8[3];
88 __le32 anonymousbuff;
89 __le32 mb_int_mask;
90
91 __le32 host_intr;
92 __le32 risc_intr;
93 __le32 reserve9[544];
94 __le32 leg_int_ptr;
95 __le32 leg_int_trig;
96 __le32 leg_int_mask;
97 };
98
99 #define INT_ENABLE_FW_MB (1 << 2)
100 #define INT_MASK_FW_MB (1 << 2)
101
102
103 struct isp_reg {
104 #define MBOX_REG_COUNT 8
105 __le32 mailbox[MBOX_REG_COUNT];
106
107 __le32 flash_address;
108 __le32 flash_data;
109 __le32 ctrl_status;
110
111 union {
112 struct {
113 __le32 nvram;
114 __le32 reserved1[2];
115 } __attribute__ ((packed)) isp4010;
116 struct {
117 __le32 intr_mask;
118 __le32 nvram;
119 __le32 semaphore;
120 } __attribute__ ((packed)) isp4022;
121 } u1;
122
123 __le32 req_q_in;
124 __le32 rsp_q_out;
125
126 __le32 reserved2[4];
127
128 union {
129 struct {
130 __le32 ext_hw_conf;
131 __le32 flow_ctrl;
132 __le32 port_ctrl;
133 __le32 port_status;
134
135 __le32 reserved3[8];
136
137 __le32 req_q_out;
138
139 __le32 reserved4[23];
140
141 __le32 gp_out;
142 __le32 gp_in;
143
144 __le32 reserved5[5];
145
146 __le32 port_err_status;
147 } __attribute__ ((packed)) isp4010;
148 struct {
149 union {
150 struct port_ctrl_stat_regs p0;
151 struct host_mem_cfg_regs p1;
152 };
153 } __attribute__ ((packed)) isp4022;
154 } u2;
155 };
156
157
158
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
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
184
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
191
192
193
194 #define PORT_CTRL_STAT_PAGE 0
195 #define HOST_MEM_CFG_PAGE 1
196 #define LOCAL_RAM_CFG_PAGE 2
197 #define PROT_STAT_PAGE 3
198
199
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
212 #define CSR_SCSI_PAGE_SELECT 0x00000003
213 #define CSR_SCSI_INTR_ENABLE 0x00000004
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
220 #define CSR_FUNC_NUM 0x00000700
221 #define CSR_NET_RESET_INTR 0x00000800
222 #define CSR_FORCE_SOFT_RESET 0x00002000
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
234 #define IMR_SCSI_INTR_ENABLE 0x00000004
235
236
237 #define NVR_WRITE_ENABLE 0x00000010
238
239 #define QL4010_NVRAM_SIZE 0x200
240 #define QL40X2_NVRAM_SIZE 0x800
241
242
243
244
245
246
247 #define GPOR_TOPCAT_RESET 0x00000004
248
249
250 struct shadow_regs {
251
252 __le32 req_q_out;
253
254
255 __le32 rsp_q_in;
256 };
257
258
259
260 union external_hw_config_reg {
261 struct {
262
263
264
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
281
282
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
289 #define FA_FLASH_ISCSI_CHAP 0x540000
290 #define FA_FLASH_CHAP_SIZE 0xC0000
291 #define FA_FLASH_ISCSI_DDB 0x420000
292 #define FA_FLASH_DDB_SIZE 0x080000
293
294
295 struct qla_fdt_layout {
296 uint8_t sig[4];
297 uint16_t version;
298 uint16_t len;
299 uint16_t checksum;
300 uint8_t unused1[2];
301 uint8_t model[16];
302 uint16_t man_id;
303 uint16_t id;
304 uint8_t flags;
305 uint8_t erase_cmd;
306 uint8_t alt_erase_cmd;
307 uint8_t wrt_enable_cmd;
308 uint8_t wrt_enable_bits;
309 uint8_t wrt_sts_reg_cmd;
310 uint8_t unprotect_sec_cmd;
311 uint8_t read_man_id_cmd;
312 uint32_t block_size;
313 uint32_t alt_block_size;
314 uint32_t flash_size;
315 uint32_t wrt_enable_data;
316 uint8_t read_id_addr_len;
317 uint8_t wrt_disable_bits;
318 uint8_t read_dev_id_len;
319 uint8_t chip_erase_cmd;
320 uint16_t read_timeout;
321 uint8_t protect_sec_cmd;
322 uint8_t unused2[65];
323 };
324
325
326
327 struct qla_flt_location {
328 uint8_t sig[4];
329 uint16_t start_lo;
330 uint16_t start_hi;
331 uint8_t version;
332 uint8_t unused[5];
333 uint16_t checksum;
334 };
335
336 struct qla_flt_header {
337 uint16_t version;
338 uint16_t length;
339 uint16_t checksum;
340 uint16_t unused;
341 };
342
343
344 #define FLT_REG_FDT 0x1a
345 #define FLT_REG_FLT 0x1c
346 #define FLT_REG_BOOTLOAD_82 0x72
347 #define FLT_REG_FW_82 0x74
348 #define FLT_REG_FW_82_1 0x97
349 #define FLT_REG_GOLD_FW_82 0x75
350 #define FLT_REG_BOOT_CODE_82 0x78
351 #define FLT_REG_ISCSI_PARAM 0x65
352 #define FLT_REG_ISCSI_CHAP 0x63
353 #define FLT_REG_ISCSI_DDB 0x6A
354
355 struct qla_flt_region {
356 uint32_t code;
357 uint32_t size;
358 uint32_t start;
359 uint32_t end;
360 };
361
362
363
364
365
366
367
368
369 #define MBOX_CMD_ABOUT_FW 0x0009
370 #define MBOX_CMD_PING 0x000B
371 #define PING_IPV6_PROTOCOL_ENABLE 0x1
372 #define PING_IPV6_LINKLOCAL_ADDR 0x4
373 #define PING_IPV6_ADDR0 0x8
374 #define PING_IPV6_ADDR1 0xC
375 #define MBOX_CMD_ENABLE_INTRS 0x0010
376 #define INTR_DISABLE 0
377 #define INTR_ENABLE 1
378 #define MBOX_CMD_STOP_FW 0x0014
379 #define MBOX_CMD_ABORT_TASK 0x0015
380 #define MBOX_CMD_LUN_RESET 0x0016
381 #define MBOX_CMD_TARGET_WARM_RESET 0x0017
382 #define MBOX_CMD_GET_MANAGEMENT_DATA 0x001E
383 #define MBOX_CMD_GET_FW_STATUS 0x001F
384 #define MBOX_CMD_SET_ISNS_SERVICE 0x0021
385 #define ISNS_DISABLE 0
386 #define ISNS_ENABLE 1
387 #define MBOX_CMD_COPY_FLASH 0x0024
388 #define MBOX_CMD_WRITE_FLASH 0x0025
389 #define MBOX_CMD_READ_FLASH 0x0026
390 #define MBOX_CMD_CLEAR_DATABASE_ENTRY 0x0031
391 #define MBOX_CMD_CONN_OPEN 0x0074
392 #define MBOX_CMD_CONN_CLOSE_SESS_LOGOUT 0x0056
393 #define DDB_NOT_LOGGED_IN 0x09
394 #define LOGOUT_OPTION_CLOSE_SESSION 0x0002
395 #define LOGOUT_OPTION_RELOGIN 0x0004
396 #define LOGOUT_OPTION_FREE_DDB 0x0008
397 #define MBOX_CMD_SET_PARAM 0x0059
398 #define SET_DRVR_VERSION 0x200
399 #define MAX_DRVR_VER_LEN 24
400 #define MBOX_CMD_EXECUTE_IOCB_A64 0x005A
401 #define MBOX_CMD_INITIALIZE_FIRMWARE 0x0060
402 #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK 0x0061
403 #define MBOX_CMD_REQUEST_DATABASE_ENTRY 0x0062
404 #define MBOX_CMD_SET_DATABASE_ENTRY 0x0063
405 #define MBOX_CMD_GET_DATABASE_ENTRY 0x0064
406 #define DDB_DS_UNASSIGNED 0x00
407 #define DDB_DS_NO_CONNECTION_ACTIVE 0x01
408 #define DDB_DS_DISCOVERY 0x02
409 #define DDB_DS_SESSION_ACTIVE 0x04
410 #define DDB_DS_SESSION_FAILED 0x06
411 #define DDB_DS_LOGIN_IN_PROCESS 0x07
412 #define MBOX_CMD_GET_FW_STATE 0x0069
413 #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK_DEFAULTS 0x006A
414 #define MBOX_CMD_DIAG_TEST 0x0075
415 #define MBOX_CMD_GET_SYS_INFO 0x0078
416 #define MBOX_CMD_GET_NVRAM 0x0078
417 #define MBOX_CMD_SET_NVRAM 0x0079
418 #define MBOX_CMD_RESTORE_FACTORY_DEFAULTS 0x0087
419 #define MBOX_CMD_SET_ACB 0x0088
420 #define MBOX_CMD_GET_ACB 0x0089
421 #define MBOX_CMD_DISABLE_ACB 0x008A
422 #define MBOX_CMD_GET_IPV6_NEIGHBOR_CACHE 0x008B
423 #define MBOX_CMD_GET_IPV6_DEST_CACHE 0x008C
424 #define MBOX_CMD_GET_IPV6_DEF_ROUTER_LIST 0x008D
425 #define MBOX_CMD_GET_IPV6_LCL_PREFIX_LIST 0x008E
426 #define MBOX_CMD_SET_IPV6_NEIGHBOR_CACHE 0x0090
427 #define MBOX_CMD_GET_IP_ADDR_STATE 0x0091
428 #define MBOX_CMD_SEND_IPV6_ROUTER_SOL 0x0092
429 #define MBOX_CMD_GET_DB_ENTRY_CURRENT_IP_ADDR 0x0093
430 #define MBOX_CMD_SET_PORT_CONFIG 0x0122
431 #define MBOX_CMD_GET_PORT_CONFIG 0x0123
432 #define MBOX_CMD_SET_LED_CONFIG 0x0125
433 #define MBOX_CMD_GET_LED_CONFIG 0x0126
434 #define MBOX_CMD_MINIDUMP 0x0129
435
436
437 #define ENABLE_INTERNAL_LOOPBACK 0x04
438 #define ENABLE_EXTERNAL_LOOPBACK 0x08
439 #define ENABLE_DCBX 0x10
440
441
442 #define MINIDUMP_GET_SIZE_SUBCOMMAND 0x00
443 #define MINIDUMP_GET_TMPLT_SUBCOMMAND 0x01
444
445
446 #define FW_STATE_READY 0x0000
447 #define FW_STATE_CONFIG_WAIT 0x0001
448 #define FW_STATE_WAIT_AUTOCONNECT 0x0002
449 #define FW_STATE_ERROR 0x0004
450 #define FW_STATE_CONFIGURING_IP 0x0008
451
452
453 #define FW_ADDSTATE_OPTICAL_MEDIA 0x0001
454 #define FW_ADDSTATE_DHCPv4_ENABLED 0x0002
455 #define FW_ADDSTATE_DHCPv4_LEASE_ACQUIRED 0x0004
456 #define FW_ADDSTATE_DHCPv4_LEASE_EXPIRED 0x0008
457 #define FW_ADDSTATE_LINK_UP 0x0010
458 #define FW_ADDSTATE_ISNS_SVC_ENABLED 0x0020
459 #define FW_ADDSTATE_LINK_SPEED_10MBPS 0x0100
460 #define FW_ADDSTATE_LINK_SPEED_100MBPS 0x0200
461 #define FW_ADDSTATE_LINK_SPEED_1GBPS 0x0400
462 #define FW_ADDSTATE_LINK_SPEED_10GBPS 0x0800
463
464 #define MBOX_CMD_GET_DATABASE_ENTRY_DEFAULTS 0x006B
465 #define IPV6_DEFAULT_DDB_ENTRY 0x0001
466
467 #define MBOX_CMD_CONN_OPEN_SESS_LOGIN 0x0074
468 #define MBOX_CMD_GET_CRASH_RECORD 0x0076
469 #define MBOX_CMD_GET_CONN_EVENT_LOG 0x0077
470
471 #define MBOX_CMD_IDC_ACK 0x0101
472 #define MBOX_CMD_IDC_TIME_EXTEND 0x0102
473 #define MBOX_CMD_PORT_RESET 0x0120
474 #define MBOX_CMD_SET_PORT_CONFIG 0x0122
475
476
477 #define MBOX_COMPLETION_STATUS 4
478 #define MBOX_STS_BUSY 0x0007
479 #define MBOX_STS_INTERMEDIATE_COMPLETION 0x1000
480 #define MBOX_STS_COMMAND_COMPLETE 0x4000
481 #define MBOX_STS_COMMAND_ERROR 0x4005
482
483 #define MBOX_ASYNC_EVENT_STATUS 8
484 #define MBOX_ASTS_SYSTEM_ERROR 0x8002
485 #define MBOX_ASTS_REQUEST_TRANSFER_ERROR 0x8003
486 #define MBOX_ASTS_RESPONSE_TRANSFER_ERROR 0x8004
487 #define MBOX_ASTS_PROTOCOL_STATISTIC_ALARM 0x8005
488 #define MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED 0x8006
489 #define MBOX_ASTS_LINK_UP 0x8010
490 #define MBOX_ASTS_LINK_DOWN 0x8011
491 #define MBOX_ASTS_DATABASE_CHANGED 0x8014
492 #define MBOX_ASTS_UNSOLICITED_PDU_RECEIVED 0x8015
493 #define MBOX_ASTS_SELF_TEST_FAILED 0x8016
494 #define MBOX_ASTS_LOGIN_FAILED 0x8017
495 #define MBOX_ASTS_DNS 0x8018
496 #define MBOX_ASTS_HEARTBEAT 0x8019
497 #define MBOX_ASTS_NVRAM_INVALID 0x801A
498 #define MBOX_ASTS_MAC_ADDRESS_CHANGED 0x801B
499 #define MBOX_ASTS_IP_ADDRESS_CHANGED 0x801C
500 #define MBOX_ASTS_DHCP_LEASE_EXPIRED 0x801D
501 #define MBOX_ASTS_DHCP_LEASE_ACQUIRED 0x801F
502 #define MBOX_ASTS_ISNS_UNSOLICITED_PDU_RECEIVED 0x8021
503 #define MBOX_ASTS_DUPLICATE_IP 0x8025
504 #define MBOX_ASTS_ARP_COMPLETE 0x8026
505 #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
506 #define MBOX_ASTS_RESPONSE_QUEUE_FULL 0x8028
507 #define MBOX_ASTS_IP_ADDR_STATE_CHANGED 0x8029
508 #define MBOX_ASTS_IPV6_DEFAULT_ROUTER_CHANGED 0x802A
509 #define MBOX_ASTS_IPV6_LINK_MTU_CHANGE 0x802B
510 #define MBOX_ASTS_IPV6_AUTO_PREFIX_IGNORED 0x802C
511 #define MBOX_ASTS_IPV6_ND_LOCAL_PREFIX_IGNORED 0x802D
512 #define MBOX_ASTS_ICMPV6_ERROR_MSG_RCVD 0x802E
513 #define MBOX_ASTS_INITIALIZATION_FAILED 0x8031
514 #define MBOX_ASTS_SYSTEM_WARNING_EVENT 0x8036
515 #define MBOX_ASTS_IDC_COMPLETE 0x8100
516 #define MBOX_ASTS_IDC_REQUEST_NOTIFICATION 0x8101
517 #define MBOX_ASTS_IDC_TIME_EXTEND_NOTIFICATION 0x8102
518 #define MBOX_ASTS_DCBX_CONF_CHANGE 0x8110
519 #define MBOX_ASTS_TXSCVR_INSERTED 0x8130
520 #define MBOX_ASTS_TXSCVR_REMOVED 0x8131
521
522 #define ISNS_EVENT_DATA_RECEIVED 0x0000
523 #define ISNS_EVENT_CONNECTION_OPENED 0x0001
524 #define ISNS_EVENT_CONNECTION_FAILED 0x0002
525 #define MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR 0x8022
526 #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
527
528
529 #define ACB_CONFIG_DISABLE 0x00
530 #define ACB_CONFIG_SET 0x01
531
532
533 #define IP_ADDRSTATE_UNCONFIGURED 0
534 #define IP_ADDRSTATE_INVALID 1
535 #define IP_ADDRSTATE_ACQUIRING 2
536 #define IP_ADDRSTATE_TENTATIVE 3
537 #define IP_ADDRSTATE_DEPRICATED 4
538 #define IP_ADDRSTATE_PREFERRED 5
539 #define IP_ADDRSTATE_DISABLING 6
540
541
542 #define FLASH_SEGMENT_IFCB 0x04000000
543
544 #define FLASH_OPT_RMW_HOLD 0
545 #define FLASH_OPT_RMW_INIT 1
546 #define FLASH_OPT_COMMIT 2
547 #define FLASH_OPT_RMW_COMMIT 3
548
549
550 #define QL4_PARAM_DISABLE 0
551 #define QL4_PARAM_ENABLE 1
552
553
554
555
556 struct addr_ctrl_blk {
557 uint8_t version;
558 #define IFCB_VER_MIN 0x01
559 #define IFCB_VER_MAX 0x02
560 uint8_t control;
561 #define CTRLOPT_NEW_CONN_DISABLE 0x0002
562
563 uint16_t fw_options;
564 #define FWOPT_HEARTBEAT_ENABLE 0x1000
565 #define FWOPT_SESSION_MODE 0x0040
566 #define FWOPT_INITIATOR_MODE 0x0020
567 #define FWOPT_TARGET_MODE 0x0010
568 #define FWOPT_ENABLE_CRBDB 0x8000
569
570 uint16_t exec_throttle;
571 uint8_t zio_count;
572 uint8_t res0;
573 uint16_t eth_mtu_size;
574 uint16_t add_fw_options;
575 #define ADFWOPT_SERIALIZE_TASK_MGMT 0x0400
576 #define ADFWOPT_AUTOCONN_DISABLE 0x0002
577
578 uint8_t hb_interval;
579 uint8_t inst_num;
580 uint16_t res1;
581 uint16_t rqq_consumer_idx;
582 uint16_t compq_producer_idx;
583 uint16_t rqq_len;
584 uint16_t compq_len;
585 uint32_t rqq_addr_lo;
586 uint32_t rqq_addr_hi;
587 uint32_t compq_addr_lo;
588 uint32_t compq_addr_hi;
589 uint32_t shdwreg_addr_lo;
590 uint32_t shdwreg_addr_hi;
591
592 uint16_t iscsi_opts;
593 #define ISCSIOPTS_HEADER_DIGEST_EN 0x2000
594 #define ISCSIOPTS_DATA_DIGEST_EN 0x1000
595 #define ISCSIOPTS_IMMEDIATE_DATA_EN 0x0800
596 #define ISCSIOPTS_INITIAL_R2T_EN 0x0400
597 #define ISCSIOPTS_DATA_SEQ_INORDER_EN 0x0200
598 #define ISCSIOPTS_DATA_PDU_INORDER_EN 0x0100
599 #define ISCSIOPTS_CHAP_AUTH_EN 0x0080
600 #define ISCSIOPTS_SNACK_EN 0x0040
601 #define ISCSIOPTS_DISCOVERY_LOGOUT_EN 0x0020
602 #define ISCSIOPTS_BIDI_CHAP_EN 0x0010
603 #define ISCSIOPTS_DISCOVERY_AUTH_EN 0x0008
604 #define ISCSIOPTS_STRICT_LOGIN_COMP_EN 0x0004
605 #define ISCSIOPTS_ERL 0x0003
606 uint16_t ipv4_tcp_opts;
607 #define TCPOPT_DELAYED_ACK_DISABLE 0x8000
608 #define TCPOPT_DHCP_ENABLE 0x0200
609 #define TCPOPT_DNS_SERVER_IP_EN 0x0100
610 #define TCPOPT_SLP_DA_INFO_EN 0x0080
611 #define TCPOPT_NAGLE_ALGO_DISABLE 0x0020
612 #define TCPOPT_WINDOW_SCALE_DISABLE 0x0010
613 #define TCPOPT_TIMER_SCALE 0x000E
614 #define TCPOPT_TIMESTAMP_ENABLE 0x0001
615 uint16_t ipv4_ip_opts;
616 #define IPOPT_IPV4_PROTOCOL_ENABLE 0x8000
617 #define IPOPT_IPV4_TOS_EN 0x4000
618 #define IPOPT_VLAN_TAGGING_ENABLE 0x2000
619 #define IPOPT_GRAT_ARP_EN 0x1000
620 #define IPOPT_ALT_CID_EN 0x0800
621 #define IPOPT_REQ_VID_EN 0x0400
622 #define IPOPT_USE_VID_EN 0x0200
623 #define IPOPT_LEARN_IQN_EN 0x0100
624 #define IPOPT_FRAGMENTATION_DISABLE 0x0010
625 #define IPOPT_IN_FORWARD_EN 0x0008
626 #define IPOPT_ARP_REDIRECT_EN 0x0004
627
628 uint16_t iscsi_max_pdu_size;
629 uint8_t ipv4_tos;
630 uint8_t ipv4_ttl;
631 uint8_t acb_version;
632 #define ACB_NOT_SUPPORTED 0x00
633 #define ACB_SUPPORTED 0x02
634
635
636 uint8_t res2;
637 uint16_t def_timeout;
638 uint16_t iscsi_fburst_len;
639 uint16_t iscsi_def_time2wait;
640 uint16_t iscsi_def_time2retain;
641 uint16_t iscsi_max_outstnd_r2t;
642 uint16_t conn_ka_timeout;
643 uint16_t ipv4_port;
644 uint16_t iscsi_max_burst_len;
645 uint32_t res5;
646 uint8_t ipv4_addr[4];
647 uint16_t ipv4_vlan_tag;
648 uint8_t ipv4_addr_state;
649 uint8_t ipv4_cacheid;
650 uint8_t res6[8];
651 uint8_t ipv4_subnet[4];
652 uint8_t res7[12];
653 uint8_t ipv4_gw_addr[4];
654 uint8_t res8[0xc];
655 uint8_t pri_dns_srvr_ip[4];
656 uint8_t sec_dns_srvr_ip[4];
657 uint16_t min_eph_port;
658 uint16_t max_eph_port;
659 uint8_t res9[4];
660 uint8_t iscsi_alias[32];
661 uint8_t res9_1[0x16];
662 uint16_t tgt_portal_grp;
663 uint8_t abort_timer;
664 uint8_t ipv4_tcp_wsf;
665 uint8_t res10[6];
666 uint8_t ipv4_sec_ip_addr[4];
667 uint8_t ipv4_dhcp_vid_len;
668 uint8_t ipv4_dhcp_vid[11];
669 uint8_t res11[20];
670 uint8_t ipv4_dhcp_alt_cid_len;
671 uint8_t ipv4_dhcp_alt_cid[11];
672 uint8_t iscsi_name[224];
673 uint8_t res12[32];
674 uint32_t cookie;
675 uint16_t ipv6_port;
676 uint16_t ipv6_opts;
677 #define IPV6_OPT_IPV6_PROTOCOL_ENABLE 0x8000
678 #define IPV6_OPT_VLAN_TAGGING_ENABLE 0x2000
679 #define IPV6_OPT_GRAT_NEIGHBOR_ADV_EN 0x1000
680 #define IPV6_OPT_REDIRECT_EN 0x0004
681
682 uint16_t ipv6_addtl_opts;
683 #define IPV6_ADDOPT_IGNORE_ICMP_ECHO_REQ 0x0040
684 #define IPV6_ADDOPT_MLD_EN 0x0004
685 #define IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE 0x0002
686
687 #define IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR 0x0001
688
689 uint16_t ipv6_tcp_opts;
690 #define IPV6_TCPOPT_DELAYED_ACK_DISABLE 0x8000
691 #define IPV6_TCPOPT_NAGLE_ALGO_DISABLE 0x0020
692 #define IPV6_TCPOPT_WINDOW_SCALE_DISABLE 0x0010
693 #define IPV6_TCPOPT_TIMER_SCALE 0x000E
694 #define IPV6_TCPOPT_TIMESTAMP_EN 0x0001
695 uint8_t ipv6_tcp_wsf;
696 uint16_t ipv6_flow_lbl;
697 uint8_t ipv6_dflt_rtr_addr[16];
698 uint16_t ipv6_vlan_tag;
699 uint8_t ipv6_lnk_lcl_addr_state;
700 uint8_t ipv6_addr0_state;
701 uint8_t ipv6_addr1_state;
702 uint8_t ipv6_dflt_rtr_state;
703 #define IPV6_RTRSTATE_UNKNOWN 0
704 #define IPV6_RTRSTATE_MANUAL 1
705 #define IPV6_RTRSTATE_ADVERTISED 3
706 #define IPV6_RTRSTATE_STALE 4
707
708 uint8_t ipv6_traffic_class;
709 uint8_t ipv6_hop_limit;
710 uint8_t ipv6_if_id[8];
711 uint8_t ipv6_addr0[16];
712 uint8_t ipv6_addr1[16];
713 uint32_t ipv6_nd_reach_time;
714 uint32_t ipv6_nd_rexmit_timer;
715 uint32_t ipv6_nd_stale_timeout;
716 uint8_t ipv6_dup_addr_detect_count;
717 uint8_t ipv6_cache_id;
718 uint8_t res13[18];
719 uint32_t ipv6_gw_advrt_mtu;
720 uint8_t res14[140];
721 };
722
723 #define IP_ADDR_COUNT 4
724
725
726
727 #define IP_STATE_MASK 0x0F000000
728 #define IP_STATE_SHIFT 24
729
730 struct init_fw_ctrl_blk {
731 struct addr_ctrl_blk pri;
732
733 };
734
735 #define PRIMARI_ACB 0
736 #define SECONDARY_ACB 1
737
738 struct addr_ctrl_blk_def {
739 uint8_t reserved1[1];
740 uint8_t control;
741 uint8_t reserved2[11];
742 uint8_t inst_num;
743 uint8_t reserved3[34];
744 uint16_t iscsi_opts;
745 uint16_t ipv4_tcp_opts;
746 uint16_t ipv4_ip_opts;
747 uint16_t iscsi_max_pdu_size;
748 uint8_t ipv4_tos;
749 uint8_t ipv4_ttl;
750 uint8_t reserved4[2];
751 uint16_t def_timeout;
752 uint16_t iscsi_fburst_len;
753 uint8_t reserved5[4];
754 uint16_t iscsi_max_outstnd_r2t;
755 uint8_t reserved6[2];
756 uint16_t ipv4_port;
757 uint16_t iscsi_max_burst_len;
758 uint8_t reserved7[4];
759 uint8_t ipv4_addr[4];
760 uint16_t ipv4_vlan_tag;
761 uint8_t ipv4_addr_state;
762 uint8_t ipv4_cacheid;
763 uint8_t reserved8[8];
764 uint8_t ipv4_subnet[4];
765 uint8_t reserved9[12];
766 uint8_t ipv4_gw_addr[4];
767 uint8_t reserved10[84];
768 uint8_t abort_timer;
769 uint8_t ipv4_tcp_wsf;
770 uint8_t reserved11[10];
771 uint8_t ipv4_dhcp_vid_len;
772 uint8_t ipv4_dhcp_vid[11];
773 uint8_t reserved12[20];
774 uint8_t ipv4_dhcp_alt_cid_len;
775 uint8_t ipv4_dhcp_alt_cid[11];
776 uint8_t iscsi_name[224];
777 uint8_t reserved13[32];
778 uint32_t cookie;
779 uint16_t ipv6_port;
780 uint16_t ipv6_opts;
781 uint16_t ipv6_addtl_opts;
782 uint16_t ipv6_tcp_opts;
783 uint8_t ipv6_tcp_wsf;
784 uint16_t ipv6_flow_lbl;
785 uint8_t ipv6_dflt_rtr_addr[16];
786 uint16_t ipv6_vlan_tag;
787 uint8_t ipv6_lnk_lcl_addr_state;
788 uint8_t ipv6_addr0_state;
789 uint8_t ipv6_addr1_state;
790 uint8_t ipv6_dflt_rtr_state;
791 uint8_t ipv6_traffic_class;
792 uint8_t ipv6_hop_limit;
793 uint8_t ipv6_if_id[8];
794 uint8_t ipv6_addr0[16];
795 uint8_t ipv6_addr1[16];
796 uint32_t ipv6_nd_reach_time;
797 uint32_t ipv6_nd_rexmit_timer;
798 uint32_t ipv6_nd_stale_timeout;
799 uint8_t ipv6_dup_addr_detect_count;
800 uint8_t ipv6_cache_id;
801 uint8_t reserved14[18];
802 uint32_t ipv6_gw_advrt_mtu;
803 uint8_t reserved15[140];
804 };
805
806
807
808 #define MAX_CHAP_ENTRIES_40XX 128
809 #define MAX_CHAP_ENTRIES_82XX 1024
810 #define MAX_RESRV_CHAP_IDX 3
811 #define FLASH_CHAP_OFFSET 0x06000000
812
813 struct ql4_chap_table {
814 uint16_t link;
815 uint8_t flags;
816 uint8_t secret_len;
817 #define MIN_CHAP_SECRET_LEN 12
818 #define MAX_CHAP_SECRET_LEN 100
819 uint8_t secret[MAX_CHAP_SECRET_LEN];
820 #define MAX_CHAP_NAME_LEN 256
821 uint8_t name[MAX_CHAP_NAME_LEN];
822 uint16_t reserved;
823 #define CHAP_VALID_COOKIE 0x4092
824 #define CHAP_INVALID_COOKIE 0xFFEE
825 uint16_t cookie;
826 };
827
828 struct dev_db_entry {
829 uint16_t options;
830 #define DDB_OPT_DISC_SESSION 0x10
831 #define DDB_OPT_TARGET 0x02
832 #define DDB_OPT_IPV6_DEVICE 0x100
833 #define DDB_OPT_AUTO_SENDTGTS_DISABLE 0x40
834 #define DDB_OPT_IPV6_NULL_LINK_LOCAL 0x800
835 #define DDB_OPT_IPV6_FW_DEFINED_LINK_LOCAL 0x800
836
837 #define OPT_IS_FW_ASSIGNED_IPV6 11
838 #define OPT_IPV6_DEVICE 8
839 #define OPT_AUTO_SENDTGTS_DISABLE 6
840 #define OPT_DISC_SESSION 4
841 #define OPT_ENTRY_STATE 3
842 uint16_t exec_throttle;
843 uint16_t exec_count;
844 uint16_t res0;
845 uint16_t iscsi_options;
846 #define ISCSIOPT_HEADER_DIGEST_EN 13
847 #define ISCSIOPT_DATA_DIGEST_EN 12
848 #define ISCSIOPT_IMMEDIATE_DATA_EN 11
849 #define ISCSIOPT_INITIAL_R2T_EN 10
850 #define ISCSIOPT_DATA_SEQ_IN_ORDER 9
851 #define ISCSIOPT_DATA_PDU_IN_ORDER 8
852 #define ISCSIOPT_CHAP_AUTH_EN 7
853 #define ISCSIOPT_SNACK_REQ_EN 6
854 #define ISCSIOPT_DISCOVERY_LOGOUT_EN 5
855 #define ISCSIOPT_BIDI_CHAP_EN 4
856 #define ISCSIOPT_DISCOVERY_AUTH_OPTIONAL 3
857 #define ISCSIOPT_ERL1 1
858 #define ISCSIOPT_ERL0 0
859
860 uint16_t tcp_options;
861 #define TCPOPT_TIMESTAMP_STAT 6
862 #define TCPOPT_NAGLE_DISABLE 5
863 #define TCPOPT_WSF_DISABLE 4
864 #define TCPOPT_TIMER_SCALE3 3
865 #define TCPOPT_TIMER_SCALE2 2
866 #define TCPOPT_TIMER_SCALE1 1
867 #define TCPOPT_TIMESTAMP_EN 0
868
869 uint16_t ip_options;
870 #define IPOPT_FRAGMENT_DISABLE 4
871
872 uint16_t iscsi_max_rcv_data_seg_len;
873 #define BYTE_UNITS 512
874 uint32_t res1;
875 uint16_t iscsi_max_snd_data_seg_len;
876 uint16_t iscsi_first_burst_len;
877 uint16_t iscsi_def_time2wait;
878 uint16_t iscsi_def_time2retain;
879 uint16_t iscsi_max_outsnd_r2t;
880 uint16_t ka_timeout;
881 uint8_t isid[6];
882
883 uint16_t tsid;
884 uint16_t port;
885 uint16_t iscsi_max_burst_len;
886 uint16_t def_timeout;
887 uint16_t res2;
888 uint8_t ip_addr[0x10];
889 uint8_t iscsi_alias[0x20];
890 uint8_t tgt_addr[0x20];
891 uint16_t mss;
892 uint16_t res3;
893 uint16_t lcl_port;
894 uint8_t ipv4_tos;
895 uint16_t ipv6_flow_lbl;
896 uint8_t res4[0x36];
897 uint8_t iscsi_name[0xE0];
898
899
900
901 uint8_t link_local_ipv6_addr[0x10];
902 uint8_t res5[0x10];
903 #define DDB_NO_LINK 0xFFFF
904 #define DDB_ISNS 0xFFFD
905 uint16_t ddb_link;
906 uint16_t chap_tbl_idx;
907 uint16_t tgt_portal_grp;
908 uint8_t tcp_xmt_wsf;
909 uint8_t tcp_rcv_wsf;
910 uint32_t stat_sn;
911 uint32_t exp_stat_sn;
912 uint8_t res6[0x2b];
913 #define DDB_VALID_COOKIE 0x9034
914 uint16_t cookie;
915 uint16_t len;
916 };
917
918
919
920
921
922 #define FLASH_OFFSET_SYS_INFO 0x02000000
923 #define FLASH_DEFAULTBLOCKSIZE 0x20000
924 #define FLASH_EOF_OFFSET (FLASH_DEFAULTBLOCKSIZE-8)
925
926
927 #define FLASH_RAW_ACCESS_ADDR 0x8e000000
928
929 #define BOOT_PARAM_OFFSET_PORT0 0x3b0
930 #define BOOT_PARAM_OFFSET_PORT1 0x7b0
931
932 #define FLASH_OFFSET_DB_INFO 0x05000000
933 #define FLASH_OFFSET_DB_END (FLASH_OFFSET_DB_INFO + 0x7fff)
934
935
936 struct sys_info_phys_addr {
937 uint8_t address[6];
938 uint8_t filler[2];
939 };
940
941 struct flash_sys_info {
942 uint32_t cookie;
943 uint32_t physAddrCount;
944 struct sys_info_phys_addr physAddr[4];
945 uint8_t vendorId[128];
946 uint8_t productId[128];
947 uint32_t serialNumber;
948
949
950 uint32_t pciDeviceVendor;
951 uint32_t pciDeviceId;
952 uint32_t pciSubsysVendor;
953 uint32_t pciSubsysId;
954
955
956 uint32_t crumbs;
957
958 uint32_t enterpriseNumber;
959
960 uint32_t mtu;
961 uint32_t reserved0;
962 uint32_t crumbs2;
963 uint8_t acSerialNumber[16];
964 uint32_t crumbs3;
965
966
967
968
969 uint32_t reserved1[39];
970 };
971
972 struct mbx_sys_info {
973 uint8_t board_id_str[16];
974
975 uint16_t board_id;
976 uint16_t phys_port_cnt;
977 uint16_t port_num;
978
979 uint8_t mac_addr[6];
980 uint32_t iscsi_pci_func_cnt;
981 uint32_t pci_func;
982 unsigned char serial_number[16];
983 uint8_t reserved[12];
984 };
985
986 struct about_fw_info {
987 uint16_t fw_major;
988 uint16_t fw_minor;
989 uint16_t fw_patch;
990 uint16_t fw_build;
991 uint8_t fw_build_date[16];
992 uint8_t fw_build_time[16];
993 uint8_t fw_build_user[16];
994 uint16_t fw_load_source;
995
996
997
998
999 uint8_t reserved1[6];
1000 uint16_t iscsi_major;
1001 uint16_t iscsi_minor;
1002 uint16_t bootload_major;
1003 uint16_t bootload_minor;
1004 uint16_t bootload_patch;
1005 uint16_t bootload_build;
1006 uint8_t extended_timestamp[180];
1007 };
1008
1009 struct crash_record {
1010 uint16_t fw_major_version;
1011 uint16_t fw_minor_version;
1012 uint16_t fw_patch_version;
1013 uint16_t fw_build_version;
1014
1015 uint8_t build_date[16];
1016 uint8_t build_time[16];
1017 uint8_t build_user[16];
1018 uint8_t card_serial_num[16];
1019
1020 uint32_t time_of_crash_in_secs;
1021 uint32_t time_of_crash_in_ms;
1022
1023 uint16_t out_RISC_sd_num_frames;
1024 uint16_t OAP_sd_num_words;
1025 uint16_t IAP_sd_num_frames;
1026 uint16_t in_RISC_sd_num_words;
1027
1028 uint8_t reserved1[28];
1029
1030 uint8_t out_RISC_reg_dump[256];
1031 uint8_t in_RISC_reg_dump[256];
1032 uint8_t in_out_RISC_stack_dump[0];
1033 };
1034
1035 struct conn_event_log_entry {
1036 #define MAX_CONN_EVENT_LOG_ENTRIES 100
1037 uint32_t timestamp_sec;
1038 uint32_t timestamp_ms;
1039 uint16_t device_index;
1040 uint16_t fw_conn_state;
1041 uint8_t event_type;
1042 uint8_t error_code;
1043 uint16_t error_code_detail;
1044 uint8_t num_consecutive_events;
1045 uint8_t rsvd[3];
1046 };
1047
1048
1049
1050
1051
1052
1053 #define IOCB_MAX_CDB_LEN 16
1054 #define IOCB_MAX_SENSEDATA_LEN 32
1055 #define IOCB_MAX_EXT_SENSEDATA_LEN 60
1056
1057
1058 struct qla4_header {
1059 uint8_t entryType;
1060 #define ET_STATUS 0x03
1061 #define ET_MARKER 0x04
1062 #define ET_CONT_T1 0x0A
1063 #define ET_STATUS_CONTINUATION 0x10
1064 #define ET_CMND_T3 0x19
1065 #define ET_PASSTHRU0 0x3A
1066 #define ET_PASSTHRU_STATUS 0x3C
1067 #define ET_MBOX_CMD 0x38
1068 #define ET_MBOX_STATUS 0x39
1069
1070 uint8_t entryStatus;
1071 uint8_t systemDefined;
1072 #define SD_ISCSI_PDU 0x01
1073 uint8_t entryCount;
1074
1075
1076 };
1077
1078
1079 struct queue_entry {
1080 uint8_t data[60];
1081 uint32_t signature;
1082
1083 };
1084
1085
1086
1087 #define COMMAND_SEG_A64 1
1088 #define CONTINUE_SEG_A64 5
1089
1090
1091
1092 struct data_seg_a64 {
1093 struct {
1094 uint32_t addrLow;
1095 uint32_t addrHigh;
1096
1097 } base;
1098
1099 uint32_t count;
1100
1101 };
1102
1103
1104
1105 struct command_t3_entry {
1106 struct qla4_header hdr;
1107
1108 uint32_t handle;
1109 uint16_t target;
1110 uint16_t connection_id;
1111
1112 uint8_t control_flags;
1113
1114
1115 #define CF_WRITE 0x20
1116 #define CF_READ 0x40
1117 #define CF_NO_DATA 0x00
1118
1119
1120 #define CF_HEAD_TAG 0x03
1121 #define CF_ORDERED_TAG 0x02
1122 #define CF_SIMPLE_TAG 0x01
1123
1124
1125
1126
1127
1128
1129 uint8_t state_flags;
1130 uint8_t cmdRefNum;
1131 uint8_t reserved1;
1132 uint8_t cdb[IOCB_MAX_CDB_LEN];
1133 struct scsi_lun lun;
1134 uint32_t cmdSeqNum;
1135 uint16_t timeout;
1136 uint16_t dataSegCnt;
1137 uint32_t ttlByteCnt;
1138 struct data_seg_a64 dataseg[COMMAND_SEG_A64];
1139
1140 };
1141
1142
1143
1144 struct continuation_t1_entry {
1145 struct qla4_header hdr;
1146
1147 struct data_seg_a64 dataseg[CONTINUE_SEG_A64];
1148
1149 };
1150
1151
1152 #define COMMAND_SEG COMMAND_SEG_A64
1153 #define CONTINUE_SEG CONTINUE_SEG_A64
1154
1155 #define ET_COMMAND ET_CMND_T3
1156 #define ET_CONTINUE ET_CONT_T1
1157
1158
1159 struct qla4_marker_entry {
1160 struct qla4_header hdr;
1161
1162 uint32_t system_defined;
1163 uint16_t target;
1164 uint16_t modifier;
1165 #define MM_LUN_RESET 0
1166 #define MM_TGT_WARM_RESET 1
1167
1168 uint16_t flags;
1169 uint16_t reserved1;
1170 struct scsi_lun lun;
1171 uint64_t reserved2;
1172 uint64_t reserved3;
1173 uint64_t reserved4;
1174 uint64_t reserved5;
1175 uint64_t reserved6;
1176 };
1177
1178
1179 struct status_entry {
1180 struct qla4_header hdr;
1181
1182 uint32_t handle;
1183
1184 uint8_t scsiStatus;
1185 #define SCSI_CHECK_CONDITION 0x02
1186
1187 uint8_t iscsiFlags;
1188 #define ISCSI_FLAG_RESIDUAL_UNDER 0x02
1189 #define ISCSI_FLAG_RESIDUAL_OVER 0x04
1190
1191 uint8_t iscsiResponse;
1192
1193 uint8_t completionStatus;
1194 #define SCS_COMPLETE 0x00
1195 #define SCS_INCOMPLETE 0x01
1196 #define SCS_RESET_OCCURRED 0x04
1197 #define SCS_ABORTED 0x05
1198 #define SCS_TIMEOUT 0x06
1199 #define SCS_DATA_OVERRUN 0x07
1200 #define SCS_DATA_UNDERRUN 0x15
1201 #define SCS_QUEUE_FULL 0x1C
1202 #define SCS_DEVICE_UNAVAILABLE 0x28
1203 #define SCS_DEVICE_LOGGED_OUT 0x29
1204
1205 uint8_t reserved1;
1206
1207
1208
1209 uint8_t state_flags;
1210
1211 uint16_t senseDataByteCnt;
1212 uint32_t residualByteCnt;
1213 uint32_t bidiResidualByteCnt;
1214 uint32_t expSeqNum;
1215 uint32_t maxCmdSeqNum;
1216 uint8_t senseData[IOCB_MAX_SENSEDATA_LEN];
1217
1218 };
1219
1220
1221 struct status_cont_entry {
1222 struct qla4_header hdr;
1223 uint8_t ext_sense_data[IOCB_MAX_EXT_SENSEDATA_LEN];
1224 };
1225
1226 struct passthru0 {
1227 struct qla4_header hdr;
1228 uint32_t handle;
1229 uint16_t target;
1230 uint16_t connection_id;
1231 #define ISNS_DEFAULT_SERVER_CONN_ID ((uint16_t)0x8000)
1232
1233 uint16_t control_flags;
1234 #define PT_FLAG_ETHERNET_FRAME 0x8000
1235 #define PT_FLAG_ISNS_PDU 0x8000
1236 #define PT_FLAG_SEND_BUFFER 0x0200
1237 #define PT_FLAG_WAIT_4_RESPONSE 0x0100
1238 #define PT_FLAG_ISCSI_PDU 0x1000
1239
1240 uint16_t timeout;
1241 #define PT_DEFAULT_TIMEOUT 30
1242
1243 struct data_seg_a64 out_dsd;
1244 uint32_t res1;
1245 struct data_seg_a64 in_dsd;
1246 uint8_t res2[20];
1247 };
1248
1249 struct passthru_status {
1250 struct qla4_header hdr;
1251 uint32_t handle;
1252 uint16_t target;
1253 uint16_t connectionID;
1254
1255 uint8_t completionStatus;
1256 #define PASSTHRU_STATUS_COMPLETE 0x01
1257
1258 uint8_t residualFlags;
1259
1260 uint16_t timeout;
1261 uint16_t portNumber;
1262 uint8_t res1[10];
1263 uint32_t outResidual;
1264 uint8_t res2[12];
1265 uint32_t inResidual;
1266 uint8_t res4[16];
1267 };
1268
1269 struct mbox_cmd_iocb {
1270 struct qla4_header hdr;
1271 uint32_t handle;
1272 uint32_t in_mbox[8];
1273 uint32_t res1[6];
1274 };
1275
1276 struct mbox_status_iocb {
1277 struct qla4_header hdr;
1278 uint32_t handle;
1279 uint32_t out_mbox[8];
1280 uint32_t res1[6];
1281 };
1282
1283
1284
1285
1286 struct response {
1287 uint8_t data[60];
1288 uint32_t signature;
1289 #define RESPONSE_PROCESSED 0xDEADDEAD
1290 };
1291
1292 struct ql_iscsi_stats {
1293 uint64_t mac_tx_frames;
1294 uint64_t mac_tx_bytes;
1295 uint64_t mac_tx_multicast_frames;
1296 uint64_t mac_tx_broadcast_frames;
1297 uint64_t mac_tx_pause_frames;
1298 uint64_t mac_tx_control_frames;
1299 uint64_t mac_tx_deferral;
1300 uint64_t mac_tx_excess_deferral;
1301 uint64_t mac_tx_late_collision;
1302 uint64_t mac_tx_abort;
1303 uint64_t mac_tx_single_collision;
1304 uint64_t mac_tx_multiple_collision;
1305 uint64_t mac_tx_collision;
1306 uint64_t mac_tx_frames_dropped;
1307 uint64_t mac_tx_jumbo_frames;
1308 uint64_t mac_rx_frames;
1309 uint64_t mac_rx_bytes;
1310 uint64_t mac_rx_unknown_control_frames;
1311 uint64_t mac_rx_pause_frames;
1312 uint64_t mac_rx_control_frames;
1313 uint64_t mac_rx_dribble;
1314 uint64_t mac_rx_frame_length_error;
1315 uint64_t mac_rx_jabber;
1316 uint64_t mac_rx_carrier_sense_error;
1317 uint64_t mac_rx_frame_discarded;
1318 uint64_t mac_rx_frames_dropped;
1319 uint64_t mac_crc_error;
1320 uint64_t mac_encoding_error;
1321 uint64_t mac_rx_length_error_large;
1322 uint64_t mac_rx_length_error_small;
1323 uint64_t mac_rx_multicast_frames;
1324 uint64_t mac_rx_broadcast_frames;
1325 uint64_t ip_tx_packets;
1326 uint64_t ip_tx_bytes;
1327 uint64_t ip_tx_fragments;
1328 uint64_t ip_rx_packets;
1329 uint64_t ip_rx_bytes;
1330 uint64_t ip_rx_fragments;
1331 uint64_t ip_datagram_reassembly;
1332 uint64_t ip_invalid_address_error;
1333 uint64_t ip_error_packets;
1334 uint64_t ip_fragrx_overlap;
1335 uint64_t ip_fragrx_outoforder;
1336 uint64_t ip_datagram_reassembly_timeout;
1337 uint64_t ipv6_tx_packets;
1338 uint64_t ipv6_tx_bytes;
1339 uint64_t ipv6_tx_fragments;
1340 uint64_t ipv6_rx_packets;
1341 uint64_t ipv6_rx_bytes;
1342 uint64_t ipv6_rx_fragments;
1343 uint64_t ipv6_datagram_reassembly;
1344 uint64_t ipv6_invalid_address_error;
1345 uint64_t ipv6_error_packets;
1346 uint64_t ipv6_fragrx_overlap;
1347 uint64_t ipv6_fragrx_outoforder;
1348 uint64_t ipv6_datagram_reassembly_timeout;
1349 uint64_t tcp_tx_segments;
1350 uint64_t tcp_tx_bytes;
1351 uint64_t tcp_rx_segments;
1352 uint64_t tcp_rx_byte;
1353 uint64_t tcp_duplicate_ack_retx;
1354 uint64_t tcp_retx_timer_expired;
1355 uint64_t tcp_rx_duplicate_ack;
1356 uint64_t tcp_rx_pure_ackr;
1357 uint64_t tcp_tx_delayed_ack;
1358 uint64_t tcp_tx_pure_ack;
1359 uint64_t tcp_rx_segment_error;
1360 uint64_t tcp_rx_segment_outoforder;
1361 uint64_t tcp_rx_window_probe;
1362 uint64_t tcp_rx_window_update;
1363 uint64_t tcp_tx_window_probe_persist;
1364 uint64_t ecc_error_correction;
1365 uint64_t iscsi_pdu_tx;
1366 uint64_t iscsi_data_bytes_tx;
1367 uint64_t iscsi_pdu_rx;
1368 uint64_t iscsi_data_bytes_rx;
1369 uint64_t iscsi_io_completed;
1370 uint64_t iscsi_unexpected_io_rx;
1371 uint64_t iscsi_format_error;
1372 uint64_t iscsi_hdr_digest_error;
1373 uint64_t iscsi_data_digest_error;
1374 uint64_t iscsi_sequence_error;
1375 uint32_t tx_cmd_pdu;
1376 uint32_t tx_resp_pdu;
1377 uint32_t rx_cmd_pdu;
1378 uint32_t rx_resp_pdu;
1379
1380 uint64_t tx_data_octets;
1381 uint64_t rx_data_octets;
1382
1383 uint32_t hdr_digest_err;
1384 uint32_t data_digest_err;
1385 uint32_t conn_timeout_err;
1386 uint32_t framing_err;
1387
1388 uint32_t tx_nopout_pdus;
1389 uint32_t tx_scsi_cmd_pdus;
1390 uint32_t tx_tmf_cmd_pdus;
1391 uint32_t tx_login_cmd_pdus;
1392 uint32_t tx_text_cmd_pdus;
1393 uint32_t tx_scsi_write_pdus;
1394 uint32_t tx_logout_cmd_pdus;
1395 uint32_t tx_snack_req_pdus;
1396
1397 uint32_t rx_nopin_pdus;
1398 uint32_t rx_scsi_resp_pdus;
1399 uint32_t rx_tmf_resp_pdus;
1400 uint32_t rx_login_resp_pdus;
1401 uint32_t rx_text_resp_pdus;
1402 uint32_t rx_scsi_read_pdus;
1403 uint32_t rx_logout_resp_pdus;
1404
1405 uint32_t rx_r2t_pdus;
1406 uint32_t rx_async_pdus;
1407 uint32_t rx_reject_pdus;
1408
1409 uint8_t reserved2[264];
1410 };
1411
1412 #define QLA8XXX_DBG_STATE_ARRAY_LEN 16
1413 #define QLA8XXX_DBG_CAP_SIZE_ARRAY_LEN 8
1414 #define QLA8XXX_DBG_RSVD_ARRAY_LEN 8
1415 #define QLA83XX_DBG_OCM_WNDREG_ARRAY_LEN 16
1416 #define QLA83XX_SS_OCM_WNDREG_INDEX 3
1417 #define QLA83XX_SS_PCI_INDEX 0
1418 #define QLA8022_TEMPLATE_CAP_OFFSET 172
1419 #define QLA83XX_TEMPLATE_CAP_OFFSET 268
1420 #define QLA80XX_TEMPLATE_RESERVED_BITS 16
1421
1422 struct qla4_8xxx_minidump_template_hdr {
1423 uint32_t entry_type;
1424 uint32_t first_entry_offset;
1425 uint32_t size_of_template;
1426 uint32_t capture_debug_level;
1427 uint32_t num_of_entries;
1428 uint32_t version;
1429 uint32_t driver_timestamp;
1430 uint32_t checksum;
1431
1432 uint32_t driver_capture_mask;
1433 uint32_t driver_info_word2;
1434 uint32_t driver_info_word3;
1435 uint32_t driver_info_word4;
1436
1437 uint32_t saved_state_array[QLA8XXX_DBG_STATE_ARRAY_LEN];
1438 uint32_t capture_size_array[QLA8XXX_DBG_CAP_SIZE_ARRAY_LEN];
1439 uint32_t ocm_window_reg[QLA83XX_DBG_OCM_WNDREG_ARRAY_LEN];
1440 uint32_t capabilities[QLA80XX_TEMPLATE_RESERVED_BITS];
1441 };
1442
1443 #endif