2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2010 QLogic Corporation
5 * See LICENSE.qla4xxx for copyright and licensing details.
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
16 /*************************************************************************
18 * ISP 4010 I/O Register Set Structure and Definitions
20 *************************************************************************/
22 struct port_ctrl_stat_regs
{
23 __le32 ext_hw_conf
; /* 0x50 R/W */
24 __le32 rsrvd0
; /* 0x54 */
25 __le32 port_ctrl
; /* 0x58 */
26 __le32 port_status
; /* 0x5c */
27 __le32 rsrvd1
[32]; /* 0x60-0xdf */
28 __le32 gp_out
; /* 0xe0 */
29 __le32 gp_in
; /* 0xe4 */
30 __le32 rsrvd2
[5]; /* 0xe8-0xfb */
31 __le32 port_err_status
; /* 0xfc */
34 struct host_mem_cfg_regs
{
35 __le32 rsrvd0
[12]; /* 0x50-0x79 */
36 __le32 req_q_out
; /* 0x80 */
37 __le32 rsrvd1
[31]; /* 0x84-0xFF */
41 * ISP 82xx I/O Register Set structure definitions.
43 struct device_reg_82xx
{
44 __le32 req_q_out
; /* 0x0000 (R): Request Queue out-Pointer. */
45 __le32 reserve1
[63]; /* Request Queue out-Pointer. (64 * 4) */
46 __le32 rsp_q_in
; /* 0x0100 (R/W): Response Queue In-Pointer. */
47 __le32 reserve2
[63]; /* Response Queue In-Pointer. */
48 __le32 rsp_q_out
; /* 0x0200 (R/W): Response Queue Out-Pointer. */
49 __le32 reserve3
[63]; /* Response Queue Out-Pointer. */
51 __le32 mailbox_in
[8]; /* 0x0300 (R/W): Mail box In registers */
53 __le32 hint
; /* 0x0380 (R/W): Host interrupt register */
54 #define HINT_MBX_INT_PENDING BIT_0
56 __le32 mailbox_out
[8]; /* 0x0400 (R): Mail box Out registers */
59 __le32 host_status
; /* Offset 0x500 (R): host status */
60 #define HSRX_RISC_MB_INT BIT_0 /* RISC to Host Mailbox interrupt */
61 #define HSRX_RISC_IOCB_INT BIT_1 /* RISC to Host IOCB interrupt */
63 __le32 host_int
; /* Offset 0x0504 (R/W): Interrupt status. */
64 #define ISRX_82XX_RISC_INT BIT_0 /* RISC interrupt. */
67 /* remote register set (access via PCI memory read/write) */
69 #define MBOX_REG_COUNT 8
70 __le32 mailbox
[MBOX_REG_COUNT
];
72 __le32 flash_address
; /* 0x20 */
79 __le32 reserved1
[2]; /* 0x30 */
80 } __attribute__ ((packed
)) isp4010
;
83 __le32 nvram
; /* 0x30 */
85 } __attribute__ ((packed
)) isp4022
;
88 __le32 req_q_in
; /* SCSI Request Queue Producer Index */
89 __le32 rsp_q_out
; /* SCSI Completion Queue Consumer Index */
91 __le32 reserved2
[4]; /* 0x40 */
95 __le32 ext_hw_conf
; /* 0x50 */
100 __le32 reserved3
[8]; /* 0x60 */
102 __le32 req_q_out
; /* 0x80 */
104 __le32 reserved4
[23]; /* 0x84 */
106 __le32 gp_out
; /* 0xe0 */
111 __le32 port_err_status
; /* 0xfc */
112 } __attribute__ ((packed
)) isp4010
;
115 struct port_ctrl_stat_regs p0
;
116 struct host_mem_cfg_regs p1
;
118 } __attribute__ ((packed
)) isp4022
;
123 /* Semaphore Defines for 4010 */
124 #define QL4010_DRVR_SEM_BITS 0x00000030
125 #define QL4010_GPIO_SEM_BITS 0x000000c0
126 #define QL4010_SDRAM_SEM_BITS 0x00000300
127 #define QL4010_PHY_SEM_BITS 0x00000c00
128 #define QL4010_NVRAM_SEM_BITS 0x00003000
129 #define QL4010_FLASH_SEM_BITS 0x0000c000
131 #define QL4010_DRVR_SEM_MASK 0x00300000
132 #define QL4010_GPIO_SEM_MASK 0x00c00000
133 #define QL4010_SDRAM_SEM_MASK 0x03000000
134 #define QL4010_PHY_SEM_MASK 0x0c000000
135 #define QL4010_NVRAM_SEM_MASK 0x30000000
136 #define QL4010_FLASH_SEM_MASK 0xc0000000
138 /* Semaphore Defines for 4022 */
139 #define QL4022_RESOURCE_MASK_BASE_CODE 0x7
140 #define QL4022_RESOURCE_BITS_BASE_CODE 0x4
143 #define QL4022_DRVR_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (1+16))
144 #define QL4022_DDR_RAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (4+16))
145 #define QL4022_PHY_GIO_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (7+16))
146 #define QL4022_NVRAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (10+16))
147 #define QL4022_FLASH_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (13+16))
149 /* nvram address for 4032 */
150 #define NVRAM_PORT0_BOOT_MODE 0x03b1
151 #define NVRAM_PORT0_BOOT_PRI_TGT 0x03b2
152 #define NVRAM_PORT0_BOOT_SEC_TGT 0x03bb
153 #define NVRAM_PORT1_BOOT_MODE 0x07b1
154 #define NVRAM_PORT1_BOOT_PRI_TGT 0x07b2
155 #define NVRAM_PORT1_BOOT_SEC_TGT 0x07bb
158 /* Page # defines for 4022 */
159 #define PORT_CTRL_STAT_PAGE 0 /* 4022 */
160 #define HOST_MEM_CFG_PAGE 1 /* 4022 */
161 #define LOCAL_RAM_CFG_PAGE 2 /* 4022 */
162 #define PROT_STAT_PAGE 3 /* 4022 */
164 /* Register Mask - sets corresponding mask bits in the upper word */
165 static inline uint32_t set_rmask(uint32_t val
)
167 return (val
& 0xffff) | (val
<< 16);
171 static inline uint32_t clr_rmask(uint32_t val
)
173 return 0 | (val
<< 16);
176 /* ctrl_status definitions */
177 #define CSR_SCSI_PAGE_SELECT 0x00000003
178 #define CSR_SCSI_INTR_ENABLE 0x00000004 /* 4010 */
179 #define CSR_SCSI_RESET_INTR 0x00000008
180 #define CSR_SCSI_COMPLETION_INTR 0x00000010
181 #define CSR_SCSI_PROCESSOR_INTR 0x00000020
182 #define CSR_INTR_RISC 0x00000040
183 #define CSR_BOOT_ENABLE 0x00000080
184 #define CSR_NET_PAGE_SELECT 0x00000300 /* 4010 */
185 #define CSR_FUNC_NUM 0x00000700 /* 4022 */
186 #define CSR_NET_RESET_INTR 0x00000800 /* 4010 */
187 #define CSR_FORCE_SOFT_RESET 0x00002000 /* 4022 */
188 #define CSR_FATAL_ERROR 0x00004000
189 #define CSR_SOFT_RESET 0x00008000
190 #define ISP_CONTROL_FN_MASK CSR_FUNC_NUM
191 #define ISP_CONTROL_FN0_SCSI 0x0500
192 #define ISP_CONTROL_FN1_SCSI 0x0700
194 #define INTR_PENDING (CSR_SCSI_COMPLETION_INTR |\
195 CSR_SCSI_PROCESSOR_INTR |\
198 /* ISP InterruptMask definitions */
199 #define IMR_SCSI_INTR_ENABLE 0x00000004 /* 4022 */
201 /* ISP 4022 nvram definitions */
202 #define NVR_WRITE_ENABLE 0x00000010 /* 4022 */
204 #define QL4010_NVRAM_SIZE 0x200
205 #define QL40X2_NVRAM_SIZE 0x800
207 /* ISP port_status definitions */
209 /* ISP Semaphore definitions */
211 /* ISP General Purpose Output definitions */
212 #define GPOR_TOPCAT_RESET 0x00000004
214 /* shadow registers (DMA'd from HA to system memory. read only) */
216 /* SCSI Request Queue Consumer Index */
217 __le32 req_q_out
; /* 0 x0 R */
219 /* SCSI Completion Queue Producer Index */
220 __le32 rsp_q_in
; /* 4 x4 R */
224 /* External hardware configuration register */
225 union external_hw_config_reg
{
227 /* FIXME: Do we even need this? All values are
228 * referred to by 16 bit quantities. Platform and
229 * endianess issues. */
231 __le32 bSDRAMProtectionMethod
:2;
232 __le32 bSDRAMBanks
:1;
233 __le32 bSDRAMChipWidth
:1;
234 __le32 bSDRAMChipSize
:2;
235 __le32 bParityDisable
:1;
236 __le32 bExternalMemoryType
:1;
237 __le32 bFlashBIOSWriteEnable
:1;
238 __le32 bFlashUpperBankSelect
:1;
239 __le32 bWriteBurst
:2;
246 /* 82XX Support start */
247 /* 82xx Default FLT Addresses */
248 #define FA_FLASH_LAYOUT_ADDR_82 0xFC400
249 #define FA_FLASH_DESCR_ADDR_82 0xFC000
250 #define FA_BOOT_LOAD_ADDR_82 0x04000
251 #define FA_BOOT_CODE_ADDR_82 0x20000
252 #define FA_RISC_CODE_ADDR_82 0x40000
253 #define FA_GOLD_RISC_CODE_ADDR_82 0x80000
255 /* Flash Description Table */
256 struct qla_fdt_layout
{
267 uint8_t alt_erase_cmd
;
268 uint8_t wrt_enable_cmd
;
269 uint8_t wrt_enable_bits
;
270 uint8_t wrt_sts_reg_cmd
;
271 uint8_t unprotect_sec_cmd
;
272 uint8_t read_man_id_cmd
;
274 uint32_t alt_block_size
;
276 uint32_t wrt_enable_data
;
277 uint8_t read_id_addr_len
;
278 uint8_t wrt_disable_bits
;
279 uint8_t read_dev_id_len
;
280 uint8_t chip_erase_cmd
;
281 uint16_t read_timeout
;
282 uint8_t protect_sec_cmd
;
286 /* Flash Layout Table */
288 struct qla_flt_location
{
297 struct qla_flt_header
{
304 /* 82xx FLT Regions */
305 #define FLT_REG_FDT 0x1a
306 #define FLT_REG_FLT 0x1c
307 #define FLT_REG_BOOTLOAD_82 0x72
308 #define FLT_REG_FW_82 0x74
309 #define FLT_REG_GOLD_FW_82 0x75
310 #define FLT_REG_BOOT_CODE_82 0x78
311 #define FLT_REG_ISCSI_PARAM 0x65
313 struct qla_flt_region
{
320 /*************************************************************************
322 * Mailbox Commands Structures and Definitions
324 *************************************************************************/
326 /* Mailbox command definitions */
327 #define MBOX_CMD_ABOUT_FW 0x0009
328 #define MBOX_CMD_PING 0x000B
329 #define MBOX_CMD_ENABLE_INTRS 0x0010
330 #define INTR_DISABLE 0
331 #define INTR_ENABLE 1
332 #define MBOX_CMD_STOP_FW 0x0014
333 #define MBOX_CMD_ABORT_TASK 0x0015
334 #define MBOX_CMD_LUN_RESET 0x0016
335 #define MBOX_CMD_TARGET_WARM_RESET 0x0017
336 #define MBOX_CMD_GET_MANAGEMENT_DATA 0x001E
337 #define MBOX_CMD_GET_FW_STATUS 0x001F
338 #define MBOX_CMD_SET_ISNS_SERVICE 0x0021
339 #define ISNS_DISABLE 0
340 #define ISNS_ENABLE 1
341 #define MBOX_CMD_COPY_FLASH 0x0024
342 #define MBOX_CMD_WRITE_FLASH 0x0025
343 #define MBOX_CMD_READ_FLASH 0x0026
344 #define MBOX_CMD_CLEAR_DATABASE_ENTRY 0x0031
345 #define MBOX_CMD_CONN_OPEN 0x0074
346 #define MBOX_CMD_CONN_CLOSE_SESS_LOGOUT 0x0056
347 #define LOGOUT_OPTION_CLOSE_SESSION 0x0002
348 #define LOGOUT_OPTION_RELOGIN 0x0004
349 #define LOGOUT_OPTION_FREE_DDB 0x0008
350 #define MBOX_CMD_EXECUTE_IOCB_A64 0x005A
351 #define MBOX_CMD_INITIALIZE_FIRMWARE 0x0060
352 #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK 0x0061
353 #define MBOX_CMD_REQUEST_DATABASE_ENTRY 0x0062
354 #define MBOX_CMD_SET_DATABASE_ENTRY 0x0063
355 #define MBOX_CMD_GET_DATABASE_ENTRY 0x0064
356 #define DDB_DS_UNASSIGNED 0x00
357 #define DDB_DS_NO_CONNECTION_ACTIVE 0x01
358 #define DDB_DS_DISCOVERY 0x02
359 #define DDB_DS_SESSION_ACTIVE 0x04
360 #define DDB_DS_SESSION_FAILED 0x06
361 #define DDB_DS_LOGIN_IN_PROCESS 0x07
362 #define MBOX_CMD_GET_FW_STATE 0x0069
363 #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK_DEFAULTS 0x006A
364 #define MBOX_CMD_GET_SYS_INFO 0x0078
365 #define MBOX_CMD_GET_NVRAM 0x0078 /* For 40xx */
366 #define MBOX_CMD_SET_NVRAM 0x0079 /* For 40xx */
367 #define MBOX_CMD_RESTORE_FACTORY_DEFAULTS 0x0087
368 #define MBOX_CMD_SET_ACB 0x0088
369 #define MBOX_CMD_GET_ACB 0x0089
370 #define MBOX_CMD_DISABLE_ACB 0x008A
371 #define MBOX_CMD_GET_IPV6_NEIGHBOR_CACHE 0x008B
372 #define MBOX_CMD_GET_IPV6_DEST_CACHE 0x008C
373 #define MBOX_CMD_GET_IPV6_DEF_ROUTER_LIST 0x008D
374 #define MBOX_CMD_GET_IPV6_LCL_PREFIX_LIST 0x008E
375 #define MBOX_CMD_SET_IPV6_NEIGHBOR_CACHE 0x0090
376 #define MBOX_CMD_GET_IP_ADDR_STATE 0x0091
377 #define MBOX_CMD_SEND_IPV6_ROUTER_SOL 0x0092
378 #define MBOX_CMD_GET_DB_ENTRY_CURRENT_IP_ADDR 0x0093
381 #define FW_STATE_READY 0x0000
382 #define FW_STATE_CONFIG_WAIT 0x0001
383 #define FW_STATE_WAIT_AUTOCONNECT 0x0002
384 #define FW_STATE_ERROR 0x0004
385 #define FW_STATE_CONFIGURING_IP 0x0008
388 #define FW_ADDSTATE_OPTICAL_MEDIA 0x0001
389 #define FW_ADDSTATE_DHCPv4_ENABLED 0x0002
390 #define FW_ADDSTATE_DHCPv4_LEASE_ACQUIRED 0x0004
391 #define FW_ADDSTATE_DHCPv4_LEASE_EXPIRED 0x0008
392 #define FW_ADDSTATE_LINK_UP 0x0010
393 #define FW_ADDSTATE_ISNS_SVC_ENABLED 0x0020
395 #define MBOX_CMD_GET_DATABASE_ENTRY_DEFAULTS 0x006B
396 #define IPV6_DEFAULT_DDB_ENTRY 0x0001
398 #define MBOX_CMD_CONN_OPEN_SESS_LOGIN 0x0074
399 #define MBOX_CMD_GET_CRASH_RECORD 0x0076 /* 4010 only */
400 #define MBOX_CMD_GET_CONN_EVENT_LOG 0x0077
402 /* Mailbox status definitions */
403 #define MBOX_COMPLETION_STATUS 4
404 #define MBOX_STS_BUSY 0x0007
405 #define MBOX_STS_INTERMEDIATE_COMPLETION 0x1000
406 #define MBOX_STS_COMMAND_COMPLETE 0x4000
407 #define MBOX_STS_COMMAND_ERROR 0x4005
409 #define MBOX_ASYNC_EVENT_STATUS 8
410 #define MBOX_ASTS_SYSTEM_ERROR 0x8002
411 #define MBOX_ASTS_REQUEST_TRANSFER_ERROR 0x8003
412 #define MBOX_ASTS_RESPONSE_TRANSFER_ERROR 0x8004
413 #define MBOX_ASTS_PROTOCOL_STATISTIC_ALARM 0x8005
414 #define MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED 0x8006
415 #define MBOX_ASTS_LINK_UP 0x8010
416 #define MBOX_ASTS_LINK_DOWN 0x8011
417 #define MBOX_ASTS_DATABASE_CHANGED 0x8014
418 #define MBOX_ASTS_UNSOLICITED_PDU_RECEIVED 0x8015
419 #define MBOX_ASTS_SELF_TEST_FAILED 0x8016
420 #define MBOX_ASTS_LOGIN_FAILED 0x8017
421 #define MBOX_ASTS_DNS 0x8018
422 #define MBOX_ASTS_HEARTBEAT 0x8019
423 #define MBOX_ASTS_NVRAM_INVALID 0x801A
424 #define MBOX_ASTS_MAC_ADDRESS_CHANGED 0x801B
425 #define MBOX_ASTS_IP_ADDRESS_CHANGED 0x801C
426 #define MBOX_ASTS_DHCP_LEASE_EXPIRED 0x801D
427 #define MBOX_ASTS_DHCP_LEASE_ACQUIRED 0x801F
428 #define MBOX_ASTS_ISNS_UNSOLICITED_PDU_RECEIVED 0x8021
429 #define MBOX_ASTS_DUPLICATE_IP 0x8025
430 #define MBOX_ASTS_ARP_COMPLETE 0x8026
431 #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
432 #define MBOX_ASTS_RESPONSE_QUEUE_FULL 0x8028
433 #define MBOX_ASTS_IP_ADDR_STATE_CHANGED 0x8029
434 #define MBOX_ASTS_IPV6_PREFIX_EXPIRED 0x802B
435 #define MBOX_ASTS_IPV6_ND_PREFIX_IGNORED 0x802C
436 #define MBOX_ASTS_IPV6_LCL_PREFIX_IGNORED 0x802D
437 #define MBOX_ASTS_ICMPV6_ERROR_MSG_RCVD 0x802E
438 #define MBOX_ASTS_TXSCVR_INSERTED 0x8130
439 #define MBOX_ASTS_TXSCVR_REMOVED 0x8131
441 #define ISNS_EVENT_DATA_RECEIVED 0x0000
442 #define ISNS_EVENT_CONNECTION_OPENED 0x0001
443 #define ISNS_EVENT_CONNECTION_FAILED 0x0002
444 #define MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR 0x8022
445 #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
447 /* ACB State Defines */
448 #define ACB_STATE_UNCONFIGURED 0x00
449 #define ACB_STATE_INVALID 0x01
450 #define ACB_STATE_ACQUIRING 0x02
451 #define ACB_STATE_TENTATIVE 0x03
452 #define ACB_STATE_DEPRICATED 0x04
453 #define ACB_STATE_VALID 0x05
454 #define ACB_STATE_DISABLING 0x06
457 #define FLASH_SEGMENT_IFCB 0x04000000
459 #define FLASH_OPT_RMW_HOLD 0
460 #define FLASH_OPT_RMW_INIT 1
461 #define FLASH_OPT_COMMIT 2
462 #define FLASH_OPT_RMW_COMMIT 3
464 /*************************************************************************/
466 /* Host Adapter Initialization Control Block (from host) */
467 struct addr_ctrl_blk
{
468 uint8_t version
; /* 00 */
469 #define IFCB_VER_MIN 0x01
470 #define IFCB_VER_MAX 0x02
471 uint8_t control
; /* 01 */
473 uint16_t fw_options
; /* 02-03 */
474 #define FWOPT_HEARTBEAT_ENABLE 0x1000
475 #define FWOPT_SESSION_MODE 0x0040
476 #define FWOPT_INITIATOR_MODE 0x0020
477 #define FWOPT_TARGET_MODE 0x0010
478 #define FWOPT_ENABLE_CRBDB 0x8000
480 uint16_t exec_throttle
; /* 04-05 */
481 uint8_t zio_count
; /* 06 */
482 uint8_t res0
; /* 07 */
483 uint16_t eth_mtu_size
; /* 08-09 */
484 uint16_t add_fw_options
; /* 0A-0B */
485 #define ADFWOPT_SERIALIZE_TASK_MGMT 0x0400
486 #define ADFWOPT_AUTOCONN_DISABLE 0x0002
488 uint8_t hb_interval
; /* 0C */
489 uint8_t inst_num
; /* 0D */
490 uint16_t res1
; /* 0E-0F */
491 uint16_t rqq_consumer_idx
; /* 10-11 */
492 uint16_t compq_producer_idx
; /* 12-13 */
493 uint16_t rqq_len
; /* 14-15 */
494 uint16_t compq_len
; /* 16-17 */
495 uint32_t rqq_addr_lo
; /* 18-1B */
496 uint32_t rqq_addr_hi
; /* 1C-1F */
497 uint32_t compq_addr_lo
; /* 20-23 */
498 uint32_t compq_addr_hi
; /* 24-27 */
499 uint32_t shdwreg_addr_lo
; /* 28-2B */
500 uint32_t shdwreg_addr_hi
; /* 2C-2F */
502 uint16_t iscsi_opts
; /* 30-31 */
503 uint16_t ipv4_tcp_opts
; /* 32-33 */
504 #define TCPOPT_DHCP_ENABLE 0x0200
505 uint16_t ipv4_ip_opts
; /* 34-35 */
506 #define IPOPT_IPV4_PROTOCOL_ENABLE 0x8000
507 #define IPOPT_VLAN_TAGGING_ENABLE 0x2000
509 uint16_t iscsi_max_pdu_size
; /* 36-37 */
510 uint8_t ipv4_tos
; /* 38 */
511 uint8_t ipv4_ttl
; /* 39 */
512 uint8_t acb_version
; /* 3A */
513 #define ACB_NOT_SUPPORTED 0x00
514 #define ACB_SUPPORTED 0x02 /* Capable of ACB Version 2
517 uint8_t res2
; /* 3B */
518 uint16_t def_timeout
; /* 3C-3D */
519 uint16_t iscsi_fburst_len
; /* 3E-3F */
520 uint16_t iscsi_def_time2wait
; /* 40-41 */
521 uint16_t iscsi_def_time2retain
; /* 42-43 */
522 uint16_t iscsi_max_outstnd_r2t
; /* 44-45 */
523 uint16_t conn_ka_timeout
; /* 46-47 */
524 uint16_t ipv4_port
; /* 48-49 */
525 uint16_t iscsi_max_burst_len
; /* 4A-4B */
526 uint32_t res5
; /* 4C-4F */
527 uint8_t ipv4_addr
[4]; /* 50-53 */
528 uint16_t ipv4_vlan_tag
; /* 54-55 */
529 uint8_t ipv4_addr_state
; /* 56 */
530 uint8_t ipv4_cacheid
; /* 57 */
531 uint8_t res6
[8]; /* 58-5F */
532 uint8_t ipv4_subnet
[4]; /* 60-63 */
533 uint8_t res7
[12]; /* 64-6F */
534 uint8_t ipv4_gw_addr
[4]; /* 70-73 */
535 uint8_t res8
[0xc]; /* 74-7F */
536 uint8_t pri_dns_srvr_ip
[4];/* 80-83 */
537 uint8_t sec_dns_srvr_ip
[4];/* 84-87 */
538 uint16_t min_eph_port
; /* 88-89 */
539 uint16_t max_eph_port
; /* 8A-8B */
540 uint8_t res9
[4]; /* 8C-8F */
541 uint8_t iscsi_alias
[32];/* 90-AF */
542 uint8_t res9_1
[0x16]; /* B0-C5 */
543 uint16_t tgt_portal_grp
;/* C6-C7 */
544 uint8_t abort_timer
; /* C8 */
545 uint8_t ipv4_tcp_wsf
; /* C9 */
546 uint8_t res10
[6]; /* CA-CF */
547 uint8_t ipv4_sec_ip_addr
[4]; /* D0-D3 */
548 uint8_t ipv4_dhcp_vid_len
; /* D4 */
549 uint8_t ipv4_dhcp_vid
[11]; /* D5-DF */
550 uint8_t res11
[20]; /* E0-F3 */
551 uint8_t ipv4_dhcp_alt_cid_len
; /* F4 */
552 uint8_t ipv4_dhcp_alt_cid
[11]; /* F5-FF */
553 uint8_t iscsi_name
[224]; /* 100-1DF */
554 uint8_t res12
[32]; /* 1E0-1FF */
555 uint32_t cookie
; /* 200-203 */
556 uint16_t ipv6_port
; /* 204-205 */
557 uint16_t ipv6_opts
; /* 206-207 */
558 #define IPV6_OPT_IPV6_PROTOCOL_ENABLE 0x8000
559 #define IPV6_OPT_VLAN_TAGGING_ENABLE 0x2000
561 uint16_t ipv6_addtl_opts
; /* 208-209 */
562 #define IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE 0x0002 /* Pri ACB
564 #define IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR 0x0001
566 uint16_t ipv6_tcp_opts
; /* 20A-20B */
567 uint8_t ipv6_tcp_wsf
; /* 20C */
568 uint16_t ipv6_flow_lbl
; /* 20D-20F */
569 uint8_t ipv6_dflt_rtr_addr
[16]; /* 210-21F */
570 uint16_t ipv6_vlan_tag
; /* 220-221 */
571 uint8_t ipv6_lnk_lcl_addr_state
;/* 222 */
572 uint8_t ipv6_addr0_state
; /* 223 */
573 uint8_t ipv6_addr1_state
; /* 224 */
574 #define IP_ADDRSTATE_UNCONFIGURED 0
575 #define IP_ADDRSTATE_INVALID 1
576 #define IP_ADDRSTATE_ACQUIRING 2
577 #define IP_ADDRSTATE_TENTATIVE 3
578 #define IP_ADDRSTATE_DEPRICATED 4
579 #define IP_ADDRSTATE_PREFERRED 5
580 #define IP_ADDRSTATE_DISABLING 6
582 uint8_t ipv6_dflt_rtr_state
; /* 225 */
583 #define IPV6_RTRSTATE_UNKNOWN 0
584 #define IPV6_RTRSTATE_MANUAL 1
585 #define IPV6_RTRSTATE_ADVERTISED 3
586 #define IPV6_RTRSTATE_STALE 4
588 uint8_t ipv6_traffic_class
; /* 226 */
589 uint8_t ipv6_hop_limit
; /* 227 */
590 uint8_t ipv6_if_id
[8]; /* 228-22F */
591 uint8_t ipv6_addr0
[16]; /* 230-23F */
592 uint8_t ipv6_addr1
[16]; /* 240-24F */
593 uint32_t ipv6_nd_reach_time
; /* 250-253 */
594 uint32_t ipv6_nd_rexmit_timer
; /* 254-257 */
595 uint32_t ipv6_nd_stale_timeout
; /* 258-25B */
596 uint8_t ipv6_dup_addr_detect_count
; /* 25C */
597 uint8_t ipv6_cache_id
; /* 25D */
598 uint8_t res13
[18]; /* 25E-26F */
599 uint32_t ipv6_gw_advrt_mtu
; /* 270-273 */
600 uint8_t res14
[140]; /* 274-2FF */
603 struct init_fw_ctrl_blk
{
604 struct addr_ctrl_blk pri
;
605 /* struct addr_ctrl_blk sec;*/
608 #define PRIMARI_ACB 0
609 #define SECONDARY_ACB 1
611 struct addr_ctrl_blk_def
{
612 uint8_t reserved1
[1]; /* 00 */
613 uint8_t control
; /* 01 */
614 uint8_t reserved2
[11]; /* 02-0C */
615 uint8_t inst_num
; /* 0D */
616 uint8_t reserved3
[34]; /* 0E-2F */
617 uint16_t iscsi_opts
; /* 30-31 */
618 uint16_t ipv4_tcp_opts
; /* 32-33 */
619 uint16_t ipv4_ip_opts
; /* 34-35 */
620 uint16_t iscsi_max_pdu_size
; /* 36-37 */
621 uint8_t ipv4_tos
; /* 38 */
622 uint8_t ipv4_ttl
; /* 39 */
623 uint8_t reserved4
[2]; /* 3A-3B */
624 uint16_t def_timeout
; /* 3C-3D */
625 uint16_t iscsi_fburst_len
; /* 3E-3F */
626 uint8_t reserved5
[4]; /* 40-43 */
627 uint16_t iscsi_max_outstnd_r2t
; /* 44-45 */
628 uint8_t reserved6
[2]; /* 46-47 */
629 uint16_t ipv4_port
; /* 48-49 */
630 uint16_t iscsi_max_burst_len
; /* 4A-4B */
631 uint8_t reserved7
[4]; /* 4C-4F */
632 uint8_t ipv4_addr
[4]; /* 50-53 */
633 uint16_t ipv4_vlan_tag
; /* 54-55 */
634 uint8_t ipv4_addr_state
; /* 56 */
635 uint8_t ipv4_cacheid
; /* 57 */
636 uint8_t reserved8
[8]; /* 58-5F */
637 uint8_t ipv4_subnet
[4]; /* 60-63 */
638 uint8_t reserved9
[12]; /* 64-6F */
639 uint8_t ipv4_gw_addr
[4]; /* 70-73 */
640 uint8_t reserved10
[84]; /* 74-C7 */
641 uint8_t abort_timer
; /* C8 */
642 uint8_t ipv4_tcp_wsf
; /* C9 */
643 uint8_t reserved11
[10]; /* CA-D3 */
644 uint8_t ipv4_dhcp_vid_len
; /* D4 */
645 uint8_t ipv4_dhcp_vid
[11]; /* D5-DF */
646 uint8_t reserved12
[20]; /* E0-F3 */
647 uint8_t ipv4_dhcp_alt_cid_len
; /* F4 */
648 uint8_t ipv4_dhcp_alt_cid
[11]; /* F5-FF */
649 uint8_t iscsi_name
[224]; /* 100-1DF */
650 uint8_t reserved13
[32]; /* 1E0-1FF */
651 uint32_t cookie
; /* 200-203 */
652 uint16_t ipv6_port
; /* 204-205 */
653 uint16_t ipv6_opts
; /* 206-207 */
654 uint16_t ipv6_addtl_opts
; /* 208-209 */
655 uint16_t ipv6_tcp_opts
; /* 20A-20B */
656 uint8_t ipv6_tcp_wsf
; /* 20C */
657 uint16_t ipv6_flow_lbl
; /* 20D-20F */
658 uint8_t ipv6_dflt_rtr_addr
[16]; /* 210-21F */
659 uint16_t ipv6_vlan_tag
; /* 220-221 */
660 uint8_t ipv6_lnk_lcl_addr_state
; /* 222 */
661 uint8_t ipv6_addr0_state
; /* 223 */
662 uint8_t ipv6_addr1_state
; /* 224 */
663 uint8_t ipv6_dflt_rtr_state
; /* 225 */
664 uint8_t ipv6_traffic_class
; /* 226 */
665 uint8_t ipv6_hop_limit
; /* 227 */
666 uint8_t ipv6_if_id
[8]; /* 228-22F */
667 uint8_t ipv6_addr0
[16]; /* 230-23F */
668 uint8_t ipv6_addr1
[16]; /* 240-24F */
669 uint32_t ipv6_nd_reach_time
; /* 250-253 */
670 uint32_t ipv6_nd_rexmit_timer
; /* 254-257 */
671 uint32_t ipv6_nd_stale_timeout
; /* 258-25B */
672 uint8_t ipv6_dup_addr_detect_count
; /* 25C */
673 uint8_t ipv6_cache_id
; /* 25D */
674 uint8_t reserved14
[18]; /* 25E-26F */
675 uint32_t ipv6_gw_advrt_mtu
; /* 270-273 */
676 uint8_t reserved15
[140]; /* 274-2FF */
679 /*************************************************************************/
681 #define MAX_CHAP_ENTRIES_40XX 128
682 #define MAX_CHAP_ENTRIES_82XX 1024
684 struct ql4_chap_table
{
688 #define MIN_CHAP_SECRET_LEN 12
689 #define MAX_CHAP_SECRET_LEN 100
690 uint8_t secret
[MAX_CHAP_SECRET_LEN
];
691 #define MAX_CHAP_NAME_LEN 256
692 uint8_t name
[MAX_CHAP_NAME_LEN
];
694 #define CHAP_VALID_COOKIE 0x4092
695 #define CHAP_INVALID_COOKIE 0xFFEE
699 struct dev_db_entry
{
700 uint16_t options
; /* 00-01 */
701 #define DDB_OPT_DISC_SESSION 0x10
702 #define DDB_OPT_TARGET 0x02 /* device is a target */
703 #define DDB_OPT_IPV6_DEVICE 0x100
704 #define DDB_OPT_AUTO_SENDTGTS_DISABLE 0x40
705 #define DDB_OPT_IPV6_NULL_LINK_LOCAL 0x800 /* post connection */
706 #define DDB_OPT_IPV6_FW_DEFINED_LINK_LOCAL 0x800 /* pre connection */
708 uint16_t exec_throttle
; /* 02-03 */
709 uint16_t exec_count
; /* 04-05 */
710 uint16_t res0
; /* 06-07 */
711 uint16_t iscsi_options
; /* 08-09 */
712 uint16_t tcp_options
; /* 0A-0B */
713 uint16_t ip_options
; /* 0C-0D */
714 uint16_t iscsi_max_rcv_data_seg_len
; /* 0E-0F */
715 #define BYTE_UNITS 512
716 uint32_t res1
; /* 10-13 */
717 uint16_t iscsi_max_snd_data_seg_len
; /* 14-15 */
718 uint16_t iscsi_first_burst_len
; /* 16-17 */
719 uint16_t iscsi_def_time2wait
; /* 18-19 */
720 uint16_t iscsi_def_time2retain
; /* 1A-1B */
721 uint16_t iscsi_max_outsnd_r2t
; /* 1C-1D */
722 uint16_t ka_timeout
; /* 1E-1F */
723 uint8_t isid
[6]; /* 20-25 big-endian, must be converted
724 * to little-endian */
725 uint16_t tsid
; /* 26-27 */
726 uint16_t port
; /* 28-29 */
727 uint16_t iscsi_max_burst_len
; /* 2A-2B */
728 uint16_t def_timeout
; /* 2C-2D */
729 uint16_t res2
; /* 2E-2F */
730 uint8_t ip_addr
[0x10]; /* 30-3F */
731 uint8_t iscsi_alias
[0x20]; /* 40-5F */
732 uint8_t tgt_addr
[0x20]; /* 60-7F */
733 uint16_t mss
; /* 80-81 */
734 uint16_t res3
; /* 82-83 */
735 uint16_t lcl_port
; /* 84-85 */
736 uint8_t ipv4_tos
; /* 86 */
737 uint16_t ipv6_flow_lbl
; /* 87-89 */
738 uint8_t res4
[0x36]; /* 8A-BF */
739 uint8_t iscsi_name
[0xE0]; /* C0-19F : xxzzy Make this a
740 * pointer to a string so we
741 * don't have to reserve soooo
743 uint8_t link_local_ipv6_addr
[0x10]; /* 1A0-1AF */
744 uint8_t res5
[0x10]; /* 1B0-1BF */
745 uint16_t ddb_link
; /* 1C0-1C1 */
746 uint16_t chap_tbl_idx
; /* 1C2-1C3 */
747 uint16_t tgt_portal_grp
; /* 1C4-1C5 */
748 uint8_t tcp_xmt_wsf
; /* 1C6 */
749 uint8_t tcp_rcv_wsf
; /* 1C7 */
750 uint32_t stat_sn
; /* 1C8-1CB */
751 uint32_t exp_stat_sn
; /* 1CC-1CF */
752 uint8_t res6
[0x2b]; /* 1D0-1FB */
753 #define DDB_VALID_COOKIE 0x9034
754 uint16_t cookie
; /* 1FC-1FD */
755 uint16_t len
; /* 1FE-1FF */
758 /*************************************************************************/
760 /* Flash definitions */
762 #define FLASH_OFFSET_SYS_INFO 0x02000000
763 #define FLASH_DEFAULTBLOCKSIZE 0x20000
764 #define FLASH_EOF_OFFSET (FLASH_DEFAULTBLOCKSIZE-8) /* 4 bytes
767 #define FLASH_RAW_ACCESS_ADDR 0x8e000000
769 #define BOOT_PARAM_OFFSET_PORT0 0x3b0
770 #define BOOT_PARAM_OFFSET_PORT1 0x7b0
772 #define FLASH_OFFSET_DB_INFO 0x05000000
773 #define FLASH_OFFSET_DB_END (FLASH_OFFSET_DB_INFO + 0x7fff)
776 struct sys_info_phys_addr
{
777 uint8_t address
[6]; /* 00-05 */
778 uint8_t filler
[2]; /* 06-07 */
781 struct flash_sys_info
{
782 uint32_t cookie
; /* 00-03 */
783 uint32_t physAddrCount
; /* 04-07 */
784 struct sys_info_phys_addr physAddr
[4]; /* 08-27 */
785 uint8_t vendorId
[128]; /* 28-A7 */
786 uint8_t productId
[128]; /* A8-127 */
787 uint32_t serialNumber
; /* 128-12B */
789 /* PCI Configuration values */
790 uint32_t pciDeviceVendor
; /* 12C-12F */
791 uint32_t pciDeviceId
; /* 130-133 */
792 uint32_t pciSubsysVendor
; /* 134-137 */
793 uint32_t pciSubsysId
; /* 138-13B */
795 /* This validates version 1. */
796 uint32_t crumbs
; /* 13C-13F */
798 uint32_t enterpriseNumber
; /* 140-143 */
800 uint32_t mtu
; /* 144-147 */
801 uint32_t reserved0
; /* 148-14b */
802 uint32_t crumbs2
; /* 14c-14f */
803 uint8_t acSerialNumber
[16]; /* 150-15f */
804 uint32_t crumbs3
; /* 160-16f */
806 /* Leave this last in the struct so it is declared invalid if
807 * any new items are added.
809 uint32_t reserved1
[39]; /* 170-1ff */
812 struct mbx_sys_info
{
813 uint8_t board_id_str
[16]; /* 0-f Keep board ID string first */
814 /* in this structure for GUI. */
815 uint16_t board_id
; /* 10-11 board ID code */
816 uint16_t phys_port_cnt
; /* 12-13 number of physical network ports */
817 uint16_t port_num
; /* 14-15 network port for this PCI function */
818 /* (port 0 is first port) */
819 uint8_t mac_addr
[6]; /* 16-1b MAC address for this PCI function */
820 uint32_t iscsi_pci_func_cnt
; /* 1c-1f number of iSCSI PCI functions */
821 uint32_t pci_func
; /* 20-23 this PCI function */
822 unsigned char serial_number
[16]; /* 24-33 serial number string */
823 uint8_t reserved
[12]; /* 34-3f */
826 struct about_fw_info
{
827 uint16_t fw_major
; /* 00 - 01 */
828 uint16_t fw_minor
; /* 02 - 03 */
829 uint16_t fw_patch
; /* 04 - 05 */
830 uint16_t fw_build
; /* 06 - 07 */
831 uint8_t fw_build_date
[16]; /* 08 - 17 ASCII String */
832 uint8_t fw_build_time
[16]; /* 18 - 27 ASCII String */
833 uint8_t fw_build_user
[16]; /* 28 - 37 ASCII String */
834 uint16_t fw_load_source
; /* 38 - 39 */
835 /* 1 = Flash Primary,
839 uint8_t reserved1
[6]; /* 3A - 3F */
840 uint16_t iscsi_major
; /* 40 - 41 */
841 uint16_t iscsi_minor
; /* 42 - 43 */
842 uint16_t bootload_major
; /* 44 - 45 */
843 uint16_t bootload_minor
; /* 46 - 47 */
844 uint16_t bootload_patch
; /* 48 - 49 */
845 uint16_t bootload_build
; /* 4A - 4B */
846 uint8_t reserved2
[180]; /* 4C - FF */
849 struct crash_record
{
850 uint16_t fw_major_version
; /* 00 - 01 */
851 uint16_t fw_minor_version
; /* 02 - 03 */
852 uint16_t fw_patch_version
; /* 04 - 05 */
853 uint16_t fw_build_version
; /* 06 - 07 */
855 uint8_t build_date
[16]; /* 08 - 17 */
856 uint8_t build_time
[16]; /* 18 - 27 */
857 uint8_t build_user
[16]; /* 28 - 37 */
858 uint8_t card_serial_num
[16]; /* 38 - 47 */
860 uint32_t time_of_crash_in_secs
; /* 48 - 4B */
861 uint32_t time_of_crash_in_ms
; /* 4C - 4F */
863 uint16_t out_RISC_sd_num_frames
; /* 50 - 51 */
864 uint16_t OAP_sd_num_words
; /* 52 - 53 */
865 uint16_t IAP_sd_num_frames
; /* 54 - 55 */
866 uint16_t in_RISC_sd_num_words
; /* 56 - 57 */
868 uint8_t reserved1
[28]; /* 58 - 7F */
870 uint8_t out_RISC_reg_dump
[256]; /* 80 -17F */
871 uint8_t in_RISC_reg_dump
[256]; /*180 -27F */
872 uint8_t in_out_RISC_stack_dump
[0]; /*280 - ??? */
875 struct conn_event_log_entry
{
876 #define MAX_CONN_EVENT_LOG_ENTRIES 100
877 uint32_t timestamp_sec
; /* 00 - 03 seconds since boot */
878 uint32_t timestamp_ms
; /* 04 - 07 milliseconds since boot */
879 uint16_t device_index
; /* 08 - 09 */
880 uint16_t fw_conn_state
; /* 0A - 0B */
881 uint8_t event_type
; /* 0C - 0C */
882 uint8_t error_code
; /* 0D - 0D */
883 uint16_t error_code_detail
; /* 0E - 0F */
884 uint8_t num_consecutive_events
; /* 10 - 10 */
885 uint8_t rsvd
[3]; /* 11 - 13 */
888 /*************************************************************************
890 * IOCB Commands Structures and Definitions
892 *************************************************************************/
893 #define IOCB_MAX_CDB_LEN 16 /* Bytes in a CBD */
894 #define IOCB_MAX_SENSEDATA_LEN 32 /* Bytes of sense data */
895 #define IOCB_MAX_EXT_SENSEDATA_LEN 60 /* Bytes of extended sense data */
897 /* IOCB header structure */
900 #define ET_STATUS 0x03
901 #define ET_MARKER 0x04
902 #define ET_CONT_T1 0x0A
903 #define ET_STATUS_CONTINUATION 0x10
904 #define ET_CMND_T3 0x19
905 #define ET_PASSTHRU0 0x3A
906 #define ET_PASSTHRU_STATUS 0x3C
909 uint8_t systemDefined
;
910 #define SD_ISCSI_PDU 0x01
913 /* SyetemDefined definition */
916 /* Generic queue entry structure*/
923 /* 64 bit addressing segment counts*/
925 #define COMMAND_SEG_A64 1
926 #define CONTINUE_SEG_A64 5
928 /* 64 bit addressing segment definition*/
930 struct data_seg_a64
{
941 /* Command Type 3 entry structure*/
943 struct command_t3_entry
{
944 struct qla4_header hdr
; /* 00-03 */
946 uint32_t handle
; /* 04-07 */
947 uint16_t target
; /* 08-09 */
948 uint16_t connection_id
; /* 0A-0B */
950 uint8_t control_flags
; /* 0C */
952 /* data direction (bits 5-6) */
953 #define CF_WRITE 0x20
955 #define CF_NO_DATA 0x00
957 /* task attributes (bits 2-0) */
958 #define CF_HEAD_TAG 0x03
959 #define CF_ORDERED_TAG 0x02
960 #define CF_SIMPLE_TAG 0x01
962 /* STATE FLAGS FIELD IS A PLACE HOLDER. THE FW WILL SET BITS
963 * IN THIS FIELD AS THE COMMAND IS PROCESSED. WHEN THE IOCB IS
964 * CHANGED TO AN IOSB THIS FIELD WILL HAVE THE STATE FLAGS SET
967 uint8_t state_flags
; /* 0D */
968 uint8_t cmdRefNum
; /* 0E */
969 uint8_t reserved1
; /* 0F */
970 uint8_t cdb
[IOCB_MAX_CDB_LEN
]; /* 10-1F */
971 struct scsi_lun lun
; /* FCP LUN (BE). */
972 uint32_t cmdSeqNum
; /* 28-2B */
973 uint16_t timeout
; /* 2C-2D */
974 uint16_t dataSegCnt
; /* 2E-2F */
975 uint32_t ttlByteCnt
; /* 30-33 */
976 struct data_seg_a64 dataseg
[COMMAND_SEG_A64
]; /* 34-3F */
981 /* Continuation Type 1 entry structure*/
982 struct continuation_t1_entry
{
983 struct qla4_header hdr
;
985 struct data_seg_a64 dataseg
[CONTINUE_SEG_A64
];
989 /* Parameterize for 64 or 32 bits */
990 #define COMMAND_SEG COMMAND_SEG_A64
991 #define CONTINUE_SEG CONTINUE_SEG_A64
993 #define ET_COMMAND ET_CMND_T3
994 #define ET_CONTINUE ET_CONT_T1
996 /* Marker entry structure*/
997 struct qla4_marker_entry
{
998 struct qla4_header hdr
; /* 00-03 */
1000 uint32_t system_defined
; /* 04-07 */
1001 uint16_t target
; /* 08-09 */
1002 uint16_t modifier
; /* 0A-0B */
1003 #define MM_LUN_RESET 0
1004 #define MM_TGT_WARM_RESET 1
1006 uint16_t flags
; /* 0C-0D */
1007 uint16_t reserved1
; /* 0E-0F */
1008 struct scsi_lun lun
; /* FCP LUN (BE). */
1009 uint64_t reserved2
; /* 18-1F */
1010 uint64_t reserved3
; /* 20-27 */
1011 uint64_t reserved4
; /* 28-2F */
1012 uint64_t reserved5
; /* 30-37 */
1013 uint64_t reserved6
; /* 38-3F */
1016 /* Status entry structure*/
1017 struct status_entry
{
1018 struct qla4_header hdr
; /* 00-03 */
1020 uint32_t handle
; /* 04-07 */
1022 uint8_t scsiStatus
; /* 08 */
1023 #define SCSI_CHECK_CONDITION 0x02
1025 uint8_t iscsiFlags
; /* 09 */
1026 #define ISCSI_FLAG_RESIDUAL_UNDER 0x02
1027 #define ISCSI_FLAG_RESIDUAL_OVER 0x04
1029 uint8_t iscsiResponse
; /* 0A */
1031 uint8_t completionStatus
; /* 0B */
1032 #define SCS_COMPLETE 0x00
1033 #define SCS_INCOMPLETE 0x01
1034 #define SCS_RESET_OCCURRED 0x04
1035 #define SCS_ABORTED 0x05
1036 #define SCS_TIMEOUT 0x06
1037 #define SCS_DATA_OVERRUN 0x07
1038 #define SCS_DATA_UNDERRUN 0x15
1039 #define SCS_QUEUE_FULL 0x1C
1040 #define SCS_DEVICE_UNAVAILABLE 0x28
1041 #define SCS_DEVICE_LOGGED_OUT 0x29
1043 uint8_t reserved1
; /* 0C */
1045 /* state_flags MUST be at the same location as state_flags in
1046 * the Command_T3/4_Entry */
1047 uint8_t state_flags
; /* 0D */
1049 uint16_t senseDataByteCnt
; /* 0E-0F */
1050 uint32_t residualByteCnt
; /* 10-13 */
1051 uint32_t bidiResidualByteCnt
; /* 14-17 */
1052 uint32_t expSeqNum
; /* 18-1B */
1053 uint32_t maxCmdSeqNum
; /* 1C-1F */
1054 uint8_t senseData
[IOCB_MAX_SENSEDATA_LEN
]; /* 20-3F */
1058 /* Status Continuation entry */
1059 struct status_cont_entry
{
1060 struct qla4_header hdr
; /* 00-03 */
1061 uint8_t ext_sense_data
[IOCB_MAX_EXT_SENSEDATA_LEN
]; /* 04-63 */
1065 struct qla4_header hdr
; /* 00-03 */
1066 uint32_t handle
; /* 04-07 */
1067 uint16_t target
; /* 08-09 */
1068 uint16_t connection_id
; /* 0A-0B */
1069 #define ISNS_DEFAULT_SERVER_CONN_ID ((uint16_t)0x8000)
1071 uint16_t control_flags
; /* 0C-0D */
1072 #define PT_FLAG_ETHERNET_FRAME 0x8000
1073 #define PT_FLAG_ISNS_PDU 0x8000
1074 #define PT_FLAG_SEND_BUFFER 0x0200
1075 #define PT_FLAG_WAIT_4_RESPONSE 0x0100
1076 #define PT_FLAG_ISCSI_PDU 0x1000
1078 uint16_t timeout
; /* 0E-0F */
1079 #define PT_DEFAULT_TIMEOUT 30 /* seconds */
1081 struct data_seg_a64 out_dsd
; /* 10-1B */
1082 uint32_t res1
; /* 1C-1F */
1083 struct data_seg_a64 in_dsd
; /* 20-2B */
1084 uint8_t res2
[20]; /* 2C-3F */
1087 struct passthru_status
{
1088 struct qla4_header hdr
; /* 00-03 */
1089 uint32_t handle
; /* 04-07 */
1090 uint16_t target
; /* 08-09 */
1091 uint16_t connectionID
; /* 0A-0B */
1093 uint8_t completionStatus
; /* 0C */
1094 #define PASSTHRU_STATUS_COMPLETE 0x01
1096 uint8_t residualFlags
; /* 0D */
1098 uint16_t timeout
; /* 0E-0F */
1099 uint16_t portNumber
; /* 10-11 */
1100 uint8_t res1
[10]; /* 12-1B */
1101 uint32_t outResidual
; /* 1C-1F */
1102 uint8_t res2
[12]; /* 20-2B */
1103 uint32_t inResidual
; /* 2C-2F */
1104 uint8_t res4
[16]; /* 30-3F */
1108 * ISP queue - response queue entry definition.
1113 #define RESPONSE_PROCESSED 0xDEADDEAD /* Signature */
1116 struct ql_iscsi_stats
{
1117 uint8_t reserved1
[656]; /* 0000-028F */
1118 uint32_t tx_cmd_pdu
; /* 0290-0293 */
1119 uint32_t tx_resp_pdu
; /* 0294-0297 */
1120 uint32_t rx_cmd_pdu
; /* 0298-029B */
1121 uint32_t rx_resp_pdu
; /* 029C-029F */
1123 uint64_t tx_data_octets
; /* 02A0-02A7 */
1124 uint64_t rx_data_octets
; /* 02A8-02AF */
1126 uint32_t hdr_digest_err
; /* 02B0–02B3 */
1127 uint32_t data_digest_err
; /* 02B4–02B7 */
1128 uint32_t conn_timeout_err
; /* 02B8–02BB */
1129 uint32_t framing_err
; /* 02BC–02BF */
1131 uint32_t tx_nopout_pdus
; /* 02C0–02C3 */
1132 uint32_t tx_scsi_cmd_pdus
; /* 02C4–02C7 */
1133 uint32_t tx_tmf_cmd_pdus
; /* 02C8–02CB */
1134 uint32_t tx_login_cmd_pdus
; /* 02CC–02CF */
1135 uint32_t tx_text_cmd_pdus
; /* 02D0–02D3 */
1136 uint32_t tx_scsi_write_pdus
; /* 02D4–02D7 */
1137 uint32_t tx_logout_cmd_pdus
; /* 02D8–02DB */
1138 uint32_t tx_snack_req_pdus
; /* 02DC–02DF */
1140 uint32_t rx_nopin_pdus
; /* 02E0–02E3 */
1141 uint32_t rx_scsi_resp_pdus
; /* 02E4–02E7 */
1142 uint32_t rx_tmf_resp_pdus
; /* 02E8–02EB */
1143 uint32_t rx_login_resp_pdus
; /* 02EC–02EF */
1144 uint32_t rx_text_resp_pdus
; /* 02F0–02F3 */
1145 uint32_t rx_scsi_read_pdus
; /* 02F4–02F7 */
1146 uint32_t rx_logout_resp_pdus
; /* 02F8–02FB */
1148 uint32_t rx_r2t_pdus
; /* 02FC–02FF */
1149 uint32_t rx_async_pdus
; /* 0300–0303 */
1150 uint32_t rx_reject_pdus
; /* 0304–0307 */
1152 uint8_t reserved2
[264]; /* 0x0308 - 0x040F */
1155 #endif /* _QLA4X_FW_H */