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