blob: 79a93c52baec54b828f65cdeb7f602269a0a7724 [file] [log] [blame]
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001/*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2013 QLogic Corporation
4 *
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7#ifndef __QLA_MR_H
8#define __QLA_MR_H
9
10/*
11 * The PCI VendorID and DeviceID for our board.
12 */
13#define PCI_DEVICE_ID_QLOGIC_ISPF001 0xF001
14
15/* FX00 specific definitions */
16
17#define FX00_COMMAND_TYPE_7 0x07 /* Command Type 7 entry for 7XXX */
18struct cmd_type_7_fx00 {
19 uint8_t entry_type; /* Entry type. */
20 uint8_t entry_count; /* Entry count. */
21 uint8_t sys_define; /* System defined. */
22 uint8_t entry_status; /* Entry Status. */
23
24 uint32_t handle; /* System handle. */
25 uint32_t handle_hi;
26
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040027 __le16 tgt_idx; /* Target Idx. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040028 uint16_t timeout; /* Command timeout. */
29
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040030 __le16 dseg_count; /* Data segment count. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040031 uint16_t scsi_rsp_dsd_len;
32
33 struct scsi_lun lun; /* LUN (LE). */
34
35 uint8_t cntrl_flags;
36
37 uint8_t task_mgmt_flags; /* Task management flags. */
38
39 uint8_t task;
40
41 uint8_t crn;
42
43 uint8_t fcp_cdb[MAX_CMDSZ]; /* SCSI command words. */
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040044 __le32 byte_count; /* Total byte count. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040045
46 uint32_t dseg_0_address[2]; /* Data segment 0 address. */
47 uint32_t dseg_0_len; /* Data segment 0 length. */
48};
49
50/*
51 * ISP queue - marker entry structure definition.
52 */
53struct mrk_entry_fx00 {
54 uint8_t entry_type; /* Entry type. */
55 uint8_t entry_count; /* Entry count. */
56 uint8_t handle_count; /* Handle count. */
57 uint8_t entry_status; /* Entry Status. */
58
59 uint32_t handle; /* System handle. */
60 uint32_t handle_hi; /* System handle. */
61
62 uint16_t tgt_id; /* Target ID. */
63
64 uint8_t modifier; /* Modifier (7-0). */
65 uint8_t reserved_1;
66
67 uint8_t reserved_2[5];
68
69 uint8_t lun[8]; /* FCP LUN (BE). */
70 uint8_t reserved_3[36];
71};
72
73
74#define STATUS_TYPE_FX00 0x01 /* Status entry. */
75struct sts_entry_fx00 {
76 uint8_t entry_type; /* Entry type. */
77 uint8_t entry_count; /* Entry count. */
78 uint8_t sys_define; /* System defined. */
79 uint8_t entry_status; /* Entry Status. */
80
81 uint32_t handle; /* System handle. */
82 uint32_t handle_hi; /* System handle. */
83
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040084 __le16 comp_status; /* Completion status. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040085 uint16_t reserved_0; /* OX_ID used by the firmware. */
86
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040087 __le32 residual_len; /* FW calc residual transfer length. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040088
89 uint16_t reserved_1;
90 uint16_t state_flags; /* State flags. */
91
92 uint16_t reserved_2;
Saurav Kashyap1f8deef2013-06-25 11:27:21 -040093 __le16 scsi_status; /* SCSI status. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040094
95 uint32_t sense_len; /* FCP SENSE length. */
96 uint8_t data[32]; /* FCP response/sense information. */
97};
98
99
100#define MAX_HANDLE_COUNT 15
101#define MULTI_STATUS_TYPE_FX00 0x0D
102
103struct multi_sts_entry_fx00 {
104 uint8_t entry_type; /* Entry type. */
105 uint8_t sys_define; /* System defined. */
106 uint8_t handle_count;
107 uint8_t entry_status;
108
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400109 __le32 handles[MAX_HANDLE_COUNT];
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400110};
111
112#define TSK_MGMT_IOCB_TYPE_FX00 0x05
113struct tsk_mgmt_entry_fx00 {
114 uint8_t entry_type; /* Entry type. */
115 uint8_t entry_count; /* Entry count. */
116 uint8_t sys_define;
117 uint8_t entry_status; /* Entry Status. */
118
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400119 __le32 handle; /* System handle. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400120
121 uint32_t handle_hi; /* System handle. */
122
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400123 __le16 tgt_id; /* Target Idx. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400124
125 uint16_t reserved_1;
126
127 uint16_t delay; /* Activity delay in seconds. */
128
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400129 __le16 timeout; /* Command timeout. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400130
131 struct scsi_lun lun; /* LUN (LE). */
132
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400133 __le32 control_flags; /* Control Flags. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400134
135 uint8_t reserved_2[32];
136};
137
138
139#define ABORT_IOCB_TYPE_FX00 0x08 /* Abort IOCB status. */
140struct abort_iocb_entry_fx00 {
141 uint8_t entry_type; /* Entry type. */
142 uint8_t entry_count; /* Entry count. */
143 uint8_t sys_define; /* System defined. */
144 uint8_t entry_status; /* Entry Status. */
145
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400146 __le32 handle; /* System handle. */
147 __le32 handle_hi; /* System handle. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400148
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400149 __le16 tgt_id_sts; /* Completion status. */
150 __le16 options;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400151
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400152 __le32 abort_handle; /* System handle. */
153 __le32 abort_handle_hi; /* System handle. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400154
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400155 __le16 req_que_no;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400156 uint8_t reserved_1[38];
157};
158
159#define IOCTL_IOSB_TYPE_FX00 0x0C
160struct ioctl_iocb_entry_fx00 {
161 uint8_t entry_type; /* Entry type. */
162 uint8_t entry_count; /* Entry count. */
163 uint8_t sys_define; /* System defined. */
164 uint8_t entry_status; /* Entry Status. */
165
166 uint32_t handle; /* System handle. */
167 uint32_t reserved_0; /* System handle. */
168
169 uint16_t comp_func_num;
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400170 __le16 fw_iotcl_flags;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400171
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400172 __le32 dataword_r; /* Data word returned */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400173 uint32_t adapid; /* Adapter ID */
174 uint32_t adapid_hi; /* Adapter ID high */
175 uint32_t reserved_1;
176
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400177 __le32 seq_no;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400178 uint8_t reserved_2[20];
179 uint32_t residuallen;
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400180 __le32 status;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400181};
182
183#define STATUS_CONT_TYPE_FX00 0x04
184
185#define FX00_IOCB_TYPE 0x0B
186struct fxdisc_entry_fx00 {
187 uint8_t entry_type; /* Entry type. */
188 uint8_t entry_count; /* Entry count. */
189 uint8_t sys_define; /* System Defined. */
190 uint8_t entry_status; /* Entry Status. */
191
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400192 __le32 handle; /* System handle. */
193 __le32 reserved_0; /* System handle. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400194
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400195 __le16 func_num;
196 __le16 req_xfrcnt;
197 __le16 req_dsdcnt;
198 __le16 rsp_xfrcnt;
199 __le16 rsp_dsdcnt;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400200 uint8_t flags;
201 uint8_t reserved_1;
202
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400203 __le32 dseg_rq_address[2]; /* Data segment 0 address. */
204 __le32 dseg_rq_len; /* Data segment 0 length. */
205 __le32 dseg_rsp_address[2]; /* Data segment 1 address. */
206 __le32 dseg_rsp_len; /* Data segment 1 length. */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400207
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400208 __le32 dataword;
209 __le32 adapid;
210 __le32 adapid_hi;
211 __le32 dataword_extra;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400212};
213
214struct qlafx00_tgt_node_info {
215 uint8_t tgt_node_wwpn[WWN_SIZE];
216 uint8_t tgt_node_wwnn[WWN_SIZE];
217 uint32_t tgt_node_state;
218 uint8_t reserved[128];
219 uint32_t reserved_1[8];
220 uint64_t reserved_2[4];
221} __packed;
222
223#define QLAFX00_TGT_NODE_INFO sizeof(struct qlafx00_tgt_node_info)
224
225#define QLAFX00_LINK_STATUS_DOWN 0x10
226#define QLAFX00_LINK_STATUS_UP 0x11
227
228#define QLAFX00_PORT_SPEED_2G 0x2
229#define QLAFX00_PORT_SPEED_4G 0x4
230#define QLAFX00_PORT_SPEED_8G 0x8
231#define QLAFX00_PORT_SPEED_10G 0xa
232struct port_info_data {
233 uint8_t port_state;
234 uint8_t port_type;
235 uint16_t port_identifier;
236 uint32_t up_port_state;
237 uint8_t fw_ver_num[32];
238 uint8_t portal_attrib;
239 uint16_t host_option;
240 uint8_t reset_delay;
241 uint8_t pdwn_retry_cnt;
242 uint16_t max_luns2tgt;
243 uint8_t risc_ver;
244 uint8_t pconn_option;
245 uint16_t risc_option;
246 uint16_t max_frame_len;
247 uint16_t max_iocb_alloc;
248 uint16_t exec_throttle;
249 uint8_t retry_cnt;
250 uint8_t retry_delay;
251 uint8_t port_name[8];
252 uint8_t port_id[3];
253 uint8_t link_status;
254 uint8_t plink_rate;
255 uint32_t link_config;
256 uint16_t adap_haddr;
257 uint8_t tgt_disc;
258 uint8_t log_tout;
259 uint8_t node_name[8];
260 uint16_t erisc_opt1;
261 uint8_t resp_acc_tmr;
262 uint8_t intr_del_tmr;
263 uint8_t erisc_opt2;
264 uint8_t alt_port_name[8];
265 uint8_t alt_node_name[8];
266 uint8_t link_down_tout;
267 uint8_t conn_type;
268 uint8_t fc_fw_mode;
269 uint32_t uiReserved[48];
270} __packed;
271
272/* OS Type Designations */
273#define OS_TYPE_UNKNOWN 0
274#define OS_TYPE_LINUX 2
275
276/* Linux Info */
277#define SYSNAME_LENGTH 128
278#define NODENAME_LENGTH 64
279#define RELEASE_LENGTH 64
280#define VERSION_LENGTH 64
281#define MACHINE_LENGTH 64
282#define DOMNAME_LENGTH 64
283
284struct host_system_info {
285 uint32_t os_type;
286 char sysname[SYSNAME_LENGTH];
287 char nodename[NODENAME_LENGTH];
288 char release[RELEASE_LENGTH];
289 char version[VERSION_LENGTH];
290 char machine[MACHINE_LENGTH];
291 char domainname[DOMNAME_LENGTH];
292 char hostdriver[VERSION_LENGTH];
293 uint32_t reserved[64];
294} __packed;
295
296struct register_host_info {
297 struct host_system_info hsi; /* host system info */
298 uint64_t utc; /* UTC (system time) */
299 uint32_t reserved[64]; /* future additions */
300} __packed;
301
302
303#define QLAFX00_PORT_DATA_INFO (sizeof(struct port_info_data))
304#define QLAFX00_TGT_NODE_LIST_SIZE (sizeof(uint32_t) * 32)
305
306struct config_info_data {
307 uint8_t product_name[256];
308 uint8_t symbolic_name[64];
309 uint8_t serial_num[32];
310 uint8_t hw_version[16];
311 uint8_t fw_version[16];
312 uint8_t uboot_version[16];
313 uint8_t fru_serial_num[32];
314
315 uint8_t fc_port_count;
316 uint8_t iscsi_port_count;
317 uint8_t reserved1[2];
318
319 uint8_t mode;
320 uint8_t log_level;
321 uint8_t reserved2[2];
322
323 uint32_t log_size;
324
325 uint8_t tgt_pres_mode;
326 uint8_t iqn_flags;
327 uint8_t lun_mapping;
328
329 uint64_t adapter_id;
330
331 uint32_t cluster_key_len;
Armen Baloyan71e56002013-08-27 01:37:38 -0400332 uint8_t cluster_key[16];
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400333
334 uint64_t cluster_master_id;
335 uint64_t cluster_slave_id;
336 uint8_t cluster_flags;
Armen Baloyan71e56002013-08-27 01:37:38 -0400337 uint32_t enabled_capabilities;
338 uint32_t nominal_temp_value;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400339} __packed;
340
341#define FXDISC_GET_CONFIG_INFO 0x01
342#define FXDISC_GET_PORT_INFO 0x02
343#define FXDISC_GET_TGT_NODE_INFO 0x80
344#define FXDISC_GET_TGT_NODE_LIST 0x81
345#define FXDISC_REG_HOST_INFO 0x99
346
Armen Baloyan966460d2013-08-27 01:37:45 -0400347#define QLAFX00_HBA_ICNTRL_REG 0x20B08
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400348#define QLAFX00_ICR_ENB_MASK 0x80000000
349#define QLAFX00_ICR_DIS_MASK 0x7fffffff
350#define QLAFX00_HST_RST_REG 0x18264
Armen Baloyan71e56002013-08-27 01:37:38 -0400351#define QLAFX00_SOC_TEMP_REG 0x184C4
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400352#define QLAFX00_HST_TO_HBA_REG 0x20A04
353#define QLAFX00_HBA_TO_HOST_REG 0x21B70
354#define QLAFX00_HST_INT_STS_BITS 0x7
355#define QLAFX00_BAR1_BASE_ADDR_REG 0x40018
356#define QLAFX00_PEX0_WIN0_BASE_ADDR_REG 0x41824
357
358#define QLAFX00_INTR_MB_CMPLT 0x1
359#define QLAFX00_INTR_RSP_CMPLT 0x2
360#define QLAFX00_INTR_MB_RSP_CMPLT 0x3
361#define QLAFX00_INTR_ASYNC_CMPLT 0x4
362#define QLAFX00_INTR_MB_ASYNC_CMPLT 0x5
363#define QLAFX00_INTR_RSP_ASYNC_CMPLT 0x6
364#define QLAFX00_INTR_ALL_CMPLT 0x7
365
366#define QLAFX00_MBA_SYSTEM_ERR 0x8002
Armen Baloyan71e56002013-08-27 01:37:38 -0400367#define QLAFX00_MBA_TEMP_OVER 0x8005
368#define QLAFX00_MBA_TEMP_NORM 0x8006
369#define QLAFX00_MBA_TEMP_CRIT 0x8007
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400370#define QLAFX00_MBA_LINK_UP 0x8011
371#define QLAFX00_MBA_LINK_DOWN 0x8012
372#define QLAFX00_MBA_PORT_UPDATE 0x8014
373#define QLAFX00_MBA_SHUTDOWN_RQSTD 0x8062
374
375#define SOC_SW_RST_CONTROL_REG_CORE0 0x0020800
376#define SOC_FABRIC_RST_CONTROL_REG 0x0020840
377#define SOC_FABRIC_CONTROL_REG 0x0020200
378#define SOC_FABRIC_CONFIG_REG 0x0020204
379
380#define SOC_INTERRUPT_SOURCE_I_CONTROL_REG 0x0020B00
381#define SOC_CORE_TIMER_REG 0x0021850
382#define SOC_IRQ_ACK_REG 0x00218b4
383
384#define CONTINUE_A64_TYPE_FX00 0x03 /* Continuation entry. */
385
386#define QLAFX00_SET_HST_INTR(ha, value) \
387 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HST_TO_HBA_REG, \
388 value)
389
390#define QLAFX00_CLR_HST_INTR(ha, value) \
391 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HBA_TO_HOST_REG, \
392 ~value)
393
394#define QLAFX00_RD_INTR_REG(ha) \
395 RD_REG_DWORD((ha)->cregbase + QLAFX00_HBA_TO_HOST_REG)
396
397#define QLAFX00_CLR_INTR_REG(ha, value) \
398 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HBA_TO_HOST_REG, \
399 ~value)
400
401#define QLAFX00_SET_HBA_SOC_REG(ha, off, val)\
402 WRT_REG_DWORD((ha)->cregbase + off, val)
403
404#define QLAFX00_GET_HBA_SOC_REG(ha, off)\
405 RD_REG_DWORD((ha)->cregbase + off)
406
407#define QLAFX00_HBA_RST_REG(ha, val)\
408 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HST_RST_REG, val)
409
410#define QLAFX00_RD_ICNTRL_REG(ha) \
411 RD_REG_DWORD((ha)->cregbase + QLAFX00_HBA_ICNTRL_REG)
412
413#define QLAFX00_ENABLE_ICNTRL_REG(ha) \
414 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HBA_ICNTRL_REG, \
415 (QLAFX00_GET_HBA_SOC_REG(ha, QLAFX00_HBA_ICNTRL_REG) | \
416 QLAFX00_ICR_ENB_MASK))
417
418#define QLAFX00_DISABLE_ICNTRL_REG(ha) \
419 WRT_REG_DWORD((ha)->cregbase + QLAFX00_HBA_ICNTRL_REG, \
420 (QLAFX00_GET_HBA_SOC_REG(ha, QLAFX00_HBA_ICNTRL_REG) & \
421 QLAFX00_ICR_DIS_MASK))
422
423#define QLAFX00_RD_REG(ha, off) \
424 RD_REG_DWORD((ha)->cregbase + off)
425
426#define QLAFX00_WR_REG(ha, off, val) \
427 WRT_REG_DWORD((ha)->cregbase + off, val)
428
429struct qla_mt_iocb_rqst_fx00 {
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400430 __le32 reserved_0;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400431
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400432 __le16 func_type;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400433 uint8_t flags;
434 uint8_t reserved_1;
435
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400436 __le32 dataword;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400437
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400438 __le32 adapid;
439 __le32 adapid_hi;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400440
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400441 __le32 dataword_extra;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400442
Saurav Kashyap0a77b582013-07-12 14:47:50 -0400443 __le16 req_len;
444 __le16 reserved_2;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400445
Saurav Kashyap0a77b582013-07-12 14:47:50 -0400446 __le16 rsp_len;
447 __le16 reserved_3;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400448};
449
450struct qla_mt_iocb_rsp_fx00 {
451 uint32_t reserved_1;
452
453 uint16_t func_type;
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400454 __le16 ioctl_flags;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400455
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400456 __le32 ioctl_data;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400457
458 uint32_t adapid;
459 uint32_t adapid_hi;
460
461 uint32_t reserved_2;
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400462 __le32 seq_number;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400463
464 uint8_t reserved_3[20];
465
466 int32_t res_count;
467
Saurav Kashyap1f8deef2013-06-25 11:27:21 -0400468 __le32 status;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400469};
470
471
472#define MAILBOX_REGISTER_COUNT_FX00 16
473#define AEN_MAILBOX_REGISTER_COUNT_FX00 8
474#define MAX_FIBRE_DEVICES_FX00 512
475#define MAX_LUNS_FX00 0x1024
476#define MAX_TARGETS_FX00 MAX_ISA_DEVICES
477#define REQUEST_ENTRY_CNT_FX00 512 /* Number of request entries. */
478#define RESPONSE_ENTRY_CNT_FX00 256 /* Number of response entries.*/
479
480/*
481 * Firmware state codes for QLAFX00 adapters
482 */
483#define FSTATE_FX00_CONFIG_WAIT 0x0000 /* Waiting for driver to issue
484 * Initialize FW Mbox cmd
485 */
486#define FSTATE_FX00_INITIALIZED 0x1000 /* FW has been initialized by
487 * the driver
488 */
489
490#define FX00_DEF_RATOV 10
491
492struct mr_data_fx00 {
493 uint8_t product_name[256];
494 uint8_t symbolic_name[64];
495 uint8_t serial_num[32];
496 uint8_t hw_version[16];
497 uint8_t fw_version[16];
498 uint8_t uboot_version[16];
499 uint8_t fru_serial_num[32];
500 fc_port_t fcport; /* fcport used for requests
501 * that are not linked
502 * to a particular target
503 */
504 uint8_t fw_hbt_en;
505 uint8_t fw_hbt_cnt;
506 uint8_t fw_hbt_miss_cnt;
507 uint32_t old_fw_hbt_cnt;
508 uint16_t fw_reset_timer_tick;
509 uint8_t fw_reset_timer_exp;
Armen Baloyan71e56002013-08-27 01:37:38 -0400510 uint16_t fw_critemp_timer_tick;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400511 uint32_t old_aenmbx0_state;
Armen Baloyan71e56002013-08-27 01:37:38 -0400512 uint32_t critical_temperature;
Armen Baloyan1fe19ee2013-08-27 01:37:41 -0400513 bool extended_io_enabled;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400514};
515
Armen Baloyan1fe19ee2013-08-27 01:37:41 -0400516#define QLAFX00_EXTENDED_IO_EN_MASK 0x20
517
Armen Baloyan71e56002013-08-27 01:37:38 -0400518/*
519 * SoC Junction Temperature is stored in
520 * bits 9:1 of SoC Junction Temperature Register
521 * in a firmware specific format format.
522 * To get the temperature in Celsius degrees
523 * the value from this bitfiled should be converted
524 * using this formula:
525 * Temperature (degrees C) = ((3,153,000 - (10,000 * X)) / 13,825)
526 * where X is the bit field value
527 * this macro reads the register, extracts the bitfield value,
528 * performs the calcualtions and returns temperature in Celsius
529 */
530#define QLAFX00_GET_TEMPERATURE(ha) ((3153000 - (10000 * \
531 ((QLAFX00_RD_REG(ha, QLAFX00_SOC_TEMP_REG) & 0x3FE) >> 1))) / 13825)
532
533
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400534#define QLAFX00_LOOP_DOWN_TIME 615 /* 600 */
535#define QLAFX00_HEARTBEAT_INTERVAL 6 /* number of seconds */
536#define QLAFX00_HEARTBEAT_MISS_CNT 3 /* number of miss */
537#define QLAFX00_RESET_INTERVAL 120 /* number of seconds */
538#define QLAFX00_MAX_RESET_INTERVAL 600 /* number of seconds */
Armen Baloyan71e56002013-08-27 01:37:38 -0400539#define QLAFX00_CRITEMP_INTERVAL 60 /* number of seconds */
Armen Baloyanf875cd42013-08-27 01:37:47 -0400540
541#define QLAFX00_CRITEMP_THRSHLD 80 /* Celsius degrees */
542
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400543#endif