qla2xxx: Honor FCP_RSP retry delay timer field.
[linux-2.6-block.git] / drivers / scsi / qla2xxx / qla_def.h
CommitLineData
fa90c54f
AV
1/*
2 * QLogic Fibre Channel HBA Driver
bd21eaf9 3 * Copyright (c) 2003-2014 QLogic Corporation
fa90c54f
AV
4 *
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
1da177e4
LT
7#ifndef __QLA_DEF_H
8#define __QLA_DEF_H
9
10#include <linux/kernel.h>
11#include <linux/init.h>
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/list.h>
15#include <linux/pci.h>
16#include <linux/dma-mapping.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19#include <linux/dmapool.h>
20#include <linux/mempool.h>
21#include <linux/spinlock.h>
22#include <linux/completion.h>
abbd8870 23#include <linux/interrupt.h>
19a7b4ae 24#include <linux/workqueue.h>
5433383e 25#include <linux/firmware.h>
14e660e6 26#include <linux/aer.h>
4d4df193 27#include <linux/mutex.h>
1da177e4
LT
28
29#include <scsi/scsi.h>
30#include <scsi/scsi_host.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_cmnd.h>
392e2f65 33#include <scsi/scsi_transport_fc.h>
9a069e19 34#include <scsi/scsi_bsg_fc.h>
1da177e4 35
6e98016c 36#include "qla_bsg.h"
a9083016 37#include "qla_nx.h"
7ec0effd 38#include "qla_nx2.h"
6a03b4cd
HZ
39#define QLA2XXX_DRIVER_NAME "qla2xxx"
40#define QLA2XXX_APIDEV "ql2xapidev"
f24b697b 41#define QLA2XXX_MANUFACTURER "QLogic Corporation"
cb63067a 42
1da177e4
LT
43/*
44 * We have MAILBOX_REGISTER_COUNT sized arrays in a few places,
45 * but that's fine as we don't look at the last 24 ones for
46 * ISP2100 HBAs.
47 */
48#define MAILBOX_REGISTER_COUNT_2100 8
67ddda35 49#define MAILBOX_REGISTER_COUNT_2200 24
1da177e4
LT
50#define MAILBOX_REGISTER_COUNT 32
51
52#define QLA2200A_RISC_ROM_VER 4
53#define FPM_2300 6
54#define FPM_2310 7
55
56#include "qla_settings.h"
57
fa2a1ce5 58/*
1da177e4
LT
59 * Data bit definitions
60 */
61#define BIT_0 0x1
62#define BIT_1 0x2
63#define BIT_2 0x4
64#define BIT_3 0x8
65#define BIT_4 0x10
66#define BIT_5 0x20
67#define BIT_6 0x40
68#define BIT_7 0x80
69#define BIT_8 0x100
70#define BIT_9 0x200
71#define BIT_10 0x400
72#define BIT_11 0x800
73#define BIT_12 0x1000
74#define BIT_13 0x2000
75#define BIT_14 0x4000
76#define BIT_15 0x8000
77#define BIT_16 0x10000
78#define BIT_17 0x20000
79#define BIT_18 0x40000
80#define BIT_19 0x80000
81#define BIT_20 0x100000
82#define BIT_21 0x200000
83#define BIT_22 0x400000
84#define BIT_23 0x800000
85#define BIT_24 0x1000000
86#define BIT_25 0x2000000
87#define BIT_26 0x4000000
88#define BIT_27 0x8000000
89#define BIT_28 0x10000000
90#define BIT_29 0x20000000
91#define BIT_30 0x40000000
92#define BIT_31 0x80000000
93
94#define LSB(x) ((uint8_t)(x))
95#define MSB(x) ((uint8_t)((uint16_t)(x) >> 8))
96
97#define LSW(x) ((uint16_t)(x))
98#define MSW(x) ((uint16_t)((uint32_t)(x) >> 16))
99
100#define LSD(x) ((uint32_t)((uint64_t)(x)))
101#define MSD(x) ((uint32_t)((((uint64_t)(x)) >> 16) >> 16))
102
2afa19a9 103#define MAKE_HANDLE(x, y) ((uint32_t)((((uint32_t)(x)) << 16) | (uint32_t)(y)))
1da177e4
LT
104
105/*
106 * I/O register
107*/
108
109#define RD_REG_BYTE(addr) readb(addr)
110#define RD_REG_WORD(addr) readw(addr)
111#define RD_REG_DWORD(addr) readl(addr)
112#define RD_REG_BYTE_RELAXED(addr) readb_relaxed(addr)
113#define RD_REG_WORD_RELAXED(addr) readw_relaxed(addr)
114#define RD_REG_DWORD_RELAXED(addr) readl_relaxed(addr)
115#define WRT_REG_BYTE(addr, data) writeb(data,addr)
116#define WRT_REG_WORD(addr, data) writew(data,addr)
117#define WRT_REG_DWORD(addr, data) writel(data,addr)
118
7d613ac6
SV
119/*
120 * ISP83XX specific remote register addresses
121 */
122#define QLA83XX_LED_PORT0 0x00201320
123#define QLA83XX_LED_PORT1 0x00201328
124#define QLA83XX_IDC_DEV_STATE 0x22102384
125#define QLA83XX_IDC_MAJOR_VERSION 0x22102380
126#define QLA83XX_IDC_MINOR_VERSION 0x22102398
127#define QLA83XX_IDC_DRV_PRESENCE 0x22102388
128#define QLA83XX_IDC_DRIVER_ACK 0x2210238c
129#define QLA83XX_IDC_CONTROL 0x22102390
130#define QLA83XX_IDC_AUDIT 0x22102394
131#define QLA83XX_IDC_LOCK_RECOVERY 0x2210239c
132#define QLA83XX_DRIVER_LOCKID 0x22102104
133#define QLA83XX_DRIVER_LOCK 0x8111c028
134#define QLA83XX_DRIVER_UNLOCK 0x8111c02c
135#define QLA83XX_FLASH_LOCKID 0x22102100
136#define QLA83XX_FLASH_LOCK 0x8111c010
137#define QLA83XX_FLASH_UNLOCK 0x8111c014
138#define QLA83XX_DEV_PARTINFO1 0x221023e0
139#define QLA83XX_DEV_PARTINFO2 0x221023e4
140#define QLA83XX_FW_HEARTBEAT 0x221020b0
141#define QLA83XX_PEG_HALT_STATUS1 0x221020a8
142#define QLA83XX_PEG_HALT_STATUS2 0x221020ac
143
144/* 83XX: Macros defining 8200 AEN Reason codes */
145#define IDC_DEVICE_STATE_CHANGE BIT_0
146#define IDC_PEG_HALT_STATUS_CHANGE BIT_1
147#define IDC_NIC_FW_REPORTED_FAILURE BIT_2
148#define IDC_HEARTBEAT_FAILURE BIT_3
149
150/* 83XX: Macros defining 8200 AEN Error-levels */
151#define ERR_LEVEL_NON_FATAL 0x1
152#define ERR_LEVEL_RECOVERABLE_FATAL 0x2
153#define ERR_LEVEL_UNRECOVERABLE_FATAL 0x4
154
155/* 83XX: Macros for IDC Version */
156#define QLA83XX_SUPP_IDC_MAJOR_VERSION 0x01
157#define QLA83XX_SUPP_IDC_MINOR_VERSION 0x0
158
159/* 83XX: Macros for scheduling dpc tasks */
160#define QLA83XX_NIC_CORE_RESET 0x1
161#define QLA83XX_IDC_STATE_HANDLER 0x2
162#define QLA83XX_NIC_CORE_UNRECOVERABLE 0x3
163
164/* 83XX: Macros for defining IDC-Control bits */
165#define QLA83XX_IDC_RESET_DISABLED BIT_0
166#define QLA83XX_IDC_GRACEFUL_RESET BIT_1
167
168/* 83XX: Macros for different timeouts */
169#define QLA83XX_IDC_INITIALIZATION_TIMEOUT 30
170#define QLA83XX_IDC_RESET_ACK_TIMEOUT 10
171#define QLA83XX_MAX_LOCK_RECOVERY_WAIT (2 * HZ)
172
173/* 83XX: Macros for defining class in DEV-Partition Info register */
174#define QLA83XX_CLASS_TYPE_NONE 0x0
175#define QLA83XX_CLASS_TYPE_NIC 0x1
176#define QLA83XX_CLASS_TYPE_FCOE 0x2
177#define QLA83XX_CLASS_TYPE_ISCSI 0x3
178
179/* 83XX: Macros for IDC Lock-Recovery stages */
180#define IDC_LOCK_RECOVERY_STAGE1 0x1 /* Stage1: Intent for
181 * lock-recovery
182 */
183#define IDC_LOCK_RECOVERY_STAGE2 0x2 /* Stage2: Perform lock-recovery */
184
185/* 83XX: Macros for IDC Audit type */
186#define IDC_AUDIT_TIMESTAMP 0x0 /* IDC-AUDIT: Record timestamp of
187 * dev-state change to NEED-RESET
188 * or NEED-QUIESCENT
189 */
190#define IDC_AUDIT_COMPLETION 0x1 /* IDC-AUDIT: Record duration of
191 * reset-recovery completion is
192 * second
193 */
2d5a4c34
HM
194/* ISP2031: Values for laser on/off */
195#define PORT_0_2031 0x00201340
196#define PORT_1_2031 0x00201350
197#define LASER_ON_2031 0x01800100
198#define LASER_OFF_2031 0x01800180
7d613ac6 199
f6df144c 200/*
201 * The ISP2312 v2 chip cannot access the FLASH/GPIO registers via MMIO in an
202 * 133Mhz slot.
203 */
204#define RD_REG_WORD_PIO(addr) (inw((unsigned long)addr))
205#define WRT_REG_WORD_PIO(addr, data) (outw(data,(unsigned long)addr))
206
1da177e4
LT
207/*
208 * Fibre Channel device definitions.
209 */
210#define WWN_SIZE 8 /* Size of WWPN, WWN & WWNN */
642ef983
CD
211#define MAX_FIBRE_DEVICES_2100 512
212#define MAX_FIBRE_DEVICES_2400 2048
213#define MAX_FIBRE_DEVICES_LOOP 128
214#define MAX_FIBRE_DEVICES_MAX MAX_FIBRE_DEVICES_2400
5f16b331 215#define LOOPID_MAP_SIZE (ha->max_fibre_devices)
cc4731f5 216#define MAX_FIBRE_LUNS 0xFFFF
1da177e4
LT
217#define MAX_HOST_COUNT 16
218
219/*
220 * Host adapter default definitions.
221 */
222#define MAX_BUSES 1 /* We only have one bus today */
1da177e4
LT
223#define MIN_LUNS 8
224#define MAX_LUNS MAX_FIBRE_LUNS
fa2a1ce5
AV
225#define MAX_CMDS_PER_LUN 255
226
1da177e4
LT
227/*
228 * Fibre Channel device definitions.
229 */
230#define SNS_LAST_LOOP_ID_2100 0xfe
231#define SNS_LAST_LOOP_ID_2300 0x7ff
232
233#define LAST_LOCAL_LOOP_ID 0x7d
234#define SNS_FL_PORT 0x7e
235#define FABRIC_CONTROLLER 0x7f
236#define SIMPLE_NAME_SERVER 0x80
237#define SNS_FIRST_LOOP_ID 0x81
238#define MANAGEMENT_SERVER 0xfe
239#define BROADCAST 0xff
240
3d71644c
AV
241/*
242 * There is no correspondence between an N-PORT id and an AL_PA. Therefore the
243 * valid range of an N-PORT id is 0 through 0x7ef.
244 */
245#define NPH_LAST_HANDLE 0x7ef
cca5335c 246#define NPH_MGMT_SERVER 0x7fa /* FFFFFA */
3d71644c
AV
247#define NPH_SNS 0x7fc /* FFFFFC */
248#define NPH_FABRIC_CONTROLLER 0x7fd /* FFFFFD */
249#define NPH_F_PORT 0x7fe /* FFFFFE */
250#define NPH_IP_BROADCAST 0x7ff /* FFFFFF */
251
252#define MAX_CMDSZ 16 /* SCSI maximum CDB size. */
253#include "qla_fw.h"
1da177e4
LT
254/*
255 * Timeout timer counts in seconds
256 */
8482e118 257#define PORT_RETRY_TIME 1
1da177e4
LT
258#define LOOP_DOWN_TIMEOUT 60
259#define LOOP_DOWN_TIME 255 /* 240 */
260#define LOOP_DOWN_RESET (LOOP_DOWN_TIME - 30)
261
8d93f550
CD
262#define DEFAULT_OUTSTANDING_COMMANDS 1024
263#define MIN_OUTSTANDING_COMMANDS 128
1da177e4
LT
264
265/* ISP request and response entry counts (37-65535) */
266#define REQUEST_ENTRY_CNT_2100 128 /* Number of request entries. */
267#define REQUEST_ENTRY_CNT_2200 2048 /* Number of request entries. */
d743de66 268#define REQUEST_ENTRY_CNT_24XX 2048 /* Number of request entries. */
1da177e4
LT
269#define RESPONSE_ENTRY_CNT_2100 64 /* Number of response entries.*/
270#define RESPONSE_ENTRY_CNT_2300 512 /* Number of response entries.*/
2afa19a9 271#define RESPONSE_ENTRY_CNT_MQ 128 /* Number of response entries.*/
2d70c103 272#define ATIO_ENTRY_CNT_24XX 4096 /* Number of ATIO entries. */
8ae6d9c7 273#define RESPONSE_ENTRY_CNT_FX00 256 /* Number of response entries.*/
1da177e4 274
17d98630
AC
275struct req_que;
276
bad75002
AE
277/*
278 * (sd.h is not exported, hence local inclusion)
279 * Data Integrity Field tuple.
280 */
281struct sd_dif_tuple {
282 __be16 guard_tag; /* Checksum */
283 __be16 app_tag; /* Opaque storage */
284 __be32 ref_tag; /* Target LBA or indirect LBA */
285};
286
1da177e4 287/*
fa2a1ce5 288 * SCSI Request Block
1da177e4 289 */
9ba56b95 290struct srb_cmd {
1da177e4 291 struct scsi_cmnd *cmd; /* Linux SCSI command pkt */
1da177e4 292 uint32_t request_sense_length;
8ae6d9c7 293 uint32_t fw_sense_length;
1da177e4 294 uint8_t *request_sense_ptr;
cf53b069 295 void *ctx;
9ba56b95 296};
1da177e4
LT
297
298/*
299 * SRB flag definitions
300 */
bad75002
AE
301#define SRB_DMA_VALID BIT_0 /* Command sent to ISP */
302#define SRB_FCP_CMND_DMA_VALID BIT_12 /* DIF: DSD List valid */
303#define SRB_CRC_CTX_DMA_VALID BIT_2 /* DIF: context DMA valid */
304#define SRB_CRC_PROT_DMA_VALID BIT_4 /* DIF: prot DMA valid */
305#define SRB_CRC_CTX_DSD_VALID BIT_5 /* DIF: dsd_list valid */
306
307/* To identify if a srb is of T10-CRC type. @sp => srb_t pointer */
308#define IS_PROT_IO(sp) (sp->flags & SRB_CRC_CTX_DSD_VALID)
1da177e4 309
ac280b67
AV
310/*
311 * SRB extensions.
312 */
4916392b
MI
313struct srb_iocb {
314 union {
315 struct {
316 uint16_t flags;
317#define SRB_LOGIN_RETRIED BIT_0
318#define SRB_LOGIN_COND_PLOGI BIT_1
319#define SRB_LOGIN_SKIP_PRLI BIT_2
320 uint16_t data[2];
321 } logio;
3822263e
MI
322 struct {
323 /*
324 * Values for flags field below are as
325 * defined in tsk_mgmt_entry struct
326 * for control_flags field in qla_fw.h.
327 */
9cb78c16 328 uint64_t lun;
3822263e 329 uint32_t flags;
3822263e 330 uint32_t data;
8ae6d9c7 331 struct completion comp;
1f8deefe 332 __le16 comp_status;
3822263e 333 } tmf;
8ae6d9c7
GM
334 struct {
335#define SRB_FXDISC_REQ_DMA_VALID BIT_0
336#define SRB_FXDISC_RESP_DMA_VALID BIT_1
337#define SRB_FXDISC_REQ_DWRD_VALID BIT_2
338#define SRB_FXDISC_RSP_DWRD_VALID BIT_3
339#define FXDISC_TIMEOUT 20
340 uint8_t flags;
341 uint32_t req_len;
342 uint32_t rsp_len;
343 void *req_addr;
344 void *rsp_addr;
345 dma_addr_t req_dma_handle;
346 dma_addr_t rsp_dma_handle;
1f8deefe
SK
347 __le32 adapter_id;
348 __le32 adapter_id_hi;
349 __le16 req_func_type;
350 __le32 req_data;
351 __le32 req_data_extra;
352 __le32 result;
353 __le32 seq_number;
354 __le16 fw_flags;
8ae6d9c7 355 struct completion fxiocb_comp;
1f8deefe 356 __le32 reserved_0;
8ae6d9c7
GM
357 uint8_t reserved_1;
358 } fxiocb;
359 struct {
360 uint32_t cmd_hndl;
1f8deefe 361 __le16 comp_status;
8ae6d9c7
GM
362 struct completion comp;
363 } abt;
4916392b 364 } u;
99b0bec7 365
ac280b67 366 struct timer_list timer;
9ba56b95 367 void (*timeout)(void *);
ac280b67
AV
368};
369
4916392b
MI
370/* Values for srb_ctx type */
371#define SRB_LOGIN_CMD 1
372#define SRB_LOGOUT_CMD 2
373#define SRB_ELS_CMD_RPT 3
374#define SRB_ELS_CMD_HST 4
375#define SRB_CT_CMD 5
376#define SRB_ADISC_CMD 6
3822263e 377#define SRB_TM_CMD 7
9ba56b95 378#define SRB_SCSI_CMD 8
a9b6f722 379#define SRB_BIDI_CMD 9
8ae6d9c7
GM
380#define SRB_FXIOCB_DCMD 10
381#define SRB_FXIOCB_BCMD 11
382#define SRB_ABT_CMD 12
383
ac280b67 384
9ba56b95
GM
385typedef struct srb {
386 atomic_t ref_count;
387 struct fc_port *fcport;
388 uint32_t handle;
389 uint16_t flags;
9a069e19 390 uint16_t type;
4916392b 391 char *name;
5780790e 392 int iocbs;
4916392b 393 union {
9ba56b95 394 struct srb_iocb iocb_cmd;
4916392b 395 struct fc_bsg_job *bsg_job;
9ba56b95 396 struct srb_cmd scmd;
4916392b 397 } u;
9ba56b95
GM
398 void (*done)(void *, void *, int);
399 void (*free)(void *, void *);
400} srb_t;
401
402#define GET_CMD_SP(sp) (sp->u.scmd.cmd)
403#define SET_CMD_SP(sp, cmd) (sp->u.scmd.cmd = cmd)
404#define GET_CMD_CTX_SP(sp) (sp->u.scmd.ctx)
405
406#define GET_CMD_SENSE_LEN(sp) \
407 (sp->u.scmd.request_sense_length)
408#define SET_CMD_SENSE_LEN(sp, len) \
409 (sp->u.scmd.request_sense_length = len)
410#define GET_CMD_SENSE_PTR(sp) \
411 (sp->u.scmd.request_sense_ptr)
412#define SET_CMD_SENSE_PTR(sp, ptr) \
413 (sp->u.scmd.request_sense_ptr = ptr)
8ae6d9c7
GM
414#define GET_FW_SENSE_LEN(sp) \
415 (sp->u.scmd.fw_sense_length)
416#define SET_FW_SENSE_LEN(sp, len) \
417 (sp->u.scmd.fw_sense_length = len)
9a069e19
GM
418
419struct msg_echo_lb {
420 dma_addr_t send_dma;
421 dma_addr_t rcv_dma;
422 uint16_t req_sg_cnt;
423 uint16_t rsp_sg_cnt;
424 uint16_t options;
425 uint32_t transfer_size;
1b98b421 426 uint32_t iteration_count;
9a069e19
GM
427};
428
1da177e4
LT
429/*
430 * ISP I/O Register Set structure definitions.
431 */
3d71644c
AV
432struct device_reg_2xxx {
433 uint16_t flash_address; /* Flash BIOS address */
434 uint16_t flash_data; /* Flash BIOS data */
1da177e4 435 uint16_t unused_1[1]; /* Gap */
3d71644c 436 uint16_t ctrl_status; /* Control/Status */
fa2a1ce5 437#define CSR_FLASH_64K_BANK BIT_3 /* Flash upper 64K bank select */
1da177e4
LT
438#define CSR_FLASH_ENABLE BIT_1 /* Flash BIOS Read/Write enable */
439#define CSR_ISP_SOFT_RESET BIT_0 /* ISP soft reset */
440
3d71644c 441 uint16_t ictrl; /* Interrupt control */
1da177e4
LT
442#define ICR_EN_INT BIT_15 /* ISP enable interrupts. */
443#define ICR_EN_RISC BIT_3 /* ISP enable RISC interrupts. */
444
3d71644c 445 uint16_t istatus; /* Interrupt status */
1da177e4
LT
446#define ISR_RISC_INT BIT_3 /* RISC interrupt */
447
3d71644c
AV
448 uint16_t semaphore; /* Semaphore */
449 uint16_t nvram; /* NVRAM register. */
1da177e4
LT
450#define NVR_DESELECT 0
451#define NVR_BUSY BIT_15
452#define NVR_WRT_ENABLE BIT_14 /* Write enable */
453#define NVR_PR_ENABLE BIT_13 /* Protection register enable */
454#define NVR_DATA_IN BIT_3
455#define NVR_DATA_OUT BIT_2
456#define NVR_SELECT BIT_1
457#define NVR_CLOCK BIT_0
458
45aeaf1e
RA
459#define NVR_WAIT_CNT 20000
460
1da177e4
LT
461 union {
462 struct {
3d71644c
AV
463 uint16_t mailbox0;
464 uint16_t mailbox1;
465 uint16_t mailbox2;
466 uint16_t mailbox3;
467 uint16_t mailbox4;
468 uint16_t mailbox5;
469 uint16_t mailbox6;
470 uint16_t mailbox7;
471 uint16_t unused_2[59]; /* Gap */
1da177e4
LT
472 } __attribute__((packed)) isp2100;
473 struct {
3d71644c
AV
474 /* Request Queue */
475 uint16_t req_q_in; /* In-Pointer */
476 uint16_t req_q_out; /* Out-Pointer */
477 /* Response Queue */
478 uint16_t rsp_q_in; /* In-Pointer */
479 uint16_t rsp_q_out; /* Out-Pointer */
1da177e4
LT
480
481 /* RISC to Host Status */
fa2a1ce5 482 uint32_t host_status;
1da177e4
LT
483#define HSR_RISC_INT BIT_15 /* RISC interrupt */
484#define HSR_RISC_PAUSED BIT_8 /* RISC Paused */
485
486 /* Host to Host Semaphore */
fa2a1ce5 487 uint16_t host_semaphore;
3d71644c
AV
488 uint16_t unused_3[17]; /* Gap */
489 uint16_t mailbox0;
490 uint16_t mailbox1;
491 uint16_t mailbox2;
492 uint16_t mailbox3;
493 uint16_t mailbox4;
494 uint16_t mailbox5;
495 uint16_t mailbox6;
496 uint16_t mailbox7;
497 uint16_t mailbox8;
498 uint16_t mailbox9;
499 uint16_t mailbox10;
500 uint16_t mailbox11;
501 uint16_t mailbox12;
502 uint16_t mailbox13;
503 uint16_t mailbox14;
504 uint16_t mailbox15;
505 uint16_t mailbox16;
506 uint16_t mailbox17;
507 uint16_t mailbox18;
508 uint16_t mailbox19;
509 uint16_t mailbox20;
510 uint16_t mailbox21;
511 uint16_t mailbox22;
512 uint16_t mailbox23;
513 uint16_t mailbox24;
514 uint16_t mailbox25;
515 uint16_t mailbox26;
516 uint16_t mailbox27;
517 uint16_t mailbox28;
518 uint16_t mailbox29;
519 uint16_t mailbox30;
520 uint16_t mailbox31;
521 uint16_t fb_cmd;
522 uint16_t unused_4[10]; /* Gap */
1da177e4
LT
523 } __attribute__((packed)) isp2300;
524 } u;
525
3d71644c 526 uint16_t fpm_diag_config;
c81d04c9
AV
527 uint16_t unused_5[0x4]; /* Gap */
528 uint16_t risc_hw;
529 uint16_t unused_5_1; /* Gap */
3d71644c 530 uint16_t pcr; /* Processor Control Register. */
1da177e4 531 uint16_t unused_6[0x5]; /* Gap */
3d71644c 532 uint16_t mctr; /* Memory Configuration and Timing. */
1da177e4 533 uint16_t unused_7[0x3]; /* Gap */
3d71644c 534 uint16_t fb_cmd_2100; /* Unused on 23XX */
1da177e4 535 uint16_t unused_8[0x3]; /* Gap */
3d71644c 536 uint16_t hccr; /* Host command & control register. */
1da177e4
LT
537#define HCCR_HOST_INT BIT_7 /* Host interrupt bit */
538#define HCCR_RISC_PAUSE BIT_5 /* Pause mode bit */
539 /* HCCR commands */
540#define HCCR_RESET_RISC 0x1000 /* Reset RISC */
541#define HCCR_PAUSE_RISC 0x2000 /* Pause RISC */
542#define HCCR_RELEASE_RISC 0x3000 /* Release RISC from reset. */
543#define HCCR_SET_HOST_INT 0x5000 /* Set host interrupt */
544#define HCCR_CLR_HOST_INT 0x6000 /* Clear HOST interrupt */
545#define HCCR_CLR_RISC_INT 0x7000 /* Clear RISC interrupt */
546#define HCCR_DISABLE_PARITY_PAUSE 0x4001 /* Disable parity error RISC pause. */
547#define HCCR_ENABLE_PARITY 0xA000 /* Enable PARITY interrupt */
548
549 uint16_t unused_9[5]; /* Gap */
3d71644c
AV
550 uint16_t gpiod; /* GPIO Data register. */
551 uint16_t gpioe; /* GPIO Enable register. */
1da177e4
LT
552#define GPIO_LED_MASK 0x00C0
553#define GPIO_LED_GREEN_OFF_AMBER_OFF 0x0000
554#define GPIO_LED_GREEN_ON_AMBER_OFF 0x0040
555#define GPIO_LED_GREEN_OFF_AMBER_ON 0x0080
556#define GPIO_LED_GREEN_ON_AMBER_ON 0x00C0
f6df144c 557#define GPIO_LED_ALL_OFF 0x0000
558#define GPIO_LED_RED_ON_OTHER_OFF 0x0001 /* isp2322 */
559#define GPIO_LED_RGA_ON 0x00C1 /* isp2322: red green amber */
1da177e4
LT
560
561 union {
562 struct {
3d71644c
AV
563 uint16_t unused_10[8]; /* Gap */
564 uint16_t mailbox8;
565 uint16_t mailbox9;
566 uint16_t mailbox10;
567 uint16_t mailbox11;
568 uint16_t mailbox12;
569 uint16_t mailbox13;
570 uint16_t mailbox14;
571 uint16_t mailbox15;
572 uint16_t mailbox16;
573 uint16_t mailbox17;
574 uint16_t mailbox18;
575 uint16_t mailbox19;
576 uint16_t mailbox20;
577 uint16_t mailbox21;
578 uint16_t mailbox22;
579 uint16_t mailbox23; /* Also probe reg. */
1da177e4
LT
580 } __attribute__((packed)) isp2200;
581 } u_end;
3d71644c
AV
582};
583
73208dfd 584struct device_reg_25xxmq {
08029990
AV
585 uint32_t req_q_in;
586 uint32_t req_q_out;
587 uint32_t rsp_q_in;
588 uint32_t rsp_q_out;
aa230bc5
AE
589 uint32_t atio_q_in;
590 uint32_t atio_q_out;
73208dfd
AC
591};
592
8ae6d9c7
GM
593
594struct device_reg_fx00 {
595 uint32_t mailbox0; /* 00 */
596 uint32_t mailbox1; /* 04 */
597 uint32_t mailbox2; /* 08 */
598 uint32_t mailbox3; /* 0C */
599 uint32_t mailbox4; /* 10 */
600 uint32_t mailbox5; /* 14 */
601 uint32_t mailbox6; /* 18 */
602 uint32_t mailbox7; /* 1C */
603 uint32_t mailbox8; /* 20 */
604 uint32_t mailbox9; /* 24 */
605 uint32_t mailbox10; /* 28 */
606 uint32_t mailbox11;
607 uint32_t mailbox12;
608 uint32_t mailbox13;
609 uint32_t mailbox14;
610 uint32_t mailbox15;
611 uint32_t mailbox16;
612 uint32_t mailbox17;
613 uint32_t mailbox18;
614 uint32_t mailbox19;
615 uint32_t mailbox20;
616 uint32_t mailbox21;
617 uint32_t mailbox22;
618 uint32_t mailbox23;
619 uint32_t mailbox24;
620 uint32_t mailbox25;
621 uint32_t mailbox26;
622 uint32_t mailbox27;
623 uint32_t mailbox28;
624 uint32_t mailbox29;
625 uint32_t mailbox30;
626 uint32_t mailbox31;
627 uint32_t aenmailbox0;
628 uint32_t aenmailbox1;
629 uint32_t aenmailbox2;
630 uint32_t aenmailbox3;
631 uint32_t aenmailbox4;
632 uint32_t aenmailbox5;
633 uint32_t aenmailbox6;
634 uint32_t aenmailbox7;
635 /* Request Queue. */
636 uint32_t req_q_in; /* A0 - Request Queue In-Pointer */
637 uint32_t req_q_out; /* A4 - Request Queue Out-Pointer */
638 /* Response Queue. */
639 uint32_t rsp_q_in; /* A8 - Response Queue In-Pointer */
640 uint32_t rsp_q_out; /* AC - Response Queue Out-Pointer */
641 /* Init values shadowed on FW Up Event */
642 uint32_t initval0; /* B0 */
643 uint32_t initval1; /* B4 */
644 uint32_t initval2; /* B8 */
645 uint32_t initval3; /* BC */
646 uint32_t initval4; /* C0 */
647 uint32_t initval5; /* C4 */
648 uint32_t initval6; /* C8 */
649 uint32_t initval7; /* CC */
650 uint32_t fwheartbeat; /* D0 */
f9a2a543 651 uint32_t pseudoaen; /* D4 */
8ae6d9c7
GM
652};
653
654
655
9a168bdd 656typedef union {
3d71644c
AV
657 struct device_reg_2xxx isp;
658 struct device_reg_24xx isp24;
73208dfd 659 struct device_reg_25xxmq isp25mq;
a9083016 660 struct device_reg_82xx isp82;
8ae6d9c7 661 struct device_reg_fx00 ispfx00;
f73cb695 662} __iomem device_reg_t;
1da177e4
LT
663
664#define ISP_REQ_Q_IN(ha, reg) \
665 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
666 &(reg)->u.isp2100.mailbox4 : \
667 &(reg)->u.isp2300.req_q_in)
668#define ISP_REQ_Q_OUT(ha, reg) \
669 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
670 &(reg)->u.isp2100.mailbox4 : \
671 &(reg)->u.isp2300.req_q_out)
672#define ISP_RSP_Q_IN(ha, reg) \
673 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
674 &(reg)->u.isp2100.mailbox5 : \
675 &(reg)->u.isp2300.rsp_q_in)
676#define ISP_RSP_Q_OUT(ha, reg) \
677 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
678 &(reg)->u.isp2100.mailbox5 : \
679 &(reg)->u.isp2300.rsp_q_out)
680
aa230bc5
AE
681#define ISP_ATIO_Q_IN(vha) (vha->hw->tgt.atio_q_in)
682#define ISP_ATIO_Q_OUT(vha) (vha->hw->tgt.atio_q_out)
683
1da177e4
LT
684#define MAILBOX_REG(ha, reg, num) \
685 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
686 (num < 8 ? \
687 &(reg)->u.isp2100.mailbox0 + (num) : \
688 &(reg)->u_end.isp2200.mailbox8 + (num) - 8) : \
689 &(reg)->u.isp2300.mailbox0 + (num))
690#define RD_MAILBOX_REG(ha, reg, num) \
691 RD_REG_WORD(MAILBOX_REG(ha, reg, num))
692#define WRT_MAILBOX_REG(ha, reg, num, data) \
693 WRT_REG_WORD(MAILBOX_REG(ha, reg, num), data)
694
695#define FB_CMD_REG(ha, reg) \
696 (IS_QLA2100(ha) || IS_QLA2200(ha) ? \
697 &(reg)->fb_cmd_2100 : \
698 &(reg)->u.isp2300.fb_cmd)
699#define RD_FB_CMD_REG(ha, reg) \
700 RD_REG_WORD(FB_CMD_REG(ha, reg))
701#define WRT_FB_CMD_REG(ha, reg, data) \
702 WRT_REG_WORD(FB_CMD_REG(ha, reg), data)
703
704typedef struct {
705 uint32_t out_mb; /* outbound from driver */
706 uint32_t in_mb; /* Incoming from RISC */
707 uint16_t mb[MAILBOX_REGISTER_COUNT];
708 long buf_size;
709 void *bufp;
710 uint32_t tov;
711 uint8_t flags;
712#define MBX_DMA_IN BIT_0
713#define MBX_DMA_OUT BIT_1
714#define IOCTL_CMD BIT_2
715} mbx_cmd_t;
716
8ae6d9c7
GM
717struct mbx_cmd_32 {
718 uint32_t out_mb; /* outbound from driver */
719 uint32_t in_mb; /* Incoming from RISC */
720 uint32_t mb[MAILBOX_REGISTER_COUNT];
721 long buf_size;
722 void *bufp;
723 uint32_t tov;
724 uint8_t flags;
725#define MBX_DMA_IN BIT_0
726#define MBX_DMA_OUT BIT_1
727#define IOCTL_CMD BIT_2
728};
729
730
1da177e4
LT
731#define MBX_TOV_SECONDS 30
732
733/*
734 * ISP product identification definitions in mailboxes after reset.
735 */
736#define PROD_ID_1 0x4953
737#define PROD_ID_2 0x0000
738#define PROD_ID_2a 0x5020
739#define PROD_ID_3 0x2020
740
741/*
742 * ISP mailbox Self-Test status codes
743 */
744#define MBS_FRM_ALIVE 0 /* Firmware Alive. */
745#define MBS_CHKSUM_ERR 1 /* Checksum Error. */
746#define MBS_BUSY 4 /* Busy. */
747
748/*
749 * ISP mailbox command complete status codes
750 */
751#define MBS_COMMAND_COMPLETE 0x4000
752#define MBS_INVALID_COMMAND 0x4001
753#define MBS_HOST_INTERFACE_ERROR 0x4002
754#define MBS_TEST_FAILED 0x4003
755#define MBS_COMMAND_ERROR 0x4005
756#define MBS_COMMAND_PARAMETER_ERROR 0x4006
757#define MBS_PORT_ID_USED 0x4007
758#define MBS_LOOP_ID_USED 0x4008
759#define MBS_ALL_IDS_IN_USE 0x4009
760#define MBS_NOT_LOGGED_IN 0x400A
3d71644c
AV
761#define MBS_LINK_DOWN_ERROR 0x400B
762#define MBS_DIAG_ECHO_TEST_ERROR 0x400C
1da177e4
LT
763
764/*
765 * ISP mailbox asynchronous event status codes
766 */
767#define MBA_ASYNC_EVENT 0x8000 /* Asynchronous event. */
768#define MBA_RESET 0x8001 /* Reset Detected. */
769#define MBA_SYSTEM_ERR 0x8002 /* System Error. */
770#define MBA_REQ_TRANSFER_ERR 0x8003 /* Request Transfer Error. */
771#define MBA_RSP_TRANSFER_ERR 0x8004 /* Response Transfer Error. */
772#define MBA_WAKEUP_THRES 0x8005 /* Request Queue Wake-up. */
773#define MBA_LIP_OCCURRED 0x8010 /* Loop Initialization Procedure */
774 /* occurred. */
775#define MBA_LOOP_UP 0x8011 /* FC Loop UP. */
776#define MBA_LOOP_DOWN 0x8012 /* FC Loop Down. */
777#define MBA_LIP_RESET 0x8013 /* LIP reset occurred. */
778#define MBA_PORT_UPDATE 0x8014 /* Port Database update. */
779#define MBA_RSCN_UPDATE 0x8015 /* Register State Chg Notification. */
780#define MBA_LIP_F8 0x8016 /* Received a LIP F8. */
781#define MBA_LOOP_INIT_ERR 0x8017 /* Loop Initialization Error. */
782#define MBA_FABRIC_AUTH_REQ 0x801b /* Fabric Authentication Required. */
783#define MBA_SCSI_COMPLETION 0x8020 /* SCSI Command Complete. */
784#define MBA_CTIO_COMPLETION 0x8021 /* CTIO Complete. */
785#define MBA_IP_COMPLETION 0x8022 /* IP Transmit Command Complete. */
786#define MBA_IP_RECEIVE 0x8023 /* IP Received. */
787#define MBA_IP_BROADCAST 0x8024 /* IP Broadcast Received. */
788#define MBA_IP_LOW_WATER_MARK 0x8025 /* IP Low Water Mark reached. */
789#define MBA_IP_RCV_BUFFER_EMPTY 0x8026 /* IP receive buffer queue empty. */
790#define MBA_IP_HDR_DATA_SPLIT 0x8027 /* IP header/data splitting feature */
791 /* used. */
45ebeb56 792#define MBA_TRACE_NOTIFICATION 0x8028 /* Trace/Diagnostic notification. */
1da177e4
LT
793#define MBA_POINT_TO_POINT 0x8030 /* Point to point mode. */
794#define MBA_CMPLT_1_16BIT 0x8031 /* Completion 1 16bit IOSB. */
795#define MBA_CMPLT_2_16BIT 0x8032 /* Completion 2 16bit IOSB. */
796#define MBA_CMPLT_3_16BIT 0x8033 /* Completion 3 16bit IOSB. */
797#define MBA_CMPLT_4_16BIT 0x8034 /* Completion 4 16bit IOSB. */
798#define MBA_CMPLT_5_16BIT 0x8035 /* Completion 5 16bit IOSB. */
799#define MBA_CHG_IN_CONNECTION 0x8036 /* Change in connection mode. */
800#define MBA_RIO_RESPONSE 0x8040 /* RIO response queue update. */
801#define MBA_ZIO_RESPONSE 0x8040 /* ZIO response queue update. */
802#define MBA_CMPLT_2_32BIT 0x8042 /* Completion 2 32bit IOSB. */
803#define MBA_BYPASS_NOTIFICATION 0x8043 /* Auto bypass notification. */
804#define MBA_DISCARD_RND_FRAME 0x8048 /* discard RND frame due to error. */
805#define MBA_REJECTED_FCP_CMD 0x8049 /* rejected FCP_CMD. */
8ae6d9c7
GM
806#define MBA_FW_NOT_STARTED 0x8050 /* Firmware not started */
807#define MBA_FW_STARTING 0x8051 /* Firmware starting */
808#define MBA_FW_RESTART_CMPLT 0x8060 /* Firmware restart complete */
809#define MBA_INIT_REQUIRED 0x8061 /* Initialization required */
810#define MBA_SHUTDOWN_REQUESTED 0x8062 /* Shutdown Requested */
b5a340dd 811#define MBA_DPORT_DIAGNOSTICS 0x8080 /* D-port Diagnostics */
8ae6d9c7
GM
812#define MBA_FW_INIT_FAILURE 0x8401 /* Firmware initialization failure */
813#define MBA_MIRROR_LUN_CHANGE 0x8402 /* Mirror LUN State Change
814 Notification */
815#define MBA_FW_POLL_STATE 0x8600 /* Firmware in poll diagnostic state */
b6511d99 816#define MBA_FW_RESET_FCT 0x8502 /* Firmware reset factory defaults */
0f8cdff5 817#define MBA_FW_INIT_INPROGRESS 0x8500 /* Firmware boot in progress */
7d613ac6
SV
818/* 83XX FCoE specific */
819#define MBA_IDC_AEN 0x8200 /* FCoE: NIC Core state change AEN */
fafbda9f
AE
820
821/* Interrupt type codes */
822#define INTR_ROM_MB_SUCCESS 0x1
823#define INTR_ROM_MB_FAILED 0x2
824#define INTR_MB_SUCCESS 0x10
825#define INTR_MB_FAILED 0x11
826#define INTR_ASYNC_EVENT 0x12
827#define INTR_RSP_QUE_UPDATE 0x13
828#define INTR_RSP_QUE_UPDATE_83XX 0x14
829#define INTR_ATIO_QUE_UPDATE 0x1C
830#define INTR_ATIO_RSP_QUE_UPDATE 0x1D
7d613ac6 831
9a069e19
GM
832/* ISP mailbox loopback echo diagnostic error code */
833#define MBS_LB_RESET 0x17
1da177e4
LT
834/*
835 * Firmware options 1, 2, 3.
836 */
837#define FO1_AE_ON_LIPF8 BIT_0
838#define FO1_AE_ALL_LIP_RESET BIT_1
839#define FO1_CTIO_RETRY BIT_3
840#define FO1_DISABLE_LIP_F7_SW BIT_4
841#define FO1_DISABLE_100MS_LOS_WAIT BIT_5
3d71644c 842#define FO1_DISABLE_GPIO6_7 BIT_6 /* LED bits */
1da177e4
LT
843#define FO1_AE_ON_LOOP_INIT_ERR BIT_7
844#define FO1_SET_EMPHASIS_SWING BIT_8
845#define FO1_AE_AUTO_BYPASS BIT_9
846#define FO1_ENABLE_PURE_IOCB BIT_10
847#define FO1_AE_PLOGI_RJT BIT_11
848#define FO1_ENABLE_ABORT_SEQUENCE BIT_12
849#define FO1_AE_QUEUE_FULL BIT_13
850
851#define FO2_ENABLE_ATIO_TYPE_3 BIT_0
852#define FO2_REV_LOOPBACK BIT_1
853
854#define FO3_ENABLE_EMERG_IOCB BIT_0
855#define FO3_AE_RND_ERROR BIT_1
856
3d71644c
AV
857/* 24XX additional firmware options */
858#define ADD_FO_COUNT 3
859#define ADD_FO1_DISABLE_GPIO_LED_CTRL BIT_6 /* LED bits */
860#define ADD_FO1_ENABLE_PUREX_IOCB BIT_10
861
862#define ADD_FO2_ENABLE_SEL_CLS2 BIT_5
863
864#define ADD_FO3_NO_ABT_ON_LINK_DOWN BIT_14
865
1da177e4
LT
866/*
867 * ISP mailbox commands
868 */
869#define MBC_LOAD_RAM 1 /* Load RAM. */
870#define MBC_EXECUTE_FIRMWARE 2 /* Execute firmware. */
1da177e4
LT
871#define MBC_READ_RAM_WORD 5 /* Read RAM word. */
872#define MBC_MAILBOX_REGISTER_TEST 6 /* Wrap incoming mailboxes */
873#define MBC_VERIFY_CHECKSUM 7 /* Verify checksum. */
874#define MBC_GET_FIRMWARE_VERSION 8 /* Get firmware revision. */
875#define MBC_LOAD_RISC_RAM 9 /* Load RAM command. */
876#define MBC_DUMP_RISC_RAM 0xa /* Dump RAM command. */
877#define MBC_LOAD_RISC_RAM_EXTENDED 0xb /* Load RAM extended. */
878#define MBC_DUMP_RISC_RAM_EXTENDED 0xc /* Dump RAM extended. */
879#define MBC_WRITE_RAM_WORD_EXTENDED 0xd /* Write RAM word extended */
880#define MBC_READ_RAM_EXTENDED 0xf /* Read RAM extended. */
881#define MBC_IOCB_COMMAND 0x12 /* Execute IOCB command. */
f6ef3b18 882#define MBC_STOP_FIRMWARE 0x14 /* Stop firmware. */
1da177e4
LT
883#define MBC_ABORT_COMMAND 0x15 /* Abort IOCB command. */
884#define MBC_ABORT_DEVICE 0x16 /* Abort device (ID/LUN). */
885#define MBC_ABORT_TARGET 0x17 /* Abort target (ID). */
886#define MBC_RESET 0x18 /* Reset. */
887#define MBC_GET_ADAPTER_LOOP_ID 0x20 /* Get loop id of ISP2200. */
888#define MBC_GET_RETRY_COUNT 0x22 /* Get f/w retry cnt/delay. */
889#define MBC_DISABLE_VI 0x24 /* Disable VI operation. */
890#define MBC_ENABLE_VI 0x25 /* Enable VI operation. */
891#define MBC_GET_FIRMWARE_OPTION 0x28 /* Get Firmware Options. */
892#define MBC_SET_FIRMWARE_OPTION 0x38 /* Set Firmware Options. */
893#define MBC_LOOP_PORT_BYPASS 0x40 /* Loop Port Bypass. */
894#define MBC_LOOP_PORT_ENABLE 0x41 /* Loop Port Enable. */
895#define MBC_GET_RESOURCE_COUNTS 0x42 /* Get Resource Counts. */
896#define MBC_NON_PARTICIPATE 0x43 /* Non-Participating Mode. */
897#define MBC_DIAGNOSTIC_ECHO 0x44 /* Diagnostic echo. */
898#define MBC_DIAGNOSTIC_LOOP_BACK 0x45 /* Diagnostic loop back. */
899#define MBC_ONLINE_SELF_TEST 0x46 /* Online self-test. */
900#define MBC_ENHANCED_GET_PORT_DATABASE 0x47 /* Get port database + login */
6246b8a1 901#define MBC_CONFIGURE_VF 0x4b /* Configure VFs */
1da177e4
LT
902#define MBC_RESET_LINK_STATUS 0x52 /* Reset Link Error Status */
903#define MBC_IOCB_COMMAND_A64 0x54 /* Execute IOCB command (64) */
af11f64d 904#define MBC_PORT_LOGOUT 0x56 /* Port Logout request */
1da177e4
LT
905#define MBC_SEND_RNID_ELS 0x57 /* Send RNID ELS request */
906#define MBC_SET_RNID_PARAMS 0x59 /* Set RNID parameters */
90687a1e
JC
907#define MBC_GET_RNID_PARAMS 0x5a /* Get RNID parameters */
908#define MBC_DATA_RATE 0x5d /* Data Rate */
1da177e4
LT
909#define MBC_INITIALIZE_FIRMWARE 0x60 /* Initialize firmware */
910#define MBC_INITIATE_LIP 0x62 /* Initiate Loop */
911 /* Initialization Procedure */
912#define MBC_GET_FC_AL_POSITION_MAP 0x63 /* Get FC_AL Position Map. */
913#define MBC_GET_PORT_DATABASE 0x64 /* Get Port Database. */
914#define MBC_CLEAR_ACA 0x65 /* Clear ACA. */
915#define MBC_TARGET_RESET 0x66 /* Target Reset. */
916#define MBC_CLEAR_TASK_SET 0x67 /* Clear Task Set. */
917#define MBC_ABORT_TASK_SET 0x68 /* Abort Task Set. */
918#define MBC_GET_FIRMWARE_STATE 0x69 /* Get firmware state. */
919#define MBC_GET_PORT_NAME 0x6a /* Get port name. */
920#define MBC_GET_LINK_STATUS 0x6b /* Get port link status. */
921#define MBC_LIP_RESET 0x6c /* LIP reset. */
922#define MBC_SEND_SNS_COMMAND 0x6e /* Send Simple Name Server */
923 /* commandd. */
924#define MBC_LOGIN_FABRIC_PORT 0x6f /* Login fabric port. */
925#define MBC_SEND_CHANGE_REQUEST 0x70 /* Send Change Request. */
926#define MBC_LOGOUT_FABRIC_PORT 0x71 /* Logout fabric port. */
927#define MBC_LIP_FULL_LOGIN 0x72 /* Full login LIP. */
928#define MBC_LOGIN_LOOP_PORT 0x74 /* Login Loop Port. */
929#define MBC_PORT_NODE_NAME_LIST 0x75 /* Get port/node name list. */
930#define MBC_INITIALIZE_RECEIVE_QUEUE 0x77 /* Initialize receive queue */
931#define MBC_UNLOAD_IP 0x79 /* Shutdown IP */
932#define MBC_GET_ID_LIST 0x7C /* Get Port ID list. */
933#define MBC_SEND_LFA_COMMAND 0x7D /* Send Loop Fabric Address */
934#define MBC_LUN_RESET 0x7E /* Send LUN reset */
935
8ae6d9c7
GM
936/*
937 * all the Mt. Rainier mailbox command codes that clash with FC/FCoE ones
938 * should be defined with MBC_MR_*
939 */
940#define MBC_MR_DRV_SHUTDOWN 0x6A
941
3d71644c
AV
942/*
943 * ISP24xx mailbox commands
944 */
db64e930
JC
945#define MBC_WRITE_SERDES 0x3 /* Write serdes word. */
946#define MBC_READ_SERDES 0x4 /* Read serdes word. */
f73cb695 947#define MBC_LOAD_DUMP_MPI_RAM 0x5 /* Load/Dump MPI RAM. */
3d71644c
AV
948#define MBC_SERDES_PARAMS 0x10 /* Serdes Tx Parameters. */
949#define MBC_GET_IOCB_STATUS 0x12 /* Get IOCB status command. */
d8b45213 950#define MBC_PORT_PARAMS 0x1A /* Port iDMA Parameters. */
3d71644c 951#define MBC_GET_TIMEOUT_PARAMS 0x22 /* Get FW timeouts. */
a7a167bf 952#define MBC_TRACE_CONTROL 0x27 /* Trace control command. */
3d71644c 953#define MBC_GEN_SYSTEM_ERROR 0x2a /* Generate System Error. */
ad0ecd61 954#define MBC_WRITE_SFP 0x30 /* Write SFP Data. */
88729e53 955#define MBC_READ_SFP 0x31 /* Read SFP Data. */
3d71644c 956#define MBC_SET_TIMEOUT_PARAMS 0x32 /* Set FW timeouts. */
b5a340dd 957#define MBC_DPORT_DIAGNOSTICS 0x47 /* D-Port Diagnostics */
3d71644c
AV
958#define MBC_MID_INITIALIZE_FIRMWARE 0x48 /* MID Initialize firmware. */
959#define MBC_MID_GET_VP_DATABASE 0x49 /* MID Get VP Database. */
960#define MBC_MID_GET_VP_ENTRY 0x4a /* MID Get VP Entry. */
961#define MBC_HOST_MEMORY_COPY 0x53 /* Host Memory Copy. */
962#define MBC_SEND_RNFT_ELS 0x5e /* Send RNFT ELS request */
963#define MBC_GET_LINK_PRIV_STATS 0x6d /* Get link & private data. */
61e1b269 964#define MBC_LINK_INITIALIZATION 0x72 /* Do link initialization. */
3d71644c 965#define MBC_SET_VENDOR_ID 0x76 /* Set Vendor ID. */
8fcd6b8b 966#define MBC_PORT_RESET 0x120 /* Port Reset */
23f2ebd1
SR
967#define MBC_SET_PORT_CONFIG 0x122 /* Set port configuration */
968#define MBC_GET_PORT_CONFIG 0x123 /* Get port configuration */
3d71644c 969
b1d46989
MI
970/*
971 * ISP81xx mailbox commands
972 */
973#define MBC_WRITE_MPI_REGISTER 0x01 /* Write MPI Register. */
974
e8887c51
JC
975/*
976 * ISP8044 mailbox commands
977 */
978#define MBC_SET_GET_ETH_SERDES_REG 0x150
979#define HCS_WRITE_SERDES 0x3
980#define HCS_READ_SERDES 0x4
981
1da177e4
LT
982/* Firmware return data sizes */
983#define FCAL_MAP_SIZE 128
984
985/* Mailbox bit definitions for out_mb and in_mb */
986#define MBX_31 BIT_31
987#define MBX_30 BIT_30
988#define MBX_29 BIT_29
989#define MBX_28 BIT_28
990#define MBX_27 BIT_27
991#define MBX_26 BIT_26
992#define MBX_25 BIT_25
993#define MBX_24 BIT_24
994#define MBX_23 BIT_23
995#define MBX_22 BIT_22
996#define MBX_21 BIT_21
997#define MBX_20 BIT_20
998#define MBX_19 BIT_19
999#define MBX_18 BIT_18
1000#define MBX_17 BIT_17
1001#define MBX_16 BIT_16
1002#define MBX_15 BIT_15
1003#define MBX_14 BIT_14
1004#define MBX_13 BIT_13
1005#define MBX_12 BIT_12
1006#define MBX_11 BIT_11
1007#define MBX_10 BIT_10
1008#define MBX_9 BIT_9
1009#define MBX_8 BIT_8
1010#define MBX_7 BIT_7
1011#define MBX_6 BIT_6
1012#define MBX_5 BIT_5
1013#define MBX_4 BIT_4
1014#define MBX_3 BIT_3
1015#define MBX_2 BIT_2
1016#define MBX_1 BIT_1
1017#define MBX_0 BIT_0
1018
c46e65c7 1019#define RNID_TYPE_SET_VERSION 0x9
fe52f6e1 1020#define RNID_TYPE_ASIC_TEMP 0xC
3a11711a 1021
1da177e4
LT
1022/*
1023 * Firmware state codes from get firmware state mailbox command
1024 */
1025#define FSTATE_CONFIG_WAIT 0
1026#define FSTATE_WAIT_AL_PA 1
1027#define FSTATE_WAIT_LOGIN 2
1028#define FSTATE_READY 3
1029#define FSTATE_LOSS_OF_SYNC 4
1030#define FSTATE_ERROR 5
1031#define FSTATE_REINIT 6
1032#define FSTATE_NON_PART 7
1033
1034#define FSTATE_CONFIG_CORRECT 0
1035#define FSTATE_P2P_RCV_LIP 1
1036#define FSTATE_P2P_CHOOSE_LOOP 2
1037#define FSTATE_P2P_RCV_UNIDEN_LIP 3
1038#define FSTATE_FATAL_ERROR 4
1039#define FSTATE_LOOP_BACK_CONN 5
1040
1041/*
1042 * Port Database structure definition
1043 * Little endian except where noted.
1044 */
1045#define PORT_DATABASE_SIZE 128 /* bytes */
1046typedef struct {
1047 uint8_t options;
1048 uint8_t control;
1049 uint8_t master_state;
1050 uint8_t slave_state;
1051 uint8_t reserved[2];
1052 uint8_t hard_address;
1053 uint8_t reserved_1;
1054 uint8_t port_id[4];
1055 uint8_t node_name[WWN_SIZE];
1056 uint8_t port_name[WWN_SIZE];
1057 uint16_t execution_throttle;
1058 uint16_t execution_count;
1059 uint8_t reset_count;
1060 uint8_t reserved_2;
1061 uint16_t resource_allocation;
1062 uint16_t current_allocation;
1063 uint16_t queue_head;
1064 uint16_t queue_tail;
1065 uint16_t transmit_execution_list_next;
1066 uint16_t transmit_execution_list_previous;
1067 uint16_t common_features;
1068 uint16_t total_concurrent_sequences;
1069 uint16_t RO_by_information_category;
1070 uint8_t recipient;
1071 uint8_t initiator;
1072 uint16_t receive_data_size;
1073 uint16_t concurrent_sequences;
1074 uint16_t open_sequences_per_exchange;
1075 uint16_t lun_abort_flags;
1076 uint16_t lun_stop_flags;
1077 uint16_t stop_queue_head;
1078 uint16_t stop_queue_tail;
1079 uint16_t port_retry_timer;
1080 uint16_t next_sequence_id;
1081 uint16_t frame_count;
1082 uint16_t PRLI_payload_length;
1083 uint8_t prli_svc_param_word_0[2]; /* Big endian */
1084 /* Bits 15-0 of word 0 */
1085 uint8_t prli_svc_param_word_3[2]; /* Big endian */
1086 /* Bits 15-0 of word 3 */
1087 uint16_t loop_id;
1088 uint16_t extended_lun_info_list_pointer;
1089 uint16_t extended_lun_stop_list_pointer;
1090} port_database_t;
1091
1092/*
1093 * Port database slave/master states
1094 */
1095#define PD_STATE_DISCOVERY 0
1096#define PD_STATE_WAIT_DISCOVERY_ACK 1
1097#define PD_STATE_PORT_LOGIN 2
1098#define PD_STATE_WAIT_PORT_LOGIN_ACK 3
1099#define PD_STATE_PROCESS_LOGIN 4
1100#define PD_STATE_WAIT_PROCESS_LOGIN_ACK 5
1101#define PD_STATE_PORT_LOGGED_IN 6
1102#define PD_STATE_PORT_UNAVAILABLE 7
1103#define PD_STATE_PROCESS_LOGOUT 8
1104#define PD_STATE_WAIT_PROCESS_LOGOUT_ACK 9
1105#define PD_STATE_PORT_LOGOUT 10
1106#define PD_STATE_WAIT_PORT_LOGOUT_ACK 11
1107
1108
4fdfefe5
AV
1109#define QLA_ZIO_MODE_6 (BIT_2 | BIT_1)
1110#define QLA_ZIO_DISABLED 0
1111#define QLA_ZIO_DEFAULT_TIMER 2
1112
1da177e4
LT
1113/*
1114 * ISP Initialization Control Block.
1115 * Little endian except where noted.
1116 */
1117#define ICB_VERSION 1
1118typedef struct {
1119 uint8_t version;
1120 uint8_t reserved_1;
1121
1122 /*
1123 * LSB BIT 0 = Enable Hard Loop Id
1124 * LSB BIT 1 = Enable Fairness
1125 * LSB BIT 2 = Enable Full-Duplex
1126 * LSB BIT 3 = Enable Fast Posting
1127 * LSB BIT 4 = Enable Target Mode
1128 * LSB BIT 5 = Disable Initiator Mode
1129 * LSB BIT 6 = Enable ADISC
1130 * LSB BIT 7 = Enable Target Inquiry Data
1131 *
1132 * MSB BIT 0 = Enable PDBC Notify
1133 * MSB BIT 1 = Non Participating LIP
1134 * MSB BIT 2 = Descending Loop ID Search
1135 * MSB BIT 3 = Acquire Loop ID in LIPA
1136 * MSB BIT 4 = Stop PortQ on Full Status
1137 * MSB BIT 5 = Full Login after LIP
1138 * MSB BIT 6 = Node Name Option
1139 * MSB BIT 7 = Ext IFWCB enable bit
1140 */
1141 uint8_t firmware_options[2];
1142
1143 uint16_t frame_payload_size;
1144 uint16_t max_iocb_allocation;
1145 uint16_t execution_throttle;
1146 uint8_t retry_count;
1147 uint8_t retry_delay; /* unused */
1148 uint8_t port_name[WWN_SIZE]; /* Big endian. */
1149 uint16_t hard_address;
1150 uint8_t inquiry_data;
1151 uint8_t login_timeout;
1152 uint8_t node_name[WWN_SIZE]; /* Big endian. */
1153
1154 uint16_t request_q_outpointer;
1155 uint16_t response_q_inpointer;
1156 uint16_t request_q_length;
1157 uint16_t response_q_length;
1158 uint32_t request_q_address[2];
1159 uint32_t response_q_address[2];
1160
1161 uint16_t lun_enables;
1162 uint8_t command_resource_count;
1163 uint8_t immediate_notify_resource_count;
1164 uint16_t timeout;
1165 uint8_t reserved_2[2];
1166
1167 /*
1168 * LSB BIT 0 = Timer Operation mode bit 0
1169 * LSB BIT 1 = Timer Operation mode bit 1
1170 * LSB BIT 2 = Timer Operation mode bit 2
1171 * LSB BIT 3 = Timer Operation mode bit 3
1172 * LSB BIT 4 = Init Config Mode bit 0
1173 * LSB BIT 5 = Init Config Mode bit 1
1174 * LSB BIT 6 = Init Config Mode bit 2
1175 * LSB BIT 7 = Enable Non part on LIHA failure
1176 *
1177 * MSB BIT 0 = Enable class 2
1178 * MSB BIT 1 = Enable ACK0
1179 * MSB BIT 2 =
1180 * MSB BIT 3 =
1181 * MSB BIT 4 = FC Tape Enable
1182 * MSB BIT 5 = Enable FC Confirm
1183 * MSB BIT 6 = Enable command queuing in target mode
1184 * MSB BIT 7 = No Logo On Link Down
1185 */
1186 uint8_t add_firmware_options[2];
1187
1188 uint8_t response_accumulation_timer;
1189 uint8_t interrupt_delay_timer;
1190
1191 /*
1192 * LSB BIT 0 = Enable Read xfr_rdy
1193 * LSB BIT 1 = Soft ID only
1194 * LSB BIT 2 =
1195 * LSB BIT 3 =
1196 * LSB BIT 4 = FCP RSP Payload [0]
1197 * LSB BIT 5 = FCP RSP Payload [1] / Sbus enable - 2200
1198 * LSB BIT 6 = Enable Out-of-Order frame handling
1199 * LSB BIT 7 = Disable Automatic PLOGI on Local Loop
1200 *
1201 * MSB BIT 0 = Sbus enable - 2300
1202 * MSB BIT 1 =
1203 * MSB BIT 2 =
1204 * MSB BIT 3 =
06c22bd1 1205 * MSB BIT 4 = LED mode
1da177e4
LT
1206 * MSB BIT 5 = enable 50 ohm termination
1207 * MSB BIT 6 = Data Rate (2300 only)
1208 * MSB BIT 7 = Data Rate (2300 only)
1209 */
1210 uint8_t special_options[2];
1211
1212 uint8_t reserved_3[26];
1213} init_cb_t;
1214
1215/*
1216 * Get Link Status mailbox command return buffer.
1217 */
3d71644c
AV
1218#define GLSO_SEND_RPS BIT_0
1219#define GLSO_USE_DID BIT_3
1220
43ef0580
AV
1221struct link_statistics {
1222 uint32_t link_fail_cnt;
1223 uint32_t loss_sync_cnt;
1224 uint32_t loss_sig_cnt;
1225 uint32_t prim_seq_err_cnt;
1226 uint32_t inval_xmit_word_cnt;
1227 uint32_t inval_crc_cnt;
032d8dd7
HZ
1228 uint32_t lip_cnt;
1229 uint32_t unused1[0x1a];
43ef0580
AV
1230 uint32_t tx_frames;
1231 uint32_t rx_frames;
fabbb8df
JC
1232 uint32_t discarded_frames;
1233 uint32_t dropped_frames;
1234 uint32_t unused2[1];
43ef0580
AV
1235 uint32_t nos_rcvd;
1236};
1da177e4
LT
1237
1238/*
1239 * NVRAM Command values.
1240 */
1241#define NV_START_BIT BIT_2
1242#define NV_WRITE_OP (BIT_26+BIT_24)
1243#define NV_READ_OP (BIT_26+BIT_25)
1244#define NV_ERASE_OP (BIT_26+BIT_25+BIT_24)
1245#define NV_MASK_OP (BIT_26+BIT_25+BIT_24)
1246#define NV_DELAY_COUNT 10
1247
1248/*
1249 * QLogic ISP2100, ISP2200 and ISP2300 NVRAM structure definition.
1250 */
1251typedef struct {
1252 /*
1253 * NVRAM header
1254 */
1255 uint8_t id[4];
1256 uint8_t nvram_version;
1257 uint8_t reserved_0;
1258
1259 /*
1260 * NVRAM RISC parameter block
1261 */
1262 uint8_t parameter_block_version;
1263 uint8_t reserved_1;
1264
1265 /*
1266 * LSB BIT 0 = Enable Hard Loop Id
1267 * LSB BIT 1 = Enable Fairness
1268 * LSB BIT 2 = Enable Full-Duplex
1269 * LSB BIT 3 = Enable Fast Posting
1270 * LSB BIT 4 = Enable Target Mode
1271 * LSB BIT 5 = Disable Initiator Mode
1272 * LSB BIT 6 = Enable ADISC
1273 * LSB BIT 7 = Enable Target Inquiry Data
1274 *
1275 * MSB BIT 0 = Enable PDBC Notify
1276 * MSB BIT 1 = Non Participating LIP
1277 * MSB BIT 2 = Descending Loop ID Search
1278 * MSB BIT 3 = Acquire Loop ID in LIPA
1279 * MSB BIT 4 = Stop PortQ on Full Status
1280 * MSB BIT 5 = Full Login after LIP
1281 * MSB BIT 6 = Node Name Option
1282 * MSB BIT 7 = Ext IFWCB enable bit
1283 */
1284 uint8_t firmware_options[2];
1285
1286 uint16_t frame_payload_size;
1287 uint16_t max_iocb_allocation;
1288 uint16_t execution_throttle;
1289 uint8_t retry_count;
1290 uint8_t retry_delay; /* unused */
1291 uint8_t port_name[WWN_SIZE]; /* Big endian. */
1292 uint16_t hard_address;
1293 uint8_t inquiry_data;
1294 uint8_t login_timeout;
1295 uint8_t node_name[WWN_SIZE]; /* Big endian. */
1296
1297 /*
1298 * LSB BIT 0 = Timer Operation mode bit 0
1299 * LSB BIT 1 = Timer Operation mode bit 1
1300 * LSB BIT 2 = Timer Operation mode bit 2
1301 * LSB BIT 3 = Timer Operation mode bit 3
1302 * LSB BIT 4 = Init Config Mode bit 0
1303 * LSB BIT 5 = Init Config Mode bit 1
1304 * LSB BIT 6 = Init Config Mode bit 2
1305 * LSB BIT 7 = Enable Non part on LIHA failure
1306 *
1307 * MSB BIT 0 = Enable class 2
1308 * MSB BIT 1 = Enable ACK0
1309 * MSB BIT 2 =
1310 * MSB BIT 3 =
1311 * MSB BIT 4 = FC Tape Enable
1312 * MSB BIT 5 = Enable FC Confirm
1313 * MSB BIT 6 = Enable command queuing in target mode
1314 * MSB BIT 7 = No Logo On Link Down
1315 */
1316 uint8_t add_firmware_options[2];
1317
1318 uint8_t response_accumulation_timer;
1319 uint8_t interrupt_delay_timer;
1320
1321 /*
1322 * LSB BIT 0 = Enable Read xfr_rdy
1323 * LSB BIT 1 = Soft ID only
1324 * LSB BIT 2 =
1325 * LSB BIT 3 =
1326 * LSB BIT 4 = FCP RSP Payload [0]
1327 * LSB BIT 5 = FCP RSP Payload [1] / Sbus enable - 2200
1328 * LSB BIT 6 = Enable Out-of-Order frame handling
1329 * LSB BIT 7 = Disable Automatic PLOGI on Local Loop
1330 *
1331 * MSB BIT 0 = Sbus enable - 2300
1332 * MSB BIT 1 =
1333 * MSB BIT 2 =
1334 * MSB BIT 3 =
06c22bd1 1335 * MSB BIT 4 = LED mode
1da177e4
LT
1336 * MSB BIT 5 = enable 50 ohm termination
1337 * MSB BIT 6 = Data Rate (2300 only)
1338 * MSB BIT 7 = Data Rate (2300 only)
1339 */
1340 uint8_t special_options[2];
1341
1342 /* Reserved for expanded RISC parameter block */
1343 uint8_t reserved_2[22];
1344
1345 /*
1346 * LSB BIT 0 = Tx Sensitivity 1G bit 0
1347 * LSB BIT 1 = Tx Sensitivity 1G bit 1
1348 * LSB BIT 2 = Tx Sensitivity 1G bit 2
1349 * LSB BIT 3 = Tx Sensitivity 1G bit 3
1350 * LSB BIT 4 = Rx Sensitivity 1G bit 0
1351 * LSB BIT 5 = Rx Sensitivity 1G bit 1
1352 * LSB BIT 6 = Rx Sensitivity 1G bit 2
1353 * LSB BIT 7 = Rx Sensitivity 1G bit 3
fa2a1ce5 1354 *
1da177e4
LT
1355 * MSB BIT 0 = Tx Sensitivity 2G bit 0
1356 * MSB BIT 1 = Tx Sensitivity 2G bit 1
1357 * MSB BIT 2 = Tx Sensitivity 2G bit 2
1358 * MSB BIT 3 = Tx Sensitivity 2G bit 3
1359 * MSB BIT 4 = Rx Sensitivity 2G bit 0
1360 * MSB BIT 5 = Rx Sensitivity 2G bit 1
1361 * MSB BIT 6 = Rx Sensitivity 2G bit 2
1362 * MSB BIT 7 = Rx Sensitivity 2G bit 3
1363 *
1364 * LSB BIT 0 = Output Swing 1G bit 0
1365 * LSB BIT 1 = Output Swing 1G bit 1
1366 * LSB BIT 2 = Output Swing 1G bit 2
1367 * LSB BIT 3 = Output Emphasis 1G bit 0
1368 * LSB BIT 4 = Output Emphasis 1G bit 1
1369 * LSB BIT 5 = Output Swing 2G bit 0
1370 * LSB BIT 6 = Output Swing 2G bit 1
1371 * LSB BIT 7 = Output Swing 2G bit 2
fa2a1ce5 1372 *
1da177e4
LT
1373 * MSB BIT 0 = Output Emphasis 2G bit 0
1374 * MSB BIT 1 = Output Emphasis 2G bit 1
1375 * MSB BIT 2 = Output Enable
1376 * MSB BIT 3 =
1377 * MSB BIT 4 =
1378 * MSB BIT 5 =
1379 * MSB BIT 6 =
1380 * MSB BIT 7 =
1381 */
1382 uint8_t seriallink_options[4];
1383
1384 /*
1385 * NVRAM host parameter block
1386 *
1387 * LSB BIT 0 = Enable spinup delay
1388 * LSB BIT 1 = Disable BIOS
1389 * LSB BIT 2 = Enable Memory Map BIOS
1390 * LSB BIT 3 = Enable Selectable Boot
1391 * LSB BIT 4 = Disable RISC code load
1392 * LSB BIT 5 = Set cache line size 1
1393 * LSB BIT 6 = PCI Parity Disable
1394 * LSB BIT 7 = Enable extended logging
1395 *
1396 * MSB BIT 0 = Enable 64bit addressing
1397 * MSB BIT 1 = Enable lip reset
1398 * MSB BIT 2 = Enable lip full login
1399 * MSB BIT 3 = Enable target reset
1400 * MSB BIT 4 = Enable database storage
1401 * MSB BIT 5 = Enable cache flush read
1402 * MSB BIT 6 = Enable database load
1403 * MSB BIT 7 = Enable alternate WWN
1404 */
1405 uint8_t host_p[2];
1406
1407 uint8_t boot_node_name[WWN_SIZE];
1408 uint8_t boot_lun_number;
1409 uint8_t reset_delay;
1410 uint8_t port_down_retry_count;
1411 uint8_t boot_id_number;
1412 uint16_t max_luns_per_target;
1413 uint8_t fcode_boot_port_name[WWN_SIZE];
1414 uint8_t alternate_port_name[WWN_SIZE];
1415 uint8_t alternate_node_name[WWN_SIZE];
1416
1417 /*
1418 * BIT 0 = Selective Login
1419 * BIT 1 = Alt-Boot Enable
1420 * BIT 2 =
1421 * BIT 3 = Boot Order List
1422 * BIT 4 =
1423 * BIT 5 = Selective LUN
1424 * BIT 6 =
1425 * BIT 7 = unused
1426 */
1427 uint8_t efi_parameters;
1428
1429 uint8_t link_down_timeout;
1430
cca5335c 1431 uint8_t adapter_id[16];
1da177e4
LT
1432
1433 uint8_t alt1_boot_node_name[WWN_SIZE];
1434 uint16_t alt1_boot_lun_number;
1435 uint8_t alt2_boot_node_name[WWN_SIZE];
1436 uint16_t alt2_boot_lun_number;
1437 uint8_t alt3_boot_node_name[WWN_SIZE];
1438 uint16_t alt3_boot_lun_number;
1439 uint8_t alt4_boot_node_name[WWN_SIZE];
1440 uint16_t alt4_boot_lun_number;
1441 uint8_t alt5_boot_node_name[WWN_SIZE];
1442 uint16_t alt5_boot_lun_number;
1443 uint8_t alt6_boot_node_name[WWN_SIZE];
1444 uint16_t alt6_boot_lun_number;
1445 uint8_t alt7_boot_node_name[WWN_SIZE];
1446 uint16_t alt7_boot_lun_number;
1447
1448 uint8_t reserved_3[2];
1449
1450 /* Offset 200-215 : Model Number */
1451 uint8_t model_number[16];
1452
1453 /* OEM related items */
1454 uint8_t oem_specific[16];
1455
1456 /*
1457 * NVRAM Adapter Features offset 232-239
1458 *
1459 * LSB BIT 0 = External GBIC
1460 * LSB BIT 1 = Risc RAM parity
1461 * LSB BIT 2 = Buffer Plus Module
1462 * LSB BIT 3 = Multi Chip Adapter
1463 * LSB BIT 4 = Internal connector
1464 * LSB BIT 5 =
1465 * LSB BIT 6 =
1466 * LSB BIT 7 =
1467 *
1468 * MSB BIT 0 =
1469 * MSB BIT 1 =
1470 * MSB BIT 2 =
1471 * MSB BIT 3 =
1472 * MSB BIT 4 =
1473 * MSB BIT 5 =
1474 * MSB BIT 6 =
1475 * MSB BIT 7 =
1476 */
1477 uint8_t adapter_features[2];
1478
1479 uint8_t reserved_4[16];
1480
1481 /* Subsystem vendor ID for ISP2200 */
1482 uint16_t subsystem_vendor_id_2200;
1483
1484 /* Subsystem device ID for ISP2200 */
1485 uint16_t subsystem_device_id_2200;
1486
1487 uint8_t reserved_5;
1488 uint8_t checksum;
1489} nvram_t;
1490
1491/*
1492 * ISP queue - response queue entry definition.
1493 */
1494typedef struct {
2d70c103
NB
1495 uint8_t entry_type; /* Entry type. */
1496 uint8_t entry_count; /* Entry count. */
1497 uint8_t sys_define; /* System defined. */
1498 uint8_t entry_status; /* Entry Status. */
1499 uint32_t handle; /* System defined handle */
1500 uint8_t data[52];
1da177e4
LT
1501 uint32_t signature;
1502#define RESPONSE_PROCESSED 0xDEADDEAD /* Signature */
1503} response_t;
1504
2d70c103
NB
1505/*
1506 * ISP queue - ATIO queue entry definition.
1507 */
1508struct atio {
1509 uint8_t entry_type; /* Entry type. */
1510 uint8_t entry_count; /* Entry count. */
1511 uint8_t data[58];
1512 uint32_t signature;
1513#define ATIO_PROCESSED 0xDEADDEAD /* Signature */
1514};
1515
1da177e4
LT
1516typedef union {
1517 uint16_t extended;
1518 struct {
1519 uint8_t reserved;
1520 uint8_t standard;
1521 } id;
1522} target_id_t;
1523
1524#define SET_TARGET_ID(ha, to, from) \
1525do { \
1526 if (HAS_EXTENDED_IDS(ha)) \
1527 to.extended = cpu_to_le16(from); \
1528 else \
1529 to.id.standard = (uint8_t)from; \
1530} while (0)
1531
1532/*
1533 * ISP queue - command entry structure definition.
1534 */
1535#define COMMAND_TYPE 0x11 /* Command entry */
1da177e4
LT
1536typedef struct {
1537 uint8_t entry_type; /* Entry type. */
1538 uint8_t entry_count; /* Entry count. */
1539 uint8_t sys_define; /* System defined. */
1540 uint8_t entry_status; /* Entry Status. */
1541 uint32_t handle; /* System handle. */
1542 target_id_t target; /* SCSI ID */
1543 uint16_t lun; /* SCSI LUN */
1544 uint16_t control_flags; /* Control flags. */
1545#define CF_WRITE BIT_6
1546#define CF_READ BIT_5
1547#define CF_SIMPLE_TAG BIT_3
1548#define CF_ORDERED_TAG BIT_2
1549#define CF_HEAD_TAG BIT_1
1550 uint16_t reserved_1;
1551 uint16_t timeout; /* Command timeout. */
1552 uint16_t dseg_count; /* Data segment count. */
1553 uint8_t scsi_cdb[MAX_CMDSZ]; /* SCSI command words. */
1554 uint32_t byte_count; /* Total byte count. */
1555 uint32_t dseg_0_address; /* Data segment 0 address. */
1556 uint32_t dseg_0_length; /* Data segment 0 length. */
1557 uint32_t dseg_1_address; /* Data segment 1 address. */
1558 uint32_t dseg_1_length; /* Data segment 1 length. */
1559 uint32_t dseg_2_address; /* Data segment 2 address. */
1560 uint32_t dseg_2_length; /* Data segment 2 length. */
1561} cmd_entry_t;
1562
1563/*
1564 * ISP queue - 64-Bit addressing, command entry structure definition.
1565 */
1566#define COMMAND_A64_TYPE 0x19 /* Command A64 entry */
1567typedef struct {
1568 uint8_t entry_type; /* Entry type. */
1569 uint8_t entry_count; /* Entry count. */
1570 uint8_t sys_define; /* System defined. */
1571 uint8_t entry_status; /* Entry Status. */
1572 uint32_t handle; /* System handle. */
1573 target_id_t target; /* SCSI ID */
1574 uint16_t lun; /* SCSI LUN */
1575 uint16_t control_flags; /* Control flags. */
1576 uint16_t reserved_1;
1577 uint16_t timeout; /* Command timeout. */
1578 uint16_t dseg_count; /* Data segment count. */
1579 uint8_t scsi_cdb[MAX_CMDSZ]; /* SCSI command words. */
1580 uint32_t byte_count; /* Total byte count. */
1581 uint32_t dseg_0_address[2]; /* Data segment 0 address. */
1582 uint32_t dseg_0_length; /* Data segment 0 length. */
1583 uint32_t dseg_1_address[2]; /* Data segment 1 address. */
1584 uint32_t dseg_1_length; /* Data segment 1 length. */
1585} cmd_a64_entry_t, request_t;
1586
1587/*
1588 * ISP queue - continuation entry structure definition.
1589 */
1590#define CONTINUE_TYPE 0x02 /* Continuation entry. */
1591typedef struct {
1592 uint8_t entry_type; /* Entry type. */
1593 uint8_t entry_count; /* Entry count. */
1594 uint8_t sys_define; /* System defined. */
1595 uint8_t entry_status; /* Entry Status. */
1596 uint32_t reserved;
1597 uint32_t dseg_0_address; /* Data segment 0 address. */
1598 uint32_t dseg_0_length; /* Data segment 0 length. */
1599 uint32_t dseg_1_address; /* Data segment 1 address. */
1600 uint32_t dseg_1_length; /* Data segment 1 length. */
1601 uint32_t dseg_2_address; /* Data segment 2 address. */
1602 uint32_t dseg_2_length; /* Data segment 2 length. */
1603 uint32_t dseg_3_address; /* Data segment 3 address. */
1604 uint32_t dseg_3_length; /* Data segment 3 length. */
1605 uint32_t dseg_4_address; /* Data segment 4 address. */
1606 uint32_t dseg_4_length; /* Data segment 4 length. */
1607 uint32_t dseg_5_address; /* Data segment 5 address. */
1608 uint32_t dseg_5_length; /* Data segment 5 length. */
1609 uint32_t dseg_6_address; /* Data segment 6 address. */
1610 uint32_t dseg_6_length; /* Data segment 6 length. */
1611} cont_entry_t;
1612
1613/*
1614 * ISP queue - 64-Bit addressing, continuation entry structure definition.
1615 */
1616#define CONTINUE_A64_TYPE 0x0A /* Continuation A64 entry. */
1617typedef struct {
1618 uint8_t entry_type; /* Entry type. */
1619 uint8_t entry_count; /* Entry count. */
1620 uint8_t sys_define; /* System defined. */
1621 uint8_t entry_status; /* Entry Status. */
1622 uint32_t dseg_0_address[2]; /* Data segment 0 address. */
1623 uint32_t dseg_0_length; /* Data segment 0 length. */
1624 uint32_t dseg_1_address[2]; /* Data segment 1 address. */
1625 uint32_t dseg_1_length; /* Data segment 1 length. */
1626 uint32_t dseg_2_address [2]; /* Data segment 2 address. */
1627 uint32_t dseg_2_length; /* Data segment 2 length. */
1628 uint32_t dseg_3_address[2]; /* Data segment 3 address. */
1629 uint32_t dseg_3_length; /* Data segment 3 length. */
1630 uint32_t dseg_4_address[2]; /* Data segment 4 address. */
1631 uint32_t dseg_4_length; /* Data segment 4 length. */
1632} cont_a64_entry_t;
1633
bad75002 1634#define PO_MODE_DIF_INSERT 0
9e522cd8
AE
1635#define PO_MODE_DIF_REMOVE 1
1636#define PO_MODE_DIF_PASS 2
1637#define PO_MODE_DIF_REPLACE 3
1638#define PO_MODE_DIF_TCP_CKSUM 6
bad75002 1639#define PO_ENABLE_INCR_GUARD_SEED BIT_3
bad75002 1640#define PO_DISABLE_GUARD_CHECK BIT_4
f83adb61
QT
1641#define PO_DISABLE_INCR_REF_TAG BIT_5
1642#define PO_DIS_HEADER_MODE BIT_7
1643#define PO_ENABLE_DIF_BUNDLING BIT_8
1644#define PO_DIS_FRAME_MODE BIT_9
1645#define PO_DIS_VALD_APP_ESC BIT_10 /* Dis validation for escape tag/ffffh */
1646#define PO_DIS_VALD_APP_REF_ESC BIT_11
1647
1648#define PO_DIS_APP_TAG_REPL BIT_12 /* disable REG Tag replacement */
1649#define PO_DIS_REF_TAG_REPL BIT_13
1650#define PO_DIS_APP_TAG_VALD BIT_14 /* disable REF Tag validation */
1651#define PO_DIS_REF_TAG_VALD BIT_15
1652
bad75002
AE
1653/*
1654 * ISP queue - 64-Bit addressing, continuation crc entry structure definition.
1655 */
1656struct crc_context {
1657 uint32_t handle; /* System handle. */
c7ee3bd4
QT
1658 __le32 ref_tag;
1659 __le16 app_tag;
bad75002
AE
1660 uint8_t ref_tag_mask[4]; /* Validation/Replacement Mask*/
1661 uint8_t app_tag_mask[2]; /* Validation/Replacement Mask*/
c7ee3bd4
QT
1662 __le16 guard_seed; /* Initial Guard Seed */
1663 __le16 prot_opts; /* Requested Data Protection Mode */
1664 __le16 blk_size; /* Data size in bytes */
bad75002
AE
1665 uint16_t runt_blk_guard; /* Guard value for runt block (tape
1666 * only) */
c7ee3bd4 1667 __le32 byte_count; /* Total byte count/ total data
bad75002
AE
1668 * transfer count */
1669 union {
1670 struct {
1671 uint32_t reserved_1;
1672 uint16_t reserved_2;
1673 uint16_t reserved_3;
1674 uint32_t reserved_4;
1675 uint32_t data_address[2];
1676 uint32_t data_length;
1677 uint32_t reserved_5[2];
1678 uint32_t reserved_6;
1679 } nobundling;
1680 struct {
c7ee3bd4 1681 __le32 dif_byte_count; /* Total DIF byte
bad75002
AE
1682 * count */
1683 uint16_t reserved_1;
c7ee3bd4 1684 __le16 dseg_count; /* Data segment count */
bad75002
AE
1685 uint32_t reserved_2;
1686 uint32_t data_address[2];
1687 uint32_t data_length;
1688 uint32_t dif_address[2];
1689 uint32_t dif_length; /* Data segment 0
1690 * length */
1691 } bundling;
1692 } u;
1693
1694 struct fcp_cmnd fcp_cmnd;
1695 dma_addr_t crc_ctx_dma;
1696 /* List of DMA context transfers */
1697 struct list_head dsd_list;
1698
1699 /* This structure should not exceed 512 bytes */
1700};
1701
1702#define CRC_CONTEXT_LEN_FW (offsetof(struct crc_context, fcp_cmnd.lun))
1703#define CRC_CONTEXT_FCPCMND_OFF (offsetof(struct crc_context, fcp_cmnd.lun))
1704
1da177e4
LT
1705/*
1706 * ISP queue - status entry structure definition.
1707 */
1708#define STATUS_TYPE 0x03 /* Status entry. */
1709typedef struct {
1710 uint8_t entry_type; /* Entry type. */
1711 uint8_t entry_count; /* Entry count. */
1712 uint8_t sys_define; /* System defined. */
1713 uint8_t entry_status; /* Entry Status. */
1714 uint32_t handle; /* System handle. */
1715 uint16_t scsi_status; /* SCSI status. */
1716 uint16_t comp_status; /* Completion status. */
1717 uint16_t state_flags; /* State flags. */
1718 uint16_t status_flags; /* Status flags. */
1719 uint16_t rsp_info_len; /* Response Info Length. */
1720 uint16_t req_sense_length; /* Request sense data length. */
1721 uint32_t residual_length; /* Residual transfer length. */
1722 uint8_t rsp_info[8]; /* FCP response information. */
1723 uint8_t req_sense_data[32]; /* Request sense data. */
1724} sts_entry_t;
1725
1726/*
1727 * Status entry entry status
1728 */
3d71644c 1729#define RF_RQ_DMA_ERROR BIT_6 /* Request Queue DMA error. */
1da177e4
LT
1730#define RF_INV_E_ORDER BIT_5 /* Invalid entry order. */
1731#define RF_INV_E_COUNT BIT_4 /* Invalid entry count. */
1732#define RF_INV_E_PARAM BIT_3 /* Invalid entry parameter. */
1733#define RF_INV_E_TYPE BIT_2 /* Invalid entry type. */
1734#define RF_BUSY BIT_1 /* Busy */
3d71644c
AV
1735#define RF_MASK (RF_RQ_DMA_ERROR | RF_INV_E_ORDER | RF_INV_E_COUNT | \
1736 RF_INV_E_PARAM | RF_INV_E_TYPE | RF_BUSY)
1737#define RF_MASK_24XX (RF_INV_E_ORDER | RF_INV_E_COUNT | RF_INV_E_PARAM | \
1738 RF_INV_E_TYPE)
1da177e4
LT
1739
1740/*
1741 * Status entry SCSI status bit definitions.
1742 */
1743#define SS_MASK 0xfff /* Reserved bits BIT_12-BIT_15*/
1744#define SS_RESIDUAL_UNDER BIT_11
1745#define SS_RESIDUAL_OVER BIT_10
1746#define SS_SENSE_LEN_VALID BIT_9
1747#define SS_RESPONSE_INFO_LEN_VALID BIT_8
1748
1749#define SS_RESERVE_CONFLICT (BIT_4 | BIT_3)
1750#define SS_BUSY_CONDITION BIT_3
1751#define SS_CONDITION_MET BIT_2
1752#define SS_CHECK_CONDITION BIT_1
1753
1754/*
1755 * Status entry completion status
1756 */
1757#define CS_COMPLETE 0x0 /* No errors */
1758#define CS_INCOMPLETE 0x1 /* Incomplete transfer of cmd. */
1759#define CS_DMA 0x2 /* A DMA direction error. */
1760#define CS_TRANSPORT 0x3 /* Transport error. */
1761#define CS_RESET 0x4 /* SCSI bus reset occurred */
1762#define CS_ABORTED 0x5 /* System aborted command. */
1763#define CS_TIMEOUT 0x6 /* Timeout error. */
1764#define CS_DATA_OVERRUN 0x7 /* Data overrun. */
bad75002 1765#define CS_DIF_ERROR 0xC /* DIF error detected */
1da177e4
LT
1766
1767#define CS_DATA_UNDERRUN 0x15 /* Data Underrun. */
1768#define CS_QUEUE_FULL 0x1C /* Queue Full. */
1769#define CS_PORT_UNAVAILABLE 0x28 /* Port unavailable */
1770 /* (selection timeout) */
1771#define CS_PORT_LOGGED_OUT 0x29 /* Port Logged Out */
1772#define CS_PORT_CONFIG_CHG 0x2A /* Port Configuration Changed */
1773#define CS_PORT_BUSY 0x2B /* Port Busy */
1774#define CS_COMPLETE_CHKCOND 0x30 /* Error? */
f934c9d0
CD
1775#define CS_IOCB_ERROR 0x31 /* Generic error for IOCB request
1776 failure */
1da177e4
LT
1777#define CS_BAD_PAYLOAD 0x80 /* Driver defined */
1778#define CS_UNKNOWN 0x81 /* Driver defined */
1779#define CS_RETRY 0x82 /* Driver defined */
1780#define CS_LOOP_DOWN_ABORT 0x83 /* Driver defined */
1781
a9b6f722
SK
1782#define CS_BIDIR_RD_OVERRUN 0x700
1783#define CS_BIDIR_RD_WR_OVERRUN 0x707
1784#define CS_BIDIR_RD_OVERRUN_WR_UNDERRUN 0x715
1785#define CS_BIDIR_RD_UNDERRUN 0x1500
1786#define CS_BIDIR_RD_UNDERRUN_WR_OVERRUN 0x1507
1787#define CS_BIDIR_RD_WR_UNDERRUN 0x1515
1788#define CS_BIDIR_DMA 0x200
1da177e4
LT
1789/*
1790 * Status entry status flags
1791 */
1792#define SF_ABTS_TERMINATED BIT_10
1793#define SF_LOGOUT_SENT BIT_13
1794
1795/*
1796 * ISP queue - status continuation entry structure definition.
1797 */
1798#define STATUS_CONT_TYPE 0x10 /* Status continuation entry. */
1799typedef struct {
1800 uint8_t entry_type; /* Entry type. */
1801 uint8_t entry_count; /* Entry count. */
1802 uint8_t sys_define; /* System defined. */
1803 uint8_t entry_status; /* Entry Status. */
1804 uint8_t data[60]; /* data */
1805} sts_cont_entry_t;
1806
1807/*
1808 * ISP queue - RIO Type 1 status entry (32 bit I/O entry handles)
1809 * structure definition.
1810 */
1811#define STATUS_TYPE_21 0x21 /* Status entry. */
1812typedef struct {
1813 uint8_t entry_type; /* Entry type. */
1814 uint8_t entry_count; /* Entry count. */
1815 uint8_t handle_count; /* Handle count. */
1816 uint8_t entry_status; /* Entry Status. */
1817 uint32_t handle[15]; /* System handles. */
1818} sts21_entry_t;
1819
1820/*
1821 * ISP queue - RIO Type 2 status entry (16 bit I/O entry handles)
1822 * structure definition.
1823 */
1824#define STATUS_TYPE_22 0x22 /* Status entry. */
1825typedef struct {
1826 uint8_t entry_type; /* Entry type. */
1827 uint8_t entry_count; /* Entry count. */
1828 uint8_t handle_count; /* Handle count. */
1829 uint8_t entry_status; /* Entry Status. */
1830 uint16_t handle[30]; /* System handles. */
1831} sts22_entry_t;
1832
1833/*
1834 * ISP queue - marker entry structure definition.
1835 */
1836#define MARKER_TYPE 0x04 /* Marker entry. */
1837typedef struct {
1838 uint8_t entry_type; /* Entry type. */
1839 uint8_t entry_count; /* Entry count. */
1840 uint8_t handle_count; /* Handle count. */
1841 uint8_t entry_status; /* Entry Status. */
1842 uint32_t sys_define_2; /* System defined. */
1843 target_id_t target; /* SCSI ID */
1844 uint8_t modifier; /* Modifier (7-0). */
1845#define MK_SYNC_ID_LUN 0 /* Synchronize ID/LUN */
1846#define MK_SYNC_ID 1 /* Synchronize ID */
1847#define MK_SYNC_ALL 2 /* Synchronize all ID/LUN */
1848#define MK_SYNC_LIP 3 /* Synchronize all ID/LUN, */
1849 /* clear port changed, */
1850 /* use sequence number. */
1851 uint8_t reserved_1;
1852 uint16_t sequence_number; /* Sequence number of event */
1853 uint16_t lun; /* SCSI LUN */
1854 uint8_t reserved_2[48];
1855} mrk_entry_t;
1856
1857/*
1858 * ISP queue - Management Server entry structure definition.
1859 */
1860#define MS_IOCB_TYPE 0x29 /* Management Server IOCB entry */
1861typedef struct {
1862 uint8_t entry_type; /* Entry type. */
1863 uint8_t entry_count; /* Entry count. */
1864 uint8_t handle_count; /* Handle count. */
1865 uint8_t entry_status; /* Entry Status. */
1866 uint32_t handle1; /* System handle. */
1867 target_id_t loop_id;
1868 uint16_t status;
1869 uint16_t control_flags; /* Control flags. */
1870 uint16_t reserved2;
1871 uint16_t timeout;
1872 uint16_t cmd_dsd_count;
1873 uint16_t total_dsd_count;
1874 uint8_t type;
1875 uint8_t r_ctl;
1876 uint16_t rx_id;
1877 uint16_t reserved3;
1878 uint32_t handle2;
1879 uint32_t rsp_bytecount;
1880 uint32_t req_bytecount;
1881 uint32_t dseg_req_address[2]; /* Data segment 0 address. */
1882 uint32_t dseg_req_length; /* Data segment 0 length. */
1883 uint32_t dseg_rsp_address[2]; /* Data segment 1 address. */
1884 uint32_t dseg_rsp_length; /* Data segment 1 length. */
1885} ms_iocb_entry_t;
1886
1887
1888/*
1889 * ISP queue - Mailbox Command entry structure definition.
1890 */
1891#define MBX_IOCB_TYPE 0x39
1892struct mbx_entry {
1893 uint8_t entry_type;
1894 uint8_t entry_count;
1895 uint8_t sys_define1;
1896 /* Use sys_define1 for source type */
1897#define SOURCE_SCSI 0x00
1898#define SOURCE_IP 0x01
1899#define SOURCE_VI 0x02
1900#define SOURCE_SCTP 0x03
1901#define SOURCE_MP 0x04
1902#define SOURCE_MPIOCTL 0x05
1903#define SOURCE_ASYNC_IOCB 0x07
1904
1905 uint8_t entry_status;
1906
1907 uint32_t handle;
1908 target_id_t loop_id;
1909
1910 uint16_t status;
1911 uint16_t state_flags;
1912 uint16_t status_flags;
1913
1914 uint32_t sys_define2[2];
1915
1916 uint16_t mb0;
1917 uint16_t mb1;
1918 uint16_t mb2;
1919 uint16_t mb3;
1920 uint16_t mb6;
1921 uint16_t mb7;
1922 uint16_t mb9;
1923 uint16_t mb10;
1924 uint32_t reserved_2[2];
1925 uint8_t node_name[WWN_SIZE];
1926 uint8_t port_name[WWN_SIZE];
1927};
1928
1929/*
1930 * ISP request and response queue entry sizes
1931 */
1932#define RESPONSE_ENTRY_SIZE (sizeof(response_t))
1933#define REQUEST_ENTRY_SIZE (sizeof(request_t))
1934
1935
1936/*
1937 * 24 bit port ID type definition.
1938 */
1939typedef union {
1940 uint32_t b24 : 24;
1941
1942 struct {
b889d531
MN
1943#ifdef __BIG_ENDIAN
1944 uint8_t domain;
1945 uint8_t area;
1946 uint8_t al_pa;
0fd30f77 1947#elif defined(__LITTLE_ENDIAN)
1da177e4
LT
1948 uint8_t al_pa;
1949 uint8_t area;
1950 uint8_t domain;
b889d531
MN
1951#else
1952#error "__BIG_ENDIAN or __LITTLE_ENDIAN must be defined!"
1953#endif
1da177e4
LT
1954 uint8_t rsvd_1;
1955 } b;
1956} port_id_t;
1957#define INVALID_PORT_ID 0xFFFFFF
1958
1959/*
1960 * Switch info gathering structure.
1961 */
1962typedef struct {
1963 port_id_t d_id;
1964 uint8_t node_name[WWN_SIZE];
1965 uint8_t port_name[WWN_SIZE];
d8b45213 1966 uint8_t fabric_port_name[WWN_SIZE];
d8b45213 1967 uint16_t fp_speed;
e8c72ba5 1968 uint8_t fc4_type;
1da177e4
LT
1969} sw_info_t;
1970
e8c72ba5
CD
1971/* FCP-4 types */
1972#define FC4_TYPE_FCP_SCSI 0x08
1973#define FC4_TYPE_OTHER 0x0
1974#define FC4_TYPE_UNKNOWN 0xff
1975
1da177e4
LT
1976/*
1977 * Fibre channel port type.
1978 */
1979 typedef enum {
1980 FCT_UNKNOWN,
1981 FCT_RSCN,
1982 FCT_SWITCH,
1983 FCT_BROADCAST,
1984 FCT_INITIATOR,
1985 FCT_TARGET
1986} fc_port_type_t;
1987
1988/*
1989 * Fibre channel port structure.
1990 */
1991typedef struct fc_port {
1992 struct list_head list;
7b867cf7 1993 struct scsi_qla_host *vha;
1da177e4
LT
1994
1995 uint8_t node_name[WWN_SIZE];
1996 uint8_t port_name[WWN_SIZE];
1997 port_id_t d_id;
1998 uint16_t loop_id;
1999 uint16_t old_loop_id;
2000
8ae6d9c7
GM
2001 uint16_t tgt_id;
2002 uint16_t old_tgt_id;
2003
09ff701a
SR
2004 uint8_t fcp_prio;
2005
d8b45213
AV
2006 uint8_t fabric_port_name[WWN_SIZE];
2007 uint16_t fp_speed;
2008
1da177e4
LT
2009 fc_port_type_t port_type;
2010
2011 atomic_t state;
2012 uint32_t flags;
2013
1da177e4 2014 int login_retry;
1da177e4 2015
d97994dc 2016 struct fc_rport *rport, *drport;
ad3e0eda 2017 u32 supported_classes;
df7baa50 2018
e8c72ba5 2019 uint8_t fc4_type;
b3b02e6e 2020 uint8_t scan_state;
8ae6d9c7
GM
2021
2022 unsigned long last_queue_full;
2023 unsigned long last_ramp_up;
2024
2025 uint16_t port_id;
e05fe292
CD
2026
2027 unsigned long retry_delay_timestamp;
1da177e4
LT
2028} fc_port_t;
2029
8ae6d9c7
GM
2030#include "qla_mr.h"
2031
1da177e4
LT
2032/*
2033 * Fibre channel port/lun states.
2034 */
2035#define FCS_UNCONFIGURED 1
2036#define FCS_DEVICE_DEAD 2
2037#define FCS_DEVICE_LOST 3
2038#define FCS_ONLINE 4
1da177e4 2039
ec426e10
CD
2040static const char * const port_state_str[] = {
2041 "Unknown",
2042 "UNCONFIGURED",
2043 "DEAD",
2044 "LOST",
2045 "ONLINE"
2046};
2047
1da177e4
LT
2048/*
2049 * FC port flags.
2050 */
2051#define FCF_FABRIC_DEVICE BIT_0
2052#define FCF_LOGIN_NEEDED BIT_1
f08b7251 2053#define FCF_FCP2_DEVICE BIT_2
5ff1d584 2054#define FCF_ASYNC_SENT BIT_3
2d70c103 2055#define FCF_CONF_COMP_SUPPORTED BIT_4
1da177e4
LT
2056
2057/* No loop ID flag. */
2058#define FC_NO_LOOP_ID 0x1000
2059
1da177e4
LT
2060/*
2061 * FC-CT interface
2062 *
2063 * NOTE: All structures are big-endian in form.
2064 */
2065
2066#define CT_REJECT_RESPONSE 0x8001
2067#define CT_ACCEPT_RESPONSE 0x8002
df57caba
HM
2068#define CT_REASON_INVALID_COMMAND_CODE 0x01
2069#define CT_REASON_CANNOT_PERFORM 0x09
2070#define CT_REASON_COMMAND_UNSUPPORTED 0x0b
2071#define CT_EXPL_ALREADY_REGISTERED 0x10
2072#define CT_EXPL_HBA_ATTR_NOT_REGISTERED 0x11
2073#define CT_EXPL_MULTIPLE_HBA_ATTR 0x12
2074#define CT_EXPL_INVALID_HBA_BLOCK_LENGTH 0x13
2075#define CT_EXPL_MISSING_REQ_HBA_ATTR 0x14
2076#define CT_EXPL_PORT_NOT_REGISTERED_ 0x15
2077#define CT_EXPL_MISSING_HBA_ID_PORT_LIST 0x16
2078#define CT_EXPL_HBA_NOT_REGISTERED 0x17
2079#define CT_EXPL_PORT_ATTR_NOT_REGISTERED 0x20
2080#define CT_EXPL_PORT_NOT_REGISTERED 0x21
2081#define CT_EXPL_MULTIPLE_PORT_ATTR 0x22
2082#define CT_EXPL_INVALID_PORT_BLOCK_LENGTH 0x23
1da177e4
LT
2083
2084#define NS_N_PORT_TYPE 0x01
2085#define NS_NL_PORT_TYPE 0x02
2086#define NS_NX_PORT_TYPE 0x7F
2087
2088#define GA_NXT_CMD 0x100
2089#define GA_NXT_REQ_SIZE (16 + 4)
2090#define GA_NXT_RSP_SIZE (16 + 620)
2091
2092#define GID_PT_CMD 0x1A1
2093#define GID_PT_REQ_SIZE (16 + 4)
1da177e4
LT
2094
2095#define GPN_ID_CMD 0x112
2096#define GPN_ID_REQ_SIZE (16 + 4)
2097#define GPN_ID_RSP_SIZE (16 + 8)
2098
2099#define GNN_ID_CMD 0x113
2100#define GNN_ID_REQ_SIZE (16 + 4)
2101#define GNN_ID_RSP_SIZE (16 + 8)
2102
2103#define GFT_ID_CMD 0x117
2104#define GFT_ID_REQ_SIZE (16 + 4)
2105#define GFT_ID_RSP_SIZE (16 + 32)
2106
2107#define RFT_ID_CMD 0x217
2108#define RFT_ID_REQ_SIZE (16 + 4 + 32)
2109#define RFT_ID_RSP_SIZE 16
2110
2111#define RFF_ID_CMD 0x21F
2112#define RFF_ID_REQ_SIZE (16 + 4 + 2 + 1 + 1)
2113#define RFF_ID_RSP_SIZE 16
2114
2115#define RNN_ID_CMD 0x213
2116#define RNN_ID_REQ_SIZE (16 + 4 + 8)
2117#define RNN_ID_RSP_SIZE 16
2118
2119#define RSNN_NN_CMD 0x239
2120#define RSNN_NN_REQ_SIZE (16 + 8 + 1 + 255)
2121#define RSNN_NN_RSP_SIZE 16
2122
d8b45213
AV
2123#define GFPN_ID_CMD 0x11C
2124#define GFPN_ID_REQ_SIZE (16 + 4)
2125#define GFPN_ID_RSP_SIZE (16 + 8)
2126
2127#define GPSC_CMD 0x127
2128#define GPSC_REQ_SIZE (16 + 8)
2129#define GPSC_RSP_SIZE (16 + 2 + 2)
2130
e8c72ba5
CD
2131#define GFF_ID_CMD 0x011F
2132#define GFF_ID_REQ_SIZE (16 + 4)
2133#define GFF_ID_RSP_SIZE (16 + 128)
d8b45213 2134
cca5335c
AV
2135/*
2136 * HBA attribute types.
2137 */
2138#define FDMI_HBA_ATTR_COUNT 9
df57caba
HM
2139#define FDMIV2_HBA_ATTR_COUNT 17
2140#define FDMI_HBA_NODE_NAME 0x1
2141#define FDMI_HBA_MANUFACTURER 0x2
2142#define FDMI_HBA_SERIAL_NUMBER 0x3
2143#define FDMI_HBA_MODEL 0x4
2144#define FDMI_HBA_MODEL_DESCRIPTION 0x5
2145#define FDMI_HBA_HARDWARE_VERSION 0x6
2146#define FDMI_HBA_DRIVER_VERSION 0x7
2147#define FDMI_HBA_OPTION_ROM_VERSION 0x8
2148#define FDMI_HBA_FIRMWARE_VERSION 0x9
cca5335c
AV
2149#define FDMI_HBA_OS_NAME_AND_VERSION 0xa
2150#define FDMI_HBA_MAXIMUM_CT_PAYLOAD_LENGTH 0xb
df57caba
HM
2151#define FDMI_HBA_NODE_SYMBOLIC_NAME 0xc
2152#define FDMI_HBA_VENDOR_ID 0xd
2153#define FDMI_HBA_NUM_PORTS 0xe
2154#define FDMI_HBA_FABRIC_NAME 0xf
2155#define FDMI_HBA_BOOT_BIOS_NAME 0x10
2156#define FDMI_HBA_TYPE_VENDOR_IDENTIFIER 0xe0
cca5335c
AV
2157
2158struct ct_fdmi_hba_attr {
2159 uint16_t type;
2160 uint16_t len;
2161 union {
2162 uint8_t node_name[WWN_SIZE];
df57caba
HM
2163 uint8_t manufacturer[64];
2164 uint8_t serial_num[32];
cca5335c
AV
2165 uint8_t model[16];
2166 uint8_t model_desc[80];
df57caba 2167 uint8_t hw_version[32];
cca5335c
AV
2168 uint8_t driver_version[32];
2169 uint8_t orom_version[16];
df57caba 2170 uint8_t fw_version[32];
cca5335c 2171 uint8_t os_version[128];
df57caba 2172 uint32_t max_ct_len;
cca5335c
AV
2173 } a;
2174};
2175
2176struct ct_fdmi_hba_attributes {
2177 uint32_t count;
2178 struct ct_fdmi_hba_attr entry[FDMI_HBA_ATTR_COUNT];
2179};
2180
df57caba
HM
2181struct ct_fdmiv2_hba_attr {
2182 uint16_t type;
2183 uint16_t len;
2184 union {
2185 uint8_t node_name[WWN_SIZE];
2186 uint8_t manufacturer[32];
2187 uint8_t serial_num[32];
2188 uint8_t model[16];
2189 uint8_t model_desc[80];
2190 uint8_t hw_version[16];
2191 uint8_t driver_version[32];
2192 uint8_t orom_version[16];
2193 uint8_t fw_version[32];
2194 uint8_t os_version[128];
2195 uint32_t max_ct_len;
2196 uint8_t sym_name[256];
2197 uint32_t vendor_id;
2198 uint32_t num_ports;
2199 uint8_t fabric_name[WWN_SIZE];
2200 uint8_t bios_name[32];
2201 uint8_t vendor_indentifer[8];
2202 } a;
2203};
2204
2205struct ct_fdmiv2_hba_attributes {
2206 uint32_t count;
2207 struct ct_fdmiv2_hba_attr entry[FDMIV2_HBA_ATTR_COUNT];
2208};
2209
cca5335c
AV
2210/*
2211 * Port attribute types.
2212 */
8a85e171 2213#define FDMI_PORT_ATTR_COUNT 6
df57caba
HM
2214#define FDMIV2_PORT_ATTR_COUNT 16
2215#define FDMI_PORT_FC4_TYPES 0x1
2216#define FDMI_PORT_SUPPORT_SPEED 0x2
2217#define FDMI_PORT_CURRENT_SPEED 0x3
2218#define FDMI_PORT_MAX_FRAME_SIZE 0x4
2219#define FDMI_PORT_OS_DEVICE_NAME 0x5
2220#define FDMI_PORT_HOST_NAME 0x6
2221#define FDMI_PORT_NODE_NAME 0x7
2222#define FDMI_PORT_NAME 0x8
2223#define FDMI_PORT_SYM_NAME 0x9
2224#define FDMI_PORT_TYPE 0xa
2225#define FDMI_PORT_SUPP_COS 0xb
2226#define FDMI_PORT_FABRIC_NAME 0xc
2227#define FDMI_PORT_FC4_TYPE 0xd
2228#define FDMI_PORT_STATE 0x101
2229#define FDMI_PORT_COUNT 0x102
2230#define FDMI_PORT_ID 0x103
cca5335c 2231
5881569b
AV
2232#define FDMI_PORT_SPEED_1GB 0x1
2233#define FDMI_PORT_SPEED_2GB 0x2
2234#define FDMI_PORT_SPEED_10GB 0x4
2235#define FDMI_PORT_SPEED_4GB 0x8
2236#define FDMI_PORT_SPEED_8GB 0x10
2237#define FDMI_PORT_SPEED_16GB 0x20
f73cb695 2238#define FDMI_PORT_SPEED_32GB 0x40
5881569b
AV
2239#define FDMI_PORT_SPEED_UNKNOWN 0x8000
2240
df57caba
HM
2241#define FC_CLASS_2 0x04
2242#define FC_CLASS_3 0x08
2243#define FC_CLASS_2_3 0x0C
2244
2245struct ct_fdmiv2_port_attr {
cca5335c
AV
2246 uint16_t type;
2247 uint16_t len;
2248 union {
2249 uint8_t fc4_types[32];
2250 uint32_t sup_speed;
2251 uint32_t cur_speed;
2252 uint32_t max_frame_size;
2253 uint8_t os_dev_name[32];
2254 uint8_t host_name[32];
df57caba
HM
2255 uint8_t node_name[WWN_SIZE];
2256 uint8_t port_name[WWN_SIZE];
2257 uint8_t port_sym_name[128];
2258 uint32_t port_type;
2259 uint32_t port_supported_cos;
2260 uint8_t fabric_name[WWN_SIZE];
2261 uint8_t port_fc4_type[32];
2262 uint32_t port_state;
2263 uint32_t num_ports;
2264 uint32_t port_id;
cca5335c
AV
2265 } a;
2266};
2267
2268/*
2269 * Port Attribute Block.
2270 */
df57caba
HM
2271struct ct_fdmiv2_port_attributes {
2272 uint32_t count;
2273 struct ct_fdmiv2_port_attr entry[FDMIV2_PORT_ATTR_COUNT];
2274};
2275
2276struct ct_fdmi_port_attr {
2277 uint16_t type;
2278 uint16_t len;
2279 union {
2280 uint8_t fc4_types[32];
2281 uint32_t sup_speed;
2282 uint32_t cur_speed;
2283 uint32_t max_frame_size;
2284 uint8_t os_dev_name[32];
2285 uint8_t host_name[32];
2286 } a;
2287};
2288
cca5335c
AV
2289struct ct_fdmi_port_attributes {
2290 uint32_t count;
2291 struct ct_fdmi_port_attr entry[FDMI_PORT_ATTR_COUNT];
2292};
2293
2294/* FDMI definitions. */
2295#define GRHL_CMD 0x100
2296#define GHAT_CMD 0x101
2297#define GRPL_CMD 0x102
2298#define GPAT_CMD 0x110
2299
2300#define RHBA_CMD 0x200
2301#define RHBA_RSP_SIZE 16
2302
2303#define RHAT_CMD 0x201
2304#define RPRT_CMD 0x210
2305
2306#define RPA_CMD 0x211
2307#define RPA_RSP_SIZE 16
2308
2309#define DHBA_CMD 0x300
2310#define DHBA_REQ_SIZE (16 + 8)
2311#define DHBA_RSP_SIZE 16
2312
2313#define DHAT_CMD 0x301
2314#define DPRT_CMD 0x310
2315#define DPA_CMD 0x311
2316
1da177e4
LT
2317/* CT command header -- request/response common fields */
2318struct ct_cmd_hdr {
2319 uint8_t revision;
2320 uint8_t in_id[3];
2321 uint8_t gs_type;
2322 uint8_t gs_subtype;
2323 uint8_t options;
2324 uint8_t reserved;
2325};
2326
2327/* CT command request */
2328struct ct_sns_req {
2329 struct ct_cmd_hdr header;
2330 uint16_t command;
2331 uint16_t max_rsp_size;
2332 uint8_t fragment_id;
2333 uint8_t reserved[3];
2334
2335 union {
d8b45213 2336 /* GA_NXT, GPN_ID, GNN_ID, GFT_ID, GFPN_ID */
1da177e4
LT
2337 struct {
2338 uint8_t reserved;
2339 uint8_t port_id[3];
2340 } port_id;
2341
2342 struct {
2343 uint8_t port_type;
2344 uint8_t domain;
2345 uint8_t area;
2346 uint8_t reserved;
2347 } gid_pt;
2348
2349 struct {
2350 uint8_t reserved;
2351 uint8_t port_id[3];
2352 uint8_t fc4_types[32];
2353 } rft_id;
2354
2355 struct {
2356 uint8_t reserved;
2357 uint8_t port_id[3];
2358 uint16_t reserved2;
2359 uint8_t fc4_feature;
2360 uint8_t fc4_type;
2361 } rff_id;
2362
2363 struct {
2364 uint8_t reserved;
2365 uint8_t port_id[3];
2366 uint8_t node_name[8];
2367 } rnn_id;
2368
2369 struct {
2370 uint8_t node_name[8];
2371 uint8_t name_len;
2372 uint8_t sym_node_name[255];
2373 } rsnn_nn;
cca5335c
AV
2374
2375 struct {
2376 uint8_t hba_indentifier[8];
2377 } ghat;
2378
2379 struct {
2380 uint8_t hba_identifier[8];
2381 uint32_t entry_count;
2382 uint8_t port_name[8];
2383 struct ct_fdmi_hba_attributes attrs;
2384 } rhba;
2385
df57caba
HM
2386 struct {
2387 uint8_t hba_identifier[8];
2388 uint32_t entry_count;
2389 uint8_t port_name[8];
2390 struct ct_fdmiv2_hba_attributes attrs;
2391 } rhba2;
2392
cca5335c
AV
2393 struct {
2394 uint8_t hba_identifier[8];
2395 struct ct_fdmi_hba_attributes attrs;
2396 } rhat;
2397
2398 struct {
2399 uint8_t port_name[8];
2400 struct ct_fdmi_port_attributes attrs;
2401 } rpa;
2402
df57caba
HM
2403 struct {
2404 uint8_t port_name[8];
2405 struct ct_fdmiv2_port_attributes attrs;
2406 } rpa2;
2407
cca5335c
AV
2408 struct {
2409 uint8_t port_name[8];
2410 } dhba;
2411
2412 struct {
2413 uint8_t port_name[8];
2414 } dhat;
2415
2416 struct {
2417 uint8_t port_name[8];
2418 } dprt;
2419
2420 struct {
2421 uint8_t port_name[8];
2422 } dpa;
d8b45213
AV
2423
2424 struct {
2425 uint8_t port_name[8];
2426 } gpsc;
e8c72ba5
CD
2427
2428 struct {
2429 uint8_t reserved;
2430 uint8_t port_name[3];
2431 } gff_id;
1da177e4
LT
2432 } req;
2433};
2434
2435/* CT command response header */
2436struct ct_rsp_hdr {
2437 struct ct_cmd_hdr header;
2438 uint16_t response;
2439 uint16_t residual;
2440 uint8_t fragment_id;
2441 uint8_t reason_code;
2442 uint8_t explanation_code;
2443 uint8_t vendor_unique;
2444};
2445
2446struct ct_sns_gid_pt_data {
2447 uint8_t control_byte;
2448 uint8_t port_id[3];
2449};
2450
2451struct ct_sns_rsp {
2452 struct ct_rsp_hdr header;
2453
2454 union {
2455 struct {
2456 uint8_t port_type;
2457 uint8_t port_id[3];
2458 uint8_t port_name[8];
2459 uint8_t sym_port_name_len;
2460 uint8_t sym_port_name[255];
2461 uint8_t node_name[8];
2462 uint8_t sym_node_name_len;
2463 uint8_t sym_node_name[255];
2464 uint8_t init_proc_assoc[8];
2465 uint8_t node_ip_addr[16];
2466 uint8_t class_of_service[4];
2467 uint8_t fc4_types[32];
2468 uint8_t ip_address[16];
2469 uint8_t fabric_port_name[8];
2470 uint8_t reserved;
2471 uint8_t hard_address[3];
2472 } ga_nxt;
2473
2474 struct {
642ef983
CD
2475 /* Assume the largest number of targets for the union */
2476 struct ct_sns_gid_pt_data
2477 entries[MAX_FIBRE_DEVICES_MAX];
1da177e4
LT
2478 } gid_pt;
2479
2480 struct {
2481 uint8_t port_name[8];
2482 } gpn_id;
2483
2484 struct {
2485 uint8_t node_name[8];
2486 } gnn_id;
2487
2488 struct {
2489 uint8_t fc4_types[32];
2490 } gft_id;
cca5335c
AV
2491
2492 struct {
2493 uint32_t entry_count;
2494 uint8_t port_name[8];
2495 struct ct_fdmi_hba_attributes attrs;
2496 } ghat;
d8b45213
AV
2497
2498 struct {
2499 uint8_t port_name[8];
2500 } gfpn_id;
2501
2502 struct {
2503 uint16_t speeds;
2504 uint16_t speed;
2505 } gpsc;
e8c72ba5
CD
2506
2507#define GFF_FCP_SCSI_OFFSET 7
2508 struct {
2509 uint8_t fc4_features[128];
2510 } gff_id;
1da177e4
LT
2511 } rsp;
2512};
2513
2514struct ct_sns_pkt {
2515 union {
2516 struct ct_sns_req req;
2517 struct ct_sns_rsp rsp;
2518 } p;
2519};
2520
2521/*
25985edc 2522 * SNS command structures -- for 2200 compatibility.
1da177e4
LT
2523 */
2524#define RFT_ID_SNS_SCMD_LEN 22
2525#define RFT_ID_SNS_CMD_SIZE 60
2526#define RFT_ID_SNS_DATA_SIZE 16
2527
2528#define RNN_ID_SNS_SCMD_LEN 10
2529#define RNN_ID_SNS_CMD_SIZE 36
2530#define RNN_ID_SNS_DATA_SIZE 16
2531
2532#define GA_NXT_SNS_SCMD_LEN 6
2533#define GA_NXT_SNS_CMD_SIZE 28
2534#define GA_NXT_SNS_DATA_SIZE (620 + 16)
2535
2536#define GID_PT_SNS_SCMD_LEN 6
2537#define GID_PT_SNS_CMD_SIZE 28
642ef983
CD
2538/*
2539 * Assume MAX_FIBRE_DEVICES_2100 as these defines are only used with older
2540 * adapters.
2541 */
2542#define GID_PT_SNS_DATA_SIZE (MAX_FIBRE_DEVICES_2100 * 4 + 16)
1da177e4
LT
2543
2544#define GPN_ID_SNS_SCMD_LEN 6
2545#define GPN_ID_SNS_CMD_SIZE 28
2546#define GPN_ID_SNS_DATA_SIZE (8 + 16)
2547
2548#define GNN_ID_SNS_SCMD_LEN 6
2549#define GNN_ID_SNS_CMD_SIZE 28
2550#define GNN_ID_SNS_DATA_SIZE (8 + 16)
2551
2552struct sns_cmd_pkt {
2553 union {
2554 struct {
2555 uint16_t buffer_length;
2556 uint16_t reserved_1;
2557 uint32_t buffer_address[2];
2558 uint16_t subcommand_length;
2559 uint16_t reserved_2;
2560 uint16_t subcommand;
2561 uint16_t size;
2562 uint32_t reserved_3;
2563 uint8_t param[36];
2564 } cmd;
2565
2566 uint8_t rft_data[RFT_ID_SNS_DATA_SIZE];
2567 uint8_t rnn_data[RNN_ID_SNS_DATA_SIZE];
2568 uint8_t gan_data[GA_NXT_SNS_DATA_SIZE];
2569 uint8_t gid_data[GID_PT_SNS_DATA_SIZE];
2570 uint8_t gpn_data[GPN_ID_SNS_DATA_SIZE];
2571 uint8_t gnn_data[GNN_ID_SNS_DATA_SIZE];
2572 } p;
2573};
2574
5433383e
AV
2575struct fw_blob {
2576 char *name;
2577 uint32_t segs[4];
2578 const struct firmware *fw;
2579};
2580
1da177e4
LT
2581/* Return data from MBC_GET_ID_LIST call. */
2582struct gid_list_info {
2583 uint8_t al_pa;
2584 uint8_t area;
fa2a1ce5 2585 uint8_t domain;
1da177e4
LT
2586 uint8_t loop_id_2100; /* ISP2100/ISP2200 -- 4 bytes. */
2587 uint16_t loop_id; /* ISP23XX -- 6 bytes. */
3d71644c 2588 uint16_t reserved_1; /* ISP24XX -- 8 bytes. */
1da177e4 2589};
1da177e4 2590
2c3dfe3f
SJ
2591/* NPIV */
2592typedef struct vport_info {
2593 uint8_t port_name[WWN_SIZE];
2594 uint8_t node_name[WWN_SIZE];
2595 int vp_id;
2596 uint16_t loop_id;
2597 unsigned long host_no;
2598 uint8_t port_id[3];
2599 int loop_state;
2600} vport_info_t;
2601
2602typedef struct vport_params {
2603 uint8_t port_name[WWN_SIZE];
2604 uint8_t node_name[WWN_SIZE];
2605 uint32_t options;
2606#define VP_OPTS_RETRY_ENABLE BIT_0
2607#define VP_OPTS_VP_DISABLE BIT_1
2608} vport_params_t;
2609
2610/* NPIV - return codes of VP create and modify */
2611#define VP_RET_CODE_OK 0
2612#define VP_RET_CODE_FATAL 1
2613#define VP_RET_CODE_WRONG_ID 2
2614#define VP_RET_CODE_WWPN 3
2615#define VP_RET_CODE_RESOURCES 4
2616#define VP_RET_CODE_NO_MEM 5
2617#define VP_RET_CODE_NOT_FOUND 6
2618
7b867cf7 2619struct qla_hw_data;
2afa19a9 2620struct rsp_que;
abbd8870
AV
2621/*
2622 * ISP operations
2623 */
2624struct isp_operations {
2625
2626 int (*pci_config) (struct scsi_qla_host *);
2627 void (*reset_chip) (struct scsi_qla_host *);
2628 int (*chip_diag) (struct scsi_qla_host *);
2629 void (*config_rings) (struct scsi_qla_host *);
2630 void (*reset_adapter) (struct scsi_qla_host *);
2631 int (*nvram_config) (struct scsi_qla_host *);
2632 void (*update_fw_options) (struct scsi_qla_host *);
2633 int (*load_risc) (struct scsi_qla_host *, uint32_t *);
2634
2635 char * (*pci_info_str) (struct scsi_qla_host *, char *);
df57caba 2636 char * (*fw_version_str)(struct scsi_qla_host *, char *, size_t);
abbd8870 2637
7d12e780 2638 irq_handler_t intr_handler;
7b867cf7
AC
2639 void (*enable_intrs) (struct qla_hw_data *);
2640 void (*disable_intrs) (struct qla_hw_data *);
abbd8870 2641
2afa19a9 2642 int (*abort_command) (srb_t *);
9cb78c16
HR
2643 int (*target_reset) (struct fc_port *, uint64_t, int);
2644 int (*lun_reset) (struct fc_port *, uint64_t, int);
abbd8870
AV
2645 int (*fabric_login) (struct scsi_qla_host *, uint16_t, uint8_t,
2646 uint8_t, uint8_t, uint16_t *, uint8_t);
1c7c6357
AV
2647 int (*fabric_logout) (struct scsi_qla_host *, uint16_t, uint8_t,
2648 uint8_t, uint8_t);
abbd8870
AV
2649
2650 uint16_t (*calc_req_entries) (uint16_t);
2651 void (*build_iocbs) (srb_t *, cmd_entry_t *, uint16_t);
8c958a99 2652 void * (*prep_ms_iocb) (struct scsi_qla_host *, uint32_t, uint32_t);
cca5335c
AV
2653 void * (*prep_ms_fdmi_iocb) (struct scsi_qla_host *, uint32_t,
2654 uint32_t);
abbd8870
AV
2655
2656 uint8_t * (*read_nvram) (struct scsi_qla_host *, uint8_t *,
2657 uint32_t, uint32_t);
2658 int (*write_nvram) (struct scsi_qla_host *, uint8_t *, uint32_t,
2659 uint32_t);
2660
2661 void (*fw_dump) (struct scsi_qla_host *, int);
f6df144c 2662
2663 int (*beacon_on) (struct scsi_qla_host *);
2664 int (*beacon_off) (struct scsi_qla_host *);
2665 void (*beacon_blink) (struct scsi_qla_host *);
854165f4 2666
2667 uint8_t * (*read_optrom) (struct scsi_qla_host *, uint8_t *,
2668 uint32_t, uint32_t);
2669 int (*write_optrom) (struct scsi_qla_host *, uint8_t *, uint32_t,
2670 uint32_t);
30c47662
AV
2671
2672 int (*get_flash_version) (struct scsi_qla_host *, void *);
7b867cf7 2673 int (*start_scsi) (srb_t *);
a9083016 2674 int (*abort_isp) (struct scsi_qla_host *);
706f457d 2675 int (*iospace_config)(struct qla_hw_data*);
8ae6d9c7 2676 int (*initialize_adapter)(struct scsi_qla_host *);
abbd8870
AV
2677};
2678
a8488abe
AV
2679/* MSI-X Support *************************************************************/
2680
2681#define QLA_MSIX_CHIP_REV_24XX 3
2682#define QLA_MSIX_FW_MODE(m) (((m) & (BIT_7|BIT_8|BIT_9)) >> 7)
2683#define QLA_MSIX_FW_MODE_1(m) (QLA_MSIX_FW_MODE(m) == 1)
2684
2685#define QLA_MSIX_DEFAULT 0x00
2686#define QLA_MSIX_RSP_Q 0x01
2687
a8488abe
AV
2688#define QLA_MIDX_DEFAULT 0
2689#define QLA_MIDX_RSP_Q 1
73208dfd 2690#define QLA_PCI_MSIX_CONTROL 0xa2
6246b8a1 2691#define QLA_83XX_PCI_MSIX_CONTROL 0x92
a8488abe
AV
2692
2693struct scsi_qla_host;
2694
2695struct qla_msix_entry {
2696 int have_irq;
73208dfd
AC
2697 uint32_t vector;
2698 uint16_t entry;
2699 struct rsp_que *rsp;
a8488abe
AV
2700};
2701
2c3dfe3f
SJ
2702#define WATCH_INTERVAL 1 /* number of seconds */
2703
0971de7f
AV
2704/* Work events. */
2705enum qla_work_type {
2706 QLA_EVT_AEN,
8a659571 2707 QLA_EVT_IDC_ACK,
ac280b67
AV
2708 QLA_EVT_ASYNC_LOGIN,
2709 QLA_EVT_ASYNC_LOGIN_DONE,
2710 QLA_EVT_ASYNC_LOGOUT,
2711 QLA_EVT_ASYNC_LOGOUT_DONE,
5ff1d584
AV
2712 QLA_EVT_ASYNC_ADISC,
2713 QLA_EVT_ASYNC_ADISC_DONE,
3420d36c 2714 QLA_EVT_UEVENT,
8ae6d9c7 2715 QLA_EVT_AENFX,
0971de7f
AV
2716};
2717
2718
2719struct qla_work_evt {
2720 struct list_head list;
2721 enum qla_work_type type;
2722 u32 flags;
2723#define QLA_EVT_FLAG_FREE 0x1
2724
2725 union {
2726 struct {
2727 enum fc_host_event_code code;
2728 u32 data;
2729 } aen;
8a659571
AV
2730 struct {
2731#define QLA_IDC_ACK_REGS 7
2732 uint16_t mb[QLA_IDC_ACK_REGS];
2733 } idc_ack;
ac280b67
AV
2734 struct {
2735 struct fc_port *fcport;
2736#define QLA_LOGIO_LOGIN_RETRIED BIT_0
2737 u16 data[2];
2738 } logio;
3420d36c
AV
2739 struct {
2740 u32 code;
2741#define QLA_UEVENT_CODE_FW_DUMP 0
2742 } uevent;
8ae6d9c7
GM
2743 struct {
2744 uint32_t evtcode;
2745 uint32_t mbx[8];
2746 uint32_t count;
2747 } aenfx;
2748 struct {
2749 srb_t *sp;
2750 } iosb;
2751 } u;
0971de7f
AV
2752};
2753
4d4df193
HK
2754struct qla_chip_state_84xx {
2755 struct list_head list;
2756 struct kref kref;
2757
2758 void *bus;
2759 spinlock_t access_lock;
2760 struct mutex fw_update_mutex;
2761 uint32_t fw_update;
2762 uint32_t op_fw_version;
2763 uint32_t op_fw_size;
2764 uint32_t op_fw_seq_size;
2765 uint32_t diag_fw_version;
2766 uint32_t gold_fw_version;
2767};
2768
e5f5f6f7
HZ
2769struct qla_statistics {
2770 uint32_t total_isp_aborts;
49fd462a
HZ
2771 uint64_t input_bytes;
2772 uint64_t output_bytes;
fabbb8df
JC
2773 uint64_t input_requests;
2774 uint64_t output_requests;
2775 uint32_t control_requests;
2776
2777 uint64_t jiffies_at_last_reset;
e5f5f6f7
HZ
2778};
2779
a9b6f722
SK
2780struct bidi_statistics {
2781 unsigned long long io_count;
2782 unsigned long long transfer_bytes;
2783};
2784
73208dfd
AC
2785/* Multi queue support */
2786#define MBC_INITIALIZE_MULTIQ 0x1f
2787#define QLA_QUE_PAGE 0X1000
2788#define QLA_MQ_SIZE 32
73208dfd
AC
2789#define QLA_MAX_QUEUES 256
2790#define ISP_QUE_REG(ha, id) \
f73cb695 2791 ((ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha)) ? \
da9b1d5c
AV
2792 ((void __iomem *)ha->mqiobase + (QLA_QUE_PAGE * id)) :\
2793 ((void __iomem *)ha->iobase))
73208dfd
AC
2794#define QLA_REQ_QUE_ID(tag) \
2795 ((tag < QLA_MAX_QUEUES && tag > 0) ? tag : 0)
2796#define QLA_DEFAULT_QUE_QOS 5
2797#define QLA_PRECONFIG_VPORTS 32
2798#define QLA_MAX_VPORTS_QLA24XX 128
2799#define QLA_MAX_VPORTS_QLA25XX 256
7b867cf7
AC
2800/* Response queue data structure */
2801struct rsp_que {
2802 dma_addr_t dma;
2803 response_t *ring;
2804 response_t *ring_ptr;
08029990
AV
2805 uint32_t __iomem *rsp_q_in; /* FWI2-capable only. */
2806 uint32_t __iomem *rsp_q_out;
7b867cf7
AC
2807 uint16_t ring_index;
2808 uint16_t out_ptr;
7c6300e3 2809 uint16_t *in_ptr; /* queue shadow in index */
7b867cf7
AC
2810 uint16_t length;
2811 uint16_t options;
7b867cf7 2812 uint16_t rid;
73208dfd
AC
2813 uint16_t id;
2814 uint16_t vp_idx;
7b867cf7 2815 struct qla_hw_data *hw;
73208dfd
AC
2816 struct qla_msix_entry *msix;
2817 struct req_que *req;
2afa19a9 2818 srb_t *status_srb; /* status continuation entry */
68ca949c 2819 struct work_struct q_work;
8ae6d9c7
GM
2820
2821 dma_addr_t dma_fx00;
2822 response_t *ring_fx00;
2823 uint16_t length_fx00;
2824 uint8_t rsp_pkt[REQUEST_ENTRY_SIZE];
7b867cf7 2825};
1da177e4 2826
7b867cf7
AC
2827/* Request queue data structure */
2828struct req_que {
2829 dma_addr_t dma;
2830 request_t *ring;
2831 request_t *ring_ptr;
08029990
AV
2832 uint32_t __iomem *req_q_in; /* FWI2-capable only. */
2833 uint32_t __iomem *req_q_out;
7b867cf7
AC
2834 uint16_t ring_index;
2835 uint16_t in_ptr;
7c6300e3 2836 uint16_t *out_ptr; /* queue shadow out index */
7b867cf7
AC
2837 uint16_t cnt;
2838 uint16_t length;
2839 uint16_t options;
2840 uint16_t rid;
73208dfd 2841 uint16_t id;
7b867cf7
AC
2842 uint16_t qos;
2843 uint16_t vp_idx;
73208dfd 2844 struct rsp_que *rsp;
8d93f550 2845 srb_t **outstanding_cmds;
7b867cf7 2846 uint32_t current_outstanding_cmd;
8d93f550 2847 uint16_t num_outstanding_cmds;
7b867cf7 2848 int max_q_depth;
8ae6d9c7
GM
2849
2850 dma_addr_t dma_fx00;
2851 request_t *ring_fx00;
2852 uint16_t length_fx00;
2853 uint8_t req_pkt[REQUEST_ENTRY_SIZE];
7b867cf7 2854};
1da177e4 2855
9a069e19
GM
2856/* Place holder for FW buffer parameters */
2857struct qlfc_fw {
2858 void *fw_buf;
2859 dma_addr_t fw_dma;
2860 uint32_t len;
2861};
2862
0e8cd71c
SK
2863struct scsi_qlt_host {
2864 void *target_lport_ptr;
2865 struct mutex tgt_mutex;
2866 struct mutex tgt_host_action_mutex;
2867 struct qla_tgt *qla_tgt;
2868};
2869
2d70c103
NB
2870struct qlt_hw_data {
2871 /* Protected by hw lock */
2872 uint32_t enable_class_2:1;
2873 uint32_t enable_explicit_conf:1;
2874 uint32_t ini_mode_force_reverse:1;
2875 uint32_t node_name_set:1;
2876
2877 dma_addr_t atio_dma; /* Physical address. */
2878 struct atio *atio_ring; /* Base virtual address */
2879 struct atio *atio_ring_ptr; /* Current address. */
2880 uint16_t atio_ring_index; /* Current index. */
2881 uint16_t atio_q_length;
aa230bc5
AE
2882 uint32_t __iomem *atio_q_in;
2883 uint32_t __iomem *atio_q_out;
2d70c103 2884
2d70c103 2885 struct qla_tgt_func_tmpl *tgt_ops;
8d93f550 2886 struct qla_tgt_cmd *cmds[DEFAULT_OUTSTANDING_COMMANDS];
2d70c103
NB
2887 uint16_t current_handle;
2888
2889 struct qla_tgt_vp_map *tgt_vp_map;
2d70c103
NB
2890
2891 int saved_set;
2892 uint16_t saved_exchange_count;
2893 uint32_t saved_firmware_options_1;
2894 uint32_t saved_firmware_options_2;
2895 uint32_t saved_firmware_options_3;
2896 uint8_t saved_firmware_options[2];
2897 uint8_t saved_add_firmware_options[2];
2898
2899 uint8_t tgt_node_name[WWN_SIZE];
2900};
2901
7b867cf7
AC
2902/*
2903 * Qlogic host adapter specific data structure.
2904*/
2905struct qla_hw_data {
2906 struct pci_dev *pdev;
2907 /* SRB cache. */
2908#define SRB_MIN_REQ 128
2909 mempool_t *srb_mempool;
1da177e4
LT
2910
2911 volatile struct {
1da177e4
LT
2912 uint32_t mbox_int :1;
2913 uint32_t mbox_busy :1;
1da177e4
LT
2914 uint32_t disable_risc_code_load :1;
2915 uint32_t enable_64bit_addressing :1;
2916 uint32_t enable_lip_reset :1;
1da177e4 2917 uint32_t enable_target_reset :1;
7b867cf7 2918 uint32_t enable_lip_full_login :1;
1da177e4 2919 uint32_t enable_led_scheme :1;
7190575f 2920
3d71644c
AV
2921 uint32_t msi_enabled :1;
2922 uint32_t msix_enabled :1;
d4c760c2 2923 uint32_t disable_serdes :1;
4346b149 2924 uint32_t gpsc_supported :1;
2c3dfe3f 2925 uint32_t npiv_supported :1;
85880801 2926 uint32_t pci_channel_io_perm_failure :1;
df613b96 2927 uint32_t fce_enabled :1;
1d2874de 2928 uint32_t fac_supported :1;
7190575f 2929
2533cf67 2930 uint32_t chip_reset_done :1;
cbc8eb67 2931 uint32_t running_gold_fw :1;
85880801 2932 uint32_t eeh_busy :1;
7163ea81 2933 uint32_t cpu_affinity_enabled :1;
3155754a 2934 uint32_t disable_msix_handshake :1;
09ff701a 2935 uint32_t fcp_prio_enabled :1;
7190575f 2936 uint32_t isp82xx_fw_hung:1;
7d613ac6 2937 uint32_t nic_core_hung:1;
7190575f
GM
2938
2939 uint32_t quiesce_owner:1;
7d613ac6
SV
2940 uint32_t nic_core_reset_hdlr_active:1;
2941 uint32_t nic_core_reset_owner:1;
b6d0d9d5 2942 uint32_t isp82xx_no_md_cap:1;
2d70c103 2943 uint32_t host_shutting_down:1;
bf5b8ad7 2944 uint32_t idc_compl_status:1;
8ae6d9c7
GM
2945
2946 uint32_t mr_reset_hdlr_active:1;
2947 uint32_t mr_intr_valid:1;
2948 /* 34 bits */
1da177e4
LT
2949 } flags;
2950
fa2a1ce5 2951 /* This spinlock is used to protect "io transactions", you must
7b867cf7
AC
2952 * acquire it before doing any IO to the card, eg with RD_REG*() and
2953 * WRT_REG*() for the duration of your entire commandtransaction.
2954 *
2955 * This spinlock is of lower priority than the io request lock.
2956 */
1da177e4 2957
7b867cf7 2958 spinlock_t hardware_lock ____cacheline_aligned;
285d0321 2959 int bars;
09483916 2960 int mem_only;
f73cb695 2961 device_reg_t *iobase; /* Base I/O address */
3776541d 2962 resource_size_t pio_address;
fa2a1ce5 2963
7b867cf7 2964#define MIN_IOBASE_LEN 0x100
8ae6d9c7
GM
2965 dma_addr_t bar0_hdl;
2966
2967 void __iomem *cregbase;
2968 dma_addr_t bar2_hdl;
2969#define BAR0_LEN_FX00 (1024 * 1024)
2970#define BAR2_LEN_FX00 (128 * 1024)
2971
2972 uint32_t rqstq_intr_code;
2973 uint32_t mbx_intr_code;
2974 uint32_t req_que_len;
2975 uint32_t rsp_que_len;
2976 uint32_t req_que_off;
2977 uint32_t rsp_que_off;
2978
2979 /* Multi queue data structs */
f73cb695
CD
2980 device_reg_t *mqiobase;
2981 device_reg_t *msixbase;
73208dfd
AC
2982 uint16_t msix_count;
2983 uint8_t mqenable;
2984 struct req_que **req_q_map;
2985 struct rsp_que **rsp_q_map;
2986 unsigned long req_qid_map[(QLA_MAX_QUEUES / 8) / sizeof(unsigned long)];
2987 unsigned long rsp_qid_map[(QLA_MAX_QUEUES / 8) / sizeof(unsigned long)];
2afa19a9
AC
2988 uint8_t max_req_queues;
2989 uint8_t max_rsp_queues;
73208dfd
AC
2990 struct qla_npiv_entry *npiv_info;
2991 uint16_t nvram_npiv_size;
1da177e4 2992
7b867cf7
AC
2993 uint16_t switch_cap;
2994#define FLOGI_SEQ_DEL BIT_8
2995#define FLOGI_MID_SUPPORT BIT_10
2996#define FLOGI_VSAN_SUPPORT BIT_12
2997#define FLOGI_SP_SUPPORT BIT_13
e5b68a61
AC
2998
2999 uint8_t port_no; /* Physical port of adapter */
3000
7b867cf7
AC
3001 /* Timeout timers. */
3002 uint8_t loop_down_abort_time; /* port down timer */
3003 atomic_t loop_down_timer; /* loop down timer */
3004 uint8_t link_down_timeout; /* link down timeout */
3005 uint16_t max_loop_id;
642ef983 3006 uint16_t max_fibre_devices; /* Maximum number of targets */
1da177e4 3007
1da177e4 3008 uint16_t fb_rev;
7b867cf7 3009 uint16_t min_external_loopid; /* First external loop Id */
1da177e4 3010
d8b45213 3011#define PORT_SPEED_UNKNOWN 0xFFFF
7b867cf7
AC
3012#define PORT_SPEED_1GB 0x00
3013#define PORT_SPEED_2GB 0x01
3014#define PORT_SPEED_4GB 0x03
3015#define PORT_SPEED_8GB 0x04
6246b8a1 3016#define PORT_SPEED_16GB 0x05
f73cb695 3017#define PORT_SPEED_32GB 0x06
3a03eb79 3018#define PORT_SPEED_10GB 0x13
7b867cf7 3019 uint16_t link_data_rate; /* F/W operating speed */
1da177e4
LT
3020
3021 uint8_t current_topology;
3022 uint8_t prev_topology;
3023#define ISP_CFG_NL 1
3024#define ISP_CFG_N 2
3025#define ISP_CFG_FL 4
3026#define ISP_CFG_F 8
3027
7b867cf7 3028 uint8_t operating_mode; /* F/W operating mode */
1da177e4
LT
3029#define LOOP 0
3030#define P2P 1
3031#define LOOP_P2P 2
3032#define P2P_LOOP 3
1da177e4 3033 uint8_t interrupts_on;
7b867cf7
AC
3034 uint32_t isp_abort_cnt;
3035
3036#define PCI_DEVICE_ID_QLOGIC_ISP2532 0x2532
3037#define PCI_DEVICE_ID_QLOGIC_ISP8432 0x8432
3a03eb79 3038#define PCI_DEVICE_ID_QLOGIC_ISP8001 0x8001
6246b8a1
GM
3039#define PCI_DEVICE_ID_QLOGIC_ISP8031 0x8031
3040#define PCI_DEVICE_ID_QLOGIC_ISP2031 0x2031
f73cb695 3041#define PCI_DEVICE_ID_QLOGIC_ISP2071 0x2071
2c5bbbb2
JC
3042#define PCI_DEVICE_ID_QLOGIC_ISP2271 0x2271
3043
7b867cf7
AC
3044 uint32_t device_type;
3045#define DT_ISP2100 BIT_0
3046#define DT_ISP2200 BIT_1
3047#define DT_ISP2300 BIT_2
3048#define DT_ISP2312 BIT_3
3049#define DT_ISP2322 BIT_4
3050#define DT_ISP6312 BIT_5
3051#define DT_ISP6322 BIT_6
3052#define DT_ISP2422 BIT_7
3053#define DT_ISP2432 BIT_8
3054#define DT_ISP5422 BIT_9
3055#define DT_ISP5432 BIT_10
3056#define DT_ISP2532 BIT_11
3057#define DT_ISP8432 BIT_12
3a03eb79 3058#define DT_ISP8001 BIT_13
a9083016 3059#define DT_ISP8021 BIT_14
6246b8a1
GM
3060#define DT_ISP2031 BIT_15
3061#define DT_ISP8031 BIT_16
8ae6d9c7 3062#define DT_ISPFX00 BIT_17
7ec0effd 3063#define DT_ISP8044 BIT_18
f73cb695 3064#define DT_ISP2071 BIT_19
2c5bbbb2
JC
3065#define DT_ISP2271 BIT_20
3066#define DT_ISP_LAST (DT_ISP2271 << 1)
7b867cf7 3067
e02587d7 3068#define DT_T10_PI BIT_25
7b867cf7
AC
3069#define DT_IIDMA BIT_26
3070#define DT_FWI2 BIT_27
3071#define DT_ZIO_SUPPORTED BIT_28
3072#define DT_OEM_001 BIT_29
3073#define DT_ISP2200A BIT_30
3074#define DT_EXTENDED_IDS BIT_31
3075#define DT_MASK(ha) ((ha)->device_type & (DT_ISP_LAST - 1))
3076#define IS_QLA2100(ha) (DT_MASK(ha) & DT_ISP2100)
3077#define IS_QLA2200(ha) (DT_MASK(ha) & DT_ISP2200)
3078#define IS_QLA2300(ha) (DT_MASK(ha) & DT_ISP2300)
3079#define IS_QLA2312(ha) (DT_MASK(ha) & DT_ISP2312)
3080#define IS_QLA2322(ha) (DT_MASK(ha) & DT_ISP2322)
3081#define IS_QLA6312(ha) (DT_MASK(ha) & DT_ISP6312)
3082#define IS_QLA6322(ha) (DT_MASK(ha) & DT_ISP6322)
3083#define IS_QLA2422(ha) (DT_MASK(ha) & DT_ISP2422)
3084#define IS_QLA2432(ha) (DT_MASK(ha) & DT_ISP2432)
3085#define IS_QLA5422(ha) (DT_MASK(ha) & DT_ISP5422)
3086#define IS_QLA5432(ha) (DT_MASK(ha) & DT_ISP5432)
3087#define IS_QLA2532(ha) (DT_MASK(ha) & DT_ISP2532)
3088#define IS_QLA8432(ha) (DT_MASK(ha) & DT_ISP8432)
3a03eb79 3089#define IS_QLA8001(ha) (DT_MASK(ha) & DT_ISP8001)
6246b8a1 3090#define IS_QLA81XX(ha) (IS_QLA8001(ha))
a9083016 3091#define IS_QLA82XX(ha) (DT_MASK(ha) & DT_ISP8021)
7ec0effd 3092#define IS_QLA8044(ha) (DT_MASK(ha) & DT_ISP8044)
6246b8a1
GM
3093#define IS_QLA2031(ha) (DT_MASK(ha) & DT_ISP2031)
3094#define IS_QLA8031(ha) (DT_MASK(ha) & DT_ISP8031)
8ae6d9c7 3095#define IS_QLAFX00(ha) (DT_MASK(ha) & DT_ISPFX00)
f73cb695 3096#define IS_QLA2071(ha) (DT_MASK(ha) & DT_ISP2071)
2c5bbbb2 3097#define IS_QLA2271(ha) (DT_MASK(ha) & DT_ISP2271)
7b867cf7
AC
3098
3099#define IS_QLA23XX(ha) (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA2322(ha) || \
3100 IS_QLA6312(ha) || IS_QLA6322(ha))
3101#define IS_QLA24XX(ha) (IS_QLA2422(ha) || IS_QLA2432(ha))
3102#define IS_QLA54XX(ha) (IS_QLA5422(ha) || IS_QLA5432(ha))
3103#define IS_QLA25XX(ha) (IS_QLA2532(ha))
6246b8a1 3104#define IS_QLA83XX(ha) (IS_QLA2031(ha) || IS_QLA8031(ha))
7b867cf7 3105#define IS_QLA84XX(ha) (IS_QLA8432(ha))
2c5bbbb2 3106#define IS_QLA27XX(ha) (IS_QLA2071(ha) || IS_QLA2271(ha))
7b867cf7
AC
3107#define IS_QLA24XX_TYPE(ha) (IS_QLA24XX(ha) || IS_QLA54XX(ha) || \
3108 IS_QLA84XX(ha))
6246b8a1 3109#define IS_CNA_CAPABLE(ha) (IS_QLA81XX(ha) || IS_QLA82XX(ha) || \
7ec0effd
AD
3110 IS_QLA8031(ha) || IS_QLA8044(ha))
3111#define IS_P3P_TYPE(ha) (IS_QLA82XX(ha) || IS_QLA8044(ha))
7b867cf7 3112#define IS_QLA2XXX_MIDTYPE(ha) (IS_QLA24XX(ha) || IS_QLA84XX(ha) || \
a9083016 3113 IS_QLA25XX(ha) || IS_QLA81XX(ha) || \
7ec0effd 3114 IS_QLA82XX(ha) || IS_QLA83XX(ha) || \
f73cb695 3115 IS_QLA8044(ha) || IS_QLA27XX(ha))
6246b8a1 3116#define IS_MSIX_NACK_CAPABLE(ha) (IS_QLA81XX(ha) || IS_QLA83XX(ha))
b77ed25c 3117#define IS_NOPOLLING_TYPE(ha) (IS_QLA81XX(ha) && (ha)->flags.msix_enabled)
f73cb695
CD
3118#define IS_FAC_REQUIRED(ha) (IS_QLA81XX(ha) || IS_QLA83XX(ha) || \
3119 IS_QLA27XX(ha))
3120#define IS_NOCACHE_VPD_TYPE(ha) (IS_QLA81XX(ha) || IS_QLA83XX(ha) || \
3121 IS_QLA27XX(ha))
ac280b67 3122#define IS_ALOGIO_CAPABLE(ha) (IS_QLA23XX(ha) || IS_FWI2_CAPABLE(ha))
7b867cf7 3123
e02587d7 3124#define IS_T10_PI_CAPABLE(ha) ((ha)->device_type & DT_T10_PI)
7b867cf7
AC
3125#define IS_IIDMA_CAPABLE(ha) ((ha)->device_type & DT_IIDMA)
3126#define IS_FWI2_CAPABLE(ha) ((ha)->device_type & DT_FWI2)
3127#define IS_ZIO_SUPPORTED(ha) ((ha)->device_type & DT_ZIO_SUPPORTED)
3128#define IS_OEM_001(ha) ((ha)->device_type & DT_OEM_001)
3129#define HAS_EXTENDED_IDS(ha) ((ha)->device_type & DT_EXTENDED_IDS)
6246b8a1 3130#define IS_CT6_SUPPORTED(ha) ((ha)->device_type & DT_CT6_SUPPORTED)
f73cb695
CD
3131#define IS_MQUE_CAPABLE(ha) ((ha)->mqenable || IS_QLA83XX(ha) || \
3132 IS_QLA27XX(ha))
a9b6f722 3133#define IS_BIDI_CAPABLE(ha) ((IS_QLA25XX(ha) || IS_QLA2031(ha)))
81178772
SK
3134/* Bit 21 of fw_attributes decides the MCTP capabilities */
3135#define IS_MCTP_CAPABLE(ha) (IS_QLA2031(ha) && \
3136 ((ha)->fw_attributes_ext[0] & BIT_0))
9e522cd8
AE
3137#define IS_PI_UNINIT_CAPABLE(ha) (IS_QLA83XX(ha))
3138#define IS_PI_IPGUARD_CAPABLE(ha) (IS_QLA83XX(ha))
3139#define IS_PI_DIFB_DIX0_CAPABLE(ha) (0)
3140#define IS_PI_SPLIT_DET_CAPABLE_HBA(ha) (IS_QLA83XX(ha))
3141#define IS_PI_SPLIT_DET_CAPABLE(ha) (IS_PI_SPLIT_DET_CAPABLE_HBA(ha) && \
3142 (((ha)->fw_attributes_h << 16 | (ha)->fw_attributes) & BIT_22))
aa230bc5 3143#define IS_ATIO_MSIX_CAPABLE(ha) (IS_QLA83XX(ha))
33c36c0a 3144#define IS_TGT_MODE_CAPABLE(ha) (ha->tgt.atio_q_length)
7c6300e3 3145#define IS_SHADOW_REG_CAPABLE(ha) (IS_QLA27XX(ha))
25232cc9 3146#define IS_DPORT_CAPABLE(ha) (IS_QLA83XX(ha) || IS_QLA27XX(ha))
1da177e4
LT
3147
3148 /* HBA serial number */
3149 uint8_t serial0;
3150 uint8_t serial1;
3151 uint8_t serial2;
3152
3153 /* NVRAM configuration data */
7b867cf7
AC
3154#define MAX_NVRAM_SIZE 4096
3155#define VPD_OFFSET MAX_NVRAM_SIZE / 2
3d71644c 3156 uint16_t nvram_size;
1da177e4 3157 uint16_t nvram_base;
281afe19 3158 void *nvram;
6f641790 3159 uint16_t vpd_size;
3160 uint16_t vpd_base;
281afe19 3161 void *vpd;
1da177e4
LT
3162
3163 uint16_t loop_reset_delay;
1da177e4
LT
3164 uint8_t retry_count;
3165 uint8_t login_timeout;
3166 uint16_t r_a_tov;
3167 int port_down_retry_count;
1da177e4 3168 uint8_t mbx_count;
8ae6d9c7 3169 uint8_t aen_mbx_count;
1da177e4 3170
7b867cf7 3171 uint32_t login_retry_count;
1da177e4
LT
3172 /* SNS command interfaces. */
3173 ms_iocb_entry_t *ms_iocb;
3174 dma_addr_t ms_iocb_dma;
3175 struct ct_sns_pkt *ct_sns;
3176 dma_addr_t ct_sns_dma;
3177 /* SNS command interfaces for 2200. */
3178 struct sns_cmd_pkt *sns_cmd;
3179 dma_addr_t sns_cmd_dma;
3180
7b867cf7
AC
3181#define SFP_DEV_SIZE 256
3182#define SFP_BLOCK_SIZE 64
3183 void *sfp_data;
3184 dma_addr_t sfp_data_dma;
88729e53 3185
b5d0329f 3186#define XGMAC_DATA_SIZE 4096
ce0423f4
AV
3187 void *xgmac_data;
3188 dma_addr_t xgmac_data_dma;
3189
b5d0329f 3190#define DCBX_TLV_DATA_SIZE 4096
11bbc1d8
AV
3191 void *dcbx_tlv;
3192 dma_addr_t dcbx_tlv_dma;
3193
39a11240 3194 struct task_struct *dpc_thread;
1da177e4
LT
3195 uint8_t dpc_active; /* DPC routine is active */
3196
1da177e4
LT
3197 dma_addr_t gid_list_dma;
3198 struct gid_list_info *gid_list;
abbd8870 3199 int gid_list_info_size;
1da177e4 3200
fa2a1ce5 3201 /* Small DMA pool allocations -- maximum 256 bytes in length. */
7b867cf7 3202#define DMA_POOL_SIZE 256
1da177e4
LT
3203 struct dma_pool *s_dma_pool;
3204
3205 dma_addr_t init_cb_dma;
3d71644c
AV
3206 init_cb_t *init_cb;
3207 int init_cb_size;
b64b0e8f
AV
3208 dma_addr_t ex_init_cb_dma;
3209 struct ex_init_cb_81xx *ex_init_cb;
1da177e4 3210
5ff1d584
AV
3211 void *async_pd;
3212 dma_addr_t async_pd_dma;
3213
7a67735b
AV
3214 void *swl;
3215
1da177e4 3216 /* These are used by mailbox operations. */
8ae6d9c7
GM
3217 uint16_t mailbox_out[MAILBOX_REGISTER_COUNT];
3218 uint32_t mailbox_out32[MAILBOX_REGISTER_COUNT];
3219 uint32_t aenmb[AEN_MAILBOX_REGISTER_COUNT_FX00];
1da177e4
LT
3220
3221 mbx_cmd_t *mcp;
8ae6d9c7
GM
3222 struct mbx_cmd_32 *mcp32;
3223
1da177e4 3224 unsigned long mbx_cmd_flags;
7b867cf7
AC
3225#define MBX_INTERRUPT 1
3226#define MBX_INTR_WAIT 2
1da177e4
LT
3227#define MBX_UPDATE_FLASH_ACTIVE 3
3228
7b867cf7 3229 struct mutex vport_lock; /* Virtual port synchronization */
feafb7b1 3230 spinlock_t vport_slock; /* order is hardware_lock, then vport_slock */
7b867cf7 3231 struct completion mbx_cmd_comp; /* Serialize mbx access */
0b05a1f0 3232 struct completion mbx_intr_comp; /* Used for completion notification */
23f2ebd1 3233 struct completion dcbx_comp; /* For set port config notification */
f356bef1
CD
3234 struct completion lb_portup_comp; /* Used to wait for link up during
3235 * loopback */
3236#define DCBX_COMP_TIMEOUT 20
3237#define LB_PORTUP_COMP_TIMEOUT 10
3238
23f2ebd1 3239 int notify_dcbx_comp;
f356bef1 3240 int notify_lb_portup_comp;
a9b6f722 3241 struct mutex selflogin_lock;
1da177e4 3242
1da177e4 3243 /* Basic firmware related information. */
1da177e4
LT
3244 uint16_t fw_major_version;
3245 uint16_t fw_minor_version;
3246 uint16_t fw_subminor_version;
3247 uint16_t fw_attributes;
6246b8a1
GM
3248 uint16_t fw_attributes_h;
3249 uint16_t fw_attributes_ext[2];
1da177e4
LT
3250 uint32_t fw_memory_size;
3251 uint32_t fw_transfer_size;
441d1072
AV
3252 uint32_t fw_srisc_address;
3253#define RISC_START_ADDRESS_2100 0x1000
3254#define RISC_START_ADDRESS_2300 0x800
3255#define RISC_START_ADDRESS_2400 0x100000
24a08138 3256 uint16_t fw_xcb_count;
8d93f550 3257 uint16_t fw_iocb_count;
1da177e4 3258
f73cb695
CD
3259 uint32_t fw_shared_ram_start;
3260 uint32_t fw_shared_ram_end;
3261
7b867cf7 3262 uint16_t fw_options[16]; /* slots: 1,2,3,10,11 */
1da177e4 3263 uint8_t fw_seriallink_options[4];
3d71644c 3264 uint16_t fw_seriallink_options24[4];
1da177e4 3265
55a96158 3266 uint8_t mpi_version[3];
3a03eb79 3267 uint32_t mpi_capabilities;
55a96158 3268 uint8_t phy_version[3];
3a03eb79 3269
f73cb695
CD
3270 /* Firmware dump template */
3271 void *fw_dump_template;
3272 uint32_t fw_dump_template_len;
1da177e4 3273 /* Firmware dump information. */
a7a167bf
AV
3274 struct qla2xxx_fw_dump *fw_dump;
3275 uint32_t fw_dump_len;
d4e3e04d 3276 int fw_dumped;
61f098dd
HP
3277 unsigned long fw_dump_cap_flags;
3278#define RISC_PAUSE_CMPL 0
3279#define DMA_SHUTDOWN_CMPL 1
3280#define ISP_RESET_CMPL 2
3281#define RISC_RDY_AFT_RESET 3
3282#define RISC_SRAM_DUMP_CMPL 4
3283#define RISC_EXT_MEM_DUMP_CMPL 5
1da177e4 3284 int fw_dump_reading;
edaa5c74 3285 int prev_minidump_failed;
a7a167bf
AV
3286 dma_addr_t eft_dma;
3287 void *eft;
81178772
SK
3288/* Current size of mctp dump is 0x086064 bytes */
3289#define MCTP_DUMP_SIZE 0x086064
3290 dma_addr_t mctp_dump_dma;
3291 void *mctp_dump;
3292 int mctp_dumped;
3293 int mctp_dump_reading;
bb99de67 3294 uint32_t chain_offset;
df613b96
AV
3295 struct dentry *dfs_dir;
3296 struct dentry *dfs_fce;
3297 dma_addr_t fce_dma;
3298 void *fce;
3299 uint32_t fce_bufs;
3300 uint16_t fce_mb[8];
3301 uint64_t fce_wr, fce_rd;
3302 struct mutex fce_mutex;
3303
3d71644c 3304 uint32_t pci_attr;
a8488abe 3305 uint16_t chip_revision;
1da177e4
LT
3306
3307 uint16_t product_id[4];
3308
3309 uint8_t model_number[16+1];
3310#define BINZERO "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1ee27146 3311 char model_desc[80];
cca5335c 3312 uint8_t adapter_id[16+1];
1da177e4 3313
854165f4 3314 /* Option ROM information. */
3315 char *optrom_buffer;
3316 uint32_t optrom_size;
3317 int optrom_state;
3318#define QLA_SWAITING 0
3319#define QLA_SREADING 1
3320#define QLA_SWRITING 2
b7cc176c
JC
3321 uint32_t optrom_region_start;
3322 uint32_t optrom_region_size;
7a8ab9c8 3323 struct mutex optrom_mutex;
854165f4 3324
7b867cf7 3325/* PCI expansion ROM image information. */
30c47662
AV
3326#define ROM_CODE_TYPE_BIOS 0
3327#define ROM_CODE_TYPE_FCODE 1
3328#define ROM_CODE_TYPE_EFI 3
7b867cf7
AC
3329 uint8_t bios_revision[2];
3330 uint8_t efi_revision[2];
3331 uint8_t fcode_revision[16];
30c47662
AV
3332 uint32_t fw_revision[4];
3333
0f2d962f
MI
3334 uint32_t gold_fw_version[4];
3335
3a03eb79
AV
3336 /* Offsets for flash/nvram access (set to ~0 if not used). */
3337 uint32_t flash_conf_off;
3338 uint32_t flash_data_off;
3339 uint32_t nvram_conf_off;
3340 uint32_t nvram_data_off;
3341
7d232c74 3342 uint32_t fdt_wrt_disable;
7ec0effd 3343 uint32_t fdt_wrt_enable;
7d232c74
AV
3344 uint32_t fdt_erase_cmd;
3345 uint32_t fdt_block_size;
3346 uint32_t fdt_unprotect_sec_cmd;
3347 uint32_t fdt_protect_sec_cmd;
7ec0effd 3348 uint32_t fdt_wrt_sts_reg_cmd;
7d232c74 3349
7b867cf7
AC
3350 uint32_t flt_region_flt;
3351 uint32_t flt_region_fdt;
3352 uint32_t flt_region_boot;
3353 uint32_t flt_region_fw;
3354 uint32_t flt_region_vpd_nvram;
3d79038f
AV
3355 uint32_t flt_region_vpd;
3356 uint32_t flt_region_nvram;
7b867cf7 3357 uint32_t flt_region_npiv_conf;
cbc8eb67 3358 uint32_t flt_region_gold_fw;
09ff701a 3359 uint32_t flt_region_fcp_prio;
a9083016 3360 uint32_t flt_region_bootload;
c00d8994 3361
1da177e4 3362 /* Needed for BEACON */
7b867cf7
AC
3363 uint16_t beacon_blink_led;
3364 uint8_t beacon_color_state;
f6df144c 3365#define QLA_LED_GRN_ON 0x01
3366#define QLA_LED_YLW_ON 0x02
3367#define QLA_LED_ABR_ON 0x04
3368#define QLA_LED_ALL_ON 0x07 /* yellow, green, amber. */
3369 /* ISP2322: red, green, amber. */
7b867cf7
AC
3370 uint16_t zio_mode;
3371 uint16_t zio_timer;
a8488abe 3372
73208dfd 3373 struct qla_msix_entry *msix_entries;
2c3dfe3f 3374
7b867cf7
AC
3375 struct list_head vp_list; /* list of VP */
3376 unsigned long vp_idx_map[(MAX_MULTI_ID_FABRIC / 8) /
3377 sizeof(unsigned long)];
3378 uint16_t num_vhosts; /* number of vports created */
3379 uint16_t num_vsans; /* number of vsan created */
3380 uint16_t max_npiv_vports; /* 63 or 125 per topoloty */
3381 int cur_vport_count;
3382
3383 struct qla_chip_state_84xx *cs84xx;
8ae6d9c7 3384 struct qla_statistics qla_stats;
7b867cf7 3385 struct isp_operations *isp_ops;
68ca949c 3386 struct workqueue_struct *wq;
9a069e19 3387 struct qlfc_fw fw_buf;
09ff701a
SR
3388
3389 /* FCP_CMND priority support */
3390 struct qla_fcp_prio_cfg *fcp_prio_cfg;
a9083016
GM
3391
3392 struct dma_pool *dl_dma_pool;
3393#define DSD_LIST_DMA_POOL_SIZE 512
3394
3395 struct dma_pool *fcp_cmnd_dma_pool;
3396 mempool_t *ctx_mempool;
3397#define FCP_CMND_DMA_POOL_SIZE 512
3398
3399 unsigned long nx_pcibase; /* Base I/O address */
3400 uint8_t *nxdb_rd_ptr; /* Doorbell read pointer */
3401 unsigned long nxdb_wr_ptr; /* Door bell write pointer */
a9083016
GM
3402
3403 uint32_t crb_win;
3404 uint32_t curr_window;
3405 uint32_t ddr_mn_window;
3406 unsigned long mn_win_crb;
3407 unsigned long ms_win_crb;
3408 int qdr_sn_window;
7d613ac6
SV
3409 uint32_t fcoe_dev_init_timeout;
3410 uint32_t fcoe_reset_timeout;
a9083016
GM
3411 rwlock_t hw_lock;
3412 uint16_t portnum; /* port number */
3413 int link_width;
3414 struct fw_blob *hablob;
3415 struct qla82xx_legacy_intr_set nx_legacy_intr;
3416
3417 uint16_t gbl_dsd_inuse;
3418 uint16_t gbl_dsd_avail;
3419 struct list_head gbl_dsd_list;
3420#define NUM_DSD_CHAIN 4096
9c2b2975
HZ
3421
3422 uint8_t fw_type;
3423 __le32 file_prd_off; /* File firmware product offset */
08de2844
GM
3424
3425 uint32_t md_template_size;
3426 void *md_tmplt_hdr;
3427 dma_addr_t md_tmplt_hdr_dma;
3428 void *md_dump;
3429 uint32_t md_dump_size;
2d70c103 3430
5f16b331 3431 void *loop_id_map;
7d613ac6
SV
3432
3433 /* QLA83XX IDC specific fields */
3434 uint32_t idc_audit_ts;
454073c9 3435 uint32_t idc_extend_tmo;
7d613ac6
SV
3436
3437 /* DPC low-priority workqueue */
3438 struct workqueue_struct *dpc_lp_wq;
3439 struct work_struct idc_aen;
3440 /* DPC high-priority workqueue */
3441 struct workqueue_struct *dpc_hp_wq;
3442 struct work_struct nic_core_reset;
3443 struct work_struct idc_state_handler;
3444 struct work_struct nic_core_unrecoverable;
f3ddac19 3445 struct work_struct board_disable;
7d613ac6 3446
8ae6d9c7
GM
3447 struct mr_data_fx00 mr;
3448
2d70c103 3449 struct qlt_hw_data tgt;
a1b23c5a 3450 int allow_cna_fw_dump;
7b867cf7
AC
3451};
3452
3453/*
3454 * Qlogic scsi host structure
3455 */
3456typedef struct scsi_qla_host {
3457 struct list_head list;
3458 struct list_head vp_fcports; /* list of fcports */
3459 struct list_head work_list;
f999f4c1
AV
3460 spinlock_t work_lock;
3461
7b867cf7
AC
3462 /* Commonly used flags and state information. */
3463 struct Scsi_Host *host;
3464 unsigned long host_no;
3465 uint8_t host_str[16];
3466
3467 volatile struct {
3468 uint32_t init_done :1;
3469 uint32_t online :1;
7b867cf7
AC
3470 uint32_t reset_active :1;
3471
3472 uint32_t management_server_logged_in :1;
3473 uint32_t process_response_queue :1;
bad75002 3474 uint32_t difdix_supported:1;
feafb7b1 3475 uint32_t delete_progress:1;
8ae6d9c7
GM
3476
3477 uint32_t fw_tgt_reported:1;
7b867cf7
AC
3478 } flags;
3479
3480 atomic_t loop_state;
3481#define LOOP_TIMEOUT 1
3482#define LOOP_DOWN 2
3483#define LOOP_UP 3
3484#define LOOP_UPDATE 4
3485#define LOOP_READY 5
3486#define LOOP_DEAD 6
3487
3488 unsigned long dpc_flags;
3489#define RESET_MARKER_NEEDED 0 /* Send marker to ISP. */
3490#define RESET_ACTIVE 1
3491#define ISP_ABORT_NEEDED 2 /* Initiate ISP abort. */
3492#define ABORT_ISP_ACTIVE 3 /* ISP abort in progress. */
3493#define LOOP_RESYNC_NEEDED 4 /* Device Resync needed. */
3494#define LOOP_RESYNC_ACTIVE 5
3495#define LOCAL_LOOP_UPDATE 6 /* Perform a local loop update. */
3496#define RSCN_UPDATE 7 /* Perform an RSCN update. */
ddb9b126
SS
3497#define RELOGIN_NEEDED 8
3498#define REGISTER_FC4_NEEDED 9 /* SNS FC4 registration required. */
3499#define ISP_ABORT_RETRY 10 /* ISP aborted. */
3500#define BEACON_BLINK_NEEDED 11
3501#define REGISTER_FDMI_NEEDED 12
3502#define FCPORT_UPDATE_NEEDED 13
3503#define VP_DPC_NEEDED 14 /* wake up for VP dpc handling */
3504#define UNLOADING 15
3505#define NPIV_CONFIG_NEEDED 16
a9083016
GM
3506#define ISP_UNRECOVERABLE 17
3507#define FCOE_CTX_RESET_NEEDED 18 /* Initiate FCoE context reset */
b1d46989 3508#define MPI_RESET_NEEDED 19 /* Initiate MPI FW reset */
579d12b5 3509#define ISP_QUIESCE_NEEDED 20 /* Driver need some quiescence */
2d70c103 3510#define SCR_PENDING 21 /* SCR in target mode */
50280c01
CD
3511#define PORT_UPDATE_NEEDED 22
3512#define FX00_RESET_RECOVERY 23
3513#define FX00_TARGET_SCAN 24
3514#define FX00_CRITEMP_RECOVERY 25
e8f5e95d 3515#define FX00_HOST_INFO_RESEND 26
7b867cf7 3516
232792b6
JL
3517 unsigned long pci_flags;
3518#define PFLG_DISCONNECTED 0 /* PCI device removed */
beb9e315 3519#define PFLG_DRIVER_REMOVING 1 /* PCI driver .remove */
6b383979 3520#define PFLG_DRIVER_PROBING 2 /* PCI driver .probe */
232792b6 3521
7b867cf7 3522 uint32_t device_flags;
ddb9b126
SS
3523#define SWITCH_FOUND BIT_0
3524#define DFLG_NO_CABLE BIT_1
a9083016 3525#define DFLG_DEV_FAILED BIT_5
7b867cf7 3526
7b867cf7
AC
3527 /* ISP configuration data. */
3528 uint16_t loop_id; /* Host adapter loop id */
a9b6f722
SK
3529 uint16_t self_login_loop_id; /* host adapter loop id
3530 * get it on self login
3531 */
3532 fc_port_t bidir_fcport; /* fcport used for bidir cmnds
3533 * no need of allocating it for
3534 * each command
3535 */
7b867cf7
AC
3536
3537 port_id_t d_id; /* Host adapter port id */
3538 uint8_t marker_needed;
3539 uint16_t mgmt_svr_loop_id;
3540
3541
3542
7b867cf7
AC
3543 /* Timeout timers. */
3544 uint8_t loop_down_abort_time; /* port down timer */
3545 atomic_t loop_down_timer; /* loop down timer */
3546 uint8_t link_down_timeout; /* link down timeout */
3547
3548 uint32_t timer_active;
3549 struct timer_list timer;
3550
3551 uint8_t node_name[WWN_SIZE];
3552 uint8_t port_name[WWN_SIZE];
3553 uint8_t fabric_node_name[WWN_SIZE];
bad7001c
AV
3554
3555 uint16_t fcoe_vlan_id;
3556 uint16_t fcoe_fcf_idx;
3557 uint8_t fcoe_vn_port_mac[6];
3558
7ec0effd 3559 uint32_t vp_abort_cnt;
7b867cf7 3560
2c3dfe3f 3561 struct fc_vport *fc_vport; /* holds fc_vport * for each vport */
2c3dfe3f
SJ
3562 uint16_t vp_idx; /* vport ID */
3563
2c3dfe3f 3564 unsigned long vp_flags;
2c3dfe3f
SJ
3565#define VP_IDX_ACQUIRED 0 /* bit no 0 */
3566#define VP_CREATE_NEEDED 1
3567#define VP_BIND_NEEDED 2
3568#define VP_DELETE_NEEDED 3
3569#define VP_SCR_NEEDED 4 /* State Change Request registration */
3570 atomic_t vp_state;
3571#define VP_OFFLINE 0
3572#define VP_ACTIVE 1
3573#define VP_FAILED 2
3574// #define VP_DISABLE 3
3575 uint16_t vp_err_state;
3576 uint16_t vp_prev_err_state;
3577#define VP_ERR_UNKWN 0
3578#define VP_ERR_PORTDWN 1
3579#define VP_ERR_FAB_UNSUPPORTED 2
3580#define VP_ERR_FAB_NORESOURCES 3
3581#define VP_ERR_FAB_LOGOUT 4
3582#define VP_ERR_ADAP_NORESOURCES 5
7b867cf7 3583 struct qla_hw_data *hw;
0e8cd71c 3584 struct scsi_qlt_host vha_tgt;
2afa19a9 3585 struct req_que *req;
a9083016
GM
3586 int fw_heartbeat_counter;
3587 int seconds_since_last_heartbeat;
2be21fa2
SK
3588 struct fc_host_statistics fc_host_stat;
3589 struct qla_statistics qla_stats;
a9b6f722 3590 struct bidi_statistics bidi_stats;
feafb7b1
AE
3591
3592 atomic_t vref_count;
7ec0effd 3593 struct qla8044_reset_template reset_tmplt;
1da177e4
LT
3594} scsi_qla_host_t;
3595
2d70c103
NB
3596#define SET_VP_IDX 1
3597#define SET_AL_PA 2
3598#define RESET_VP_IDX 3
3599#define RESET_AL_PA 4
3600struct qla_tgt_vp_map {
3601 uint8_t idx;
3602 scsi_qla_host_t *vha;
3603};
3604
1da177e4
LT
3605/*
3606 * Macros to help code, maintain, etc.
3607 */
3608#define LOOP_TRANSITION(ha) \
3609 (test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || \
23443b1d 3610 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) || \
1da177e4 3611 atomic_read(&ha->loop_state) == LOOP_DOWN)
fa2a1ce5 3612
8ae6d9c7
GM
3613#define STATE_TRANSITION(ha) \
3614 (test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || \
3615 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
3616
feafb7b1
AE
3617#define QLA_VHA_MARK_BUSY(__vha, __bail) do { \
3618 atomic_inc(&__vha->vref_count); \
3619 mb(); \
3620 if (__vha->flags.delete_progress) { \
3621 atomic_dec(&__vha->vref_count); \
3622 __bail = 1; \
3623 } else { \
3624 __bail = 0; \
3625 } \
3626} while (0)
3627
3628#define QLA_VHA_MARK_NOT_BUSY(__vha) do { \
3629 atomic_dec(&__vha->vref_count); \
3630} while (0)
3631
1da177e4
LT
3632/*
3633 * qla2x00 local function return status codes
3634 */
3635#define MBS_MASK 0x3fff
3636
3637#define QLA_SUCCESS (MBS_COMMAND_COMPLETE & MBS_MASK)
3638#define QLA_INVALID_COMMAND (MBS_INVALID_COMMAND & MBS_MASK)
3639#define QLA_INTERFACE_ERROR (MBS_HOST_INTERFACE_ERROR & MBS_MASK)
3640#define QLA_TEST_FAILED (MBS_TEST_FAILED & MBS_MASK)
3641#define QLA_COMMAND_ERROR (MBS_COMMAND_ERROR & MBS_MASK)
3642#define QLA_PARAMETER_ERROR (MBS_COMMAND_PARAMETER_ERROR & MBS_MASK)
3643#define QLA_PORT_ID_USED (MBS_PORT_ID_USED & MBS_MASK)
3644#define QLA_LOOP_ID_USED (MBS_LOOP_ID_USED & MBS_MASK)
3645#define QLA_ALL_IDS_IN_USE (MBS_ALL_IDS_IN_USE & MBS_MASK)
3646#define QLA_NOT_LOGGED_IN (MBS_NOT_LOGGED_IN & MBS_MASK)
3647
3648#define QLA_FUNCTION_TIMEOUT 0x100
3649#define QLA_FUNCTION_PARAMETER_ERROR 0x101
3650#define QLA_FUNCTION_FAILED 0x102
3651#define QLA_MEMORY_ALLOC_FAILED 0x103
3652#define QLA_LOCK_TIMEOUT 0x104
3653#define QLA_ABORTED 0x105
3654#define QLA_SUSPENDED 0x106
3655#define QLA_BUSY 0x107
cca5335c 3656#define QLA_ALREADY_REGISTERED 0x109
1da177e4 3657
1da177e4
LT
3658#define NVRAM_DELAY() udelay(10)
3659
1da177e4
LT
3660/*
3661 * Flash support definitions
3662 */
854165f4 3663#define OPTROM_SIZE_2300 0x20000
3664#define OPTROM_SIZE_2322 0x100000
3665#define OPTROM_SIZE_24XX 0x100000
c3a2f0df 3666#define OPTROM_SIZE_25XX 0x200000
3a03eb79 3667#define OPTROM_SIZE_81XX 0x400000
a9083016 3668#define OPTROM_SIZE_82XX 0x800000
6246b8a1 3669#define OPTROM_SIZE_83XX 0x1000000
a9083016
GM
3670
3671#define OPTROM_BURST_SIZE 0x1000
3672#define OPTROM_BURST_DWORDS (OPTROM_BURST_SIZE / 4)
1da177e4 3673
bad75002
AE
3674#define QLA_DSDS_PER_IOCB 37
3675
4d78c973
GM
3676#define CMD_SP(Cmnd) ((Cmnd)->SCp.ptr)
3677
58548cb5
GM
3678#define QLA_SG_ALL 1024
3679
4d78c973
GM
3680enum nexus_wait_type {
3681 WAIT_HOST = 0,
3682 WAIT_TARGET,
3683 WAIT_LUN,
3684};
3685
1da177e4
LT
3686#include "qla_gbl.h"
3687#include "qla_dbg.h"
3688#include "qla_inline.h"
1da177e4 3689#endif