ql4_fw.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. /*
  2. * QLogic iSCSI HBA Driver
  3. * Copyright (c) 2003-2006 QLogic Corporation
  4. *
  5. * See LICENSE.qla4xxx for copyright and licensing details.
  6. */
  7. #ifndef _QLA4X_FW_H
  8. #define _QLA4X_FW_H
  9. #define MAX_PRST_DEV_DB_ENTRIES 64
  10. #define MIN_DISC_DEV_DB_ENTRY MAX_PRST_DEV_DB_ENTRIES
  11. #define MAX_DEV_DB_ENTRIES 512
  12. /*************************************************************************
  13. *
  14. * ISP 4010 I/O Register Set Structure and Definitions
  15. *
  16. *************************************************************************/
  17. struct port_ctrl_stat_regs {
  18. __le32 ext_hw_conf; /* 0x50 R/W */
  19. __le32 rsrvd0; /* 0x54 */
  20. __le32 port_ctrl; /* 0x58 */
  21. __le32 port_status; /* 0x5c */
  22. __le32 rsrvd1[32]; /* 0x60-0xdf */
  23. __le32 gp_out; /* 0xe0 */
  24. __le32 gp_in; /* 0xe4 */
  25. __le32 rsrvd2[5]; /* 0xe8-0xfb */
  26. __le32 port_err_status; /* 0xfc */
  27. };
  28. struct host_mem_cfg_regs {
  29. __le32 rsrvd0[12]; /* 0x50-0x79 */
  30. __le32 req_q_out; /* 0x80 */
  31. __le32 rsrvd1[31]; /* 0x84-0xFF */
  32. };
  33. /* remote register set (access via PCI memory read/write) */
  34. struct isp_reg {
  35. #define MBOX_REG_COUNT 8
  36. __le32 mailbox[MBOX_REG_COUNT];
  37. __le32 flash_address; /* 0x20 */
  38. __le32 flash_data;
  39. __le32 ctrl_status;
  40. union {
  41. struct {
  42. __le32 nvram;
  43. __le32 reserved1[2]; /* 0x30 */
  44. } __attribute__ ((packed)) isp4010;
  45. struct {
  46. __le32 intr_mask;
  47. __le32 nvram; /* 0x30 */
  48. __le32 semaphore;
  49. } __attribute__ ((packed)) isp4022;
  50. } u1;
  51. __le32 req_q_in; /* SCSI Request Queue Producer Index */
  52. __le32 rsp_q_out; /* SCSI Completion Queue Consumer Index */
  53. __le32 reserved2[4]; /* 0x40 */
  54. union {
  55. struct {
  56. __le32 ext_hw_conf; /* 0x50 */
  57. __le32 flow_ctrl;
  58. __le32 port_ctrl;
  59. __le32 port_status;
  60. __le32 reserved3[8]; /* 0x60 */
  61. __le32 req_q_out; /* 0x80 */
  62. __le32 reserved4[23]; /* 0x84 */
  63. __le32 gp_out; /* 0xe0 */
  64. __le32 gp_in;
  65. __le32 reserved5[5];
  66. __le32 port_err_status; /* 0xfc */
  67. } __attribute__ ((packed)) isp4010;
  68. struct {
  69. union {
  70. struct port_ctrl_stat_regs p0;
  71. struct host_mem_cfg_regs p1;
  72. };
  73. } __attribute__ ((packed)) isp4022;
  74. } u2;
  75. }; /* 256 x100 */
  76. /* Semaphore Defines for 4010 */
  77. #define QL4010_DRVR_SEM_BITS 0x00000030
  78. #define QL4010_GPIO_SEM_BITS 0x000000c0
  79. #define QL4010_SDRAM_SEM_BITS 0x00000300
  80. #define QL4010_PHY_SEM_BITS 0x00000c00
  81. #define QL4010_NVRAM_SEM_BITS 0x00003000
  82. #define QL4010_FLASH_SEM_BITS 0x0000c000
  83. #define QL4010_DRVR_SEM_MASK 0x00300000
  84. #define QL4010_GPIO_SEM_MASK 0x00c00000
  85. #define QL4010_SDRAM_SEM_MASK 0x03000000
  86. #define QL4010_PHY_SEM_MASK 0x0c000000
  87. #define QL4010_NVRAM_SEM_MASK 0x30000000
  88. #define QL4010_FLASH_SEM_MASK 0xc0000000
  89. /* Semaphore Defines for 4022 */
  90. #define QL4022_RESOURCE_MASK_BASE_CODE 0x7
  91. #define QL4022_RESOURCE_BITS_BASE_CODE 0x4
  92. #define QL4022_DRVR_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (1+16))
  93. #define QL4022_DDR_RAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (4+16))
  94. #define QL4022_PHY_GIO_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (7+16))
  95. #define QL4022_NVRAM_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (10+16))
  96. #define QL4022_FLASH_SEM_MASK (QL4022_RESOURCE_MASK_BASE_CODE << (13+16))
  97. /* Page # defines for 4022 */
  98. #define PORT_CTRL_STAT_PAGE 0 /* 4022 */
  99. #define HOST_MEM_CFG_PAGE 1 /* 4022 */
  100. #define LOCAL_RAM_CFG_PAGE 2 /* 4022 */
  101. #define PROT_STAT_PAGE 3 /* 4022 */
  102. /* Register Mask - sets corresponding mask bits in the upper word */
  103. static inline uint32_t set_rmask(uint32_t val)
  104. {
  105. return (val & 0xffff) | (val << 16);
  106. }
  107. static inline uint32_t clr_rmask(uint32_t val)
  108. {
  109. return 0 | (val << 16);
  110. }
  111. /* ctrl_status definitions */
  112. #define CSR_SCSI_PAGE_SELECT 0x00000003
  113. #define CSR_SCSI_INTR_ENABLE 0x00000004 /* 4010 */
  114. #define CSR_SCSI_RESET_INTR 0x00000008
  115. #define CSR_SCSI_COMPLETION_INTR 0x00000010
  116. #define CSR_SCSI_PROCESSOR_INTR 0x00000020
  117. #define CSR_INTR_RISC 0x00000040
  118. #define CSR_BOOT_ENABLE 0x00000080
  119. #define CSR_NET_PAGE_SELECT 0x00000300 /* 4010 */
  120. #define CSR_FUNC_NUM 0x00000700 /* 4022 */
  121. #define CSR_NET_RESET_INTR 0x00000800 /* 4010 */
  122. #define CSR_FORCE_SOFT_RESET 0x00002000 /* 4022 */
  123. #define CSR_FATAL_ERROR 0x00004000
  124. #define CSR_SOFT_RESET 0x00008000
  125. #define ISP_CONTROL_FN_MASK CSR_FUNC_NUM
  126. #define ISP_CONTROL_FN0_SCSI 0x0500
  127. #define ISP_CONTROL_FN1_SCSI 0x0700
  128. #define INTR_PENDING (CSR_SCSI_COMPLETION_INTR |\
  129. CSR_SCSI_PROCESSOR_INTR |\
  130. CSR_SCSI_RESET_INTR)
  131. /* ISP InterruptMask definitions */
  132. #define IMR_SCSI_INTR_ENABLE 0x00000004 /* 4022 */
  133. /* ISP 4022 nvram definitions */
  134. #define NVR_WRITE_ENABLE 0x00000010 /* 4022 */
  135. /* ISP port_status definitions */
  136. /* ISP Semaphore definitions */
  137. /* ISP General Purpose Output definitions */
  138. #define GPOR_TOPCAT_RESET 0x00000004
  139. /* shadow registers (DMA'd from HA to system memory. read only) */
  140. struct shadow_regs {
  141. /* SCSI Request Queue Consumer Index */
  142. __le32 req_q_out; /* 0 x0 R */
  143. /* SCSI Completion Queue Producer Index */
  144. __le32 rsp_q_in; /* 4 x4 R */
  145. }; /* 8 x8 */
  146. /* External hardware configuration register */
  147. union external_hw_config_reg {
  148. struct {
  149. /* FIXME: Do we even need this? All values are
  150. * referred to by 16 bit quantities. Platform and
  151. * endianess issues. */
  152. __le32 bReserved0:1;
  153. __le32 bSDRAMProtectionMethod:2;
  154. __le32 bSDRAMBanks:1;
  155. __le32 bSDRAMChipWidth:1;
  156. __le32 bSDRAMChipSize:2;
  157. __le32 bParityDisable:1;
  158. __le32 bExternalMemoryType:1;
  159. __le32 bFlashBIOSWriteEnable:1;
  160. __le32 bFlashUpperBankSelect:1;
  161. __le32 bWriteBurst:2;
  162. __le32 bReserved1:3;
  163. __le32 bMask:16;
  164. };
  165. uint32_t Asuint32_t;
  166. };
  167. /*************************************************************************
  168. *
  169. * Mailbox Commands Structures and Definitions
  170. *
  171. *************************************************************************/
  172. /* Mailbox command definitions */
  173. #define MBOX_CMD_ABOUT_FW 0x0009
  174. #define MBOX_CMD_PING 0x000B
  175. #define MBOX_CMD_LUN_RESET 0x0016
  176. #define MBOX_CMD_TARGET_WARM_RESET 0x0017
  177. #define MBOX_CMD_GET_MANAGEMENT_DATA 0x001E
  178. #define MBOX_CMD_GET_FW_STATUS 0x001F
  179. #define MBOX_CMD_SET_ISNS_SERVICE 0x0021
  180. #define ISNS_DISABLE 0
  181. #define ISNS_ENABLE 1
  182. #define MBOX_CMD_COPY_FLASH 0x0024
  183. #define MBOX_CMD_WRITE_FLASH 0x0025
  184. #define MBOX_CMD_READ_FLASH 0x0026
  185. #define MBOX_CMD_CLEAR_DATABASE_ENTRY 0x0031
  186. #define MBOX_CMD_CONN_CLOSE_SESS_LOGOUT 0x0056
  187. #define LOGOUT_OPTION_CLOSE_SESSION 0x01
  188. #define LOGOUT_OPTION_RELOGIN 0x02
  189. #define MBOX_CMD_EXECUTE_IOCB_A64 0x005A
  190. #define MBOX_CMD_INITIALIZE_FIRMWARE 0x0060
  191. #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK 0x0061
  192. #define MBOX_CMD_REQUEST_DATABASE_ENTRY 0x0062
  193. #define MBOX_CMD_SET_DATABASE_ENTRY 0x0063
  194. #define MBOX_CMD_GET_DATABASE_ENTRY 0x0064
  195. #define DDB_DS_UNASSIGNED 0x00
  196. #define DDB_DS_NO_CONNECTION_ACTIVE 0x01
  197. #define DDB_DS_SESSION_ACTIVE 0x04
  198. #define DDB_DS_SESSION_FAILED 0x06
  199. #define DDB_DS_LOGIN_IN_PROCESS 0x07
  200. #define MBOX_CMD_GET_FW_STATE 0x0069
  201. #define MBOX_CMD_GET_INIT_FW_CTRL_BLOCK_DEFAULTS 0x006A
  202. #define MBOX_CMD_RESTORE_FACTORY_DEFAULTS 0x0087
  203. #define MBOX_CMD_SET_ACB 0x0088
  204. #define MBOX_CMD_GET_ACB 0x0089
  205. #define MBOX_CMD_DISABLE_ACB 0x008A
  206. #define MBOX_CMD_GET_IPV6_NEIGHBOR_CACHE 0x008B
  207. #define MBOX_CMD_GET_IPV6_DEST_CACHE 0x008C
  208. #define MBOX_CMD_GET_IPV6_DEF_ROUTER_LIST 0x008D
  209. #define MBOX_CMD_GET_IPV6_LCL_PREFIX_LIST 0x008E
  210. #define MBOX_CMD_SET_IPV6_NEIGHBOR_CACHE 0x0090
  211. #define MBOX_CMD_GET_IP_ADDR_STATE 0x0091
  212. #define MBOX_CMD_SEND_IPV6_ROUTER_SOL 0x0092
  213. #define MBOX_CMD_GET_DB_ENTRY_CURRENT_IP_ADDR 0x0093
  214. /* Mailbox 1 */
  215. #define FW_STATE_READY 0x0000
  216. #define FW_STATE_CONFIG_WAIT 0x0001
  217. #define FW_STATE_WAIT_LOGIN 0x0002
  218. #define FW_STATE_ERROR 0x0004
  219. #define FW_STATE_DHCP_IN_PROGRESS 0x0008
  220. /* Mailbox 3 */
  221. #define FW_ADDSTATE_OPTICAL_MEDIA 0x0001
  222. #define FW_ADDSTATE_DHCP_ENABLED 0x0002
  223. #define FW_ADDSTATE_LINK_UP 0x0010
  224. #define FW_ADDSTATE_ISNS_SVC_ENABLED 0x0020
  225. #define MBOX_CMD_GET_DATABASE_ENTRY_DEFAULTS 0x006B
  226. #define MBOX_CMD_CONN_OPEN_SESS_LOGIN 0x0074
  227. #define MBOX_CMD_GET_CRASH_RECORD 0x0076 /* 4010 only */
  228. #define MBOX_CMD_GET_CONN_EVENT_LOG 0x0077
  229. /* Mailbox status definitions */
  230. #define MBOX_COMPLETION_STATUS 4
  231. #define MBOX_STS_BUSY 0x0007
  232. #define MBOX_STS_INTERMEDIATE_COMPLETION 0x1000
  233. #define MBOX_STS_COMMAND_COMPLETE 0x4000
  234. #define MBOX_STS_COMMAND_ERROR 0x4005
  235. #define MBOX_ASYNC_EVENT_STATUS 8
  236. #define MBOX_ASTS_SYSTEM_ERROR 0x8002
  237. #define MBOX_ASTS_REQUEST_TRANSFER_ERROR 0x8003
  238. #define MBOX_ASTS_RESPONSE_TRANSFER_ERROR 0x8004
  239. #define MBOX_ASTS_PROTOCOL_STATISTIC_ALARM 0x8005
  240. #define MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED 0x8006
  241. #define MBOX_ASTS_LINK_UP 0x8010
  242. #define MBOX_ASTS_LINK_DOWN 0x8011
  243. #define MBOX_ASTS_DATABASE_CHANGED 0x8014
  244. #define MBOX_ASTS_UNSOLICITED_PDU_RECEIVED 0x8015
  245. #define MBOX_ASTS_SELF_TEST_FAILED 0x8016
  246. #define MBOX_ASTS_LOGIN_FAILED 0x8017
  247. #define MBOX_ASTS_DNS 0x8018
  248. #define MBOX_ASTS_HEARTBEAT 0x8019
  249. #define MBOX_ASTS_NVRAM_INVALID 0x801A
  250. #define MBOX_ASTS_MAC_ADDRESS_CHANGED 0x801B
  251. #define MBOX_ASTS_IP_ADDRESS_CHANGED 0x801C
  252. #define MBOX_ASTS_DHCP_LEASE_EXPIRED 0x801D
  253. #define MBOX_ASTS_DHCP_LEASE_ACQUIRED 0x801F
  254. #define MBOX_ASTS_ISNS_UNSOLICITED_PDU_RECEIVED 0x8021
  255. #define MBOX_ASTS_DUPLICATE_IP 0x8025
  256. #define MBOX_ASTS_ARP_COMPLETE 0x8026
  257. #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
  258. #define MBOX_ASTS_RESPONSE_QUEUE_FULL 0x8028
  259. #define MBOX_ASTS_IP_ADDR_STATE_CHANGED 0x8029
  260. #define MBOX_ASTS_IPV6_PREFIX_EXPIRED 0x802B
  261. #define MBOX_ASTS_IPV6_ND_PREFIX_IGNORED 0x802C
  262. #define MBOX_ASTS_IPV6_LCL_PREFIX_IGNORED 0x802D
  263. #define MBOX_ASTS_ICMPV6_ERROR_MSG_RCVD 0x802E
  264. #define ISNS_EVENT_DATA_RECEIVED 0x0000
  265. #define ISNS_EVENT_CONNECTION_OPENED 0x0001
  266. #define ISNS_EVENT_CONNECTION_FAILED 0x0002
  267. #define MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR 0x8022
  268. #define MBOX_ASTS_SUBNET_STATE_CHANGE 0x8027
  269. /*************************************************************************/
  270. /* Host Adapter Initialization Control Block (from host) */
  271. struct addr_ctrl_blk {
  272. uint8_t version; /* 00 */
  273. uint8_t control; /* 01 */
  274. uint16_t fw_options; /* 02-03 */
  275. #define FWOPT_HEARTBEAT_ENABLE 0x1000
  276. #define FWOPT_SESSION_MODE 0x0040
  277. #define FWOPT_INITIATOR_MODE 0x0020
  278. #define FWOPT_TARGET_MODE 0x0010
  279. uint16_t exec_throttle; /* 04-05 */
  280. uint8_t zio_count; /* 06 */
  281. uint8_t res0; /* 07 */
  282. uint16_t eth_mtu_size; /* 08-09 */
  283. uint16_t add_fw_options; /* 0A-0B */
  284. uint8_t hb_interval; /* 0C */
  285. uint8_t inst_num; /* 0D */
  286. uint16_t res1; /* 0E-0F */
  287. uint16_t rqq_consumer_idx; /* 10-11 */
  288. uint16_t compq_producer_idx; /* 12-13 */
  289. uint16_t rqq_len; /* 14-15 */
  290. uint16_t compq_len; /* 16-17 */
  291. uint32_t rqq_addr_lo; /* 18-1B */
  292. uint32_t rqq_addr_hi; /* 1C-1F */
  293. uint32_t compq_addr_lo; /* 20-23 */
  294. uint32_t compq_addr_hi; /* 24-27 */
  295. uint32_t shdwreg_addr_lo; /* 28-2B */
  296. uint32_t shdwreg_addr_hi; /* 2C-2F */
  297. uint16_t iscsi_opts; /* 30-31 */
  298. uint16_t ipv4_tcp_opts; /* 32-33 */
  299. uint16_t ipv4_ip_opts; /* 34-35 */
  300. uint16_t iscsi_max_pdu_size; /* 36-37 */
  301. uint8_t ipv4_tos; /* 38 */
  302. uint8_t ipv4_ttl; /* 39 */
  303. uint8_t acb_version; /* 3A */
  304. uint8_t res2; /* 3B */
  305. uint16_t def_timeout; /* 3C-3D */
  306. uint16_t iscsi_fburst_len; /* 3E-3F */
  307. uint16_t iscsi_def_time2wait; /* 40-41 */
  308. uint16_t iscsi_def_time2retain; /* 42-43 */
  309. uint16_t iscsi_max_outstnd_r2t; /* 44-45 */
  310. uint16_t conn_ka_timeout; /* 46-47 */
  311. uint16_t ipv4_port; /* 48-49 */
  312. uint16_t iscsi_max_burst_len; /* 4A-4B */
  313. uint32_t res5; /* 4C-4F */
  314. uint8_t ipv4_addr[4]; /* 50-53 */
  315. uint16_t ipv4_vlan_tag; /* 54-55 */
  316. uint8_t ipv4_addr_state; /* 56 */
  317. uint8_t ipv4_cacheid; /* 57 */
  318. uint8_t res6[8]; /* 58-5F */
  319. uint8_t ipv4_subnet[4]; /* 60-63 */
  320. uint8_t res7[12]; /* 64-6F */
  321. uint8_t ipv4_gw_addr[4]; /* 70-73 */
  322. uint8_t res8[0xc]; /* 74-7F */
  323. uint8_t pri_dns_srvr_ip[4];/* 80-83 */
  324. uint8_t sec_dns_srvr_ip[4];/* 84-87 */
  325. uint16_t min_eph_port; /* 88-89 */
  326. uint16_t max_eph_port; /* 8A-8B */
  327. uint8_t res9[4]; /* 8C-8F */
  328. uint8_t iscsi_alias[32];/* 90-AF */
  329. uint8_t res9_1[0x16]; /* B0-C5 */
  330. uint16_t tgt_portal_grp;/* C6-C7 */
  331. uint8_t abort_timer; /* C8 */
  332. uint8_t ipv4_tcp_wsf; /* C9 */
  333. uint8_t res10[6]; /* CA-CF */
  334. uint8_t ipv4_sec_ip_addr[4]; /* D0-D3 */
  335. uint8_t ipv4_dhcp_vid_len; /* D4 */
  336. uint8_t ipv4_dhcp_vid[11]; /* D5-DF */
  337. uint8_t res11[20]; /* E0-F3 */
  338. uint8_t ipv4_dhcp_alt_cid_len; /* F4 */
  339. uint8_t ipv4_dhcp_alt_cid[11]; /* F5-FF */
  340. uint8_t iscsi_name[224]; /* 100-1DF */
  341. uint8_t res12[32]; /* 1E0-1FF */
  342. uint32_t cookie; /* 200-203 */
  343. uint16_t ipv6_port; /* 204-205 */
  344. uint16_t ipv6_opts; /* 206-207 */
  345. uint16_t ipv6_addtl_opts; /* 208-209 */
  346. uint16_t ipv6_tcp_opts; /* 20A-20B */
  347. uint8_t ipv6_tcp_wsf; /* 20C */
  348. uint16_t ipv6_flow_lbl; /* 20D-20F */
  349. uint8_t ipv6_gw_addr[16]; /* 210-21F */
  350. uint16_t ipv6_vlan_tag; /* 220-221 */
  351. uint8_t ipv6_lnk_lcl_addr_state;/* 222 */
  352. uint8_t ipv6_addr0_state; /* 223 */
  353. uint8_t ipv6_addr1_state; /* 224 */
  354. uint8_t ipv6_gw_state; /* 225 */
  355. uint8_t ipv6_traffic_class; /* 226 */
  356. uint8_t ipv6_hop_limit; /* 227 */
  357. uint8_t ipv6_if_id[8]; /* 228-22F */
  358. uint8_t ipv6_addr0[16]; /* 230-23F */
  359. uint8_t ipv6_addr1[16]; /* 240-24F */
  360. uint32_t ipv6_nd_reach_time; /* 250-253 */
  361. uint32_t ipv6_nd_rexmit_timer; /* 254-257 */
  362. uint32_t ipv6_nd_stale_timeout; /* 258-25B */
  363. uint8_t ipv6_dup_addr_detect_count; /* 25C */
  364. uint8_t ipv6_cache_id; /* 25D */
  365. uint8_t res13[18]; /* 25E-26F */
  366. uint32_t ipv6_gw_advrt_mtu; /* 270-273 */
  367. uint8_t res14[140]; /* 274-2FF */
  368. };
  369. struct init_fw_ctrl_blk {
  370. struct addr_ctrl_blk pri;
  371. struct addr_ctrl_blk sec;
  372. };
  373. /*************************************************************************/
  374. struct dev_db_entry {
  375. uint16_t options; /* 00-01 */
  376. #define DDB_OPT_DISC_SESSION 0x10
  377. #define DDB_OPT_TARGET 0x02 /* device is a target */
  378. uint16_t exec_throttle; /* 02-03 */
  379. uint16_t exec_count; /* 04-05 */
  380. uint16_t res0; /* 06-07 */
  381. uint16_t iscsi_options; /* 08-09 */
  382. uint16_t tcp_options; /* 0A-0B */
  383. uint16_t ip_options; /* 0C-0D */
  384. uint16_t iscsi_max_rcv_data_seg_len; /* 0E-0F */
  385. uint32_t res1; /* 10-13 */
  386. uint16_t iscsi_max_snd_data_seg_len; /* 14-15 */
  387. uint16_t iscsi_first_burst_len; /* 16-17 */
  388. uint16_t iscsi_def_time2wait; /* 18-19 */
  389. uint16_t iscsi_def_time2retain; /* 1A-1B */
  390. uint16_t iscsi_max_outsnd_r2t; /* 1C-1D */
  391. uint16_t ka_timeout; /* 1E-1F */
  392. uint8_t isid[6]; /* 20-25 big-endian, must be converted
  393. * to little-endian */
  394. uint16_t tsid; /* 26-27 */
  395. uint16_t port; /* 28-29 */
  396. uint16_t iscsi_max_burst_len; /* 2A-2B */
  397. uint16_t def_timeout; /* 2C-2D */
  398. uint16_t res2; /* 2E-2F */
  399. uint8_t ip_addr[0x10]; /* 30-3F */
  400. uint8_t iscsi_alias[0x20]; /* 40-5F */
  401. uint8_t tgt_addr[0x20]; /* 60-7F */
  402. uint16_t mss; /* 80-81 */
  403. uint16_t res3; /* 82-83 */
  404. uint16_t lcl_port; /* 84-85 */
  405. uint8_t ipv4_tos; /* 86 */
  406. uint16_t ipv6_flow_lbl; /* 87-89 */
  407. uint8_t res4[0x36]; /* 8A-BF */
  408. uint8_t iscsi_name[0xE0]; /* C0-19F : xxzzy Make this a
  409. * pointer to a string so we
  410. * don't have to reserve soooo
  411. * much RAM */
  412. uint8_t ipv6_addr[0x10];/* 1A0-1AF */
  413. uint8_t res5[0x10]; /* 1B0-1BF */
  414. uint16_t ddb_link; /* 1C0-1C1 */
  415. uint16_t chap_tbl_idx; /* 1C2-1C3 */
  416. uint16_t tgt_portal_grp; /* 1C4-1C5 */
  417. uint8_t tcp_xmt_wsf; /* 1C6 */
  418. uint8_t tcp_rcv_wsf; /* 1C7 */
  419. uint32_t stat_sn; /* 1C8-1CB */
  420. uint32_t exp_stat_sn; /* 1CC-1CF */
  421. uint8_t res6[0x30]; /* 1D0-1FF */
  422. };
  423. /*************************************************************************/
  424. /* Flash definitions */
  425. #define FLASH_OFFSET_SYS_INFO 0x02000000
  426. #define FLASH_DEFAULTBLOCKSIZE 0x20000
  427. #define FLASH_EOF_OFFSET (FLASH_DEFAULTBLOCKSIZE-8) /* 4 bytes
  428. * for EOF
  429. * signature */
  430. struct sys_info_phys_addr {
  431. uint8_t address[6]; /* 00-05 */
  432. uint8_t filler[2]; /* 06-07 */
  433. };
  434. struct flash_sys_info {
  435. uint32_t cookie; /* 00-03 */
  436. uint32_t physAddrCount; /* 04-07 */
  437. struct sys_info_phys_addr physAddr[4]; /* 08-27 */
  438. uint8_t vendorId[128]; /* 28-A7 */
  439. uint8_t productId[128]; /* A8-127 */
  440. uint32_t serialNumber; /* 128-12B */
  441. /* PCI Configuration values */
  442. uint32_t pciDeviceVendor; /* 12C-12F */
  443. uint32_t pciDeviceId; /* 130-133 */
  444. uint32_t pciSubsysVendor; /* 134-137 */
  445. uint32_t pciSubsysId; /* 138-13B */
  446. /* This validates version 1. */
  447. uint32_t crumbs; /* 13C-13F */
  448. uint32_t enterpriseNumber; /* 140-143 */
  449. uint32_t mtu; /* 144-147 */
  450. uint32_t reserved0; /* 148-14b */
  451. uint32_t crumbs2; /* 14c-14f */
  452. uint8_t acSerialNumber[16]; /* 150-15f */
  453. uint32_t crumbs3; /* 160-16f */
  454. /* Leave this last in the struct so it is declared invalid if
  455. * any new items are added.
  456. */
  457. uint32_t reserved1[39]; /* 170-1ff */
  458. }; /* 200 */
  459. struct crash_record {
  460. uint16_t fw_major_version; /* 00 - 01 */
  461. uint16_t fw_minor_version; /* 02 - 03 */
  462. uint16_t fw_patch_version; /* 04 - 05 */
  463. uint16_t fw_build_version; /* 06 - 07 */
  464. uint8_t build_date[16]; /* 08 - 17 */
  465. uint8_t build_time[16]; /* 18 - 27 */
  466. uint8_t build_user[16]; /* 28 - 37 */
  467. uint8_t card_serial_num[16]; /* 38 - 47 */
  468. uint32_t time_of_crash_in_secs; /* 48 - 4B */
  469. uint32_t time_of_crash_in_ms; /* 4C - 4F */
  470. uint16_t out_RISC_sd_num_frames; /* 50 - 51 */
  471. uint16_t OAP_sd_num_words; /* 52 - 53 */
  472. uint16_t IAP_sd_num_frames; /* 54 - 55 */
  473. uint16_t in_RISC_sd_num_words; /* 56 - 57 */
  474. uint8_t reserved1[28]; /* 58 - 7F */
  475. uint8_t out_RISC_reg_dump[256]; /* 80 -17F */
  476. uint8_t in_RISC_reg_dump[256]; /*180 -27F */
  477. uint8_t in_out_RISC_stack_dump[0]; /*280 - ??? */
  478. };
  479. struct conn_event_log_entry {
  480. #define MAX_CONN_EVENT_LOG_ENTRIES 100
  481. uint32_t timestamp_sec; /* 00 - 03 seconds since boot */
  482. uint32_t timestamp_ms; /* 04 - 07 milliseconds since boot */
  483. uint16_t device_index; /* 08 - 09 */
  484. uint16_t fw_conn_state; /* 0A - 0B */
  485. uint8_t event_type; /* 0C - 0C */
  486. uint8_t error_code; /* 0D - 0D */
  487. uint16_t error_code_detail; /* 0E - 0F */
  488. uint8_t num_consecutive_events; /* 10 - 10 */
  489. uint8_t rsvd[3]; /* 11 - 13 */
  490. };
  491. /*************************************************************************
  492. *
  493. * IOCB Commands Structures and Definitions
  494. *
  495. *************************************************************************/
  496. #define IOCB_MAX_CDB_LEN 16 /* Bytes in a CBD */
  497. #define IOCB_MAX_SENSEDATA_LEN 32 /* Bytes of sense data */
  498. /* IOCB header structure */
  499. struct qla4_header {
  500. uint8_t entryType;
  501. #define ET_STATUS 0x03
  502. #define ET_MARKER 0x04
  503. #define ET_CONT_T1 0x0A
  504. #define ET_STATUS_CONTINUATION 0x10
  505. #define ET_CMND_T3 0x19
  506. #define ET_PASSTHRU0 0x3A
  507. #define ET_PASSTHRU_STATUS 0x3C
  508. uint8_t entryStatus;
  509. uint8_t systemDefined;
  510. uint8_t entryCount;
  511. /* SyetemDefined definition */
  512. };
  513. /* Generic queue entry structure*/
  514. struct queue_entry {
  515. uint8_t data[60];
  516. uint32_t signature;
  517. };
  518. /* 64 bit addressing segment counts*/
  519. #define COMMAND_SEG_A64 1
  520. #define CONTINUE_SEG_A64 5
  521. /* 64 bit addressing segment definition*/
  522. struct data_seg_a64 {
  523. struct {
  524. uint32_t addrLow;
  525. uint32_t addrHigh;
  526. } base;
  527. uint32_t count;
  528. };
  529. /* Command Type 3 entry structure*/
  530. struct command_t3_entry {
  531. struct qla4_header hdr; /* 00-03 */
  532. uint32_t handle; /* 04-07 */
  533. uint16_t target; /* 08-09 */
  534. uint16_t connection_id; /* 0A-0B */
  535. uint8_t control_flags; /* 0C */
  536. /* data direction (bits 5-6) */
  537. #define CF_WRITE 0x20
  538. #define CF_READ 0x40
  539. #define CF_NO_DATA 0x00
  540. /* task attributes (bits 2-0) */
  541. #define CF_HEAD_TAG 0x03
  542. #define CF_ORDERED_TAG 0x02
  543. #define CF_SIMPLE_TAG 0x01
  544. /* STATE FLAGS FIELD IS A PLACE HOLDER. THE FW WILL SET BITS
  545. * IN THIS FIELD AS THE COMMAND IS PROCESSED. WHEN THE IOCB IS
  546. * CHANGED TO AN IOSB THIS FIELD WILL HAVE THE STATE FLAGS SET
  547. * PROPERLY.
  548. */
  549. uint8_t state_flags; /* 0D */
  550. uint8_t cmdRefNum; /* 0E */
  551. uint8_t reserved1; /* 0F */
  552. uint8_t cdb[IOCB_MAX_CDB_LEN]; /* 10-1F */
  553. struct scsi_lun lun; /* FCP LUN (BE). */
  554. uint32_t cmdSeqNum; /* 28-2B */
  555. uint16_t timeout; /* 2C-2D */
  556. uint16_t dataSegCnt; /* 2E-2F */
  557. uint32_t ttlByteCnt; /* 30-33 */
  558. struct data_seg_a64 dataseg[COMMAND_SEG_A64]; /* 34-3F */
  559. };
  560. /* Continuation Type 1 entry structure*/
  561. struct continuation_t1_entry {
  562. struct qla4_header hdr;
  563. struct data_seg_a64 dataseg[CONTINUE_SEG_A64];
  564. };
  565. /* Parameterize for 64 or 32 bits */
  566. #define COMMAND_SEG COMMAND_SEG_A64
  567. #define CONTINUE_SEG CONTINUE_SEG_A64
  568. #define ET_COMMAND ET_CMND_T3
  569. #define ET_CONTINUE ET_CONT_T1
  570. /* Marker entry structure*/
  571. struct qla4_marker_entry {
  572. struct qla4_header hdr; /* 00-03 */
  573. uint32_t system_defined; /* 04-07 */
  574. uint16_t target; /* 08-09 */
  575. uint16_t modifier; /* 0A-0B */
  576. #define MM_LUN_RESET 0
  577. #define MM_TGT_WARM_RESET 1
  578. uint16_t flags; /* 0C-0D */
  579. uint16_t reserved1; /* 0E-0F */
  580. struct scsi_lun lun; /* FCP LUN (BE). */
  581. uint64_t reserved2; /* 18-1F */
  582. uint64_t reserved3; /* 20-27 */
  583. uint64_t reserved4; /* 28-2F */
  584. uint64_t reserved5; /* 30-37 */
  585. uint64_t reserved6; /* 38-3F */
  586. };
  587. /* Status entry structure*/
  588. struct status_entry {
  589. struct qla4_header hdr; /* 00-03 */
  590. uint32_t handle; /* 04-07 */
  591. uint8_t scsiStatus; /* 08 */
  592. #define SCSI_CHECK_CONDITION 0x02
  593. uint8_t iscsiFlags; /* 09 */
  594. #define ISCSI_FLAG_RESIDUAL_UNDER 0x02
  595. #define ISCSI_FLAG_RESIDUAL_OVER 0x04
  596. uint8_t iscsiResponse; /* 0A */
  597. uint8_t completionStatus; /* 0B */
  598. #define SCS_COMPLETE 0x00
  599. #define SCS_INCOMPLETE 0x01
  600. #define SCS_RESET_OCCURRED 0x04
  601. #define SCS_ABORTED 0x05
  602. #define SCS_TIMEOUT 0x06
  603. #define SCS_DATA_OVERRUN 0x07
  604. #define SCS_DATA_UNDERRUN 0x15
  605. #define SCS_QUEUE_FULL 0x1C
  606. #define SCS_DEVICE_UNAVAILABLE 0x28
  607. #define SCS_DEVICE_LOGGED_OUT 0x29
  608. uint8_t reserved1; /* 0C */
  609. /* state_flags MUST be at the same location as state_flags in
  610. * the Command_T3/4_Entry */
  611. uint8_t state_flags; /* 0D */
  612. uint16_t senseDataByteCnt; /* 0E-0F */
  613. uint32_t residualByteCnt; /* 10-13 */
  614. uint32_t bidiResidualByteCnt; /* 14-17 */
  615. uint32_t expSeqNum; /* 18-1B */
  616. uint32_t maxCmdSeqNum; /* 1C-1F */
  617. uint8_t senseData[IOCB_MAX_SENSEDATA_LEN]; /* 20-3F */
  618. };
  619. struct passthru0 {
  620. struct qla4_header hdr; /* 00-03 */
  621. uint32_t handle; /* 04-07 */
  622. uint16_t target; /* 08-09 */
  623. uint16_t connectionID; /* 0A-0B */
  624. #define ISNS_DEFAULT_SERVER_CONN_ID ((uint16_t)0x8000)
  625. uint16_t controlFlags; /* 0C-0D */
  626. #define PT_FLAG_ETHERNET_FRAME 0x8000
  627. #define PT_FLAG_ISNS_PDU 0x8000
  628. #define PT_FLAG_SEND_BUFFER 0x0200
  629. #define PT_FLAG_WAIT_4_RESPONSE 0x0100
  630. uint16_t timeout; /* 0E-0F */
  631. #define PT_DEFAULT_TIMEOUT 30 /* seconds */
  632. struct data_seg_a64 outDataSeg64; /* 10-1B */
  633. uint32_t res1; /* 1C-1F */
  634. struct data_seg_a64 inDataSeg64; /* 20-2B */
  635. uint8_t res2[20]; /* 2C-3F */
  636. };
  637. struct passthru_status {
  638. struct qla4_header hdr; /* 00-03 */
  639. uint32_t handle; /* 04-07 */
  640. uint16_t target; /* 08-09 */
  641. uint16_t connectionID; /* 0A-0B */
  642. uint8_t completionStatus; /* 0C */
  643. #define PASSTHRU_STATUS_COMPLETE 0x01
  644. uint8_t residualFlags; /* 0D */
  645. uint16_t timeout; /* 0E-0F */
  646. uint16_t portNumber; /* 10-11 */
  647. uint8_t res1[10]; /* 12-1B */
  648. uint32_t outResidual; /* 1C-1F */
  649. uint8_t res2[12]; /* 20-2B */
  650. uint32_t inResidual; /* 2C-2F */
  651. uint8_t res4[16]; /* 30-3F */
  652. };
  653. #endif /* _QLA4X_FW_H */