ql4_fw.h 38 KB

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