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