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