1 /* 2 * QLogic Fibre Channel HBA Driver 3 * Copyright (c) 2003-2014 QLogic Corporation 4 * 5 * See LICENSE.qla2xxx for copyright and licensing details. 6 */ 7 #include "qla_def.h" 8 9 #include <linux/moduleparam.h> 10 #include <linux/vmalloc.h> 11 #include <linux/delay.h> 12 #include <linux/kthread.h> 13 #include <linux/mutex.h> 14 #include <linux/kobject.h> 15 #include <linux/slab.h> 16 #include <linux/blk-mq-pci.h> 17 #include <linux/refcount.h> 18 19 #include <scsi/scsi_tcq.h> 20 #include <scsi/scsicam.h> 21 #include <scsi/scsi_transport.h> 22 #include <scsi/scsi_transport_fc.h> 23 24 #include "qla_target.h" 25 26 /* 27 * Driver version 28 */ 29 char qla2x00_version_str[40]; 30 31 static int apidev_major; 32 33 /* 34 * SRB allocation cache 35 */ 36 struct kmem_cache *srb_cachep; 37 38 /* 39 * CT6 CTX allocation cache 40 */ 41 static struct kmem_cache *ctx_cachep; 42 /* 43 * error level for logging 44 */ 45 uint ql_errlev = 0x8001; 46 47 static int ql2xenableclass2; 48 module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR); 49 MODULE_PARM_DESC(ql2xenableclass2, 50 "Specify if Class 2 operations are supported from the very " 51 "beginning. Default is 0 - class 2 not supported."); 52 53 54 int ql2xlogintimeout = 20; 55 module_param(ql2xlogintimeout, int, S_IRUGO); 56 MODULE_PARM_DESC(ql2xlogintimeout, 57 "Login timeout value in seconds."); 58 59 int qlport_down_retry; 60 module_param(qlport_down_retry, int, S_IRUGO); 61 MODULE_PARM_DESC(qlport_down_retry, 62 "Maximum number of command retries to a port that returns " 63 "a PORT-DOWN status."); 64 65 int ql2xplogiabsentdevice; 66 module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR); 67 MODULE_PARM_DESC(ql2xplogiabsentdevice, 68 "Option to enable PLOGI to devices that are not present after " 69 "a Fabric scan. This is needed for several broken switches. " 70 "Default is 0 - no PLOGI. 1 - perform PLOGI."); 71 72 int ql2xloginretrycount = 0; 73 module_param(ql2xloginretrycount, int, S_IRUGO); 74 MODULE_PARM_DESC(ql2xloginretrycount, 75 "Specify an alternate value for the NVRAM login retry count."); 76 77 int ql2xallocfwdump = 1; 78 module_param(ql2xallocfwdump, int, S_IRUGO); 79 MODULE_PARM_DESC(ql2xallocfwdump, 80 "Option to enable allocation of memory for a firmware dump " 81 "during HBA initialization. Memory allocation requirements " 82 "vary by ISP type. Default is 1 - allocate memory."); 83 84 int ql2xextended_error_logging; 85 module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR); 86 module_param_named(logging, ql2xextended_error_logging, int, S_IRUGO|S_IWUSR); 87 MODULE_PARM_DESC(ql2xextended_error_logging, 88 "Option to enable extended error logging,\n" 89 "\t\tDefault is 0 - no logging. 0x40000000 - Module Init & Probe.\n" 90 "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n" 91 "\t\t0x08000000 - IO tracing. 0x04000000 - DPC Thread.\n" 92 "\t\t0x02000000 - Async events. 0x01000000 - Timer routines.\n" 93 "\t\t0x00800000 - User space. 0x00400000 - Task Management.\n" 94 "\t\t0x00200000 - AER/EEH. 0x00100000 - Multi Q.\n" 95 "\t\t0x00080000 - P3P Specific. 0x00040000 - Virtual Port.\n" 96 "\t\t0x00020000 - Buffer Dump. 0x00010000 - Misc.\n" 97 "\t\t0x00008000 - Verbose. 0x00004000 - Target.\n" 98 "\t\t0x00002000 - Target Mgmt. 0x00001000 - Target TMF.\n" 99 "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n" 100 "\t\t0x1e400000 - Preferred value for capturing essential " 101 "debug information (equivalent to old " 102 "ql2xextended_error_logging=1).\n" 103 "\t\tDo LOGICAL OR of the value to enable more than one level"); 104 105 int ql2xshiftctondsd = 6; 106 module_param(ql2xshiftctondsd, int, S_IRUGO); 107 MODULE_PARM_DESC(ql2xshiftctondsd, 108 "Set to control shifting of command type processing " 109 "based on total number of SG elements."); 110 111 int ql2xfdmienable = 1; 112 module_param(ql2xfdmienable, int, S_IRUGO|S_IWUSR); 113 module_param_named(fdmi, ql2xfdmienable, int, S_IRUGO|S_IWUSR); 114 MODULE_PARM_DESC(ql2xfdmienable, 115 "Enables FDMI registrations. " 116 "0 - no FDMI. Default is 1 - perform FDMI."); 117 118 #define MAX_Q_DEPTH 64 119 static int ql2xmaxqdepth = MAX_Q_DEPTH; 120 module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR); 121 MODULE_PARM_DESC(ql2xmaxqdepth, 122 "Maximum queue depth to set for each LUN. " 123 "Default is 64."); 124 125 #if (IS_ENABLED(CONFIG_NVME_FC)) 126 int ql2xenabledif; 127 #else 128 int ql2xenabledif = 2; 129 #endif 130 module_param(ql2xenabledif, int, S_IRUGO); 131 MODULE_PARM_DESC(ql2xenabledif, 132 " Enable T10-CRC-DIF:\n" 133 " Default is 2.\n" 134 " 0 -- No DIF Support\n" 135 " 1 -- Enable DIF for all types\n" 136 " 2 -- Enable DIF for all types, except Type 0.\n"); 137 138 #if (IS_ENABLED(CONFIG_NVME_FC)) 139 int ql2xnvmeenable = 1; 140 #else 141 int ql2xnvmeenable; 142 #endif 143 module_param(ql2xnvmeenable, int, 0644); 144 MODULE_PARM_DESC(ql2xnvmeenable, 145 "Enables NVME support. " 146 "0 - no NVMe. Default is Y"); 147 148 int ql2xenablehba_err_chk = 2; 149 module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR); 150 MODULE_PARM_DESC(ql2xenablehba_err_chk, 151 " Enable T10-CRC-DIF Error isolation by HBA:\n" 152 " Default is 2.\n" 153 " 0 -- Error isolation disabled\n" 154 " 1 -- Error isolation enabled only for DIX Type 0\n" 155 " 2 -- Error isolation enabled for all Types\n"); 156 157 int ql2xiidmaenable = 1; 158 module_param(ql2xiidmaenable, int, S_IRUGO); 159 MODULE_PARM_DESC(ql2xiidmaenable, 160 "Enables iIDMA settings " 161 "Default is 1 - perform iIDMA. 0 - no iIDMA."); 162 163 int ql2xmqsupport = 1; 164 module_param(ql2xmqsupport, int, S_IRUGO); 165 MODULE_PARM_DESC(ql2xmqsupport, 166 "Enable on demand multiple queue pairs support " 167 "Default is 1 for supported. " 168 "Set it to 0 to turn off mq qpair support."); 169 170 int ql2xfwloadbin; 171 module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR); 172 module_param_named(fwload, ql2xfwloadbin, int, S_IRUGO|S_IWUSR); 173 MODULE_PARM_DESC(ql2xfwloadbin, 174 "Option to specify location from which to load ISP firmware:.\n" 175 " 2 -- load firmware via the request_firmware() (hotplug).\n" 176 " interface.\n" 177 " 1 -- load firmware from flash.\n" 178 " 0 -- use default semantics.\n"); 179 180 int ql2xetsenable; 181 module_param(ql2xetsenable, int, S_IRUGO); 182 MODULE_PARM_DESC(ql2xetsenable, 183 "Enables firmware ETS burst." 184 "Default is 0 - skip ETS enablement."); 185 186 int ql2xdbwr = 1; 187 module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR); 188 MODULE_PARM_DESC(ql2xdbwr, 189 "Option to specify scheme for request queue posting.\n" 190 " 0 -- Regular doorbell.\n" 191 " 1 -- CAMRAM doorbell (faster).\n"); 192 193 int ql2xtargetreset = 1; 194 module_param(ql2xtargetreset, int, S_IRUGO); 195 MODULE_PARM_DESC(ql2xtargetreset, 196 "Enable target reset." 197 "Default is 1 - use hw defaults."); 198 199 int ql2xgffidenable; 200 module_param(ql2xgffidenable, int, S_IRUGO); 201 MODULE_PARM_DESC(ql2xgffidenable, 202 "Enables GFF_ID checks of port type. " 203 "Default is 0 - Do not use GFF_ID information."); 204 205 int ql2xasynctmfenable = 1; 206 module_param(ql2xasynctmfenable, int, S_IRUGO); 207 MODULE_PARM_DESC(ql2xasynctmfenable, 208 "Enables issue of TM IOCBs asynchronously via IOCB mechanism" 209 "Default is 1 - Issue TM IOCBs via mailbox mechanism."); 210 211 int ql2xdontresethba; 212 module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR); 213 MODULE_PARM_DESC(ql2xdontresethba, 214 "Option to specify reset behaviour.\n" 215 " 0 (Default) -- Reset on failure.\n" 216 " 1 -- Do not reset on failure.\n"); 217 218 uint64_t ql2xmaxlun = MAX_LUNS; 219 module_param(ql2xmaxlun, ullong, S_IRUGO); 220 MODULE_PARM_DESC(ql2xmaxlun, 221 "Defines the maximum LU number to register with the SCSI " 222 "midlayer. Default is 65535."); 223 224 int ql2xmdcapmask = 0x1F; 225 module_param(ql2xmdcapmask, int, S_IRUGO); 226 MODULE_PARM_DESC(ql2xmdcapmask, 227 "Set the Minidump driver capture mask level. " 228 "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F."); 229 230 int ql2xmdenable = 1; 231 module_param(ql2xmdenable, int, S_IRUGO); 232 MODULE_PARM_DESC(ql2xmdenable, 233 "Enable/disable MiniDump. " 234 "0 - MiniDump disabled. " 235 "1 (Default) - MiniDump enabled."); 236 237 int ql2xexlogins = 0; 238 module_param(ql2xexlogins, uint, S_IRUGO|S_IWUSR); 239 MODULE_PARM_DESC(ql2xexlogins, 240 "Number of extended Logins. " 241 "0 (Default)- Disabled."); 242 243 int ql2xexchoffld = 1024; 244 module_param(ql2xexchoffld, uint, 0644); 245 MODULE_PARM_DESC(ql2xexchoffld, 246 "Number of target exchanges."); 247 248 int ql2xiniexchg = 1024; 249 module_param(ql2xiniexchg, uint, 0644); 250 MODULE_PARM_DESC(ql2xiniexchg, 251 "Number of initiator exchanges."); 252 253 int ql2xfwholdabts = 0; 254 module_param(ql2xfwholdabts, int, S_IRUGO); 255 MODULE_PARM_DESC(ql2xfwholdabts, 256 "Allow FW to hold status IOCB until ABTS rsp received. " 257 "0 (Default) Do not set fw option. " 258 "1 - Set fw option to hold ABTS."); 259 260 int ql2xmvasynctoatio = 1; 261 module_param(ql2xmvasynctoatio, int, S_IRUGO|S_IWUSR); 262 MODULE_PARM_DESC(ql2xmvasynctoatio, 263 "Move PUREX, ABTS RX and RIDA IOCBs to ATIOQ" 264 "0 (Default). Do not move IOCBs" 265 "1 - Move IOCBs."); 266 267 int ql2xautodetectsfp = 1; 268 module_param(ql2xautodetectsfp, int, 0444); 269 MODULE_PARM_DESC(ql2xautodetectsfp, 270 "Detect SFP range and set appropriate distance.\n" 271 "1 (Default): Enable\n"); 272 273 int ql2xenablemsix = 1; 274 module_param(ql2xenablemsix, int, 0444); 275 MODULE_PARM_DESC(ql2xenablemsix, 276 "Set to enable MSI or MSI-X interrupt mechanism.\n" 277 " Default is 1, enable MSI-X interrupt mechanism.\n" 278 " 0 -- enable traditional pin-based mechanism.\n" 279 " 1 -- enable MSI-X interrupt mechanism.\n" 280 " 2 -- enable MSI interrupt mechanism.\n"); 281 282 int qla2xuseresexchforels; 283 module_param(qla2xuseresexchforels, int, 0444); 284 MODULE_PARM_DESC(qla2xuseresexchforels, 285 "Reserve 1/2 of emergency exchanges for ELS.\n" 286 " 0 (default): disabled"); 287 288 static int ql2xprotmask; 289 module_param(ql2xprotmask, int, 0644); 290 MODULE_PARM_DESC(ql2xprotmask, 291 "Override DIF/DIX protection capabilities mask\n" 292 "Default is 0 which sets protection mask based on " 293 "capabilities reported by HBA firmware.\n"); 294 295 static int ql2xprotguard; 296 module_param(ql2xprotguard, int, 0644); 297 MODULE_PARM_DESC(ql2xprotguard, "Override choice of DIX checksum\n" 298 " 0 -- Let HBA firmware decide\n" 299 " 1 -- Force T10 CRC\n" 300 " 2 -- Force IP checksum\n"); 301 302 int ql2xdifbundlinginternalbuffers; 303 module_param(ql2xdifbundlinginternalbuffers, int, 0644); 304 MODULE_PARM_DESC(ql2xdifbundlinginternalbuffers, 305 "Force using internal buffers for DIF information\n" 306 "0 (Default). Based on check.\n" 307 "1 Force using internal buffers\n"); 308 309 static void qla2x00_clear_drv_active(struct qla_hw_data *); 310 static void qla2x00_free_device(scsi_qla_host_t *); 311 static int qla2xxx_map_queues(struct Scsi_Host *shost); 312 static void qla2x00_destroy_deferred_work(struct qla_hw_data *); 313 314 315 static struct scsi_transport_template *qla2xxx_transport_template = NULL; 316 struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; 317 318 /* TODO Convert to inlines 319 * 320 * Timer routines 321 */ 322 323 __inline__ void 324 qla2x00_start_timer(scsi_qla_host_t *vha, unsigned long interval) 325 { 326 timer_setup(&vha->timer, qla2x00_timer, 0); 327 vha->timer.expires = jiffies + interval * HZ; 328 add_timer(&vha->timer); 329 vha->timer_active = 1; 330 } 331 332 static inline void 333 qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) 334 { 335 /* Currently used for 82XX only. */ 336 if (vha->device_flags & DFLG_DEV_FAILED) { 337 ql_dbg(ql_dbg_timer, vha, 0x600d, 338 "Device in a failed state, returning.\n"); 339 return; 340 } 341 342 mod_timer(&vha->timer, jiffies + interval * HZ); 343 } 344 345 static __inline__ void 346 qla2x00_stop_timer(scsi_qla_host_t *vha) 347 { 348 del_timer_sync(&vha->timer); 349 vha->timer_active = 0; 350 } 351 352 static int qla2x00_do_dpc(void *data); 353 354 static void qla2x00_rst_aen(scsi_qla_host_t *); 355 356 static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, 357 struct req_que **, struct rsp_que **); 358 static void qla2x00_free_fw_dump(struct qla_hw_data *); 359 static void qla2x00_mem_free(struct qla_hw_data *); 360 int qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd, 361 struct qla_qpair *qpair); 362 363 /* -------------------------------------------------------------------------- */ 364 static void qla_init_base_qpair(struct scsi_qla_host *vha, struct req_que *req, 365 struct rsp_que *rsp) 366 { 367 struct qla_hw_data *ha = vha->hw; 368 369 rsp->qpair = ha->base_qpair; 370 rsp->req = req; 371 ha->base_qpair->hw = ha; 372 ha->base_qpair->req = req; 373 ha->base_qpair->rsp = rsp; 374 ha->base_qpair->vha = vha; 375 ha->base_qpair->qp_lock_ptr = &ha->hardware_lock; 376 ha->base_qpair->use_shadow_reg = IS_SHADOW_REG_CAPABLE(ha) ? 1 : 0; 377 ha->base_qpair->msix = &ha->msix_entries[QLA_MSIX_RSP_Q]; 378 ha->base_qpair->srb_mempool = ha->srb_mempool; 379 INIT_LIST_HEAD(&ha->base_qpair->hints_list); 380 ha->base_qpair->enable_class_2 = ql2xenableclass2; 381 /* init qpair to this cpu. Will adjust at run time. */ 382 qla_cpu_update(rsp->qpair, raw_smp_processor_id()); 383 ha->base_qpair->pdev = ha->pdev; 384 385 if (IS_QLA27XX(ha) || IS_QLA83XX(ha) || IS_QLA28XX(ha)) 386 ha->base_qpair->reqq_start_iocbs = qla_83xx_start_iocbs; 387 } 388 389 static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req, 390 struct rsp_que *rsp) 391 { 392 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); 393 394 ha->req_q_map = kcalloc(ha->max_req_queues, sizeof(struct req_que *), 395 GFP_KERNEL); 396 if (!ha->req_q_map) { 397 ql_log(ql_log_fatal, vha, 0x003b, 398 "Unable to allocate memory for request queue ptrs.\n"); 399 goto fail_req_map; 400 } 401 402 ha->rsp_q_map = kcalloc(ha->max_rsp_queues, sizeof(struct rsp_que *), 403 GFP_KERNEL); 404 if (!ha->rsp_q_map) { 405 ql_log(ql_log_fatal, vha, 0x003c, 406 "Unable to allocate memory for response queue ptrs.\n"); 407 goto fail_rsp_map; 408 } 409 410 ha->base_qpair = kzalloc(sizeof(struct qla_qpair), GFP_KERNEL); 411 if (ha->base_qpair == NULL) { 412 ql_log(ql_log_warn, vha, 0x00e0, 413 "Failed to allocate base queue pair memory.\n"); 414 goto fail_base_qpair; 415 } 416 417 qla_init_base_qpair(vha, req, rsp); 418 419 if ((ql2xmqsupport || ql2xnvmeenable) && ha->max_qpairs) { 420 ha->queue_pair_map = kcalloc(ha->max_qpairs, sizeof(struct qla_qpair *), 421 GFP_KERNEL); 422 if (!ha->queue_pair_map) { 423 ql_log(ql_log_fatal, vha, 0x0180, 424 "Unable to allocate memory for queue pair ptrs.\n"); 425 goto fail_qpair_map; 426 } 427 } 428 429 /* 430 * Make sure we record at least the request and response queue zero in 431 * case we need to free them if part of the probe fails. 432 */ 433 ha->rsp_q_map[0] = rsp; 434 ha->req_q_map[0] = req; 435 set_bit(0, ha->rsp_qid_map); 436 set_bit(0, ha->req_qid_map); 437 return 0; 438 439 fail_qpair_map: 440 kfree(ha->base_qpair); 441 ha->base_qpair = NULL; 442 fail_base_qpair: 443 kfree(ha->rsp_q_map); 444 ha->rsp_q_map = NULL; 445 fail_rsp_map: 446 kfree(ha->req_q_map); 447 ha->req_q_map = NULL; 448 fail_req_map: 449 return -ENOMEM; 450 } 451 452 static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req) 453 { 454 if (IS_QLAFX00(ha)) { 455 if (req && req->ring_fx00) 456 dma_free_coherent(&ha->pdev->dev, 457 (req->length_fx00 + 1) * sizeof(request_t), 458 req->ring_fx00, req->dma_fx00); 459 } else if (req && req->ring) 460 dma_free_coherent(&ha->pdev->dev, 461 (req->length + 1) * sizeof(request_t), 462 req->ring, req->dma); 463 464 if (req) 465 kfree(req->outstanding_cmds); 466 467 kfree(req); 468 } 469 470 static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) 471 { 472 if (IS_QLAFX00(ha)) { 473 if (rsp && rsp->ring_fx00) 474 dma_free_coherent(&ha->pdev->dev, 475 (rsp->length_fx00 + 1) * sizeof(request_t), 476 rsp->ring_fx00, rsp->dma_fx00); 477 } else if (rsp && rsp->ring) { 478 dma_free_coherent(&ha->pdev->dev, 479 (rsp->length + 1) * sizeof(response_t), 480 rsp->ring, rsp->dma); 481 } 482 kfree(rsp); 483 } 484 485 static void qla2x00_free_queues(struct qla_hw_data *ha) 486 { 487 struct req_que *req; 488 struct rsp_que *rsp; 489 int cnt; 490 unsigned long flags; 491 492 if (ha->queue_pair_map) { 493 kfree(ha->queue_pair_map); 494 ha->queue_pair_map = NULL; 495 } 496 if (ha->base_qpair) { 497 kfree(ha->base_qpair); 498 ha->base_qpair = NULL; 499 } 500 501 spin_lock_irqsave(&ha->hardware_lock, flags); 502 for (cnt = 0; cnt < ha->max_req_queues; cnt++) { 503 if (!test_bit(cnt, ha->req_qid_map)) 504 continue; 505 506 req = ha->req_q_map[cnt]; 507 clear_bit(cnt, ha->req_qid_map); 508 ha->req_q_map[cnt] = NULL; 509 510 spin_unlock_irqrestore(&ha->hardware_lock, flags); 511 qla2x00_free_req_que(ha, req); 512 spin_lock_irqsave(&ha->hardware_lock, flags); 513 } 514 spin_unlock_irqrestore(&ha->hardware_lock, flags); 515 516 kfree(ha->req_q_map); 517 ha->req_q_map = NULL; 518 519 520 spin_lock_irqsave(&ha->hardware_lock, flags); 521 for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { 522 if (!test_bit(cnt, ha->rsp_qid_map)) 523 continue; 524 525 rsp = ha->rsp_q_map[cnt]; 526 clear_bit(cnt, ha->rsp_qid_map); 527 ha->rsp_q_map[cnt] = NULL; 528 spin_unlock_irqrestore(&ha->hardware_lock, flags); 529 qla2x00_free_rsp_que(ha, rsp); 530 spin_lock_irqsave(&ha->hardware_lock, flags); 531 } 532 spin_unlock_irqrestore(&ha->hardware_lock, flags); 533 534 kfree(ha->rsp_q_map); 535 ha->rsp_q_map = NULL; 536 } 537 538 static char * 539 qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) 540 { 541 struct qla_hw_data *ha = vha->hw; 542 static char *pci_bus_modes[] = { 543 "33", "66", "100", "133", 544 }; 545 uint16_t pci_bus; 546 547 strcpy(str, "PCI"); 548 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; 549 if (pci_bus) { 550 strcat(str, "-X ("); 551 strcat(str, pci_bus_modes[pci_bus]); 552 } else { 553 pci_bus = (ha->pci_attr & BIT_8) >> 8; 554 strcat(str, " ("); 555 strcat(str, pci_bus_modes[pci_bus]); 556 } 557 strcat(str, " MHz)"); 558 559 return (str); 560 } 561 562 static char * 563 qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) 564 { 565 static char *pci_bus_modes[] = { "33", "66", "100", "133", }; 566 struct qla_hw_data *ha = vha->hw; 567 uint32_t pci_bus; 568 569 if (pci_is_pcie(ha->pdev)) { 570 char lwstr[6]; 571 uint32_t lstat, lspeed, lwidth; 572 573 pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat); 574 lspeed = lstat & PCI_EXP_LNKCAP_SLS; 575 lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4; 576 577 strcpy(str, "PCIe ("); 578 switch (lspeed) { 579 case 1: 580 strcat(str, "2.5GT/s "); 581 break; 582 case 2: 583 strcat(str, "5.0GT/s "); 584 break; 585 case 3: 586 strcat(str, "8.0GT/s "); 587 break; 588 default: 589 strcat(str, "<unknown> "); 590 break; 591 } 592 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); 593 strcat(str, lwstr); 594 595 return str; 596 } 597 598 strcpy(str, "PCI"); 599 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; 600 if (pci_bus == 0 || pci_bus == 8) { 601 strcat(str, " ("); 602 strcat(str, pci_bus_modes[pci_bus >> 3]); 603 } else { 604 strcat(str, "-X "); 605 if (pci_bus & BIT_2) 606 strcat(str, "Mode 2"); 607 else 608 strcat(str, "Mode 1"); 609 strcat(str, " ("); 610 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); 611 } 612 strcat(str, " MHz)"); 613 614 return str; 615 } 616 617 static char * 618 qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size) 619 { 620 char un_str[10]; 621 struct qla_hw_data *ha = vha->hw; 622 623 snprintf(str, size, "%d.%02d.%02d ", ha->fw_major_version, 624 ha->fw_minor_version, ha->fw_subminor_version); 625 626 if (ha->fw_attributes & BIT_9) { 627 strcat(str, "FLX"); 628 return (str); 629 } 630 631 switch (ha->fw_attributes & 0xFF) { 632 case 0x7: 633 strcat(str, "EF"); 634 break; 635 case 0x17: 636 strcat(str, "TP"); 637 break; 638 case 0x37: 639 strcat(str, "IP"); 640 break; 641 case 0x77: 642 strcat(str, "VI"); 643 break; 644 default: 645 sprintf(un_str, "(%x)", ha->fw_attributes); 646 strcat(str, un_str); 647 break; 648 } 649 if (ha->fw_attributes & 0x100) 650 strcat(str, "X"); 651 652 return (str); 653 } 654 655 static char * 656 qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size) 657 { 658 struct qla_hw_data *ha = vha->hw; 659 660 snprintf(str, size, "%d.%02d.%02d (%x)", ha->fw_major_version, 661 ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); 662 return str; 663 } 664 665 void 666 qla2x00_sp_free_dma(void *ptr) 667 { 668 srb_t *sp = ptr; 669 struct qla_hw_data *ha = sp->vha->hw; 670 struct scsi_cmnd *cmd = GET_CMD_SP(sp); 671 void *ctx = GET_CMD_CTX_SP(sp); 672 673 if (sp->flags & SRB_DMA_VALID) { 674 scsi_dma_unmap(cmd); 675 sp->flags &= ~SRB_DMA_VALID; 676 } 677 678 if (sp->flags & SRB_CRC_PROT_DMA_VALID) { 679 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), 680 scsi_prot_sg_count(cmd), cmd->sc_data_direction); 681 sp->flags &= ~SRB_CRC_PROT_DMA_VALID; 682 } 683 684 if (!ctx) 685 return; 686 687 if (sp->flags & SRB_CRC_CTX_DSD_VALID) { 688 /* List assured to be having elements */ 689 qla2x00_clean_dsd_pool(ha, ctx); 690 sp->flags &= ~SRB_CRC_CTX_DSD_VALID; 691 } 692 693 if (sp->flags & SRB_CRC_CTX_DMA_VALID) { 694 struct crc_context *ctx0 = ctx; 695 696 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma); 697 sp->flags &= ~SRB_CRC_CTX_DMA_VALID; 698 } 699 700 if (sp->flags & SRB_FCP_CMND_DMA_VALID) { 701 struct ct6_dsd *ctx1 = ctx; 702 703 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd, 704 ctx1->fcp_cmnd_dma); 705 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list); 706 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt; 707 ha->gbl_dsd_avail += ctx1->dsd_use_cnt; 708 mempool_free(ctx1, ha->ctx_mempool); 709 } 710 } 711 712 void 713 qla2x00_sp_compl(void *ptr, int res) 714 { 715 srb_t *sp = ptr; 716 struct scsi_cmnd *cmd = GET_CMD_SP(sp); 717 struct completion *comp = sp->comp; 718 719 if (WARN_ON_ONCE(atomic_read(&sp->ref_count) == 0)) 720 return; 721 722 atomic_dec(&sp->ref_count); 723 724 sp->free(sp); 725 cmd->result = res; 726 CMD_SP(cmd) = NULL; 727 cmd->scsi_done(cmd); 728 if (comp) 729 complete(comp); 730 qla2x00_rel_sp(sp); 731 } 732 733 void 734 qla2xxx_qpair_sp_free_dma(void *ptr) 735 { 736 srb_t *sp = (srb_t *)ptr; 737 struct scsi_cmnd *cmd = GET_CMD_SP(sp); 738 struct qla_hw_data *ha = sp->fcport->vha->hw; 739 void *ctx = GET_CMD_CTX_SP(sp); 740 741 if (sp->flags & SRB_DMA_VALID) { 742 scsi_dma_unmap(cmd); 743 sp->flags &= ~SRB_DMA_VALID; 744 } 745 746 if (sp->flags & SRB_CRC_PROT_DMA_VALID) { 747 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), 748 scsi_prot_sg_count(cmd), cmd->sc_data_direction); 749 sp->flags &= ~SRB_CRC_PROT_DMA_VALID; 750 } 751 752 if (!ctx) 753 return; 754 755 if (sp->flags & SRB_CRC_CTX_DSD_VALID) { 756 /* List assured to be having elements */ 757 qla2x00_clean_dsd_pool(ha, ctx); 758 sp->flags &= ~SRB_CRC_CTX_DSD_VALID; 759 } 760 761 if (sp->flags & SRB_DIF_BUNDL_DMA_VALID) { 762 struct crc_context *difctx = ctx; 763 struct dsd_dma *dif_dsd, *nxt_dsd; 764 765 list_for_each_entry_safe(dif_dsd, nxt_dsd, 766 &difctx->ldif_dma_hndl_list, list) { 767 list_del(&dif_dsd->list); 768 dma_pool_free(ha->dif_bundl_pool, dif_dsd->dsd_addr, 769 dif_dsd->dsd_list_dma); 770 kfree(dif_dsd); 771 difctx->no_dif_bundl--; 772 } 773 774 list_for_each_entry_safe(dif_dsd, nxt_dsd, 775 &difctx->ldif_dsd_list, list) { 776 list_del(&dif_dsd->list); 777 dma_pool_free(ha->dl_dma_pool, dif_dsd->dsd_addr, 778 dif_dsd->dsd_list_dma); 779 kfree(dif_dsd); 780 difctx->no_ldif_dsd--; 781 } 782 783 if (difctx->no_ldif_dsd) { 784 ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022, 785 "%s: difctx->no_ldif_dsd=%x\n", 786 __func__, difctx->no_ldif_dsd); 787 } 788 789 if (difctx->no_dif_bundl) { 790 ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022, 791 "%s: difctx->no_dif_bundl=%x\n", 792 __func__, difctx->no_dif_bundl); 793 } 794 sp->flags &= ~SRB_DIF_BUNDL_DMA_VALID; 795 } 796 797 if (sp->flags & SRB_FCP_CMND_DMA_VALID) { 798 struct ct6_dsd *ctx1 = ctx; 799 800 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd, 801 ctx1->fcp_cmnd_dma); 802 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list); 803 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt; 804 ha->gbl_dsd_avail += ctx1->dsd_use_cnt; 805 mempool_free(ctx1, ha->ctx_mempool); 806 sp->flags &= ~SRB_FCP_CMND_DMA_VALID; 807 } 808 809 if (sp->flags & SRB_CRC_CTX_DMA_VALID) { 810 struct crc_context *ctx0 = ctx; 811 812 dma_pool_free(ha->dl_dma_pool, ctx, ctx0->crc_ctx_dma); 813 sp->flags &= ~SRB_CRC_CTX_DMA_VALID; 814 } 815 } 816 817 void 818 qla2xxx_qpair_sp_compl(void *ptr, int res) 819 { 820 srb_t *sp = ptr; 821 struct scsi_cmnd *cmd = GET_CMD_SP(sp); 822 struct completion *comp = sp->comp; 823 824 if (WARN_ON_ONCE(atomic_read(&sp->ref_count) == 0)) 825 return; 826 827 atomic_dec(&sp->ref_count); 828 829 sp->free(sp); 830 cmd->result = res; 831 CMD_SP(cmd) = NULL; 832 cmd->scsi_done(cmd); 833 if (comp) 834 complete(comp); 835 qla2xxx_rel_qpair_sp(sp->qpair, sp); 836 } 837 838 static int 839 qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) 840 { 841 scsi_qla_host_t *vha = shost_priv(host); 842 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; 843 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); 844 struct qla_hw_data *ha = vha->hw; 845 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); 846 srb_t *sp; 847 int rval; 848 struct qla_qpair *qpair = NULL; 849 uint32_t tag; 850 uint16_t hwq; 851 852 if (unlikely(test_bit(UNLOADING, &base_vha->dpc_flags)) || 853 WARN_ON_ONCE(!rport)) { 854 cmd->result = DID_NO_CONNECT << 16; 855 goto qc24_fail_command; 856 } 857 858 if (ha->mqenable) { 859 tag = blk_mq_unique_tag(cmd->request); 860 hwq = blk_mq_unique_tag_to_hwq(tag); 861 qpair = ha->queue_pair_map[hwq]; 862 863 if (qpair) 864 return qla2xxx_mqueuecommand(host, cmd, qpair); 865 } 866 867 if (ha->flags.eeh_busy) { 868 if (ha->flags.pci_channel_io_perm_failure) { 869 ql_dbg(ql_dbg_aer, vha, 0x9010, 870 "PCI Channel IO permanent failure, exiting " 871 "cmd=%p.\n", cmd); 872 cmd->result = DID_NO_CONNECT << 16; 873 } else { 874 ql_dbg(ql_dbg_aer, vha, 0x9011, 875 "EEH_Busy, Requeuing the cmd=%p.\n", cmd); 876 cmd->result = DID_REQUEUE << 16; 877 } 878 goto qc24_fail_command; 879 } 880 881 rval = fc_remote_port_chkready(rport); 882 if (rval) { 883 cmd->result = rval; 884 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003, 885 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n", 886 cmd, rval); 887 goto qc24_fail_command; 888 } 889 890 if (!vha->flags.difdix_supported && 891 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) { 892 ql_dbg(ql_dbg_io, vha, 0x3004, 893 "DIF Cap not reg, fail DIF capable cmd's:%p.\n", 894 cmd); 895 cmd->result = DID_NO_CONNECT << 16; 896 goto qc24_fail_command; 897 } 898 899 if (!fcport) { 900 cmd->result = DID_NO_CONNECT << 16; 901 goto qc24_fail_command; 902 } 903 904 if (atomic_read(&fcport->state) != FCS_ONLINE) { 905 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || 906 atomic_read(&base_vha->loop_state) == LOOP_DEAD) { 907 ql_dbg(ql_dbg_io, vha, 0x3005, 908 "Returning DNC, fcport_state=%d loop_state=%d.\n", 909 atomic_read(&fcport->state), 910 atomic_read(&base_vha->loop_state)); 911 cmd->result = DID_NO_CONNECT << 16; 912 goto qc24_fail_command; 913 } 914 goto qc24_target_busy; 915 } 916 917 /* 918 * Return target busy if we've received a non-zero retry_delay_timer 919 * in a FCP_RSP. 920 */ 921 if (fcport->retry_delay_timestamp == 0) { 922 /* retry delay not set */ 923 } else if (time_after(jiffies, fcport->retry_delay_timestamp)) 924 fcport->retry_delay_timestamp = 0; 925 else 926 goto qc24_target_busy; 927 928 sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC); 929 if (!sp) 930 goto qc24_host_busy; 931 932 sp->u.scmd.cmd = cmd; 933 sp->type = SRB_SCSI_CMD; 934 atomic_set(&sp->ref_count, 1); 935 CMD_SP(cmd) = (void *)sp; 936 sp->free = qla2x00_sp_free_dma; 937 sp->done = qla2x00_sp_compl; 938 939 rval = ha->isp_ops->start_scsi(sp); 940 if (rval != QLA_SUCCESS) { 941 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013, 942 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd); 943 goto qc24_host_busy_free_sp; 944 } 945 946 return 0; 947 948 qc24_host_busy_free_sp: 949 sp->free(sp); 950 951 qc24_host_busy: 952 return SCSI_MLQUEUE_HOST_BUSY; 953 954 qc24_target_busy: 955 return SCSI_MLQUEUE_TARGET_BUSY; 956 957 qc24_fail_command: 958 cmd->scsi_done(cmd); 959 960 return 0; 961 } 962 963 /* For MQ supported I/O */ 964 int 965 qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd, 966 struct qla_qpair *qpair) 967 { 968 scsi_qla_host_t *vha = shost_priv(host); 969 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; 970 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); 971 struct qla_hw_data *ha = vha->hw; 972 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); 973 srb_t *sp; 974 int rval; 975 976 rval = rport ? fc_remote_port_chkready(rport) : FC_PORTSTATE_OFFLINE; 977 if (rval) { 978 cmd->result = rval; 979 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3076, 980 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n", 981 cmd, rval); 982 goto qc24_fail_command; 983 } 984 985 if (!fcport) { 986 cmd->result = DID_NO_CONNECT << 16; 987 goto qc24_fail_command; 988 } 989 990 if (atomic_read(&fcport->state) != FCS_ONLINE) { 991 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || 992 atomic_read(&base_vha->loop_state) == LOOP_DEAD) { 993 ql_dbg(ql_dbg_io, vha, 0x3077, 994 "Returning DNC, fcport_state=%d loop_state=%d.\n", 995 atomic_read(&fcport->state), 996 atomic_read(&base_vha->loop_state)); 997 cmd->result = DID_NO_CONNECT << 16; 998 goto qc24_fail_command; 999 } 1000 goto qc24_target_busy; 1001 } 1002 1003 /* 1004 * Return target busy if we've received a non-zero retry_delay_timer 1005 * in a FCP_RSP. 1006 */ 1007 if (fcport->retry_delay_timestamp == 0) { 1008 /* retry delay not set */ 1009 } else if (time_after(jiffies, fcport->retry_delay_timestamp)) 1010 fcport->retry_delay_timestamp = 0; 1011 else 1012 goto qc24_target_busy; 1013 1014 sp = qla2xxx_get_qpair_sp(vha, qpair, fcport, GFP_ATOMIC); 1015 if (!sp) 1016 goto qc24_host_busy; 1017 1018 sp->u.scmd.cmd = cmd; 1019 sp->type = SRB_SCSI_CMD; 1020 atomic_set(&sp->ref_count, 1); 1021 CMD_SP(cmd) = (void *)sp; 1022 sp->free = qla2xxx_qpair_sp_free_dma; 1023 sp->done = qla2xxx_qpair_sp_compl; 1024 sp->qpair = qpair; 1025 1026 rval = ha->isp_ops->start_scsi_mq(sp); 1027 if (rval != QLA_SUCCESS) { 1028 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3078, 1029 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd); 1030 if (rval == QLA_INTERFACE_ERROR) 1031 goto qc24_fail_command; 1032 goto qc24_host_busy_free_sp; 1033 } 1034 1035 return 0; 1036 1037 qc24_host_busy_free_sp: 1038 sp->free(sp); 1039 1040 qc24_host_busy: 1041 return SCSI_MLQUEUE_HOST_BUSY; 1042 1043 qc24_target_busy: 1044 return SCSI_MLQUEUE_TARGET_BUSY; 1045 1046 qc24_fail_command: 1047 cmd->scsi_done(cmd); 1048 1049 return 0; 1050 } 1051 1052 /* 1053 * qla2x00_eh_wait_on_command 1054 * Waits for the command to be returned by the Firmware for some 1055 * max time. 1056 * 1057 * Input: 1058 * cmd = Scsi Command to wait on. 1059 * 1060 * Return: 1061 * Not Found : 0 1062 * Found : 1 1063 */ 1064 static int 1065 qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) 1066 { 1067 #define ABORT_POLLING_PERIOD 1000 1068 #define ABORT_WAIT_ITER ((2 * 1000) / (ABORT_POLLING_PERIOD)) 1069 unsigned long wait_iter = ABORT_WAIT_ITER; 1070 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1071 struct qla_hw_data *ha = vha->hw; 1072 int ret = QLA_SUCCESS; 1073 1074 if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) { 1075 ql_dbg(ql_dbg_taskm, vha, 0x8005, 1076 "Return:eh_wait.\n"); 1077 return ret; 1078 } 1079 1080 while (CMD_SP(cmd) && wait_iter--) { 1081 msleep(ABORT_POLLING_PERIOD); 1082 } 1083 if (CMD_SP(cmd)) 1084 ret = QLA_FUNCTION_FAILED; 1085 1086 return ret; 1087 } 1088 1089 /* 1090 * qla2x00_wait_for_hba_online 1091 * Wait till the HBA is online after going through 1092 * <= MAX_RETRIES_OF_ISP_ABORT or 1093 * finally HBA is disabled ie marked offline 1094 * 1095 * Input: 1096 * ha - pointer to host adapter structure 1097 * 1098 * Note: 1099 * Does context switching-Release SPIN_LOCK 1100 * (if any) before calling this routine. 1101 * 1102 * Return: 1103 * Success (Adapter is online) : 0 1104 * Failed (Adapter is offline/disabled) : 1 1105 */ 1106 int 1107 qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) 1108 { 1109 int return_status; 1110 unsigned long wait_online; 1111 struct qla_hw_data *ha = vha->hw; 1112 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 1113 1114 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); 1115 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || 1116 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || 1117 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || 1118 ha->dpc_active) && time_before(jiffies, wait_online)) { 1119 1120 msleep(1000); 1121 } 1122 if (base_vha->flags.online) 1123 return_status = QLA_SUCCESS; 1124 else 1125 return_status = QLA_FUNCTION_FAILED; 1126 1127 return (return_status); 1128 } 1129 1130 static inline int test_fcport_count(scsi_qla_host_t *vha) 1131 { 1132 struct qla_hw_data *ha = vha->hw; 1133 unsigned long flags; 1134 int res; 1135 1136 spin_lock_irqsave(&ha->tgt.sess_lock, flags); 1137 ql_dbg(ql_dbg_init, vha, 0x00ec, 1138 "tgt %p, fcport_count=%d\n", 1139 vha, vha->fcport_count); 1140 res = (vha->fcport_count == 0); 1141 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); 1142 1143 return res; 1144 } 1145 1146 /* 1147 * qla2x00_wait_for_sess_deletion can only be called from remove_one. 1148 * it has dependency on UNLOADING flag to stop device discovery 1149 */ 1150 void 1151 qla2x00_wait_for_sess_deletion(scsi_qla_host_t *vha) 1152 { 1153 qla2x00_mark_all_devices_lost(vha, 0); 1154 1155 wait_event_timeout(vha->fcport_waitQ, test_fcport_count(vha), 10*HZ); 1156 } 1157 1158 /* 1159 * qla2x00_wait_for_hba_ready 1160 * Wait till the HBA is ready before doing driver unload 1161 * 1162 * Input: 1163 * ha - pointer to host adapter structure 1164 * 1165 * Note: 1166 * Does context switching-Release SPIN_LOCK 1167 * (if any) before calling this routine. 1168 * 1169 */ 1170 static void 1171 qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha) 1172 { 1173 struct qla_hw_data *ha = vha->hw; 1174 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 1175 1176 while ((qla2x00_reset_active(vha) || ha->dpc_active || 1177 ha->flags.mbox_busy) || 1178 test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags) || 1179 test_bit(FX00_TARGET_SCAN, &vha->dpc_flags)) { 1180 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 1181 break; 1182 msleep(1000); 1183 } 1184 } 1185 1186 int 1187 qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) 1188 { 1189 int return_status; 1190 unsigned long wait_reset; 1191 struct qla_hw_data *ha = vha->hw; 1192 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 1193 1194 wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); 1195 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || 1196 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || 1197 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || 1198 ha->dpc_active) && time_before(jiffies, wait_reset)) { 1199 1200 msleep(1000); 1201 1202 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && 1203 ha->flags.chip_reset_done) 1204 break; 1205 } 1206 if (ha->flags.chip_reset_done) 1207 return_status = QLA_SUCCESS; 1208 else 1209 return_status = QLA_FUNCTION_FAILED; 1210 1211 return return_status; 1212 } 1213 1214 static int 1215 sp_get(struct srb *sp) 1216 { 1217 if (!refcount_inc_not_zero((refcount_t *)&sp->ref_count)) 1218 /* kref get fail */ 1219 return ENXIO; 1220 else 1221 return 0; 1222 } 1223 1224 #define ISP_REG_DISCONNECT 0xffffffffU 1225 /************************************************************************** 1226 * qla2x00_isp_reg_stat 1227 * 1228 * Description: 1229 * Read the host status register of ISP before aborting the command. 1230 * 1231 * Input: 1232 * ha = pointer to host adapter structure. 1233 * 1234 * 1235 * Returns: 1236 * Either true or false. 1237 * 1238 * Note: Return true if there is register disconnect. 1239 **************************************************************************/ 1240 static inline 1241 uint32_t qla2x00_isp_reg_stat(struct qla_hw_data *ha) 1242 { 1243 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; 1244 struct device_reg_82xx __iomem *reg82 = &ha->iobase->isp82; 1245 1246 if (IS_P3P_TYPE(ha)) 1247 return ((RD_REG_DWORD(®82->host_int)) == ISP_REG_DISCONNECT); 1248 else 1249 return ((RD_REG_DWORD(®->host_status)) == 1250 ISP_REG_DISCONNECT); 1251 } 1252 1253 /************************************************************************** 1254 * qla2xxx_eh_abort 1255 * 1256 * Description: 1257 * The abort function will abort the specified command. 1258 * 1259 * Input: 1260 * cmd = Linux SCSI command packet to be aborted. 1261 * 1262 * Returns: 1263 * Either SUCCESS or FAILED. 1264 * 1265 * Note: 1266 * Only return FAILED if command not returned by firmware. 1267 **************************************************************************/ 1268 static int 1269 qla2xxx_eh_abort(struct scsi_cmnd *cmd) 1270 { 1271 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1272 srb_t *sp; 1273 int ret; 1274 unsigned int id; 1275 uint64_t lun; 1276 unsigned long flags; 1277 int rval; 1278 struct qla_hw_data *ha = vha->hw; 1279 struct qla_qpair *qpair; 1280 1281 if (qla2x00_isp_reg_stat(ha)) { 1282 ql_log(ql_log_info, vha, 0x8042, 1283 "PCI/Register disconnect, exiting.\n"); 1284 return FAILED; 1285 } 1286 1287 ret = fc_block_scsi_eh(cmd); 1288 if (ret != 0) 1289 return ret; 1290 1291 sp = (srb_t *) CMD_SP(cmd); 1292 if (!sp) 1293 return SUCCESS; 1294 1295 qpair = sp->qpair; 1296 if (!qpair) 1297 return SUCCESS; 1298 1299 spin_lock_irqsave(qpair->qp_lock_ptr, flags); 1300 if (sp->type != SRB_SCSI_CMD || GET_CMD_SP(sp) != cmd) { 1301 /* there's a chance an interrupt could clear 1302 the ptr as part of done & free */ 1303 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags); 1304 return SUCCESS; 1305 } 1306 1307 if (sp_get(sp)){ 1308 /* ref_count is already 0 */ 1309 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags); 1310 return SUCCESS; 1311 } 1312 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags); 1313 1314 id = cmd->device->id; 1315 lun = cmd->device->lun; 1316 1317 ql_dbg(ql_dbg_taskm, vha, 0x8002, 1318 "Aborting from RISC nexus=%ld:%d:%llu sp=%p cmd=%p handle=%x\n", 1319 vha->host_no, id, lun, sp, cmd, sp->handle); 1320 1321 rval = ha->isp_ops->abort_command(sp); 1322 ql_dbg(ql_dbg_taskm, vha, 0x8003, 1323 "Abort command mbx cmd=%p, rval=%x.\n", cmd, rval); 1324 1325 switch (rval) { 1326 case QLA_SUCCESS: 1327 /* 1328 * The command has been aborted. That means that the firmware 1329 * won't report a completion. 1330 */ 1331 sp->done(sp, DID_ABORT << 16); 1332 ret = SUCCESS; 1333 break; 1334 default: 1335 /* 1336 * Either abort failed or abort and completion raced. Let 1337 * the SCSI core retry the abort in the former case. 1338 */ 1339 ret = FAILED; 1340 break; 1341 } 1342 1343 ql_log(ql_log_info, vha, 0x801c, 1344 "Abort command issued nexus=%ld:%d:%llu -- %x.\n", 1345 vha->host_no, id, lun, ret); 1346 1347 return ret; 1348 } 1349 1350 int 1351 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t, 1352 uint64_t l, enum nexus_wait_type type) 1353 { 1354 int cnt, match, status; 1355 unsigned long flags; 1356 struct qla_hw_data *ha = vha->hw; 1357 struct req_que *req; 1358 srb_t *sp; 1359 struct scsi_cmnd *cmd; 1360 1361 status = QLA_SUCCESS; 1362 1363 spin_lock_irqsave(&ha->hardware_lock, flags); 1364 req = vha->req; 1365 for (cnt = 1; status == QLA_SUCCESS && 1366 cnt < req->num_outstanding_cmds; cnt++) { 1367 sp = req->outstanding_cmds[cnt]; 1368 if (!sp) 1369 continue; 1370 if (sp->type != SRB_SCSI_CMD) 1371 continue; 1372 if (vha->vp_idx != sp->vha->vp_idx) 1373 continue; 1374 match = 0; 1375 cmd = GET_CMD_SP(sp); 1376 switch (type) { 1377 case WAIT_HOST: 1378 match = 1; 1379 break; 1380 case WAIT_TARGET: 1381 match = cmd->device->id == t; 1382 break; 1383 case WAIT_LUN: 1384 match = (cmd->device->id == t && 1385 cmd->device->lun == l); 1386 break; 1387 } 1388 if (!match) 1389 continue; 1390 1391 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1392 status = qla2x00_eh_wait_on_command(cmd); 1393 spin_lock_irqsave(&ha->hardware_lock, flags); 1394 } 1395 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1396 1397 return status; 1398 } 1399 1400 static char *reset_errors[] = { 1401 "HBA not online", 1402 "HBA not ready", 1403 "Task management failed", 1404 "Waiting for command completions", 1405 }; 1406 1407 static int 1408 __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, 1409 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, uint64_t, int)) 1410 { 1411 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1412 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; 1413 int err; 1414 1415 if (!fcport) { 1416 return FAILED; 1417 } 1418 1419 err = fc_block_scsi_eh(cmd); 1420 if (err != 0) 1421 return err; 1422 1423 ql_log(ql_log_info, vha, 0x8009, 1424 "%s RESET ISSUED nexus=%ld:%d:%llu cmd=%p.\n", name, vha->host_no, 1425 cmd->device->id, cmd->device->lun, cmd); 1426 1427 err = 0; 1428 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { 1429 ql_log(ql_log_warn, vha, 0x800a, 1430 "Wait for hba online failed for cmd=%p.\n", cmd); 1431 goto eh_reset_failed; 1432 } 1433 err = 2; 1434 if (do_reset(fcport, cmd->device->lun, 1) 1435 != QLA_SUCCESS) { 1436 ql_log(ql_log_warn, vha, 0x800c, 1437 "do_reset failed for cmd=%p.\n", cmd); 1438 goto eh_reset_failed; 1439 } 1440 err = 3; 1441 if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, 1442 cmd->device->lun, type) != QLA_SUCCESS) { 1443 ql_log(ql_log_warn, vha, 0x800d, 1444 "wait for pending cmds failed for cmd=%p.\n", cmd); 1445 goto eh_reset_failed; 1446 } 1447 1448 ql_log(ql_log_info, vha, 0x800e, 1449 "%s RESET SUCCEEDED nexus:%ld:%d:%llu cmd=%p.\n", name, 1450 vha->host_no, cmd->device->id, cmd->device->lun, cmd); 1451 1452 return SUCCESS; 1453 1454 eh_reset_failed: 1455 ql_log(ql_log_info, vha, 0x800f, 1456 "%s RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n", name, 1457 reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun, 1458 cmd); 1459 return FAILED; 1460 } 1461 1462 static int 1463 qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) 1464 { 1465 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1466 struct qla_hw_data *ha = vha->hw; 1467 1468 if (qla2x00_isp_reg_stat(ha)) { 1469 ql_log(ql_log_info, vha, 0x803e, 1470 "PCI/Register disconnect, exiting.\n"); 1471 return FAILED; 1472 } 1473 1474 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, 1475 ha->isp_ops->lun_reset); 1476 } 1477 1478 static int 1479 qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) 1480 { 1481 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1482 struct qla_hw_data *ha = vha->hw; 1483 1484 if (qla2x00_isp_reg_stat(ha)) { 1485 ql_log(ql_log_info, vha, 0x803f, 1486 "PCI/Register disconnect, exiting.\n"); 1487 return FAILED; 1488 } 1489 1490 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, 1491 ha->isp_ops->target_reset); 1492 } 1493 1494 /************************************************************************** 1495 * qla2xxx_eh_bus_reset 1496 * 1497 * Description: 1498 * The bus reset function will reset the bus and abort any executing 1499 * commands. 1500 * 1501 * Input: 1502 * cmd = Linux SCSI command packet of the command that cause the 1503 * bus reset. 1504 * 1505 * Returns: 1506 * SUCCESS/FAILURE (defined as macro in scsi.h). 1507 * 1508 **************************************************************************/ 1509 static int 1510 qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) 1511 { 1512 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1513 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; 1514 int ret = FAILED; 1515 unsigned int id; 1516 uint64_t lun; 1517 struct qla_hw_data *ha = vha->hw; 1518 1519 if (qla2x00_isp_reg_stat(ha)) { 1520 ql_log(ql_log_info, vha, 0x8040, 1521 "PCI/Register disconnect, exiting.\n"); 1522 return FAILED; 1523 } 1524 1525 id = cmd->device->id; 1526 lun = cmd->device->lun; 1527 1528 if (!fcport) { 1529 return ret; 1530 } 1531 1532 ret = fc_block_scsi_eh(cmd); 1533 if (ret != 0) 1534 return ret; 1535 ret = FAILED; 1536 1537 ql_log(ql_log_info, vha, 0x8012, 1538 "BUS RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun); 1539 1540 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { 1541 ql_log(ql_log_fatal, vha, 0x8013, 1542 "Wait for hba online failed board disabled.\n"); 1543 goto eh_bus_reset_done; 1544 } 1545 1546 if (qla2x00_loop_reset(vha) == QLA_SUCCESS) 1547 ret = SUCCESS; 1548 1549 if (ret == FAILED) 1550 goto eh_bus_reset_done; 1551 1552 /* Flush outstanding commands. */ 1553 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) != 1554 QLA_SUCCESS) { 1555 ql_log(ql_log_warn, vha, 0x8014, 1556 "Wait for pending commands failed.\n"); 1557 ret = FAILED; 1558 } 1559 1560 eh_bus_reset_done: 1561 ql_log(ql_log_warn, vha, 0x802b, 1562 "BUS RESET %s nexus=%ld:%d:%llu.\n", 1563 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); 1564 1565 return ret; 1566 } 1567 1568 /************************************************************************** 1569 * qla2xxx_eh_host_reset 1570 * 1571 * Description: 1572 * The reset function will reset the Adapter. 1573 * 1574 * Input: 1575 * cmd = Linux SCSI command packet of the command that cause the 1576 * adapter reset. 1577 * 1578 * Returns: 1579 * Either SUCCESS or FAILED. 1580 * 1581 * Note: 1582 **************************************************************************/ 1583 static int 1584 qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) 1585 { 1586 scsi_qla_host_t *vha = shost_priv(cmd->device->host); 1587 struct qla_hw_data *ha = vha->hw; 1588 int ret = FAILED; 1589 unsigned int id; 1590 uint64_t lun; 1591 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 1592 1593 if (qla2x00_isp_reg_stat(ha)) { 1594 ql_log(ql_log_info, vha, 0x8041, 1595 "PCI/Register disconnect, exiting.\n"); 1596 schedule_work(&ha->board_disable); 1597 return SUCCESS; 1598 } 1599 1600 id = cmd->device->id; 1601 lun = cmd->device->lun; 1602 1603 ql_log(ql_log_info, vha, 0x8018, 1604 "ADAPTER RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun); 1605 1606 /* 1607 * No point in issuing another reset if one is active. Also do not 1608 * attempt a reset if we are updating flash. 1609 */ 1610 if (qla2x00_reset_active(vha) || ha->optrom_state != QLA_SWAITING) 1611 goto eh_host_reset_lock; 1612 1613 if (vha != base_vha) { 1614 if (qla2x00_vp_abort_isp(vha)) 1615 goto eh_host_reset_lock; 1616 } else { 1617 if (IS_P3P_TYPE(vha->hw)) { 1618 if (!qla82xx_fcoe_ctx_reset(vha)) { 1619 /* Ctx reset success */ 1620 ret = SUCCESS; 1621 goto eh_host_reset_lock; 1622 } 1623 /* fall thru if ctx reset failed */ 1624 } 1625 if (ha->wq) 1626 flush_workqueue(ha->wq); 1627 1628 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 1629 if (ha->isp_ops->abort_isp(base_vha)) { 1630 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 1631 /* failed. schedule dpc to try */ 1632 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); 1633 1634 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { 1635 ql_log(ql_log_warn, vha, 0x802a, 1636 "wait for hba online failed.\n"); 1637 goto eh_host_reset_lock; 1638 } 1639 } 1640 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 1641 } 1642 1643 /* Waiting for command to be returned to OS.*/ 1644 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) == 1645 QLA_SUCCESS) 1646 ret = SUCCESS; 1647 1648 eh_host_reset_lock: 1649 ql_log(ql_log_info, vha, 0x8017, 1650 "ADAPTER RESET %s nexus=%ld:%d:%llu.\n", 1651 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); 1652 1653 return ret; 1654 } 1655 1656 /* 1657 * qla2x00_loop_reset 1658 * Issue loop reset. 1659 * 1660 * Input: 1661 * ha = adapter block pointer. 1662 * 1663 * Returns: 1664 * 0 = success 1665 */ 1666 int 1667 qla2x00_loop_reset(scsi_qla_host_t *vha) 1668 { 1669 int ret; 1670 struct fc_port *fcport; 1671 struct qla_hw_data *ha = vha->hw; 1672 1673 if (IS_QLAFX00(ha)) { 1674 return qlafx00_loop_reset(vha); 1675 } 1676 1677 if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { 1678 list_for_each_entry(fcport, &vha->vp_fcports, list) { 1679 if (fcport->port_type != FCT_TARGET) 1680 continue; 1681 1682 ret = ha->isp_ops->target_reset(fcport, 0, 0); 1683 if (ret != QLA_SUCCESS) { 1684 ql_dbg(ql_dbg_taskm, vha, 0x802c, 1685 "Bus Reset failed: Reset=%d " 1686 "d_id=%x.\n", ret, fcport->d_id.b24); 1687 } 1688 } 1689 } 1690 1691 1692 if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) { 1693 atomic_set(&vha->loop_state, LOOP_DOWN); 1694 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); 1695 qla2x00_mark_all_devices_lost(vha, 0); 1696 ret = qla2x00_full_login_lip(vha); 1697 if (ret != QLA_SUCCESS) { 1698 ql_dbg(ql_dbg_taskm, vha, 0x802d, 1699 "full_login_lip=%d.\n", ret); 1700 } 1701 } 1702 1703 if (ha->flags.enable_lip_reset) { 1704 ret = qla2x00_lip_reset(vha); 1705 if (ret != QLA_SUCCESS) 1706 ql_dbg(ql_dbg_taskm, vha, 0x802e, 1707 "lip_reset failed (%d).\n", ret); 1708 } 1709 1710 /* Issue marker command only when we are going to start the I/O */ 1711 vha->marker_needed = 1; 1712 1713 return QLA_SUCCESS; 1714 } 1715 1716 static void qla2x00_abort_srb(struct qla_qpair *qp, srb_t *sp, const int res, 1717 unsigned long *flags) 1718 __releases(qp->qp_lock_ptr) 1719 __acquires(qp->qp_lock_ptr) 1720 { 1721 DECLARE_COMPLETION_ONSTACK(comp); 1722 scsi_qla_host_t *vha = qp->vha; 1723 struct qla_hw_data *ha = vha->hw; 1724 int rval; 1725 1726 if (sp_get(sp)) 1727 return; 1728 1729 if (sp->type == SRB_NVME_CMD || sp->type == SRB_NVME_LS || 1730 (sp->type == SRB_SCSI_CMD && !ha->flags.eeh_busy && 1731 !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) && 1732 !qla2x00_isp_reg_stat(ha))) { 1733 sp->comp = ∁ 1734 spin_unlock_irqrestore(qp->qp_lock_ptr, *flags); 1735 rval = ha->isp_ops->abort_command(sp); 1736 1737 switch (rval) { 1738 case QLA_SUCCESS: 1739 sp->done(sp, res); 1740 break; 1741 case QLA_FUNCTION_PARAMETER_ERROR: 1742 wait_for_completion(&comp); 1743 break; 1744 } 1745 1746 spin_lock_irqsave(qp->qp_lock_ptr, *flags); 1747 sp->comp = NULL; 1748 } 1749 } 1750 1751 static void 1752 __qla2x00_abort_all_cmds(struct qla_qpair *qp, int res) 1753 { 1754 int cnt; 1755 unsigned long flags; 1756 srb_t *sp; 1757 scsi_qla_host_t *vha = qp->vha; 1758 struct qla_hw_data *ha = vha->hw; 1759 struct req_que *req; 1760 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt; 1761 struct qla_tgt_cmd *cmd; 1762 1763 if (!ha->req_q_map) 1764 return; 1765 spin_lock_irqsave(qp->qp_lock_ptr, flags); 1766 req = qp->req; 1767 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) { 1768 sp = req->outstanding_cmds[cnt]; 1769 if (sp) { 1770 req->outstanding_cmds[cnt] = NULL; 1771 switch (sp->cmd_type) { 1772 case TYPE_SRB: 1773 qla2x00_abort_srb(qp, sp, res, &flags); 1774 break; 1775 case TYPE_TGT_CMD: 1776 if (!vha->hw->tgt.tgt_ops || !tgt || 1777 qla_ini_mode_enabled(vha)) { 1778 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf003, 1779 "HOST-ABORT-HNDLR: dpc_flags=%lx. Target mode disabled\n", 1780 vha->dpc_flags); 1781 continue; 1782 } 1783 cmd = (struct qla_tgt_cmd *)sp; 1784 cmd->aborted = 1; 1785 break; 1786 case TYPE_TGT_TMCMD: 1787 /* Skip task management functions. */ 1788 break; 1789 default: 1790 break; 1791 } 1792 } 1793 } 1794 spin_unlock_irqrestore(qp->qp_lock_ptr, flags); 1795 } 1796 1797 void 1798 qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) 1799 { 1800 int que; 1801 struct qla_hw_data *ha = vha->hw; 1802 1803 __qla2x00_abort_all_cmds(ha->base_qpair, res); 1804 1805 for (que = 0; que < ha->max_qpairs; que++) { 1806 if (!ha->queue_pair_map[que]) 1807 continue; 1808 1809 __qla2x00_abort_all_cmds(ha->queue_pair_map[que], res); 1810 } 1811 } 1812 1813 static int 1814 qla2xxx_slave_alloc(struct scsi_device *sdev) 1815 { 1816 struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); 1817 1818 if (!rport || fc_remote_port_chkready(rport)) 1819 return -ENXIO; 1820 1821 sdev->hostdata = *(fc_port_t **)rport->dd_data; 1822 1823 return 0; 1824 } 1825 1826 static int 1827 qla2xxx_slave_configure(struct scsi_device *sdev) 1828 { 1829 scsi_qla_host_t *vha = shost_priv(sdev->host); 1830 struct req_que *req = vha->req; 1831 1832 if (IS_T10_PI_CAPABLE(vha->hw)) 1833 blk_queue_update_dma_alignment(sdev->request_queue, 0x7); 1834 1835 scsi_change_queue_depth(sdev, req->max_q_depth); 1836 return 0; 1837 } 1838 1839 static void 1840 qla2xxx_slave_destroy(struct scsi_device *sdev) 1841 { 1842 sdev->hostdata = NULL; 1843 } 1844 1845 /** 1846 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. 1847 * @ha: HA context 1848 * 1849 * At exit, the @ha's flags.enable_64bit_addressing set to indicated 1850 * supported addressing method. 1851 */ 1852 static void 1853 qla2x00_config_dma_addressing(struct qla_hw_data *ha) 1854 { 1855 /* Assume a 32bit DMA mask. */ 1856 ha->flags.enable_64bit_addressing = 0; 1857 1858 if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { 1859 /* Any upper-dword bits set? */ 1860 if (MSD(dma_get_required_mask(&ha->pdev->dev)) && 1861 !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { 1862 /* Ok, a 64bit DMA mask is applicable. */ 1863 ha->flags.enable_64bit_addressing = 1; 1864 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; 1865 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; 1866 return; 1867 } 1868 } 1869 1870 dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); 1871 pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); 1872 } 1873 1874 static void 1875 qla2x00_enable_intrs(struct qla_hw_data *ha) 1876 { 1877 unsigned long flags = 0; 1878 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; 1879 1880 spin_lock_irqsave(&ha->hardware_lock, flags); 1881 ha->interrupts_on = 1; 1882 /* enable risc and host interrupts */ 1883 WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); 1884 RD_REG_WORD(®->ictrl); 1885 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1886 1887 } 1888 1889 static void 1890 qla2x00_disable_intrs(struct qla_hw_data *ha) 1891 { 1892 unsigned long flags = 0; 1893 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; 1894 1895 spin_lock_irqsave(&ha->hardware_lock, flags); 1896 ha->interrupts_on = 0; 1897 /* disable risc and host interrupts */ 1898 WRT_REG_WORD(®->ictrl, 0); 1899 RD_REG_WORD(®->ictrl); 1900 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1901 } 1902 1903 static void 1904 qla24xx_enable_intrs(struct qla_hw_data *ha) 1905 { 1906 unsigned long flags = 0; 1907 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; 1908 1909 spin_lock_irqsave(&ha->hardware_lock, flags); 1910 ha->interrupts_on = 1; 1911 WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); 1912 RD_REG_DWORD(®->ictrl); 1913 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1914 } 1915 1916 static void 1917 qla24xx_disable_intrs(struct qla_hw_data *ha) 1918 { 1919 unsigned long flags = 0; 1920 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; 1921 1922 if (IS_NOPOLLING_TYPE(ha)) 1923 return; 1924 spin_lock_irqsave(&ha->hardware_lock, flags); 1925 ha->interrupts_on = 0; 1926 WRT_REG_DWORD(®->ictrl, 0); 1927 RD_REG_DWORD(®->ictrl); 1928 spin_unlock_irqrestore(&ha->hardware_lock, flags); 1929 } 1930 1931 static int 1932 qla2x00_iospace_config(struct qla_hw_data *ha) 1933 { 1934 resource_size_t pio; 1935 uint16_t msix; 1936 1937 if (pci_request_selected_regions(ha->pdev, ha->bars, 1938 QLA2XXX_DRIVER_NAME)) { 1939 ql_log_pci(ql_log_fatal, ha->pdev, 0x0011, 1940 "Failed to reserve PIO/MMIO regions (%s), aborting.\n", 1941 pci_name(ha->pdev)); 1942 goto iospace_error_exit; 1943 } 1944 if (!(ha->bars & 1)) 1945 goto skip_pio; 1946 1947 /* We only need PIO for Flash operations on ISP2312 v2 chips. */ 1948 pio = pci_resource_start(ha->pdev, 0); 1949 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { 1950 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { 1951 ql_log_pci(ql_log_warn, ha->pdev, 0x0012, 1952 "Invalid pci I/O region size (%s).\n", 1953 pci_name(ha->pdev)); 1954 pio = 0; 1955 } 1956 } else { 1957 ql_log_pci(ql_log_warn, ha->pdev, 0x0013, 1958 "Region #0 no a PIO resource (%s).\n", 1959 pci_name(ha->pdev)); 1960 pio = 0; 1961 } 1962 ha->pio_address = pio; 1963 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014, 1964 "PIO address=%llu.\n", 1965 (unsigned long long)ha->pio_address); 1966 1967 skip_pio: 1968 /* Use MMIO operations for all accesses. */ 1969 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { 1970 ql_log_pci(ql_log_fatal, ha->pdev, 0x0015, 1971 "Region #1 not an MMIO resource (%s), aborting.\n", 1972 pci_name(ha->pdev)); 1973 goto iospace_error_exit; 1974 } 1975 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { 1976 ql_log_pci(ql_log_fatal, ha->pdev, 0x0016, 1977 "Invalid PCI mem region size (%s), aborting.\n", 1978 pci_name(ha->pdev)); 1979 goto iospace_error_exit; 1980 } 1981 1982 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); 1983 if (!ha->iobase) { 1984 ql_log_pci(ql_log_fatal, ha->pdev, 0x0017, 1985 "Cannot remap MMIO (%s), aborting.\n", 1986 pci_name(ha->pdev)); 1987 goto iospace_error_exit; 1988 } 1989 1990 /* Determine queue resources */ 1991 ha->max_req_queues = ha->max_rsp_queues = 1; 1992 ha->msix_count = QLA_BASE_VECTORS; 1993 if (!ql2xmqsupport || !ql2xnvmeenable || 1994 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) 1995 goto mqiobase_exit; 1996 1997 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), 1998 pci_resource_len(ha->pdev, 3)); 1999 if (ha->mqiobase) { 2000 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018, 2001 "MQIO Base=%p.\n", ha->mqiobase); 2002 /* Read MSIX vector size of the board */ 2003 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); 2004 ha->msix_count = msix + 1; 2005 /* Max queues are bounded by available msix vectors */ 2006 /* MB interrupt uses 1 vector */ 2007 ha->max_req_queues = ha->msix_count - 1; 2008 ha->max_rsp_queues = ha->max_req_queues; 2009 /* Queue pairs is the max value minus the base queue pair */ 2010 ha->max_qpairs = ha->max_rsp_queues - 1; 2011 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0188, 2012 "Max no of queues pairs: %d.\n", ha->max_qpairs); 2013 2014 ql_log_pci(ql_log_info, ha->pdev, 0x001a, 2015 "MSI-X vector count: %d.\n", ha->msix_count); 2016 } else 2017 ql_log_pci(ql_log_info, ha->pdev, 0x001b, 2018 "BAR 3 not enabled.\n"); 2019 2020 mqiobase_exit: 2021 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c, 2022 "MSIX Count: %d.\n", ha->msix_count); 2023 return (0); 2024 2025 iospace_error_exit: 2026 return (-ENOMEM); 2027 } 2028 2029 2030 static int 2031 qla83xx_iospace_config(struct qla_hw_data *ha) 2032 { 2033 uint16_t msix; 2034 2035 if (pci_request_selected_regions(ha->pdev, ha->bars, 2036 QLA2XXX_DRIVER_NAME)) { 2037 ql_log_pci(ql_log_fatal, ha->pdev, 0x0117, 2038 "Failed to reserve PIO/MMIO regions (%s), aborting.\n", 2039 pci_name(ha->pdev)); 2040 2041 goto iospace_error_exit; 2042 } 2043 2044 /* Use MMIO operations for all accesses. */ 2045 if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) { 2046 ql_log_pci(ql_log_warn, ha->pdev, 0x0118, 2047 "Invalid pci I/O region size (%s).\n", 2048 pci_name(ha->pdev)); 2049 goto iospace_error_exit; 2050 } 2051 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { 2052 ql_log_pci(ql_log_warn, ha->pdev, 0x0119, 2053 "Invalid PCI mem region size (%s), aborting\n", 2054 pci_name(ha->pdev)); 2055 goto iospace_error_exit; 2056 } 2057 2058 ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN); 2059 if (!ha->iobase) { 2060 ql_log_pci(ql_log_fatal, ha->pdev, 0x011a, 2061 "Cannot remap MMIO (%s), aborting.\n", 2062 pci_name(ha->pdev)); 2063 goto iospace_error_exit; 2064 } 2065 2066 /* 64bit PCI BAR - BAR2 will correspoond to region 4 */ 2067 /* 83XX 26XX always use MQ type access for queues 2068 * - mbar 2, a.k.a region 4 */ 2069 ha->max_req_queues = ha->max_rsp_queues = 1; 2070 ha->msix_count = QLA_BASE_VECTORS; 2071 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4), 2072 pci_resource_len(ha->pdev, 4)); 2073 2074 if (!ha->mqiobase) { 2075 ql_log_pci(ql_log_fatal, ha->pdev, 0x011d, 2076 "BAR2/region4 not enabled\n"); 2077 goto mqiobase_exit; 2078 } 2079 2080 ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2), 2081 pci_resource_len(ha->pdev, 2)); 2082 if (ha->msixbase) { 2083 /* Read MSIX vector size of the board */ 2084 pci_read_config_word(ha->pdev, 2085 QLA_83XX_PCI_MSIX_CONTROL, &msix); 2086 ha->msix_count = (msix & PCI_MSIX_FLAGS_QSIZE) + 1; 2087 /* 2088 * By default, driver uses at least two msix vectors 2089 * (default & rspq) 2090 */ 2091 if (ql2xmqsupport || ql2xnvmeenable) { 2092 /* MB interrupt uses 1 vector */ 2093 ha->max_req_queues = ha->msix_count - 1; 2094 2095 /* ATIOQ needs 1 vector. That's 1 less QPair */ 2096 if (QLA_TGT_MODE_ENABLED()) 2097 ha->max_req_queues--; 2098 2099 ha->max_rsp_queues = ha->max_req_queues; 2100 2101 /* Queue pairs is the max value minus 2102 * the base queue pair */ 2103 ha->max_qpairs = ha->max_req_queues - 1; 2104 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x00e3, 2105 "Max no of queues pairs: %d.\n", ha->max_qpairs); 2106 } 2107 ql_log_pci(ql_log_info, ha->pdev, 0x011c, 2108 "MSI-X vector count: %d.\n", ha->msix_count); 2109 } else 2110 ql_log_pci(ql_log_info, ha->pdev, 0x011e, 2111 "BAR 1 not enabled.\n"); 2112 2113 mqiobase_exit: 2114 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f, 2115 "MSIX Count: %d.\n", ha->msix_count); 2116 return 0; 2117 2118 iospace_error_exit: 2119 return -ENOMEM; 2120 } 2121 2122 static struct isp_operations qla2100_isp_ops = { 2123 .pci_config = qla2100_pci_config, 2124 .reset_chip = qla2x00_reset_chip, 2125 .chip_diag = qla2x00_chip_diag, 2126 .config_rings = qla2x00_config_rings, 2127 .reset_adapter = qla2x00_reset_adapter, 2128 .nvram_config = qla2x00_nvram_config, 2129 .update_fw_options = qla2x00_update_fw_options, 2130 .load_risc = qla2x00_load_risc, 2131 .pci_info_str = qla2x00_pci_info_str, 2132 .fw_version_str = qla2x00_fw_version_str, 2133 .intr_handler = qla2100_intr_handler, 2134 .enable_intrs = qla2x00_enable_intrs, 2135 .disable_intrs = qla2x00_disable_intrs, 2136 .abort_command = qla2x00_abort_command, 2137 .target_reset = qla2x00_abort_target, 2138 .lun_reset = qla2x00_lun_reset, 2139 .fabric_login = qla2x00_login_fabric, 2140 .fabric_logout = qla2x00_fabric_logout, 2141 .calc_req_entries = qla2x00_calc_iocbs_32, 2142 .build_iocbs = qla2x00_build_scsi_iocbs_32, 2143 .prep_ms_iocb = qla2x00_prep_ms_iocb, 2144 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, 2145 .read_nvram = qla2x00_read_nvram_data, 2146 .write_nvram = qla2x00_write_nvram_data, 2147 .fw_dump = qla2100_fw_dump, 2148 .beacon_on = NULL, 2149 .beacon_off = NULL, 2150 .beacon_blink = NULL, 2151 .read_optrom = qla2x00_read_optrom_data, 2152 .write_optrom = qla2x00_write_optrom_data, 2153 .get_flash_version = qla2x00_get_flash_version, 2154 .start_scsi = qla2x00_start_scsi, 2155 .start_scsi_mq = NULL, 2156 .abort_isp = qla2x00_abort_isp, 2157 .iospace_config = qla2x00_iospace_config, 2158 .initialize_adapter = qla2x00_initialize_adapter, 2159 }; 2160 2161 static struct isp_operations qla2300_isp_ops = { 2162 .pci_config = qla2300_pci_config, 2163 .reset_chip = qla2x00_reset_chip, 2164 .chip_diag = qla2x00_chip_diag, 2165 .config_rings = qla2x00_config_rings, 2166 .reset_adapter = qla2x00_reset_adapter, 2167 .nvram_config = qla2x00_nvram_config, 2168 .update_fw_options = qla2x00_update_fw_options, 2169 .load_risc = qla2x00_load_risc, 2170 .pci_info_str = qla2x00_pci_info_str, 2171 .fw_version_str = qla2x00_fw_version_str, 2172 .intr_handler = qla2300_intr_handler, 2173 .enable_intrs = qla2x00_enable_intrs, 2174 .disable_intrs = qla2x00_disable_intrs, 2175 .abort_command = qla2x00_abort_command, 2176 .target_reset = qla2x00_abort_target, 2177 .lun_reset = qla2x00_lun_reset, 2178 .fabric_login = qla2x00_login_fabric, 2179 .fabric_logout = qla2x00_fabric_logout, 2180 .calc_req_entries = qla2x00_calc_iocbs_32, 2181 .build_iocbs = qla2x00_build_scsi_iocbs_32, 2182 .prep_ms_iocb = qla2x00_prep_ms_iocb, 2183 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, 2184 .read_nvram = qla2x00_read_nvram_data, 2185 .write_nvram = qla2x00_write_nvram_data, 2186 .fw_dump = qla2300_fw_dump, 2187 .beacon_on = qla2x00_beacon_on, 2188 .beacon_off = qla2x00_beacon_off, 2189 .beacon_blink = qla2x00_beacon_blink, 2190 .read_optrom = qla2x00_read_optrom_data, 2191 .write_optrom = qla2x00_write_optrom_data, 2192 .get_flash_version = qla2x00_get_flash_version, 2193 .start_scsi = qla2x00_start_scsi, 2194 .start_scsi_mq = NULL, 2195 .abort_isp = qla2x00_abort_isp, 2196 .iospace_config = qla2x00_iospace_config, 2197 .initialize_adapter = qla2x00_initialize_adapter, 2198 }; 2199 2200 static struct isp_operations qla24xx_isp_ops = { 2201 .pci_config = qla24xx_pci_config, 2202 .reset_chip = qla24xx_reset_chip, 2203 .chip_diag = qla24xx_chip_diag, 2204 .config_rings = qla24xx_config_rings, 2205 .reset_adapter = qla24xx_reset_adapter, 2206 .nvram_config = qla24xx_nvram_config, 2207 .update_fw_options = qla24xx_update_fw_options, 2208 .load_risc = qla24xx_load_risc, 2209 .pci_info_str = qla24xx_pci_info_str, 2210 .fw_version_str = qla24xx_fw_version_str, 2211 .intr_handler = qla24xx_intr_handler, 2212 .enable_intrs = qla24xx_enable_intrs, 2213 .disable_intrs = qla24xx_disable_intrs, 2214 .abort_command = qla24xx_abort_command, 2215 .target_reset = qla24xx_abort_target, 2216 .lun_reset = qla24xx_lun_reset, 2217 .fabric_login = qla24xx_login_fabric, 2218 .fabric_logout = qla24xx_fabric_logout, 2219 .calc_req_entries = NULL, 2220 .build_iocbs = NULL, 2221 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2222 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2223 .read_nvram = qla24xx_read_nvram_data, 2224 .write_nvram = qla24xx_write_nvram_data, 2225 .fw_dump = qla24xx_fw_dump, 2226 .beacon_on = qla24xx_beacon_on, 2227 .beacon_off = qla24xx_beacon_off, 2228 .beacon_blink = qla24xx_beacon_blink, 2229 .read_optrom = qla24xx_read_optrom_data, 2230 .write_optrom = qla24xx_write_optrom_data, 2231 .get_flash_version = qla24xx_get_flash_version, 2232 .start_scsi = qla24xx_start_scsi, 2233 .start_scsi_mq = NULL, 2234 .abort_isp = qla2x00_abort_isp, 2235 .iospace_config = qla2x00_iospace_config, 2236 .initialize_adapter = qla2x00_initialize_adapter, 2237 }; 2238 2239 static struct isp_operations qla25xx_isp_ops = { 2240 .pci_config = qla25xx_pci_config, 2241 .reset_chip = qla24xx_reset_chip, 2242 .chip_diag = qla24xx_chip_diag, 2243 .config_rings = qla24xx_config_rings, 2244 .reset_adapter = qla24xx_reset_adapter, 2245 .nvram_config = qla24xx_nvram_config, 2246 .update_fw_options = qla24xx_update_fw_options, 2247 .load_risc = qla24xx_load_risc, 2248 .pci_info_str = qla24xx_pci_info_str, 2249 .fw_version_str = qla24xx_fw_version_str, 2250 .intr_handler = qla24xx_intr_handler, 2251 .enable_intrs = qla24xx_enable_intrs, 2252 .disable_intrs = qla24xx_disable_intrs, 2253 .abort_command = qla24xx_abort_command, 2254 .target_reset = qla24xx_abort_target, 2255 .lun_reset = qla24xx_lun_reset, 2256 .fabric_login = qla24xx_login_fabric, 2257 .fabric_logout = qla24xx_fabric_logout, 2258 .calc_req_entries = NULL, 2259 .build_iocbs = NULL, 2260 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2261 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2262 .read_nvram = qla25xx_read_nvram_data, 2263 .write_nvram = qla25xx_write_nvram_data, 2264 .fw_dump = qla25xx_fw_dump, 2265 .beacon_on = qla24xx_beacon_on, 2266 .beacon_off = qla24xx_beacon_off, 2267 .beacon_blink = qla24xx_beacon_blink, 2268 .read_optrom = qla25xx_read_optrom_data, 2269 .write_optrom = qla24xx_write_optrom_data, 2270 .get_flash_version = qla24xx_get_flash_version, 2271 .start_scsi = qla24xx_dif_start_scsi, 2272 .start_scsi_mq = qla2xxx_dif_start_scsi_mq, 2273 .abort_isp = qla2x00_abort_isp, 2274 .iospace_config = qla2x00_iospace_config, 2275 .initialize_adapter = qla2x00_initialize_adapter, 2276 }; 2277 2278 static struct isp_operations qla81xx_isp_ops = { 2279 .pci_config = qla25xx_pci_config, 2280 .reset_chip = qla24xx_reset_chip, 2281 .chip_diag = qla24xx_chip_diag, 2282 .config_rings = qla24xx_config_rings, 2283 .reset_adapter = qla24xx_reset_adapter, 2284 .nvram_config = qla81xx_nvram_config, 2285 .update_fw_options = qla81xx_update_fw_options, 2286 .load_risc = qla81xx_load_risc, 2287 .pci_info_str = qla24xx_pci_info_str, 2288 .fw_version_str = qla24xx_fw_version_str, 2289 .intr_handler = qla24xx_intr_handler, 2290 .enable_intrs = qla24xx_enable_intrs, 2291 .disable_intrs = qla24xx_disable_intrs, 2292 .abort_command = qla24xx_abort_command, 2293 .target_reset = qla24xx_abort_target, 2294 .lun_reset = qla24xx_lun_reset, 2295 .fabric_login = qla24xx_login_fabric, 2296 .fabric_logout = qla24xx_fabric_logout, 2297 .calc_req_entries = NULL, 2298 .build_iocbs = NULL, 2299 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2300 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2301 .read_nvram = NULL, 2302 .write_nvram = NULL, 2303 .fw_dump = qla81xx_fw_dump, 2304 .beacon_on = qla24xx_beacon_on, 2305 .beacon_off = qla24xx_beacon_off, 2306 .beacon_blink = qla83xx_beacon_blink, 2307 .read_optrom = qla25xx_read_optrom_data, 2308 .write_optrom = qla24xx_write_optrom_data, 2309 .get_flash_version = qla24xx_get_flash_version, 2310 .start_scsi = qla24xx_dif_start_scsi, 2311 .start_scsi_mq = qla2xxx_dif_start_scsi_mq, 2312 .abort_isp = qla2x00_abort_isp, 2313 .iospace_config = qla2x00_iospace_config, 2314 .initialize_adapter = qla2x00_initialize_adapter, 2315 }; 2316 2317 static struct isp_operations qla82xx_isp_ops = { 2318 .pci_config = qla82xx_pci_config, 2319 .reset_chip = qla82xx_reset_chip, 2320 .chip_diag = qla24xx_chip_diag, 2321 .config_rings = qla82xx_config_rings, 2322 .reset_adapter = qla24xx_reset_adapter, 2323 .nvram_config = qla81xx_nvram_config, 2324 .update_fw_options = qla24xx_update_fw_options, 2325 .load_risc = qla82xx_load_risc, 2326 .pci_info_str = qla24xx_pci_info_str, 2327 .fw_version_str = qla24xx_fw_version_str, 2328 .intr_handler = qla82xx_intr_handler, 2329 .enable_intrs = qla82xx_enable_intrs, 2330 .disable_intrs = qla82xx_disable_intrs, 2331 .abort_command = qla24xx_abort_command, 2332 .target_reset = qla24xx_abort_target, 2333 .lun_reset = qla24xx_lun_reset, 2334 .fabric_login = qla24xx_login_fabric, 2335 .fabric_logout = qla24xx_fabric_logout, 2336 .calc_req_entries = NULL, 2337 .build_iocbs = NULL, 2338 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2339 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2340 .read_nvram = qla24xx_read_nvram_data, 2341 .write_nvram = qla24xx_write_nvram_data, 2342 .fw_dump = qla82xx_fw_dump, 2343 .beacon_on = qla82xx_beacon_on, 2344 .beacon_off = qla82xx_beacon_off, 2345 .beacon_blink = NULL, 2346 .read_optrom = qla82xx_read_optrom_data, 2347 .write_optrom = qla82xx_write_optrom_data, 2348 .get_flash_version = qla82xx_get_flash_version, 2349 .start_scsi = qla82xx_start_scsi, 2350 .start_scsi_mq = NULL, 2351 .abort_isp = qla82xx_abort_isp, 2352 .iospace_config = qla82xx_iospace_config, 2353 .initialize_adapter = qla2x00_initialize_adapter, 2354 }; 2355 2356 static struct isp_operations qla8044_isp_ops = { 2357 .pci_config = qla82xx_pci_config, 2358 .reset_chip = qla82xx_reset_chip, 2359 .chip_diag = qla24xx_chip_diag, 2360 .config_rings = qla82xx_config_rings, 2361 .reset_adapter = qla24xx_reset_adapter, 2362 .nvram_config = qla81xx_nvram_config, 2363 .update_fw_options = qla24xx_update_fw_options, 2364 .load_risc = qla82xx_load_risc, 2365 .pci_info_str = qla24xx_pci_info_str, 2366 .fw_version_str = qla24xx_fw_version_str, 2367 .intr_handler = qla8044_intr_handler, 2368 .enable_intrs = qla82xx_enable_intrs, 2369 .disable_intrs = qla82xx_disable_intrs, 2370 .abort_command = qla24xx_abort_command, 2371 .target_reset = qla24xx_abort_target, 2372 .lun_reset = qla24xx_lun_reset, 2373 .fabric_login = qla24xx_login_fabric, 2374 .fabric_logout = qla24xx_fabric_logout, 2375 .calc_req_entries = NULL, 2376 .build_iocbs = NULL, 2377 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2378 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2379 .read_nvram = NULL, 2380 .write_nvram = NULL, 2381 .fw_dump = qla8044_fw_dump, 2382 .beacon_on = qla82xx_beacon_on, 2383 .beacon_off = qla82xx_beacon_off, 2384 .beacon_blink = NULL, 2385 .read_optrom = qla8044_read_optrom_data, 2386 .write_optrom = qla8044_write_optrom_data, 2387 .get_flash_version = qla82xx_get_flash_version, 2388 .start_scsi = qla82xx_start_scsi, 2389 .start_scsi_mq = NULL, 2390 .abort_isp = qla8044_abort_isp, 2391 .iospace_config = qla82xx_iospace_config, 2392 .initialize_adapter = qla2x00_initialize_adapter, 2393 }; 2394 2395 static struct isp_operations qla83xx_isp_ops = { 2396 .pci_config = qla25xx_pci_config, 2397 .reset_chip = qla24xx_reset_chip, 2398 .chip_diag = qla24xx_chip_diag, 2399 .config_rings = qla24xx_config_rings, 2400 .reset_adapter = qla24xx_reset_adapter, 2401 .nvram_config = qla81xx_nvram_config, 2402 .update_fw_options = qla81xx_update_fw_options, 2403 .load_risc = qla81xx_load_risc, 2404 .pci_info_str = qla24xx_pci_info_str, 2405 .fw_version_str = qla24xx_fw_version_str, 2406 .intr_handler = qla24xx_intr_handler, 2407 .enable_intrs = qla24xx_enable_intrs, 2408 .disable_intrs = qla24xx_disable_intrs, 2409 .abort_command = qla24xx_abort_command, 2410 .target_reset = qla24xx_abort_target, 2411 .lun_reset = qla24xx_lun_reset, 2412 .fabric_login = qla24xx_login_fabric, 2413 .fabric_logout = qla24xx_fabric_logout, 2414 .calc_req_entries = NULL, 2415 .build_iocbs = NULL, 2416 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2417 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2418 .read_nvram = NULL, 2419 .write_nvram = NULL, 2420 .fw_dump = qla83xx_fw_dump, 2421 .beacon_on = qla24xx_beacon_on, 2422 .beacon_off = qla24xx_beacon_off, 2423 .beacon_blink = qla83xx_beacon_blink, 2424 .read_optrom = qla25xx_read_optrom_data, 2425 .write_optrom = qla24xx_write_optrom_data, 2426 .get_flash_version = qla24xx_get_flash_version, 2427 .start_scsi = qla24xx_dif_start_scsi, 2428 .start_scsi_mq = qla2xxx_dif_start_scsi_mq, 2429 .abort_isp = qla2x00_abort_isp, 2430 .iospace_config = qla83xx_iospace_config, 2431 .initialize_adapter = qla2x00_initialize_adapter, 2432 }; 2433 2434 static struct isp_operations qlafx00_isp_ops = { 2435 .pci_config = qlafx00_pci_config, 2436 .reset_chip = qlafx00_soft_reset, 2437 .chip_diag = qlafx00_chip_diag, 2438 .config_rings = qlafx00_config_rings, 2439 .reset_adapter = qlafx00_soft_reset, 2440 .nvram_config = NULL, 2441 .update_fw_options = NULL, 2442 .load_risc = NULL, 2443 .pci_info_str = qlafx00_pci_info_str, 2444 .fw_version_str = qlafx00_fw_version_str, 2445 .intr_handler = qlafx00_intr_handler, 2446 .enable_intrs = qlafx00_enable_intrs, 2447 .disable_intrs = qlafx00_disable_intrs, 2448 .abort_command = qla24xx_async_abort_command, 2449 .target_reset = qlafx00_abort_target, 2450 .lun_reset = qlafx00_lun_reset, 2451 .fabric_login = NULL, 2452 .fabric_logout = NULL, 2453 .calc_req_entries = NULL, 2454 .build_iocbs = NULL, 2455 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2456 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2457 .read_nvram = qla24xx_read_nvram_data, 2458 .write_nvram = qla24xx_write_nvram_data, 2459 .fw_dump = NULL, 2460 .beacon_on = qla24xx_beacon_on, 2461 .beacon_off = qla24xx_beacon_off, 2462 .beacon_blink = NULL, 2463 .read_optrom = qla24xx_read_optrom_data, 2464 .write_optrom = qla24xx_write_optrom_data, 2465 .get_flash_version = qla24xx_get_flash_version, 2466 .start_scsi = qlafx00_start_scsi, 2467 .start_scsi_mq = NULL, 2468 .abort_isp = qlafx00_abort_isp, 2469 .iospace_config = qlafx00_iospace_config, 2470 .initialize_adapter = qlafx00_initialize_adapter, 2471 }; 2472 2473 static struct isp_operations qla27xx_isp_ops = { 2474 .pci_config = qla25xx_pci_config, 2475 .reset_chip = qla24xx_reset_chip, 2476 .chip_diag = qla24xx_chip_diag, 2477 .config_rings = qla24xx_config_rings, 2478 .reset_adapter = qla24xx_reset_adapter, 2479 .nvram_config = qla81xx_nvram_config, 2480 .update_fw_options = qla81xx_update_fw_options, 2481 .load_risc = qla81xx_load_risc, 2482 .pci_info_str = qla24xx_pci_info_str, 2483 .fw_version_str = qla24xx_fw_version_str, 2484 .intr_handler = qla24xx_intr_handler, 2485 .enable_intrs = qla24xx_enable_intrs, 2486 .disable_intrs = qla24xx_disable_intrs, 2487 .abort_command = qla24xx_abort_command, 2488 .target_reset = qla24xx_abort_target, 2489 .lun_reset = qla24xx_lun_reset, 2490 .fabric_login = qla24xx_login_fabric, 2491 .fabric_logout = qla24xx_fabric_logout, 2492 .calc_req_entries = NULL, 2493 .build_iocbs = NULL, 2494 .prep_ms_iocb = qla24xx_prep_ms_iocb, 2495 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, 2496 .read_nvram = NULL, 2497 .write_nvram = NULL, 2498 .fw_dump = qla27xx_fwdump, 2499 .beacon_on = qla24xx_beacon_on, 2500 .beacon_off = qla24xx_beacon_off, 2501 .beacon_blink = qla83xx_beacon_blink, 2502 .read_optrom = qla25xx_read_optrom_data, 2503 .write_optrom = qla24xx_write_optrom_data, 2504 .get_flash_version = qla24xx_get_flash_version, 2505 .start_scsi = qla24xx_dif_start_scsi, 2506 .start_scsi_mq = qla2xxx_dif_start_scsi_mq, 2507 .abort_isp = qla2x00_abort_isp, 2508 .iospace_config = qla83xx_iospace_config, 2509 .initialize_adapter = qla2x00_initialize_adapter, 2510 }; 2511 2512 static inline void 2513 qla2x00_set_isp_flags(struct qla_hw_data *ha) 2514 { 2515 ha->device_type = DT_EXTENDED_IDS; 2516 switch (ha->pdev->device) { 2517 case PCI_DEVICE_ID_QLOGIC_ISP2100: 2518 ha->isp_type |= DT_ISP2100; 2519 ha->device_type &= ~DT_EXTENDED_IDS; 2520 ha->fw_srisc_address = RISC_START_ADDRESS_2100; 2521 break; 2522 case PCI_DEVICE_ID_QLOGIC_ISP2200: 2523 ha->isp_type |= DT_ISP2200; 2524 ha->device_type &= ~DT_EXTENDED_IDS; 2525 ha->fw_srisc_address = RISC_START_ADDRESS_2100; 2526 break; 2527 case PCI_DEVICE_ID_QLOGIC_ISP2300: 2528 ha->isp_type |= DT_ISP2300; 2529 ha->device_type |= DT_ZIO_SUPPORTED; 2530 ha->fw_srisc_address = RISC_START_ADDRESS_2300; 2531 break; 2532 case PCI_DEVICE_ID_QLOGIC_ISP2312: 2533 ha->isp_type |= DT_ISP2312; 2534 ha->device_type |= DT_ZIO_SUPPORTED; 2535 ha->fw_srisc_address = RISC_START_ADDRESS_2300; 2536 break; 2537 case PCI_DEVICE_ID_QLOGIC_ISP2322: 2538 ha->isp_type |= DT_ISP2322; 2539 ha->device_type |= DT_ZIO_SUPPORTED; 2540 if (ha->pdev->subsystem_vendor == 0x1028 && 2541 ha->pdev->subsystem_device == 0x0170) 2542 ha->device_type |= DT_OEM_001; 2543 ha->fw_srisc_address = RISC_START_ADDRESS_2300; 2544 break; 2545 case PCI_DEVICE_ID_QLOGIC_ISP6312: 2546 ha->isp_type |= DT_ISP6312; 2547 ha->fw_srisc_address = RISC_START_ADDRESS_2300; 2548 break; 2549 case PCI_DEVICE_ID_QLOGIC_ISP6322: 2550 ha->isp_type |= DT_ISP6322; 2551 ha->fw_srisc_address = RISC_START_ADDRESS_2300; 2552 break; 2553 case PCI_DEVICE_ID_QLOGIC_ISP2422: 2554 ha->isp_type |= DT_ISP2422; 2555 ha->device_type |= DT_ZIO_SUPPORTED; 2556 ha->device_type |= DT_FWI2; 2557 ha->device_type |= DT_IIDMA; 2558 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2559 break; 2560 case PCI_DEVICE_ID_QLOGIC_ISP2432: 2561 ha->isp_type |= DT_ISP2432; 2562 ha->device_type |= DT_ZIO_SUPPORTED; 2563 ha->device_type |= DT_FWI2; 2564 ha->device_type |= DT_IIDMA; 2565 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2566 break; 2567 case PCI_DEVICE_ID_QLOGIC_ISP8432: 2568 ha->isp_type |= DT_ISP8432; 2569 ha->device_type |= DT_ZIO_SUPPORTED; 2570 ha->device_type |= DT_FWI2; 2571 ha->device_type |= DT_IIDMA; 2572 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2573 break; 2574 case PCI_DEVICE_ID_QLOGIC_ISP5422: 2575 ha->isp_type |= DT_ISP5422; 2576 ha->device_type |= DT_FWI2; 2577 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2578 break; 2579 case PCI_DEVICE_ID_QLOGIC_ISP5432: 2580 ha->isp_type |= DT_ISP5432; 2581 ha->device_type |= DT_FWI2; 2582 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2583 break; 2584 case PCI_DEVICE_ID_QLOGIC_ISP2532: 2585 ha->isp_type |= DT_ISP2532; 2586 ha->device_type |= DT_ZIO_SUPPORTED; 2587 ha->device_type |= DT_FWI2; 2588 ha->device_type |= DT_IIDMA; 2589 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2590 break; 2591 case PCI_DEVICE_ID_QLOGIC_ISP8001: 2592 ha->isp_type |= DT_ISP8001; 2593 ha->device_type |= DT_ZIO_SUPPORTED; 2594 ha->device_type |= DT_FWI2; 2595 ha->device_type |= DT_IIDMA; 2596 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2597 break; 2598 case PCI_DEVICE_ID_QLOGIC_ISP8021: 2599 ha->isp_type |= DT_ISP8021; 2600 ha->device_type |= DT_ZIO_SUPPORTED; 2601 ha->device_type |= DT_FWI2; 2602 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2603 /* Initialize 82XX ISP flags */ 2604 qla82xx_init_flags(ha); 2605 break; 2606 case PCI_DEVICE_ID_QLOGIC_ISP8044: 2607 ha->isp_type |= DT_ISP8044; 2608 ha->device_type |= DT_ZIO_SUPPORTED; 2609 ha->device_type |= DT_FWI2; 2610 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2611 /* Initialize 82XX ISP flags */ 2612 qla82xx_init_flags(ha); 2613 break; 2614 case PCI_DEVICE_ID_QLOGIC_ISP2031: 2615 ha->isp_type |= DT_ISP2031; 2616 ha->device_type |= DT_ZIO_SUPPORTED; 2617 ha->device_type |= DT_FWI2; 2618 ha->device_type |= DT_IIDMA; 2619 ha->device_type |= DT_T10_PI; 2620 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2621 break; 2622 case PCI_DEVICE_ID_QLOGIC_ISP8031: 2623 ha->isp_type |= DT_ISP8031; 2624 ha->device_type |= DT_ZIO_SUPPORTED; 2625 ha->device_type |= DT_FWI2; 2626 ha->device_type |= DT_IIDMA; 2627 ha->device_type |= DT_T10_PI; 2628 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2629 break; 2630 case PCI_DEVICE_ID_QLOGIC_ISPF001: 2631 ha->isp_type |= DT_ISPFX00; 2632 break; 2633 case PCI_DEVICE_ID_QLOGIC_ISP2071: 2634 ha->isp_type |= DT_ISP2071; 2635 ha->device_type |= DT_ZIO_SUPPORTED; 2636 ha->device_type |= DT_FWI2; 2637 ha->device_type |= DT_IIDMA; 2638 ha->device_type |= DT_T10_PI; 2639 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2640 break; 2641 case PCI_DEVICE_ID_QLOGIC_ISP2271: 2642 ha->isp_type |= DT_ISP2271; 2643 ha->device_type |= DT_ZIO_SUPPORTED; 2644 ha->device_type |= DT_FWI2; 2645 ha->device_type |= DT_IIDMA; 2646 ha->device_type |= DT_T10_PI; 2647 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2648 break; 2649 case PCI_DEVICE_ID_QLOGIC_ISP2261: 2650 ha->isp_type |= DT_ISP2261; 2651 ha->device_type |= DT_ZIO_SUPPORTED; 2652 ha->device_type |= DT_FWI2; 2653 ha->device_type |= DT_IIDMA; 2654 ha->device_type |= DT_T10_PI; 2655 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2656 break; 2657 case PCI_DEVICE_ID_QLOGIC_ISP2081: 2658 case PCI_DEVICE_ID_QLOGIC_ISP2089: 2659 ha->isp_type |= DT_ISP2081; 2660 ha->device_type |= DT_ZIO_SUPPORTED; 2661 ha->device_type |= DT_FWI2; 2662 ha->device_type |= DT_IIDMA; 2663 ha->device_type |= DT_T10_PI; 2664 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2665 break; 2666 case PCI_DEVICE_ID_QLOGIC_ISP2281: 2667 case PCI_DEVICE_ID_QLOGIC_ISP2289: 2668 ha->isp_type |= DT_ISP2281; 2669 ha->device_type |= DT_ZIO_SUPPORTED; 2670 ha->device_type |= DT_FWI2; 2671 ha->device_type |= DT_IIDMA; 2672 ha->device_type |= DT_T10_PI; 2673 ha->fw_srisc_address = RISC_START_ADDRESS_2400; 2674 break; 2675 } 2676 2677 if (IS_QLA82XX(ha)) 2678 ha->port_no = ha->portnum & 1; 2679 else { 2680 /* Get adapter physical port no from interrupt pin register. */ 2681 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); 2682 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || 2683 IS_QLA27XX(ha) || IS_QLA28XX(ha)) 2684 ha->port_no--; 2685 else 2686 ha->port_no = !(ha->port_no & 1); 2687 } 2688 2689 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b, 2690 "device_type=0x%x port=%d fw_srisc_address=0x%x.\n", 2691 ha->device_type, ha->port_no, ha->fw_srisc_address); 2692 } 2693 2694 static void 2695 qla2xxx_scan_start(struct Scsi_Host *shost) 2696 { 2697 scsi_qla_host_t *vha = shost_priv(shost); 2698 2699 if (vha->hw->flags.running_gold_fw) 2700 return; 2701 2702 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); 2703 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); 2704 set_bit(RSCN_UPDATE, &vha->dpc_flags); 2705 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); 2706 } 2707 2708 static int 2709 qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) 2710 { 2711 scsi_qla_host_t *vha = shost_priv(shost); 2712 2713 if (test_bit(UNLOADING, &vha->dpc_flags)) 2714 return 1; 2715 if (!vha->host) 2716 return 1; 2717 if (time > vha->hw->loop_reset_delay * HZ) 2718 return 1; 2719 2720 return atomic_read(&vha->loop_state) == LOOP_READY; 2721 } 2722 2723 static void qla2x00_iocb_work_fn(struct work_struct *work) 2724 { 2725 struct scsi_qla_host *vha = container_of(work, 2726 struct scsi_qla_host, iocb_work); 2727 struct qla_hw_data *ha = vha->hw; 2728 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); 2729 int i = 2; 2730 unsigned long flags; 2731 2732 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 2733 return; 2734 2735 while (!list_empty(&vha->work_list) && i > 0) { 2736 qla2x00_do_work(vha); 2737 i--; 2738 } 2739 2740 spin_lock_irqsave(&vha->work_lock, flags); 2741 clear_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags); 2742 spin_unlock_irqrestore(&vha->work_lock, flags); 2743 } 2744 2745 /* 2746 * PCI driver interface 2747 */ 2748 static int 2749 qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) 2750 { 2751 int ret = -ENODEV; 2752 struct Scsi_Host *host; 2753 scsi_qla_host_t *base_vha = NULL; 2754 struct qla_hw_data *ha; 2755 char pci_info[30]; 2756 char fw_str[30], wq_name[30]; 2757 struct scsi_host_template *sht; 2758 int bars, mem_only = 0; 2759 uint16_t req_length = 0, rsp_length = 0; 2760 struct req_que *req = NULL; 2761 struct rsp_que *rsp = NULL; 2762 int i; 2763 2764 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); 2765 sht = &qla2xxx_driver_template; 2766 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || 2767 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || 2768 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || 2769 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || 2770 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || 2771 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || 2772 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 || 2773 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 || 2774 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 || 2775 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 || 2776 pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 || 2777 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 || 2778 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 || 2779 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271 || 2780 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2261 || 2781 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2081 || 2782 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2281 || 2783 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2089 || 2784 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2289) { 2785 bars = pci_select_bars(pdev, IORESOURCE_MEM); 2786 mem_only = 1; 2787 ql_dbg_pci(ql_dbg_init, pdev, 0x0007, 2788 "Mem only adapter.\n"); 2789 } 2790 ql_dbg_pci(ql_dbg_init, pdev, 0x0008, 2791 "Bars=%d.\n", bars); 2792 2793 if (mem_only) { 2794 if (pci_enable_device_mem(pdev)) 2795 return ret; 2796 } else { 2797 if (pci_enable_device(pdev)) 2798 return ret; 2799 } 2800 2801 /* This may fail but that's ok */ 2802 pci_enable_pcie_error_reporting(pdev); 2803 2804 /* Turn off T10-DIF when FC-NVMe is enabled */ 2805 if (ql2xnvmeenable) 2806 ql2xenabledif = 0; 2807 2808 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); 2809 if (!ha) { 2810 ql_log_pci(ql_log_fatal, pdev, 0x0009, 2811 "Unable to allocate memory for ha.\n"); 2812 goto disable_device; 2813 } 2814 ql_dbg_pci(ql_dbg_init, pdev, 0x000a, 2815 "Memory allocated for ha=%p.\n", ha); 2816 ha->pdev = pdev; 2817 INIT_LIST_HEAD(&ha->tgt.q_full_list); 2818 spin_lock_init(&ha->tgt.q_full_lock); 2819 spin_lock_init(&ha->tgt.sess_lock); 2820 spin_lock_init(&ha->tgt.atio_lock); 2821 2822 atomic_set(&ha->nvme_active_aen_cnt, 0); 2823 2824 /* Clear our data area */ 2825 ha->bars = bars; 2826 ha->mem_only = mem_only; 2827 spin_lock_init(&ha->hardware_lock); 2828 spin_lock_init(&ha->vport_slock); 2829 mutex_init(&ha->selflogin_lock); 2830 mutex_init(&ha->optrom_mutex); 2831 2832 /* Set ISP-type information. */ 2833 qla2x00_set_isp_flags(ha); 2834 2835 /* Set EEH reset type to fundamental if required by hba */ 2836 if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) || 2837 IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) 2838 pdev->needs_freset = 1; 2839 2840 ha->prev_topology = 0; 2841 ha->init_cb_size = sizeof(init_cb_t); 2842 ha->link_data_rate = PORT_SPEED_UNKNOWN; 2843 ha->optrom_size = OPTROM_SIZE_2300; 2844 ha->max_exchg = FW_MAX_EXCHANGES_CNT; 2845 atomic_set(&ha->num_pend_mbx_stage1, 0); 2846 atomic_set(&ha->num_pend_mbx_stage2, 0); 2847 atomic_set(&ha->num_pend_mbx_stage3, 0); 2848 atomic_set(&ha->zio_threshold, DEFAULT_ZIO_THRESHOLD); 2849 ha->last_zio_threshold = DEFAULT_ZIO_THRESHOLD; 2850 2851 /* Assign ISP specific operations. */ 2852 if (IS_QLA2100(ha)) { 2853 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; 2854 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; 2855 req_length = REQUEST_ENTRY_CNT_2100; 2856 rsp_length = RESPONSE_ENTRY_CNT_2100; 2857 ha->max_loop_id = SNS_LAST_LOOP_ID_2100; 2858 ha->gid_list_info_size = 4; 2859 ha->flash_conf_off = ~0; 2860 ha->flash_data_off = ~0; 2861 ha->nvram_conf_off = ~0; 2862 ha->nvram_data_off = ~0; 2863 ha->isp_ops = &qla2100_isp_ops; 2864 } else if (IS_QLA2200(ha)) { 2865 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; 2866 ha->mbx_count = MAILBOX_REGISTER_COUNT_2200; 2867 req_length = REQUEST_ENTRY_CNT_2200; 2868 rsp_length = RESPONSE_ENTRY_CNT_2100; 2869 ha->max_loop_id = SNS_LAST_LOOP_ID_2100; 2870 ha->gid_list_info_size = 4; 2871 ha->flash_conf_off = ~0; 2872 ha->flash_data_off = ~0; 2873 ha->nvram_conf_off = ~0; 2874 ha->nvram_data_off = ~0; 2875 ha->isp_ops = &qla2100_isp_ops; 2876 } else if (IS_QLA23XX(ha)) { 2877 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; 2878 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2879 req_length = REQUEST_ENTRY_CNT_2200; 2880 rsp_length = RESPONSE_ENTRY_CNT_2300; 2881 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2882 ha->gid_list_info_size = 6; 2883 if (IS_QLA2322(ha) || IS_QLA6322(ha)) 2884 ha->optrom_size = OPTROM_SIZE_2322; 2885 ha->flash_conf_off = ~0; 2886 ha->flash_data_off = ~0; 2887 ha->nvram_conf_off = ~0; 2888 ha->nvram_data_off = ~0; 2889 ha->isp_ops = &qla2300_isp_ops; 2890 } else if (IS_QLA24XX_TYPE(ha)) { 2891 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2892 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2893 req_length = REQUEST_ENTRY_CNT_24XX; 2894 rsp_length = RESPONSE_ENTRY_CNT_2300; 2895 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 2896 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2897 ha->init_cb_size = sizeof(struct mid_init_cb_24xx); 2898 ha->gid_list_info_size = 8; 2899 ha->optrom_size = OPTROM_SIZE_24XX; 2900 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; 2901 ha->isp_ops = &qla24xx_isp_ops; 2902 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; 2903 ha->flash_data_off = FARX_ACCESS_FLASH_DATA; 2904 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; 2905 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; 2906 } else if (IS_QLA25XX(ha)) { 2907 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2908 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2909 req_length = REQUEST_ENTRY_CNT_24XX; 2910 rsp_length = RESPONSE_ENTRY_CNT_2300; 2911 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 2912 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2913 ha->init_cb_size = sizeof(struct mid_init_cb_24xx); 2914 ha->gid_list_info_size = 8; 2915 ha->optrom_size = OPTROM_SIZE_25XX; 2916 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 2917 ha->isp_ops = &qla25xx_isp_ops; 2918 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; 2919 ha->flash_data_off = FARX_ACCESS_FLASH_DATA; 2920 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; 2921 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; 2922 } else if (IS_QLA81XX(ha)) { 2923 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2924 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2925 req_length = REQUEST_ENTRY_CNT_24XX; 2926 rsp_length = RESPONSE_ENTRY_CNT_2300; 2927 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 2928 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2929 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 2930 ha->gid_list_info_size = 8; 2931 ha->optrom_size = OPTROM_SIZE_81XX; 2932 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 2933 ha->isp_ops = &qla81xx_isp_ops; 2934 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; 2935 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; 2936 ha->nvram_conf_off = ~0; 2937 ha->nvram_data_off = ~0; 2938 } else if (IS_QLA82XX(ha)) { 2939 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2940 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2941 req_length = REQUEST_ENTRY_CNT_82XX; 2942 rsp_length = RESPONSE_ENTRY_CNT_82XX; 2943 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2944 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 2945 ha->gid_list_info_size = 8; 2946 ha->optrom_size = OPTROM_SIZE_82XX; 2947 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 2948 ha->isp_ops = &qla82xx_isp_ops; 2949 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; 2950 ha->flash_data_off = FARX_ACCESS_FLASH_DATA; 2951 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; 2952 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; 2953 } else if (IS_QLA8044(ha)) { 2954 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2955 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2956 req_length = REQUEST_ENTRY_CNT_82XX; 2957 rsp_length = RESPONSE_ENTRY_CNT_82XX; 2958 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2959 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 2960 ha->gid_list_info_size = 8; 2961 ha->optrom_size = OPTROM_SIZE_83XX; 2962 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 2963 ha->isp_ops = &qla8044_isp_ops; 2964 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; 2965 ha->flash_data_off = FARX_ACCESS_FLASH_DATA; 2966 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; 2967 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; 2968 } else if (IS_QLA83XX(ha)) { 2969 ha->portnum = PCI_FUNC(ha->pdev->devfn); 2970 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 2971 ha->mbx_count = MAILBOX_REGISTER_COUNT; 2972 req_length = REQUEST_ENTRY_CNT_83XX; 2973 rsp_length = RESPONSE_ENTRY_CNT_83XX; 2974 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 2975 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 2976 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 2977 ha->gid_list_info_size = 8; 2978 ha->optrom_size = OPTROM_SIZE_83XX; 2979 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 2980 ha->isp_ops = &qla83xx_isp_ops; 2981 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; 2982 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; 2983 ha->nvram_conf_off = ~0; 2984 ha->nvram_data_off = ~0; 2985 } else if (IS_QLAFX00(ha)) { 2986 ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00; 2987 ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00; 2988 ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00; 2989 req_length = REQUEST_ENTRY_CNT_FX00; 2990 rsp_length = RESPONSE_ENTRY_CNT_FX00; 2991 ha->isp_ops = &qlafx00_isp_ops; 2992 ha->port_down_retry_count = 30; /* default value */ 2993 ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL; 2994 ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL; 2995 ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL; 2996 ha->mr.fw_hbt_en = 1; 2997 ha->mr.host_info_resend = false; 2998 ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL; 2999 } else if (IS_QLA27XX(ha)) { 3000 ha->portnum = PCI_FUNC(ha->pdev->devfn); 3001 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 3002 ha->mbx_count = MAILBOX_REGISTER_COUNT; 3003 req_length = REQUEST_ENTRY_CNT_83XX; 3004 rsp_length = RESPONSE_ENTRY_CNT_83XX; 3005 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 3006 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 3007 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 3008 ha->gid_list_info_size = 8; 3009 ha->optrom_size = OPTROM_SIZE_83XX; 3010 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 3011 ha->isp_ops = &qla27xx_isp_ops; 3012 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; 3013 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; 3014 ha->nvram_conf_off = ~0; 3015 ha->nvram_data_off = ~0; 3016 } else if (IS_QLA28XX(ha)) { 3017 ha->portnum = PCI_FUNC(ha->pdev->devfn); 3018 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; 3019 ha->mbx_count = MAILBOX_REGISTER_COUNT; 3020 req_length = REQUEST_ENTRY_CNT_24XX; 3021 rsp_length = RESPONSE_ENTRY_CNT_2300; 3022 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; 3023 ha->max_loop_id = SNS_LAST_LOOP_ID_2300; 3024 ha->init_cb_size = sizeof(struct mid_init_cb_81xx); 3025 ha->gid_list_info_size = 8; 3026 ha->optrom_size = OPTROM_SIZE_28XX; 3027 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; 3028 ha->isp_ops = &qla27xx_isp_ops; 3029 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_28XX; 3030 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_28XX; 3031 ha->nvram_conf_off = ~0; 3032 ha->nvram_data_off = ~0; 3033 } 3034 3035 ql_dbg_pci(ql_dbg_init, pdev, 0x001e, 3036 "mbx_count=%d, req_length=%d, " 3037 "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, " 3038 "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, " 3039 "max_fibre_devices=%d.\n", 3040 ha->mbx_count, req_length, rsp_length, ha->max_loop_id, 3041 ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size, 3042 ha->nvram_npiv_size, ha->max_fibre_devices); 3043 ql_dbg_pci(ql_dbg_init, pdev, 0x001f, 3044 "isp_ops=%p, flash_conf_off=%d, " 3045 "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n", 3046 ha->isp_ops, ha->flash_conf_off, ha->flash_data_off, 3047 ha->nvram_conf_off, ha->nvram_data_off); 3048 3049 /* Configure PCI I/O space */ 3050 ret = ha->isp_ops->iospace_config(ha); 3051 if (ret) 3052 goto iospace_config_failed; 3053 3054 ql_log_pci(ql_log_info, pdev, 0x001d, 3055 "Found an ISP%04X irq %d iobase 0x%p.\n", 3056 pdev->device, pdev->irq, ha->iobase); 3057 mutex_init(&ha->vport_lock); 3058 mutex_init(&ha->mq_lock); 3059 init_completion(&ha->mbx_cmd_comp); 3060 complete(&ha->mbx_cmd_comp); 3061 init_completion(&ha->mbx_intr_comp); 3062 init_completion(&ha->dcbx_comp); 3063 init_completion(&ha->lb_portup_comp); 3064 3065 set_bit(0, (unsigned long *) ha->vp_idx_map); 3066 3067 qla2x00_config_dma_addressing(ha); 3068 ql_dbg_pci(ql_dbg_init, pdev, 0x0020, 3069 "64 Bit addressing is %s.\n", 3070 ha->flags.enable_64bit_addressing ? "enable" : 3071 "disable"); 3072 ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); 3073 if (ret) { 3074 ql_log_pci(ql_log_fatal, pdev, 0x0031, 3075 "Failed to allocate memory for adapter, aborting.\n"); 3076 3077 goto probe_hw_failed; 3078 } 3079 3080 req->max_q_depth = MAX_Q_DEPTH; 3081 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) 3082 req->max_q_depth = ql2xmaxqdepth; 3083 3084 3085 base_vha = qla2x00_create_host(sht, ha); 3086 if (!base_vha) { 3087 ret = -ENOMEM; 3088 goto probe_hw_failed; 3089 } 3090 3091 pci_set_drvdata(pdev, base_vha); 3092 set_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags); 3093 3094 host = base_vha->host; 3095 base_vha->req = req; 3096 if (IS_QLA2XXX_MIDTYPE(ha)) 3097 base_vha->mgmt_svr_loop_id = 3098 qla2x00_reserve_mgmt_server_loop_id(base_vha); 3099 else 3100 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + 3101 base_vha->vp_idx; 3102 3103 /* Setup fcport template structure. */ 3104 ha->mr.fcport.vha = base_vha; 3105 ha->mr.fcport.port_type = FCT_UNKNOWN; 3106 ha->mr.fcport.loop_id = FC_NO_LOOP_ID; 3107 qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED); 3108 ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED; 3109 ha->mr.fcport.scan_state = 1; 3110 3111 /* Set the SG table size based on ISP type */ 3112 if (!IS_FWI2_CAPABLE(ha)) { 3113 if (IS_QLA2100(ha)) 3114 host->sg_tablesize = 32; 3115 } else { 3116 if (!IS_QLA82XX(ha)) 3117 host->sg_tablesize = QLA_SG_ALL; 3118 } 3119 host->max_id = ha->max_fibre_devices; 3120 host->cmd_per_lun = 3; 3121 host->unique_id = host->host_no; 3122 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) 3123 host->max_cmd_len = 32; 3124 else 3125 host->max_cmd_len = MAX_CMDSZ; 3126 host->max_channel = MAX_BUSES - 1; 3127 /* Older HBAs support only 16-bit LUNs */ 3128 if (!IS_QLAFX00(ha) && !IS_FWI2_CAPABLE(ha) && 3129 ql2xmaxlun > 0xffff) 3130 host->max_lun = 0xffff; 3131 else 3132 host->max_lun = ql2xmaxlun; 3133 host->transportt = qla2xxx_transport_template; 3134 sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC); 3135 3136 ql_dbg(ql_dbg_init, base_vha, 0x0033, 3137 "max_id=%d this_id=%d " 3138 "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d " 3139 "max_lun=%llu transportt=%p, vendor_id=%llu.\n", host->max_id, 3140 host->this_id, host->cmd_per_lun, host->unique_id, 3141 host->max_cmd_len, host->max_channel, host->max_lun, 3142 host->transportt, sht->vendor_id); 3143 3144 INIT_WORK(&base_vha->iocb_work, qla2x00_iocb_work_fn); 3145 3146 /* Set up the irqs */ 3147 ret = qla2x00_request_irqs(ha, rsp); 3148 if (ret) 3149 goto probe_failed; 3150 3151 /* Alloc arrays of request and response ring ptrs */ 3152 ret = qla2x00_alloc_queues(ha, req, rsp); 3153 if (ret) { 3154 ql_log(ql_log_fatal, base_vha, 0x003d, 3155 "Failed to allocate memory for queue pointers..." 3156 "aborting.\n"); 3157 goto probe_failed; 3158 } 3159 3160 if (ha->mqenable) { 3161 /* number of hardware queues supported by blk/scsi-mq*/ 3162 host->nr_hw_queues = ha->max_qpairs; 3163 3164 ql_dbg(ql_dbg_init, base_vha, 0x0192, 3165 "blk/scsi-mq enabled, HW queues = %d.\n", host->nr_hw_queues); 3166 } else { 3167 if (ql2xnvmeenable) { 3168 host->nr_hw_queues = ha->max_qpairs; 3169 ql_dbg(ql_dbg_init, base_vha, 0x0194, 3170 "FC-NVMe support is enabled, HW queues=%d\n", 3171 host->nr_hw_queues); 3172 } else { 3173 ql_dbg(ql_dbg_init, base_vha, 0x0193, 3174 "blk/scsi-mq disabled.\n"); 3175 } 3176 } 3177 3178 qlt_probe_one_stage1(base_vha, ha); 3179 3180 pci_save_state(pdev); 3181 3182 /* Assign back pointers */ 3183 rsp->req = req; 3184 req->rsp = rsp; 3185 3186 if (IS_QLAFX00(ha)) { 3187 ha->rsp_q_map[0] = rsp; 3188 ha->req_q_map[0] = req; 3189 set_bit(0, ha->req_qid_map); 3190 set_bit(0, ha->rsp_qid_map); 3191 } 3192 3193 /* FWI2-capable only. */ 3194 req->req_q_in = &ha->iobase->isp24.req_q_in; 3195 req->req_q_out = &ha->iobase->isp24.req_q_out; 3196 rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; 3197 rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; 3198 if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha) || 3199 IS_QLA28XX(ha)) { 3200 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; 3201 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; 3202 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; 3203 rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; 3204 } 3205 3206 if (IS_QLAFX00(ha)) { 3207 req->req_q_in = &ha->iobase->ispfx00.req_q_in; 3208 req->req_q_out = &ha->iobase->ispfx00.req_q_out; 3209 rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in; 3210 rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out; 3211 } 3212 3213 if (IS_P3P_TYPE(ha)) { 3214 req->req_q_out = &ha->iobase->isp82.req_q_out[0]; 3215 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0]; 3216 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0]; 3217 } 3218 3219 ql_dbg(ql_dbg_multiq, base_vha, 0xc009, 3220 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", 3221 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); 3222 ql_dbg(ql_dbg_multiq, base_vha, 0xc00a, 3223 "req->req_q_in=%p req->req_q_out=%p " 3224 "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", 3225 req->req_q_in, req->req_q_out, 3226 rsp->rsp_q_in, rsp->rsp_q_out); 3227 ql_dbg(ql_dbg_init, base_vha, 0x003e, 3228 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", 3229 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); 3230 ql_dbg(ql_dbg_init, base_vha, 0x003f, 3231 "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", 3232 req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out); 3233 3234 ha->wq = alloc_workqueue("qla2xxx_wq", 0, 0); 3235 3236 if (ha->isp_ops->initialize_adapter(base_vha)) { 3237 ql_log(ql_log_fatal, base_vha, 0x00d6, 3238 "Failed to initialize adapter - Adapter flags %x.\n", 3239 base_vha->device_flags); 3240 3241 if (IS_QLA82XX(ha)) { 3242 qla82xx_idc_lock(ha); 3243 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, 3244 QLA8XXX_DEV_FAILED); 3245 qla82xx_idc_unlock(ha); 3246 ql_log(ql_log_fatal, base_vha, 0x00d7, 3247 "HW State: FAILED.\n"); 3248 } else if (IS_QLA8044(ha)) { 3249 qla8044_idc_lock(ha); 3250 qla8044_wr_direct(base_vha, 3251 QLA8044_CRB_DEV_STATE_INDEX, 3252 QLA8XXX_DEV_FAILED); 3253 qla8044_idc_unlock(ha); 3254 ql_log(ql_log_fatal, base_vha, 0x0150, 3255 "HW State: FAILED.\n"); 3256 } 3257 3258 ret = -ENODEV; 3259 goto probe_failed; 3260 } 3261 3262 if (IS_QLAFX00(ha)) 3263 host->can_queue = QLAFX00_MAX_CANQUEUE; 3264 else 3265 host->can_queue = req->num_outstanding_cmds - 10; 3266 3267 ql_dbg(ql_dbg_init, base_vha, 0x0032, 3268 "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n", 3269 host->can_queue, base_vha->req, 3270 base_vha->mgmt_svr_loop_id, host->sg_tablesize); 3271 3272 if (ha->mqenable) { 3273 bool startit = false; 3274 3275 if (QLA_TGT_MODE_ENABLED()) 3276 startit = false; 3277 3278 if (ql2x_ini_mode == QLA2XXX_INI_MODE_ENABLED) 3279 startit = true; 3280 3281 /* Create start of day qpairs for Block MQ */ 3282 for (i = 0; i < ha->max_qpairs; i++) 3283 qla2xxx_create_qpair(base_vha, 5, 0, startit); 3284 } 3285 3286 if (ha->flags.running_gold_fw) 3287 goto skip_dpc; 3288 3289 /* 3290 * Startup the kernel thread for this host adapter 3291 */ 3292 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, 3293 "%s_dpc", base_vha->host_str); 3294 if (IS_ERR(ha->dpc_thread)) { 3295 ql_log(ql_log_fatal, base_vha, 0x00ed, 3296 "Failed to start DPC thread.\n"); 3297 ret = PTR_ERR(ha->dpc_thread); 3298 ha->dpc_thread = NULL; 3299 goto probe_failed; 3300 } 3301 ql_dbg(ql_dbg_init, base_vha, 0x00ee, 3302 "DPC thread started successfully.\n"); 3303 3304 /* 3305 * If we're not coming up in initiator mode, we might sit for 3306 * a while without waking up the dpc thread, which leads to a 3307 * stuck process warning. So just kick the dpc once here and 3308 * let the kthread start (and go back to sleep in qla2x00_do_dpc). 3309 */ 3310 qla2xxx_wake_dpc(base_vha); 3311 3312 INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error); 3313 3314 if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) { 3315 sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no); 3316 ha->dpc_lp_wq = create_singlethread_workqueue(wq_name); 3317 INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen); 3318 3319 sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no); 3320 ha->dpc_hp_wq = create_singlethread_workqueue(wq_name); 3321 INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work); 3322 INIT_WORK(&ha->idc_state_handler, 3323 qla83xx_idc_state_handler_work); 3324 INIT_WORK(&ha->nic_core_unrecoverable, 3325 qla83xx_nic_core_unrecoverable_work); 3326 } 3327 3328 skip_dpc: 3329 list_add_tail(&base_vha->list, &ha->vp_list); 3330 base_vha->host->irq = ha->pdev->irq; 3331 3332 /* Initialized the timer */ 3333 qla2x00_start_timer(base_vha, WATCH_INTERVAL); 3334 ql_dbg(ql_dbg_init, base_vha, 0x00ef, 3335 "Started qla2x00_timer with " 3336 "interval=%d.\n", WATCH_INTERVAL); 3337 ql_dbg(ql_dbg_init, base_vha, 0x00f0, 3338 "Detected hba at address=%p.\n", 3339 ha); 3340 3341 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { 3342 if (ha->fw_attributes & BIT_4) { 3343 int prot = 0, guard; 3344 3345 base_vha->flags.difdix_supported = 1; 3346 ql_dbg(ql_dbg_init, base_vha, 0x00f1, 3347 "Registering for DIF/DIX type 1 and 3 protection.\n"); 3348 if (ql2xenabledif == 1) 3349 prot = SHOST_DIX_TYPE0_PROTECTION; 3350 if (ql2xprotmask) 3351 scsi_host_set_prot(host, ql2xprotmask); 3352 else 3353 scsi_host_set_prot(host, 3354 prot | SHOST_DIF_TYPE1_PROTECTION 3355 | SHOST_DIF_TYPE2_PROTECTION 3356 | SHOST_DIF_TYPE3_PROTECTION 3357 | SHOST_DIX_TYPE1_PROTECTION 3358 | SHOST_DIX_TYPE2_PROTECTION 3359 | SHOST_DIX_TYPE3_PROTECTION); 3360 3361 guard = SHOST_DIX_GUARD_CRC; 3362 3363 if (IS_PI_IPGUARD_CAPABLE(ha) && 3364 (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha))) 3365 guard |= SHOST_DIX_GUARD_IP; 3366 3367 if (ql2xprotguard) 3368 scsi_host_set_guard(host, ql2xprotguard); 3369 else 3370 scsi_host_set_guard(host, guard); 3371 } else 3372 base_vha->flags.difdix_supported = 0; 3373 } 3374 3375 ha->isp_ops->enable_intrs(ha); 3376 3377 if (IS_QLAFX00(ha)) { 3378 ret = qlafx00_fx_disc(base_vha, 3379 &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO); 3380 host->sg_tablesize = (ha->mr.extended_io_enabled) ? 3381 QLA_SG_ALL : 128; 3382 } 3383 3384 ret = scsi_add_host(host, &pdev->dev); 3385 if (ret) 3386 goto probe_failed; 3387 3388 base_vha->flags.init_done = 1; 3389 base_vha->flags.online = 1; 3390 ha->prev_minidump_failed = 0; 3391 3392 ql_dbg(ql_dbg_init, base_vha, 0x00f2, 3393 "Init done and hba is online.\n"); 3394 3395 if (qla_ini_mode_enabled(base_vha) || 3396 qla_dual_mode_enabled(base_vha)) 3397 scsi_scan_host(host); 3398 else 3399 ql_dbg(ql_dbg_init, base_vha, 0x0122, 3400 "skipping scsi_scan_host() for non-initiator port\n"); 3401 3402 qla2x00_alloc_sysfs_attr(base_vha); 3403 3404 if (IS_QLAFX00(ha)) { 3405 ret = qlafx00_fx_disc(base_vha, 3406 &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO); 3407 3408 /* Register system information */ 3409 ret = qlafx00_fx_disc(base_vha, 3410 &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO); 3411 } 3412 3413 qla2x00_init_host_attr(base_vha); 3414 3415 qla2x00_dfs_setup(base_vha); 3416 3417 ql_log(ql_log_info, base_vha, 0x00fb, 3418 "QLogic %s - %s.\n", ha->model_number, ha->model_desc); 3419 ql_log(ql_log_info, base_vha, 0x00fc, 3420 "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n", 3421 pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info), 3422 pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-', 3423 base_vha->host_no, 3424 ha->isp_ops->fw_version_str(base_vha, fw_str, sizeof(fw_str))); 3425 3426 qlt_add_target(ha, base_vha); 3427 3428 clear_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags); 3429 3430 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 3431 return -ENODEV; 3432 3433 if (ha->flags.detected_lr_sfp) { 3434 ql_log(ql_log_info, base_vha, 0xffff, 3435 "Reset chip to pick up LR SFP setting\n"); 3436 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); 3437 qla2xxx_wake_dpc(base_vha); 3438 } 3439 3440 return 0; 3441 3442 probe_failed: 3443 if (base_vha->gnl.l) { 3444 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size, 3445 base_vha->gnl.l, base_vha->gnl.ldma); 3446 base_vha->gnl.l = NULL; 3447 } 3448 3449 if (base_vha->timer_active) 3450 qla2x00_stop_timer(base_vha); 3451 base_vha->flags.online = 0; 3452 if (ha->dpc_thread) { 3453 struct task_struct *t = ha->dpc_thread; 3454 3455 ha->dpc_thread = NULL; 3456 kthread_stop(t); 3457 } 3458 3459 qla2x00_free_device(base_vha); 3460 scsi_host_put(base_vha->host); 3461 /* 3462 * Need to NULL out local req/rsp after 3463 * qla2x00_free_device => qla2x00_free_queues frees 3464 * what these are pointing to. Or else we'll 3465 * fall over below in qla2x00_free_req/rsp_que. 3466 */ 3467 req = NULL; 3468 rsp = NULL; 3469 3470 probe_hw_failed: 3471 qla2x00_mem_free(ha); 3472 qla2x00_free_req_que(ha, req); 3473 qla2x00_free_rsp_que(ha, rsp); 3474 qla2x00_clear_drv_active(ha); 3475 3476 iospace_config_failed: 3477 if (IS_P3P_TYPE(ha)) { 3478 if (!ha->nx_pcibase) 3479 iounmap((device_reg_t *)ha->nx_pcibase); 3480 if (!ql2xdbwr) 3481 iounmap((device_reg_t *)ha->nxdb_wr_ptr); 3482 } else { 3483 if (ha->iobase) 3484 iounmap(ha->iobase); 3485 if (ha->cregbase) 3486 iounmap(ha->cregbase); 3487 } 3488 pci_release_selected_regions(ha->pdev, ha->bars); 3489 kfree(ha); 3490 3491 disable_device: 3492 pci_disable_device(pdev); 3493 return ret; 3494 } 3495 3496 static void 3497 qla2x00_shutdown(struct pci_dev *pdev) 3498 { 3499 scsi_qla_host_t *vha; 3500 struct qla_hw_data *ha; 3501 3502 vha = pci_get_drvdata(pdev); 3503 ha = vha->hw; 3504 3505 ql_log(ql_log_info, vha, 0xfffa, 3506 "Adapter shutdown\n"); 3507 3508 /* 3509 * Prevent future board_disable and wait 3510 * until any pending board_disable has completed. 3511 */ 3512 set_bit(PFLG_DRIVER_REMOVING, &vha->pci_flags); 3513 cancel_work_sync(&ha->board_disable); 3514 3515 if (!atomic_read(&pdev->enable_cnt)) 3516 return; 3517 3518 /* Notify ISPFX00 firmware */ 3519 if (IS_QLAFX00(ha)) 3520 qlafx00_driver_shutdown(vha, 20); 3521 3522 /* Turn-off FCE trace */ 3523 if (ha->flags.fce_enabled) { 3524 qla2x00_disable_fce_trace(vha, NULL, NULL); 3525 ha->flags.fce_enabled = 0; 3526 } 3527 3528 /* Turn-off EFT trace */ 3529 if (ha->eft) 3530 qla2x00_disable_eft_trace(vha); 3531 3532 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) || 3533 IS_QLA28XX(ha)) { 3534 if (ha->flags.fw_started) 3535 qla2x00_abort_isp_cleanup(vha); 3536 } else { 3537 /* Stop currently executing firmware. */ 3538 qla2x00_try_to_stop_firmware(vha); 3539 } 3540 3541 /* Turn adapter off line */ 3542 vha->flags.online = 0; 3543 3544 /* turn-off interrupts on the card */ 3545 if (ha->interrupts_on) { 3546 vha->flags.init_done = 0; 3547 ha->isp_ops->disable_intrs(ha); 3548 } 3549 3550 qla2x00_free_irqs(vha); 3551 3552 qla2x00_free_fw_dump(ha); 3553 3554 pci_disable_device(pdev); 3555 ql_log(ql_log_info, vha, 0xfffe, 3556 "Adapter shutdown successfully.\n"); 3557 } 3558 3559 /* Deletes all the virtual ports for a given ha */ 3560 static void 3561 qla2x00_delete_all_vps(struct qla_hw_data *ha, scsi_qla_host_t *base_vha) 3562 { 3563 scsi_qla_host_t *vha; 3564 unsigned long flags; 3565 3566 mutex_lock(&ha->vport_lock); 3567 while (ha->cur_vport_count) { 3568 spin_lock_irqsave(&ha->vport_slock, flags); 3569 3570 BUG_ON(base_vha->list.next == &ha->vp_list); 3571 /* This assumes first entry in ha->vp_list is always base vha */ 3572 vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list); 3573 scsi_host_get(vha->host); 3574 3575 spin_unlock_irqrestore(&ha->vport_slock, flags); 3576 mutex_unlock(&ha->vport_lock); 3577 3578 qla_nvme_delete(vha); 3579 3580 fc_vport_terminate(vha->fc_vport); 3581 scsi_host_put(vha->host); 3582 3583 mutex_lock(&ha->vport_lock); 3584 } 3585 mutex_unlock(&ha->vport_lock); 3586 } 3587 3588 /* Stops all deferred work threads */ 3589 static void 3590 qla2x00_destroy_deferred_work(struct qla_hw_data *ha) 3591 { 3592 /* Cancel all work and destroy DPC workqueues */ 3593 if (ha->dpc_lp_wq) { 3594 cancel_work_sync(&ha->idc_aen); 3595 destroy_workqueue(ha->dpc_lp_wq); 3596 ha->dpc_lp_wq = NULL; 3597 } 3598 3599 if (ha->dpc_hp_wq) { 3600 cancel_work_sync(&ha->nic_core_reset); 3601 cancel_work_sync(&ha->idc_state_handler); 3602 cancel_work_sync(&ha->nic_core_unrecoverable); 3603 destroy_workqueue(ha->dpc_hp_wq); 3604 ha->dpc_hp_wq = NULL; 3605 } 3606 3607 /* Kill the kernel thread for this host */ 3608 if (ha->dpc_thread) { 3609 struct task_struct *t = ha->dpc_thread; 3610 3611 /* 3612 * qla2xxx_wake_dpc checks for ->dpc_thread 3613 * so we need to zero it out. 3614 */ 3615 ha->dpc_thread = NULL; 3616 kthread_stop(t); 3617 } 3618 } 3619 3620 static void 3621 qla2x00_unmap_iobases(struct qla_hw_data *ha) 3622 { 3623 if (IS_QLA82XX(ha)) { 3624 3625 iounmap((device_reg_t *)ha->nx_pcibase); 3626 if (!ql2xdbwr) 3627 iounmap((device_reg_t *)ha->nxdb_wr_ptr); 3628 } else { 3629 if (ha->iobase) 3630 iounmap(ha->iobase); 3631 3632 if (ha->cregbase) 3633 iounmap(ha->cregbase); 3634 3635 if (ha->mqiobase) 3636 iounmap(ha->mqiobase); 3637 3638 if ((IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) && 3639 ha->msixbase) 3640 iounmap(ha->msixbase); 3641 } 3642 } 3643 3644 static void 3645 qla2x00_clear_drv_active(struct qla_hw_data *ha) 3646 { 3647 if (IS_QLA8044(ha)) { 3648 qla8044_idc_lock(ha); 3649 qla8044_clear_drv_active(ha); 3650 qla8044_idc_unlock(ha); 3651 } else if (IS_QLA82XX(ha)) { 3652 qla82xx_idc_lock(ha); 3653 qla82xx_clear_drv_active(ha); 3654 qla82xx_idc_unlock(ha); 3655 } 3656 } 3657 3658 static void 3659 qla2x00_remove_one(struct pci_dev *pdev) 3660 { 3661 scsi_qla_host_t *base_vha; 3662 struct qla_hw_data *ha; 3663 3664 base_vha = pci_get_drvdata(pdev); 3665 ha = base_vha->hw; 3666 ql_log(ql_log_info, base_vha, 0xb079, 3667 "Removing driver\n"); 3668 3669 /* Indicate device removal to prevent future board_disable and wait 3670 * until any pending board_disable has completed. */ 3671 set_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags); 3672 cancel_work_sync(&ha->board_disable); 3673 3674 /* 3675 * If the PCI device is disabled then there was a PCI-disconnect and 3676 * qla2x00_disable_board_on_pci_error has taken care of most of the 3677 * resources. 3678 */ 3679 if (!atomic_read(&pdev->enable_cnt)) { 3680 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size, 3681 base_vha->gnl.l, base_vha->gnl.ldma); 3682 base_vha->gnl.l = NULL; 3683 scsi_host_put(base_vha->host); 3684 kfree(ha); 3685 pci_set_drvdata(pdev, NULL); 3686 return; 3687 } 3688 qla2x00_wait_for_hba_ready(base_vha); 3689 3690 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) || 3691 IS_QLA28XX(ha)) { 3692 if (ha->flags.fw_started) 3693 qla2x00_abort_isp_cleanup(base_vha); 3694 } else if (!IS_QLAFX00(ha)) { 3695 if (IS_QLA8031(ha)) { 3696 ql_dbg(ql_dbg_p3p, base_vha, 0xb07e, 3697 "Clearing fcoe driver presence.\n"); 3698 if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS) 3699 ql_dbg(ql_dbg_p3p, base_vha, 0xb079, 3700 "Error while clearing DRV-Presence.\n"); 3701 } 3702 3703 qla2x00_try_to_stop_firmware(base_vha); 3704 } 3705 3706 qla2x00_wait_for_sess_deletion(base_vha); 3707 3708 /* 3709 * if UNLOAD flag is already set, then continue unload, 3710 * where it was set first. 3711 */ 3712 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 3713 return; 3714 3715 set_bit(UNLOADING, &base_vha->dpc_flags); 3716 3717 qla_nvme_delete(base_vha); 3718 3719 dma_free_coherent(&ha->pdev->dev, 3720 base_vha->gnl.size, base_vha->gnl.l, base_vha->gnl.ldma); 3721 3722 base_vha->gnl.l = NULL; 3723 3724 vfree(base_vha->scan.l); 3725 3726 if (IS_QLAFX00(ha)) 3727 qlafx00_driver_shutdown(base_vha, 20); 3728 3729 qla2x00_delete_all_vps(ha, base_vha); 3730 3731 qla2x00_dfs_remove(base_vha); 3732 3733 qla84xx_put_chip(base_vha); 3734 3735 /* Disable timer */ 3736 if (base_vha->timer_active) 3737 qla2x00_stop_timer(base_vha); 3738 3739 base_vha->flags.online = 0; 3740 3741 /* free DMA memory */ 3742 if (ha->exlogin_buf) 3743 qla2x00_free_exlogin_buffer(ha); 3744 3745 /* free DMA memory */ 3746 if (ha->exchoffld_buf) 3747 qla2x00_free_exchoffld_buffer(ha); 3748 3749 qla2x00_destroy_deferred_work(ha); 3750 3751 qlt_remove_target(ha, base_vha); 3752 3753 qla2x00_free_sysfs_attr(base_vha, true); 3754 3755 fc_remove_host(base_vha->host); 3756 qlt_remove_target_resources(ha); 3757 3758 scsi_remove_host(base_vha->host); 3759 3760 qla2x00_free_device(base_vha); 3761 3762 qla2x00_clear_drv_active(ha); 3763 3764 scsi_host_put(base_vha->host); 3765 3766 qla2x00_unmap_iobases(ha); 3767 3768 pci_release_selected_regions(ha->pdev, ha->bars); 3769 kfree(ha); 3770 3771 pci_disable_pcie_error_reporting(pdev); 3772 3773 pci_disable_device(pdev); 3774 } 3775 3776 static void 3777 qla2x00_free_device(scsi_qla_host_t *vha) 3778 { 3779 struct qla_hw_data *ha = vha->hw; 3780 3781 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); 3782 3783 /* Disable timer */ 3784 if (vha->timer_active) 3785 qla2x00_stop_timer(vha); 3786 3787 qla25xx_delete_queues(vha); 3788 vha->flags.online = 0; 3789 3790 /* turn-off interrupts on the card */ 3791 if (ha->interrupts_on) { 3792 vha->flags.init_done = 0; 3793 ha->isp_ops->disable_intrs(ha); 3794 } 3795 3796 qla2x00_free_fcports(vha); 3797 3798 qla2x00_free_irqs(vha); 3799 3800 /* Flush the work queue and remove it */ 3801 if (ha->wq) { 3802 flush_workqueue(ha->wq); 3803 destroy_workqueue(ha->wq); 3804 ha->wq = NULL; 3805 } 3806 3807 3808 qla2x00_mem_free(ha); 3809 3810 qla82xx_md_free(vha); 3811 3812 qla2x00_free_queues(ha); 3813 } 3814 3815 void qla2x00_free_fcports(struct scsi_qla_host *vha) 3816 { 3817 fc_port_t *fcport, *tfcport; 3818 3819 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) 3820 qla2x00_free_fcport(fcport); 3821 } 3822 3823 static inline void 3824 qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport, 3825 int defer) 3826 { 3827 struct fc_rport *rport; 3828 scsi_qla_host_t *base_vha; 3829 unsigned long flags; 3830 3831 if (!fcport->rport) 3832 return; 3833 3834 rport = fcport->rport; 3835 if (defer) { 3836 base_vha = pci_get_drvdata(vha->hw->pdev); 3837 spin_lock_irqsave(vha->host->host_lock, flags); 3838 fcport->drport = rport; 3839 spin_unlock_irqrestore(vha->host->host_lock, flags); 3840 qlt_do_generation_tick(vha, &base_vha->total_fcport_update_gen); 3841 set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); 3842 qla2xxx_wake_dpc(base_vha); 3843 } else { 3844 int now; 3845 3846 if (rport) { 3847 ql_dbg(ql_dbg_disc, fcport->vha, 0x2109, 3848 "%s %8phN. rport %p roles %x\n", 3849 __func__, fcport->port_name, rport, 3850 rport->roles); 3851 fc_remote_port_delete(rport); 3852 } 3853 qlt_do_generation_tick(vha, &now); 3854 } 3855 } 3856 3857 /* 3858 * qla2x00_mark_device_lost Updates fcport state when device goes offline. 3859 * 3860 * Input: ha = adapter block pointer. fcport = port structure pointer. 3861 * 3862 * Return: None. 3863 * 3864 * Context: 3865 */ 3866 void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport, 3867 int do_login, int defer) 3868 { 3869 if (IS_QLAFX00(vha->hw)) { 3870 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); 3871 qla2x00_schedule_rport_del(vha, fcport, defer); 3872 return; 3873 } 3874 3875 if (atomic_read(&fcport->state) == FCS_ONLINE && 3876 vha->vp_idx == fcport->vha->vp_idx) { 3877 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); 3878 qla2x00_schedule_rport_del(vha, fcport, defer); 3879 } 3880 /* 3881 * We may need to retry the login, so don't change the state of the 3882 * port but do the retries. 3883 */ 3884 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) 3885 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); 3886 3887 if (!do_login) 3888 return; 3889 3890 set_bit(RELOGIN_NEEDED, &vha->dpc_flags); 3891 } 3892 3893 /* 3894 * qla2x00_mark_all_devices_lost 3895 * Updates fcport state when device goes offline. 3896 * 3897 * Input: 3898 * ha = adapter block pointer. 3899 * fcport = port structure pointer. 3900 * 3901 * Return: 3902 * None. 3903 * 3904 * Context: 3905 */ 3906 void 3907 qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) 3908 { 3909 fc_port_t *fcport; 3910 3911 ql_dbg(ql_dbg_disc, vha, 0x20f1, 3912 "Mark all dev lost\n"); 3913 3914 list_for_each_entry(fcport, &vha->vp_fcports, list) { 3915 fcport->scan_state = 0; 3916 qlt_schedule_sess_for_deletion(fcport); 3917 3918 if (vha->vp_idx != 0 && vha->vp_idx != fcport->vha->vp_idx) 3919 continue; 3920 3921 /* 3922 * No point in marking the device as lost, if the device is 3923 * already DEAD. 3924 */ 3925 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) 3926 continue; 3927 if (atomic_read(&fcport->state) == FCS_ONLINE) { 3928 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); 3929 if (defer) 3930 qla2x00_schedule_rport_del(vha, fcport, defer); 3931 else if (vha->vp_idx == fcport->vha->vp_idx) 3932 qla2x00_schedule_rport_del(vha, fcport, defer); 3933 } 3934 } 3935 } 3936 3937 static void qla2x00_set_reserved_loop_ids(struct qla_hw_data *ha) 3938 { 3939 int i; 3940 3941 if (IS_FWI2_CAPABLE(ha)) 3942 return; 3943 3944 for (i = 0; i < SNS_FIRST_LOOP_ID; i++) 3945 set_bit(i, ha->loop_id_map); 3946 set_bit(MANAGEMENT_SERVER, ha->loop_id_map); 3947 set_bit(BROADCAST, ha->loop_id_map); 3948 } 3949 3950 /* 3951 * qla2x00_mem_alloc 3952 * Allocates adapter memory. 3953 * 3954 * Returns: 3955 * 0 = success. 3956 * !0 = failure. 3957 */ 3958 static int 3959 qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, 3960 struct req_que **req, struct rsp_que **rsp) 3961 { 3962 char name[16]; 3963 3964 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size, 3965 &ha->init_cb_dma, GFP_KERNEL); 3966 if (!ha->init_cb) 3967 goto fail; 3968 3969 if (qlt_mem_alloc(ha) < 0) 3970 goto fail_free_init_cb; 3971 3972 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, 3973 qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL); 3974 if (!ha->gid_list) 3975 goto fail_free_tgt_mem; 3976 3977 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); 3978 if (!ha->srb_mempool) 3979 goto fail_free_gid_list; 3980 3981 if (IS_P3P_TYPE(ha)) { 3982 /* Allocate cache for CT6 Ctx. */ 3983 if (!ctx_cachep) { 3984 ctx_cachep = kmem_cache_create("qla2xxx_ctx", 3985 sizeof(struct ct6_dsd), 0, 3986 SLAB_HWCACHE_ALIGN, NULL); 3987 if (!ctx_cachep) 3988 goto fail_free_srb_mempool; 3989 } 3990 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ, 3991 ctx_cachep); 3992 if (!ha->ctx_mempool) 3993 goto fail_free_srb_mempool; 3994 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021, 3995 "ctx_cachep=%p ctx_mempool=%p.\n", 3996 ctx_cachep, ha->ctx_mempool); 3997 } 3998 3999 /* Get memory for cached NVRAM */ 4000 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); 4001 if (!ha->nvram) 4002 goto fail_free_ctx_mempool; 4003 4004 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, 4005 ha->pdev->device); 4006 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, 4007 DMA_POOL_SIZE, 8, 0); 4008 if (!ha->s_dma_pool) 4009 goto fail_free_nvram; 4010 4011 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022, 4012 "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n", 4013 ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool); 4014 4015 if (IS_P3P_TYPE(ha) || ql2xenabledif) { 4016 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev, 4017 DSD_LIST_DMA_POOL_SIZE, 8, 0); 4018 if (!ha->dl_dma_pool) { 4019 ql_log_pci(ql_log_fatal, ha->pdev, 0x0023, 4020 "Failed to allocate memory for dl_dma_pool.\n"); 4021 goto fail_s_dma_pool; 4022 } 4023 4024 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev, 4025 FCP_CMND_DMA_POOL_SIZE, 8, 0); 4026 if (!ha->fcp_cmnd_dma_pool) { 4027 ql_log_pci(ql_log_fatal, ha->pdev, 0x0024, 4028 "Failed to allocate memory for fcp_cmnd_dma_pool.\n"); 4029 goto fail_dl_dma_pool; 4030 } 4031 4032 if (ql2xenabledif) { 4033 u64 bufsize = DIF_BUNDLING_DMA_POOL_SIZE; 4034 struct dsd_dma *dsd, *nxt; 4035 uint i; 4036 /* Creata a DMA pool of buffers for DIF bundling */ 4037 ha->dif_bundl_pool = dma_pool_create(name, 4038 &ha->pdev->dev, DIF_BUNDLING_DMA_POOL_SIZE, 8, 0); 4039 if (!ha->dif_bundl_pool) { 4040 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024, 4041 "%s: failed create dif_bundl_pool\n", 4042 __func__); 4043 goto fail_dif_bundl_dma_pool; 4044 } 4045 4046 INIT_LIST_HEAD(&ha->pool.good.head); 4047 INIT_LIST_HEAD(&ha->pool.unusable.head); 4048 ha->pool.good.count = 0; 4049 ha->pool.unusable.count = 0; 4050 for (i = 0; i < 128; i++) { 4051 dsd = kzalloc(sizeof(*dsd), GFP_ATOMIC); 4052 if (!dsd) { 4053 ql_dbg_pci(ql_dbg_init, ha->pdev, 4054 0xe0ee, "%s: failed alloc dsd\n", 4055 __func__); 4056 return 1; 4057 } 4058 ha->dif_bundle_kallocs++; 4059 4060 dsd->dsd_addr = dma_pool_alloc( 4061 ha->dif_bundl_pool, GFP_ATOMIC, 4062 &dsd->dsd_list_dma); 4063 if (!dsd->dsd_addr) { 4064 ql_dbg_pci(ql_dbg_init, ha->pdev, 4065 0xe0ee, 4066 "%s: failed alloc ->dsd_addr\n", 4067 __func__); 4068 kfree(dsd); 4069 ha->dif_bundle_kallocs--; 4070 continue; 4071 } 4072 ha->dif_bundle_dma_allocs++; 4073 4074 /* 4075 * if DMA buffer crosses 4G boundary, 4076 * put it on bad list 4077 */ 4078 if (MSD(dsd->dsd_list_dma) ^ 4079 MSD(dsd->dsd_list_dma + bufsize)) { 4080 list_add_tail(&dsd->list, 4081 &ha->pool.unusable.head); 4082 ha->pool.unusable.count++; 4083 } else { 4084 list_add_tail(&dsd->list, 4085 &ha->pool.good.head); 4086 ha->pool.good.count++; 4087 } 4088 } 4089 4090 /* return the good ones back to the pool */ 4091 list_for_each_entry_safe(dsd, nxt, 4092 &ha->pool.good.head, list) { 4093 list_del(&dsd->list); 4094 dma_pool_free(ha->dif_bundl_pool, 4095 dsd->dsd_addr, dsd->dsd_list_dma); 4096 ha->dif_bundle_dma_allocs--; 4097 kfree(dsd); 4098 ha->dif_bundle_kallocs--; 4099 } 4100 4101 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024, 4102 "%s: dif dma pool (good=%u unusable=%u)\n", 4103 __func__, ha->pool.good.count, 4104 ha->pool.unusable.count); 4105 } 4106 4107 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025, 4108 "dl_dma_pool=%p fcp_cmnd_dma_pool=%p dif_bundl_pool=%p.\n", 4109 ha->dl_dma_pool, ha->fcp_cmnd_dma_pool, 4110 ha->dif_bundl_pool); 4111 } 4112 4113 /* Allocate memory for SNS commands */ 4114 if (IS_QLA2100(ha) || IS_QLA2200(ha)) { 4115 /* Get consistent memory allocated for SNS commands */ 4116 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, 4117 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); 4118 if (!ha->sns_cmd) 4119 goto fail_dma_pool; 4120 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026, 4121 "sns_cmd: %p.\n", ha->sns_cmd); 4122 } else { 4123 /* Get consistent memory allocated for MS IOCB */ 4124 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, 4125 &ha->ms_iocb_dma); 4126 if (!ha->ms_iocb) 4127 goto fail_dma_pool; 4128 /* Get consistent memory allocated for CT SNS commands */ 4129 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, 4130 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); 4131 if (!ha->ct_sns) 4132 goto fail_free_ms_iocb; 4133 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027, 4134 "ms_iocb=%p ct_sns=%p.\n", 4135 ha->ms_iocb, ha->ct_sns); 4136 } 4137 4138 /* Allocate memory for request ring */ 4139 *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); 4140 if (!*req) { 4141 ql_log_pci(ql_log_fatal, ha->pdev, 0x0028, 4142 "Failed to allocate memory for req.\n"); 4143 goto fail_req; 4144 } 4145 (*req)->length = req_len; 4146 (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, 4147 ((*req)->length + 1) * sizeof(request_t), 4148 &(*req)->dma, GFP_KERNEL); 4149 if (!(*req)->ring) { 4150 ql_log_pci(ql_log_fatal, ha->pdev, 0x0029, 4151 "Failed to allocate memory for req_ring.\n"); 4152 goto fail_req_ring; 4153 } 4154 /* Allocate memory for response ring */ 4155 *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); 4156 if (!*rsp) { 4157 ql_log_pci(ql_log_fatal, ha->pdev, 0x002a, 4158 "Failed to allocate memory for rsp.\n"); 4159 goto fail_rsp; 4160 } 4161 (*rsp)->hw = ha; 4162 (*rsp)->length = rsp_len; 4163 (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, 4164 ((*rsp)->length + 1) * sizeof(response_t), 4165 &(*rsp)->dma, GFP_KERNEL); 4166 if (!(*rsp)->ring) { 4167 ql_log_pci(ql_log_fatal, ha->pdev, 0x002b, 4168 "Failed to allocate memory for rsp_ring.\n"); 4169 goto fail_rsp_ring; 4170 } 4171 (*req)->rsp = *rsp; 4172 (*rsp)->req = *req; 4173 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c, 4174 "req=%p req->length=%d req->ring=%p rsp=%p " 4175 "rsp->length=%d rsp->ring=%p.\n", 4176 *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length, 4177 (*rsp)->ring); 4178 /* Allocate memory for NVRAM data for vports */ 4179 if (ha->nvram_npiv_size) { 4180 ha->npiv_info = kcalloc(ha->nvram_npiv_size, 4181 sizeof(struct qla_npiv_entry), 4182 GFP_KERNEL); 4183 if (!ha->npiv_info) { 4184 ql_log_pci(ql_log_fatal, ha->pdev, 0x002d, 4185 "Failed to allocate memory for npiv_info.\n"); 4186 goto fail_npiv_info; 4187 } 4188 } else 4189 ha->npiv_info = NULL; 4190 4191 /* Get consistent memory allocated for EX-INIT-CB. */ 4192 if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) || 4193 IS_QLA28XX(ha)) { 4194 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, 4195 &ha->ex_init_cb_dma); 4196 if (!ha->ex_init_cb) 4197 goto fail_ex_init_cb; 4198 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e, 4199 "ex_init_cb=%p.\n", ha->ex_init_cb); 4200 } 4201 4202 INIT_LIST_HEAD(&ha->gbl_dsd_list); 4203 4204 /* Get consistent memory allocated for Async Port-Database. */ 4205 if (!IS_FWI2_CAPABLE(ha)) { 4206 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, 4207 &ha->async_pd_dma); 4208 if (!ha->async_pd) 4209 goto fail_async_pd; 4210 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f, 4211 "async_pd=%p.\n", ha->async_pd); 4212 } 4213 4214 INIT_LIST_HEAD(&ha->vp_list); 4215 4216 /* Allocate memory for our loop_id bitmap */ 4217 ha->loop_id_map = kcalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE), 4218 sizeof(long), 4219 GFP_KERNEL); 4220 if (!ha->loop_id_map) 4221 goto fail_loop_id_map; 4222 else { 4223 qla2x00_set_reserved_loop_ids(ha); 4224 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123, 4225 "loop_id_map=%p.\n", ha->loop_id_map); 4226 } 4227 4228 ha->sfp_data = dma_alloc_coherent(&ha->pdev->dev, 4229 SFP_DEV_SIZE, &ha->sfp_data_dma, GFP_KERNEL); 4230 if (!ha->sfp_data) { 4231 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b, 4232 "Unable to allocate memory for SFP read-data.\n"); 4233 goto fail_sfp_data; 4234 } 4235 4236 ha->flt = dma_alloc_coherent(&ha->pdev->dev, 4237 sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE, &ha->flt_dma, 4238 GFP_KERNEL); 4239 if (!ha->flt) { 4240 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b, 4241 "Unable to allocate memory for FLT.\n"); 4242 goto fail_flt_buffer; 4243 } 4244 4245 return 0; 4246 4247 fail_flt_buffer: 4248 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, 4249 ha->sfp_data, ha->sfp_data_dma); 4250 fail_sfp_data: 4251 kfree(ha->loop_id_map); 4252 fail_loop_id_map: 4253 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); 4254 fail_async_pd: 4255 dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma); 4256 fail_ex_init_cb: 4257 kfree(ha->npiv_info); 4258 fail_npiv_info: 4259 dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * 4260 sizeof(response_t), (*rsp)->ring, (*rsp)->dma); 4261 (*rsp)->ring = NULL; 4262 (*rsp)->dma = 0; 4263 fail_rsp_ring: 4264 kfree(*rsp); 4265 *rsp = NULL; 4266 fail_rsp: 4267 dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * 4268 sizeof(request_t), (*req)->ring, (*req)->dma); 4269 (*req)->ring = NULL; 4270 (*req)->dma = 0; 4271 fail_req_ring: 4272 kfree(*req); 4273 *req = NULL; 4274 fail_req: 4275 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), 4276 ha->ct_sns, ha->ct_sns_dma); 4277 ha->ct_sns = NULL; 4278 ha->ct_sns_dma = 0; 4279 fail_free_ms_iocb: 4280 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); 4281 ha->ms_iocb = NULL; 4282 ha->ms_iocb_dma = 0; 4283 4284 if (ha->sns_cmd) 4285 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), 4286 ha->sns_cmd, ha->sns_cmd_dma); 4287 fail_dma_pool: 4288 if (ql2xenabledif) { 4289 struct dsd_dma *dsd, *nxt; 4290 4291 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, 4292 list) { 4293 list_del(&dsd->list); 4294 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr, 4295 dsd->dsd_list_dma); 4296 ha->dif_bundle_dma_allocs--; 4297 kfree(dsd); 4298 ha->dif_bundle_kallocs--; 4299 ha->pool.unusable.count--; 4300 } 4301 dma_pool_destroy(ha->dif_bundl_pool); 4302 ha->dif_bundl_pool = NULL; 4303 } 4304 4305 fail_dif_bundl_dma_pool: 4306 if (IS_QLA82XX(ha) || ql2xenabledif) { 4307 dma_pool_destroy(ha->fcp_cmnd_dma_pool); 4308 ha->fcp_cmnd_dma_pool = NULL; 4309 } 4310 fail_dl_dma_pool: 4311 if (IS_QLA82XX(ha) || ql2xenabledif) { 4312 dma_pool_destroy(ha->dl_dma_pool); 4313 ha->dl_dma_pool = NULL; 4314 } 4315 fail_s_dma_pool: 4316 dma_pool_destroy(ha->s_dma_pool); 4317 ha->s_dma_pool = NULL; 4318 fail_free_nvram: 4319 kfree(ha->nvram); 4320 ha->nvram = NULL; 4321 fail_free_ctx_mempool: 4322 mempool_destroy(ha->ctx_mempool); 4323 ha->ctx_mempool = NULL; 4324 fail_free_srb_mempool: 4325 mempool_destroy(ha->srb_mempool); 4326 ha->srb_mempool = NULL; 4327 fail_free_gid_list: 4328 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), 4329 ha->gid_list, 4330 ha->gid_list_dma); 4331 ha->gid_list = NULL; 4332 ha->gid_list_dma = 0; 4333 fail_free_tgt_mem: 4334 qlt_mem_free(ha); 4335 fail_free_init_cb: 4336 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, 4337 ha->init_cb_dma); 4338 ha->init_cb = NULL; 4339 ha->init_cb_dma = 0; 4340 fail: 4341 ql_log(ql_log_fatal, NULL, 0x0030, 4342 "Memory allocation failure.\n"); 4343 return -ENOMEM; 4344 } 4345 4346 int 4347 qla2x00_set_exlogins_buffer(scsi_qla_host_t *vha) 4348 { 4349 int rval; 4350 uint16_t size, max_cnt, temp; 4351 struct qla_hw_data *ha = vha->hw; 4352 4353 /* Return if we don't need to alloacate any extended logins */ 4354 if (!ql2xexlogins) 4355 return QLA_SUCCESS; 4356 4357 if (!IS_EXLOGIN_OFFLD_CAPABLE(ha)) 4358 return QLA_SUCCESS; 4359 4360 ql_log(ql_log_info, vha, 0xd021, "EXLOGIN count: %d.\n", ql2xexlogins); 4361 max_cnt = 0; 4362 rval = qla_get_exlogin_status(vha, &size, &max_cnt); 4363 if (rval != QLA_SUCCESS) { 4364 ql_log_pci(ql_log_fatal, ha->pdev, 0xd029, 4365 "Failed to get exlogin status.\n"); 4366 return rval; 4367 } 4368 4369 temp = (ql2xexlogins > max_cnt) ? max_cnt : ql2xexlogins; 4370 temp *= size; 4371 4372 if (temp != ha->exlogin_size) { 4373 qla2x00_free_exlogin_buffer(ha); 4374 ha->exlogin_size = temp; 4375 4376 ql_log(ql_log_info, vha, 0xd024, 4377 "EXLOGIN: max_logins=%d, portdb=0x%x, total=%d.\n", 4378 max_cnt, size, temp); 4379 4380 ql_log(ql_log_info, vha, 0xd025, 4381 "EXLOGIN: requested size=0x%x\n", ha->exlogin_size); 4382 4383 /* Get consistent memory for extended logins */ 4384 ha->exlogin_buf = dma_alloc_coherent(&ha->pdev->dev, 4385 ha->exlogin_size, &ha->exlogin_buf_dma, GFP_KERNEL); 4386 if (!ha->exlogin_buf) { 4387 ql_log_pci(ql_log_fatal, ha->pdev, 0xd02a, 4388 "Failed to allocate memory for exlogin_buf_dma.\n"); 4389 return -ENOMEM; 4390 } 4391 } 4392 4393 /* Now configure the dma buffer */ 4394 rval = qla_set_exlogin_mem_cfg(vha, ha->exlogin_buf_dma); 4395 if (rval) { 4396 ql_log(ql_log_fatal, vha, 0xd033, 4397 "Setup extended login buffer ****FAILED****.\n"); 4398 qla2x00_free_exlogin_buffer(ha); 4399 } 4400 4401 return rval; 4402 } 4403 4404 /* 4405 * qla2x00_free_exlogin_buffer 4406 * 4407 * Input: 4408 * ha = adapter block pointer 4409 */ 4410 void 4411 qla2x00_free_exlogin_buffer(struct qla_hw_data *ha) 4412 { 4413 if (ha->exlogin_buf) { 4414 dma_free_coherent(&ha->pdev->dev, ha->exlogin_size, 4415 ha->exlogin_buf, ha->exlogin_buf_dma); 4416 ha->exlogin_buf = NULL; 4417 ha->exlogin_size = 0; 4418 } 4419 } 4420 4421 static void 4422 qla2x00_number_of_exch(scsi_qla_host_t *vha, u32 *ret_cnt, u16 max_cnt) 4423 { 4424 u32 temp; 4425 struct init_cb_81xx *icb = (struct init_cb_81xx *)&vha->hw->init_cb; 4426 *ret_cnt = FW_DEF_EXCHANGES_CNT; 4427 4428 if (max_cnt > vha->hw->max_exchg) 4429 max_cnt = vha->hw->max_exchg; 4430 4431 if (qla_ini_mode_enabled(vha)) { 4432 if (vha->ql2xiniexchg > max_cnt) 4433 vha->ql2xiniexchg = max_cnt; 4434 4435 if (vha->ql2xiniexchg > FW_DEF_EXCHANGES_CNT) 4436 *ret_cnt = vha->ql2xiniexchg; 4437 4438 } else if (qla_tgt_mode_enabled(vha)) { 4439 if (vha->ql2xexchoffld > max_cnt) { 4440 vha->ql2xexchoffld = max_cnt; 4441 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld); 4442 } 4443 4444 if (vha->ql2xexchoffld > FW_DEF_EXCHANGES_CNT) 4445 *ret_cnt = vha->ql2xexchoffld; 4446 } else if (qla_dual_mode_enabled(vha)) { 4447 temp = vha->ql2xiniexchg + vha->ql2xexchoffld; 4448 if (temp > max_cnt) { 4449 vha->ql2xiniexchg -= (temp - max_cnt)/2; 4450 vha->ql2xexchoffld -= (((temp - max_cnt)/2) + 1); 4451 temp = max_cnt; 4452 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld); 4453 } 4454 4455 if (temp > FW_DEF_EXCHANGES_CNT) 4456 *ret_cnt = temp; 4457 } 4458 } 4459 4460 int 4461 qla2x00_set_exchoffld_buffer(scsi_qla_host_t *vha) 4462 { 4463 int rval; 4464 u16 size, max_cnt; 4465 u32 actual_cnt, totsz; 4466 struct qla_hw_data *ha = vha->hw; 4467 4468 if (!ha->flags.exchoffld_enabled) 4469 return QLA_SUCCESS; 4470 4471 if (!IS_EXCHG_OFFLD_CAPABLE(ha)) 4472 return QLA_SUCCESS; 4473 4474 max_cnt = 0; 4475 rval = qla_get_exchoffld_status(vha, &size, &max_cnt); 4476 if (rval != QLA_SUCCESS) { 4477 ql_log_pci(ql_log_fatal, ha->pdev, 0xd012, 4478 "Failed to get exlogin status.\n"); 4479 return rval; 4480 } 4481 4482 qla2x00_number_of_exch(vha, &actual_cnt, max_cnt); 4483 ql_log(ql_log_info, vha, 0xd014, 4484 "Actual exchange offload count: %d.\n", actual_cnt); 4485 4486 totsz = actual_cnt * size; 4487 4488 if (totsz != ha->exchoffld_size) { 4489 qla2x00_free_exchoffld_buffer(ha); 4490 if (actual_cnt <= FW_DEF_EXCHANGES_CNT) { 4491 ha->exchoffld_size = 0; 4492 ha->flags.exchoffld_enabled = 0; 4493 return QLA_SUCCESS; 4494 } 4495 4496 ha->exchoffld_size = totsz; 4497 4498 ql_log(ql_log_info, vha, 0xd016, 4499 "Exchange offload: max_count=%d, actual count=%d entry sz=0x%x, total sz=0x%x\n", 4500 max_cnt, actual_cnt, size, totsz); 4501 4502 ql_log(ql_log_info, vha, 0xd017, 4503 "Exchange Buffers requested size = 0x%x\n", 4504 ha->exchoffld_size); 4505 4506 /* Get consistent memory for extended logins */ 4507 ha->exchoffld_buf = dma_alloc_coherent(&ha->pdev->dev, 4508 ha->exchoffld_size, &ha->exchoffld_buf_dma, GFP_KERNEL); 4509 if (!ha->exchoffld_buf) { 4510 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013, 4511 "Failed to allocate memory for Exchange Offload.\n"); 4512 4513 if (ha->max_exchg > 4514 (FW_DEF_EXCHANGES_CNT + REDUCE_EXCHANGES_CNT)) { 4515 ha->max_exchg -= REDUCE_EXCHANGES_CNT; 4516 } else if (ha->max_exchg > 4517 (FW_DEF_EXCHANGES_CNT + 512)) { 4518 ha->max_exchg -= 512; 4519 } else { 4520 ha->flags.exchoffld_enabled = 0; 4521 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013, 4522 "Disabling Exchange offload due to lack of memory\n"); 4523 } 4524 ha->exchoffld_size = 0; 4525 4526 return -ENOMEM; 4527 } 4528 } else if (!ha->exchoffld_buf || (actual_cnt <= FW_DEF_EXCHANGES_CNT)) { 4529 /* pathological case */ 4530 qla2x00_free_exchoffld_buffer(ha); 4531 ha->exchoffld_size = 0; 4532 ha->flags.exchoffld_enabled = 0; 4533 ql_log(ql_log_info, vha, 0xd016, 4534 "Exchange offload not enable: offld size=%d, actual count=%d entry sz=0x%x, total sz=0x%x.\n", 4535 ha->exchoffld_size, actual_cnt, size, totsz); 4536 return 0; 4537 } 4538 4539 /* Now configure the dma buffer */ 4540 rval = qla_set_exchoffld_mem_cfg(vha); 4541 if (rval) { 4542 ql_log(ql_log_fatal, vha, 0xd02e, 4543 "Setup exchange offload buffer ****FAILED****.\n"); 4544 qla2x00_free_exchoffld_buffer(ha); 4545 } else { 4546 /* re-adjust number of target exchange */ 4547 struct init_cb_81xx *icb = (struct init_cb_81xx *)ha->init_cb; 4548 4549 if (qla_ini_mode_enabled(vha)) 4550 icb->exchange_count = 0; 4551 else 4552 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld); 4553 } 4554 4555 return rval; 4556 } 4557 4558 /* 4559 * qla2x00_free_exchoffld_buffer 4560 * 4561 * Input: 4562 * ha = adapter block pointer 4563 */ 4564 void 4565 qla2x00_free_exchoffld_buffer(struct qla_hw_data *ha) 4566 { 4567 if (ha->exchoffld_buf) { 4568 dma_free_coherent(&ha->pdev->dev, ha->exchoffld_size, 4569 ha->exchoffld_buf, ha->exchoffld_buf_dma); 4570 ha->exchoffld_buf = NULL; 4571 ha->exchoffld_size = 0; 4572 } 4573 } 4574 4575 /* 4576 * qla2x00_free_fw_dump 4577 * Frees fw dump stuff. 4578 * 4579 * Input: 4580 * ha = adapter block pointer 4581 */ 4582 static void 4583 qla2x00_free_fw_dump(struct qla_hw_data *ha) 4584 { 4585 struct fwdt *fwdt = ha->fwdt; 4586 uint j; 4587 4588 if (ha->fce) 4589 dma_free_coherent(&ha->pdev->dev, 4590 FCE_SIZE, ha->fce, ha->fce_dma); 4591 4592 if (ha->eft) 4593 dma_free_coherent(&ha->pdev->dev, 4594 EFT_SIZE, ha->eft, ha->eft_dma); 4595 4596 if (ha->fw_dump) 4597 vfree(ha->fw_dump); 4598 4599 ha->fce = NULL; 4600 ha->fce_dma = 0; 4601 ha->eft = NULL; 4602 ha->eft_dma = 0; 4603 ha->fw_dumped = 0; 4604 ha->fw_dump_cap_flags = 0; 4605 ha->fw_dump_reading = 0; 4606 ha->fw_dump = NULL; 4607 ha->fw_dump_len = 0; 4608 4609 for (j = 0; j < 2; j++, fwdt++) { 4610 if (fwdt->template) 4611 vfree(fwdt->template); 4612 fwdt->template = NULL; 4613 fwdt->length = 0; 4614 } 4615 } 4616 4617 /* 4618 * qla2x00_mem_free 4619 * Frees all adapter allocated memory. 4620 * 4621 * Input: 4622 * ha = adapter block pointer. 4623 */ 4624 static void 4625 qla2x00_mem_free(struct qla_hw_data *ha) 4626 { 4627 qla2x00_free_fw_dump(ha); 4628 4629 if (ha->mctp_dump) 4630 dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump, 4631 ha->mctp_dump_dma); 4632 ha->mctp_dump = NULL; 4633 4634 mempool_destroy(ha->srb_mempool); 4635 ha->srb_mempool = NULL; 4636 4637 if (ha->dcbx_tlv) 4638 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, 4639 ha->dcbx_tlv, ha->dcbx_tlv_dma); 4640 ha->dcbx_tlv = NULL; 4641 4642 if (ha->xgmac_data) 4643 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, 4644 ha->xgmac_data, ha->xgmac_data_dma); 4645 ha->xgmac_data = NULL; 4646 4647 if (ha->sns_cmd) 4648 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), 4649 ha->sns_cmd, ha->sns_cmd_dma); 4650 ha->sns_cmd = NULL; 4651 ha->sns_cmd_dma = 0; 4652 4653 if (ha->ct_sns) 4654 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), 4655 ha->ct_sns, ha->ct_sns_dma); 4656 ha->ct_sns = NULL; 4657 ha->ct_sns_dma = 0; 4658 4659 if (ha->sfp_data) 4660 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, ha->sfp_data, 4661 ha->sfp_data_dma); 4662 ha->sfp_data = NULL; 4663 4664 if (ha->flt) 4665 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, 4666 ha->flt, ha->flt_dma); 4667 ha->flt = NULL; 4668 ha->flt_dma = 0; 4669 4670 if (ha->ms_iocb) 4671 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); 4672 ha->ms_iocb = NULL; 4673 ha->ms_iocb_dma = 0; 4674 4675 if (ha->ex_init_cb) 4676 dma_pool_free(ha->s_dma_pool, 4677 ha->ex_init_cb, ha->ex_init_cb_dma); 4678 ha->ex_init_cb = NULL; 4679 ha->ex_init_cb_dma = 0; 4680 4681 if (ha->async_pd) 4682 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); 4683 ha->async_pd = NULL; 4684 ha->async_pd_dma = 0; 4685 4686 dma_pool_destroy(ha->s_dma_pool); 4687 ha->s_dma_pool = NULL; 4688 4689 if (ha->gid_list) 4690 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), 4691 ha->gid_list, ha->gid_list_dma); 4692 ha->gid_list = NULL; 4693 ha->gid_list_dma = 0; 4694 4695 if (IS_QLA82XX(ha)) { 4696 if (!list_empty(&ha->gbl_dsd_list)) { 4697 struct dsd_dma *dsd_ptr, *tdsd_ptr; 4698 4699 /* clean up allocated prev pool */ 4700 list_for_each_entry_safe(dsd_ptr, 4701 tdsd_ptr, &ha->gbl_dsd_list, list) { 4702 dma_pool_free(ha->dl_dma_pool, 4703 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma); 4704 list_del(&dsd_ptr->list); 4705 kfree(dsd_ptr); 4706 } 4707 } 4708 } 4709 4710 dma_pool_destroy(ha->dl_dma_pool); 4711 ha->dl_dma_pool = NULL; 4712 4713 dma_pool_destroy(ha->fcp_cmnd_dma_pool); 4714 ha->fcp_cmnd_dma_pool = NULL; 4715 4716 mempool_destroy(ha->ctx_mempool); 4717 ha->ctx_mempool = NULL; 4718 4719 if (ql2xenabledif) { 4720 struct dsd_dma *dsd, *nxt; 4721 4722 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, 4723 list) { 4724 list_del(&dsd->list); 4725 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr, 4726 dsd->dsd_list_dma); 4727 ha->dif_bundle_dma_allocs--; 4728 kfree(dsd); 4729 ha->dif_bundle_kallocs--; 4730 ha->pool.unusable.count--; 4731 } 4732 list_for_each_entry_safe(dsd, nxt, &ha->pool.good.head, list) { 4733 list_del(&dsd->list); 4734 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr, 4735 dsd->dsd_list_dma); 4736 ha->dif_bundle_dma_allocs--; 4737 kfree(dsd); 4738 ha->dif_bundle_kallocs--; 4739 } 4740 } 4741 4742 if (ha->dif_bundl_pool) 4743 dma_pool_destroy(ha->dif_bundl_pool); 4744 ha->dif_bundl_pool = NULL; 4745 4746 qlt_mem_free(ha); 4747 4748 if (ha->init_cb) 4749 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, 4750 ha->init_cb, ha->init_cb_dma); 4751 ha->init_cb = NULL; 4752 ha->init_cb_dma = 0; 4753 4754 vfree(ha->optrom_buffer); 4755 ha->optrom_buffer = NULL; 4756 kfree(ha->nvram); 4757 ha->nvram = NULL; 4758 kfree(ha->npiv_info); 4759 ha->npiv_info = NULL; 4760 kfree(ha->swl); 4761 ha->swl = NULL; 4762 kfree(ha->loop_id_map); 4763 ha->loop_id_map = NULL; 4764 } 4765 4766 struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, 4767 struct qla_hw_data *ha) 4768 { 4769 struct Scsi_Host *host; 4770 struct scsi_qla_host *vha = NULL; 4771 4772 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); 4773 if (!host) { 4774 ql_log_pci(ql_log_fatal, ha->pdev, 0x0107, 4775 "Failed to allocate host from the scsi layer, aborting.\n"); 4776 return NULL; 4777 } 4778 4779 /* Clear our data area */ 4780 vha = shost_priv(host); 4781 memset(vha, 0, sizeof(scsi_qla_host_t)); 4782 4783 vha->host = host; 4784 vha->host_no = host->host_no; 4785 vha->hw = ha; 4786 4787 vha->qlini_mode = ql2x_ini_mode; 4788 vha->ql2xexchoffld = ql2xexchoffld; 4789 vha->ql2xiniexchg = ql2xiniexchg; 4790 4791 INIT_LIST_HEAD(&vha->vp_fcports); 4792 INIT_LIST_HEAD(&vha->work_list); 4793 INIT_LIST_HEAD(&vha->list); 4794 INIT_LIST_HEAD(&vha->qla_cmd_list); 4795 INIT_LIST_HEAD(&vha->qla_sess_op_cmd_list); 4796 INIT_LIST_HEAD(&vha->logo_list); 4797 INIT_LIST_HEAD(&vha->plogi_ack_list); 4798 INIT_LIST_HEAD(&vha->qp_list); 4799 INIT_LIST_HEAD(&vha->gnl.fcports); 4800 INIT_LIST_HEAD(&vha->gpnid_list); 4801 INIT_WORK(&vha->iocb_work, qla2x00_iocb_work_fn); 4802 4803 spin_lock_init(&vha->work_lock); 4804 spin_lock_init(&vha->cmd_list_lock); 4805 init_waitqueue_head(&vha->fcport_waitQ); 4806 init_waitqueue_head(&vha->vref_waitq); 4807 4808 vha->gnl.size = sizeof(struct get_name_list_extended) * 4809 (ha->max_loop_id + 1); 4810 vha->gnl.l = dma_alloc_coherent(&ha->pdev->dev, 4811 vha->gnl.size, &vha->gnl.ldma, GFP_KERNEL); 4812 if (!vha->gnl.l) { 4813 ql_log(ql_log_fatal, vha, 0xd04a, 4814 "Alloc failed for name list.\n"); 4815 scsi_remove_host(vha->host); 4816 return NULL; 4817 } 4818 4819 /* todo: what about ext login? */ 4820 vha->scan.size = ha->max_fibre_devices * sizeof(struct fab_scan_rp); 4821 vha->scan.l = vmalloc(vha->scan.size); 4822 if (!vha->scan.l) { 4823 ql_log(ql_log_fatal, vha, 0xd04a, 4824 "Alloc failed for scan database.\n"); 4825 dma_free_coherent(&ha->pdev->dev, vha->gnl.size, 4826 vha->gnl.l, vha->gnl.ldma); 4827 vha->gnl.l = NULL; 4828 scsi_remove_host(vha->host); 4829 return NULL; 4830 } 4831 INIT_DELAYED_WORK(&vha->scan.scan_work, qla_scan_work_fn); 4832 4833 sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); 4834 ql_dbg(ql_dbg_init, vha, 0x0041, 4835 "Allocated the host=%p hw=%p vha=%p dev_name=%s", 4836 vha->host, vha->hw, vha, 4837 dev_name(&(ha->pdev->dev))); 4838 4839 return vha; 4840 } 4841 4842 struct qla_work_evt * 4843 qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type) 4844 { 4845 struct qla_work_evt *e; 4846 uint8_t bail; 4847 4848 QLA_VHA_MARK_BUSY(vha, bail); 4849 if (bail) 4850 return NULL; 4851 4852 e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC); 4853 if (!e) { 4854 QLA_VHA_MARK_NOT_BUSY(vha); 4855 return NULL; 4856 } 4857 4858 INIT_LIST_HEAD(&e->list); 4859 e->type = type; 4860 e->flags = QLA_EVT_FLAG_FREE; 4861 return e; 4862 } 4863 4864 int 4865 qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e) 4866 { 4867 unsigned long flags; 4868 bool q = false; 4869 4870 spin_lock_irqsave(&vha->work_lock, flags); 4871 list_add_tail(&e->list, &vha->work_list); 4872 4873 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags)) 4874 q = true; 4875 4876 spin_unlock_irqrestore(&vha->work_lock, flags); 4877 4878 if (q) 4879 queue_work(vha->hw->wq, &vha->iocb_work); 4880 4881 return QLA_SUCCESS; 4882 } 4883 4884 int 4885 qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code, 4886 u32 data) 4887 { 4888 struct qla_work_evt *e; 4889 4890 e = qla2x00_alloc_work(vha, QLA_EVT_AEN); 4891 if (!e) 4892 return QLA_FUNCTION_FAILED; 4893 4894 e->u.aen.code = code; 4895 e->u.aen.data = data; 4896 return qla2x00_post_work(vha, e); 4897 } 4898 4899 int 4900 qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) 4901 { 4902 struct qla_work_evt *e; 4903 4904 e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK); 4905 if (!e) 4906 return QLA_FUNCTION_FAILED; 4907 4908 memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t)); 4909 return qla2x00_post_work(vha, e); 4910 } 4911 4912 #define qla2x00_post_async_work(name, type) \ 4913 int qla2x00_post_async_##name##_work( \ 4914 struct scsi_qla_host *vha, \ 4915 fc_port_t *fcport, uint16_t *data) \ 4916 { \ 4917 struct qla_work_evt *e; \ 4918 \ 4919 e = qla2x00_alloc_work(vha, type); \ 4920 if (!e) \ 4921 return QLA_FUNCTION_FAILED; \ 4922 \ 4923 e->u.logio.fcport = fcport; \ 4924 if (data) { \ 4925 e->u.logio.data[0] = data[0]; \ 4926 e->u.logio.data[1] = data[1]; \ 4927 } \ 4928 fcport->flags |= FCF_ASYNC_ACTIVE; \ 4929 return qla2x00_post_work(vha, e); \ 4930 } 4931 4932 qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN); 4933 qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT); 4934 qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE); 4935 qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC); 4936 qla2x00_post_async_work(prlo, QLA_EVT_ASYNC_PRLO); 4937 qla2x00_post_async_work(prlo_done, QLA_EVT_ASYNC_PRLO_DONE); 4938 4939 int 4940 qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code) 4941 { 4942 struct qla_work_evt *e; 4943 4944 e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT); 4945 if (!e) 4946 return QLA_FUNCTION_FAILED; 4947 4948 e->u.uevent.code = code; 4949 return qla2x00_post_work(vha, e); 4950 } 4951 4952 static void 4953 qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code) 4954 { 4955 char event_string[40]; 4956 char *envp[] = { event_string, NULL }; 4957 4958 switch (code) { 4959 case QLA_UEVENT_CODE_FW_DUMP: 4960 snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld", 4961 vha->host_no); 4962 break; 4963 default: 4964 /* do nothing */ 4965 break; 4966 } 4967 kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp); 4968 } 4969 4970 int 4971 qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode, 4972 uint32_t *data, int cnt) 4973 { 4974 struct qla_work_evt *e; 4975 4976 e = qla2x00_alloc_work(vha, QLA_EVT_AENFX); 4977 if (!e) 4978 return QLA_FUNCTION_FAILED; 4979 4980 e->u.aenfx.evtcode = evtcode; 4981 e->u.aenfx.count = cnt; 4982 memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt); 4983 return qla2x00_post_work(vha, e); 4984 } 4985 4986 void qla24xx_sched_upd_fcport(fc_port_t *fcport) 4987 { 4988 unsigned long flags; 4989 4990 if (IS_SW_RESV_ADDR(fcport->d_id)) 4991 return; 4992 4993 spin_lock_irqsave(&fcport->vha->work_lock, flags); 4994 if (fcport->disc_state == DSC_UPD_FCPORT) { 4995 spin_unlock_irqrestore(&fcport->vha->work_lock, flags); 4996 return; 4997 } 4998 fcport->jiffies_at_registration = jiffies; 4999 fcport->sec_since_registration = 0; 5000 fcport->next_disc_state = DSC_DELETED; 5001 fcport->disc_state = DSC_UPD_FCPORT; 5002 spin_unlock_irqrestore(&fcport->vha->work_lock, flags); 5003 5004 queue_work(system_unbound_wq, &fcport->reg_work); 5005 } 5006 5007 static 5008 void qla24xx_create_new_sess(struct scsi_qla_host *vha, struct qla_work_evt *e) 5009 { 5010 unsigned long flags; 5011 fc_port_t *fcport = NULL, *tfcp; 5012 struct qlt_plogi_ack_t *pla = 5013 (struct qlt_plogi_ack_t *)e->u.new_sess.pla; 5014 uint8_t free_fcport = 0; 5015 5016 ql_dbg(ql_dbg_disc, vha, 0xffff, 5017 "%s %d %8phC enter\n", 5018 __func__, __LINE__, e->u.new_sess.port_name); 5019 5020 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); 5021 fcport = qla2x00_find_fcport_by_wwpn(vha, e->u.new_sess.port_name, 1); 5022 if (fcport) { 5023 fcport->d_id = e->u.new_sess.id; 5024 if (pla) { 5025 fcport->fw_login_state = DSC_LS_PLOGI_PEND; 5026 memcpy(fcport->node_name, 5027 pla->iocb.u.isp24.u.plogi.node_name, 5028 WWN_SIZE); 5029 qlt_plogi_ack_link(vha, pla, fcport, QLT_PLOGI_LINK_SAME_WWN); 5030 /* we took an extra ref_count to prevent PLOGI ACK when 5031 * fcport/sess has not been created. 5032 */ 5033 pla->ref_count--; 5034 } 5035 } else { 5036 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags); 5037 fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL); 5038 if (fcport) { 5039 fcport->d_id = e->u.new_sess.id; 5040 fcport->flags |= FCF_FABRIC_DEVICE; 5041 fcport->fw_login_state = DSC_LS_PLOGI_PEND; 5042 if (e->u.new_sess.fc4_type == FS_FC4TYPE_FCP) 5043 fcport->fc4_type = FC4_TYPE_FCP_SCSI; 5044 5045 if (e->u.new_sess.fc4_type == FS_FC4TYPE_NVME) { 5046 fcport->fc4_type = FC4_TYPE_OTHER; 5047 fcport->fc4f_nvme = FC4_TYPE_NVME; 5048 } 5049 5050 memcpy(fcport->port_name, e->u.new_sess.port_name, 5051 WWN_SIZE); 5052 } else { 5053 ql_dbg(ql_dbg_disc, vha, 0xffff, 5054 "%s %8phC mem alloc fail.\n", 5055 __func__, e->u.new_sess.port_name); 5056 5057 if (pla) 5058 kmem_cache_free(qla_tgt_plogi_cachep, pla); 5059 return; 5060 } 5061 5062 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); 5063 /* search again to make sure no one else got ahead */ 5064 tfcp = qla2x00_find_fcport_by_wwpn(vha, 5065 e->u.new_sess.port_name, 1); 5066 if (tfcp) { 5067 /* should rarily happen */ 5068 ql_dbg(ql_dbg_disc, vha, 0xffff, 5069 "%s %8phC found existing fcport b4 add. DS %d LS %d\n", 5070 __func__, tfcp->port_name, tfcp->disc_state, 5071 tfcp->fw_login_state); 5072 5073 free_fcport = 1; 5074 } else { 5075 list_add_tail(&fcport->list, &vha->vp_fcports); 5076 5077 } 5078 if (pla) { 5079 qlt_plogi_ack_link(vha, pla, fcport, 5080 QLT_PLOGI_LINK_SAME_WWN); 5081 pla->ref_count--; 5082 } 5083 } 5084 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags); 5085 5086 if (fcport) { 5087 fcport->id_changed = 1; 5088 fcport->scan_state = QLA_FCPORT_FOUND; 5089 memcpy(fcport->node_name, e->u.new_sess.node_name, WWN_SIZE); 5090 5091 if (pla) { 5092 if (pla->iocb.u.isp24.status_subcode == ELS_PRLI) { 5093 u16 wd3_lo; 5094 5095 fcport->fw_login_state = DSC_LS_PRLI_PEND; 5096 fcport->local = 0; 5097 fcport->loop_id = 5098 le16_to_cpu( 5099 pla->iocb.u.isp24.nport_handle); 5100 fcport->fw_login_state = DSC_LS_PRLI_PEND; 5101 wd3_lo = 5102 le16_to_cpu( 5103 pla->iocb.u.isp24.u.prli.wd3_lo); 5104 5105 if (wd3_lo & BIT_7) 5106 fcport->conf_compl_supported = 1; 5107 5108 if ((wd3_lo & BIT_4) == 0) 5109 fcport->port_type = FCT_INITIATOR; 5110 else 5111 fcport->port_type = FCT_TARGET; 5112 } 5113 qlt_plogi_ack_unref(vha, pla); 5114 } else { 5115 fc_port_t *dfcp = NULL; 5116 5117 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); 5118 tfcp = qla2x00_find_fcport_by_nportid(vha, 5119 &e->u.new_sess.id, 1); 5120 if (tfcp && (tfcp != fcport)) { 5121 /* 5122 * We have a conflict fcport with same NportID. 5123 */ 5124 ql_dbg(ql_dbg_disc, vha, 0xffff, 5125 "%s %8phC found conflict b4 add. DS %d LS %d\n", 5126 __func__, tfcp->port_name, tfcp->disc_state, 5127 tfcp->fw_login_state); 5128 5129 switch (tfcp->disc_state) { 5130 case DSC_DELETED: 5131 break; 5132 case DSC_DELETE_PEND: 5133 fcport->login_pause = 1; 5134 tfcp->conflict = fcport; 5135 break; 5136 default: 5137 fcport->login_pause = 1; 5138 tfcp->conflict = fcport; 5139 dfcp = tfcp; 5140 break; 5141 } 5142 } 5143 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags); 5144 if (dfcp) 5145 qlt_schedule_sess_for_deletion(tfcp); 5146 5147 5148 if (N2N_TOPO(vha->hw)) 5149 fcport->flags &= ~FCF_FABRIC_DEVICE; 5150 5151 if (N2N_TOPO(vha->hw)) { 5152 if (vha->flags.nvme_enabled) { 5153 fcport->fc4f_nvme = 1; 5154 fcport->n2n_flag = 1; 5155 } 5156 fcport->fw_login_state = 0; 5157 /* 5158 * wait link init done before sending login 5159 */ 5160 } else { 5161 qla24xx_fcport_handle_login(vha, fcport); 5162 } 5163 } 5164 } 5165 5166 if (free_fcport) { 5167 qla2x00_free_fcport(fcport); 5168 if (pla) 5169 kmem_cache_free(qla_tgt_plogi_cachep, pla); 5170 } 5171 } 5172 5173 static void qla_sp_retry(struct scsi_qla_host *vha, struct qla_work_evt *e) 5174 { 5175 struct srb *sp = e->u.iosb.sp; 5176 int rval; 5177 5178 rval = qla2x00_start_sp(sp); 5179 if (rval != QLA_SUCCESS) { 5180 ql_dbg(ql_dbg_disc, vha, 0x2043, 5181 "%s: %s: Re-issue IOCB failed (%d).\n", 5182 __func__, sp->name, rval); 5183 qla24xx_sp_unmap(vha, sp); 5184 } 5185 } 5186 5187 void 5188 qla2x00_do_work(struct scsi_qla_host *vha) 5189 { 5190 struct qla_work_evt *e, *tmp; 5191 unsigned long flags; 5192 LIST_HEAD(work); 5193 int rc; 5194 5195 spin_lock_irqsave(&vha->work_lock, flags); 5196 list_splice_init(&vha->work_list, &work); 5197 spin_unlock_irqrestore(&vha->work_lock, flags); 5198 5199 list_for_each_entry_safe(e, tmp, &work, list) { 5200 rc = QLA_SUCCESS; 5201 switch (e->type) { 5202 case QLA_EVT_AEN: 5203 fc_host_post_event(vha->host, fc_get_event_number(), 5204 e->u.aen.code, e->u.aen.data); 5205 break; 5206 case QLA_EVT_IDC_ACK: 5207 qla81xx_idc_ack(vha, e->u.idc_ack.mb); 5208 break; 5209 case QLA_EVT_ASYNC_LOGIN: 5210 qla2x00_async_login(vha, e->u.logio.fcport, 5211 e->u.logio.data); 5212 break; 5213 case QLA_EVT_ASYNC_LOGOUT: 5214 rc = qla2x00_async_logout(vha, e->u.logio.fcport); 5215 break; 5216 case QLA_EVT_ASYNC_LOGOUT_DONE: 5217 qla2x00_async_logout_done(vha, e->u.logio.fcport, 5218 e->u.logio.data); 5219 break; 5220 case QLA_EVT_ASYNC_ADISC: 5221 qla2x00_async_adisc(vha, e->u.logio.fcport, 5222 e->u.logio.data); 5223 break; 5224 case QLA_EVT_UEVENT: 5225 qla2x00_uevent_emit(vha, e->u.uevent.code); 5226 break; 5227 case QLA_EVT_AENFX: 5228 qlafx00_process_aen(vha, e); 5229 break; 5230 case QLA_EVT_GPNID: 5231 qla24xx_async_gpnid(vha, &e->u.gpnid.id); 5232 break; 5233 case QLA_EVT_UNMAP: 5234 qla24xx_sp_unmap(vha, e->u.iosb.sp); 5235 break; 5236 case QLA_EVT_RELOGIN: 5237 qla2x00_relogin(vha); 5238 break; 5239 case QLA_EVT_NEW_SESS: 5240 qla24xx_create_new_sess(vha, e); 5241 break; 5242 case QLA_EVT_GPDB: 5243 qla24xx_async_gpdb(vha, e->u.fcport.fcport, 5244 e->u.fcport.opt); 5245 break; 5246 case QLA_EVT_PRLI: 5247 qla24xx_async_prli(vha, e->u.fcport.fcport); 5248 break; 5249 case QLA_EVT_GPSC: 5250 qla24xx_async_gpsc(vha, e->u.fcport.fcport); 5251 break; 5252 case QLA_EVT_GNL: 5253 qla24xx_async_gnl(vha, e->u.fcport.fcport); 5254 break; 5255 case QLA_EVT_NACK: 5256 qla24xx_do_nack_work(vha, e); 5257 break; 5258 case QLA_EVT_ASYNC_PRLO: 5259 rc = qla2x00_async_prlo(vha, e->u.logio.fcport); 5260 break; 5261 case QLA_EVT_ASYNC_PRLO_DONE: 5262 qla2x00_async_prlo_done(vha, e->u.logio.fcport, 5263 e->u.logio.data); 5264 break; 5265 case QLA_EVT_GPNFT: 5266 qla24xx_async_gpnft(vha, e->u.gpnft.fc4_type, 5267 e->u.gpnft.sp); 5268 break; 5269 case QLA_EVT_GPNFT_DONE: 5270 qla24xx_async_gpnft_done(vha, e->u.iosb.sp); 5271 break; 5272 case QLA_EVT_GNNFT_DONE: 5273 qla24xx_async_gnnft_done(vha, e->u.iosb.sp); 5274 break; 5275 case QLA_EVT_GNNID: 5276 qla24xx_async_gnnid(vha, e->u.fcport.fcport); 5277 break; 5278 case QLA_EVT_GFPNID: 5279 qla24xx_async_gfpnid(vha, e->u.fcport.fcport); 5280 break; 5281 case QLA_EVT_SP_RETRY: 5282 qla_sp_retry(vha, e); 5283 break; 5284 case QLA_EVT_IIDMA: 5285 qla_do_iidma_work(vha, e->u.fcport.fcport); 5286 break; 5287 case QLA_EVT_ELS_PLOGI: 5288 qla24xx_els_dcmd2_iocb(vha, ELS_DCMD_PLOGI, 5289 e->u.fcport.fcport, false); 5290 break; 5291 } 5292 5293 if (rc == EAGAIN) { 5294 /* put 'work' at head of 'vha->work_list' */ 5295 spin_lock_irqsave(&vha->work_lock, flags); 5296 list_splice(&work, &vha->work_list); 5297 spin_unlock_irqrestore(&vha->work_lock, flags); 5298 break; 5299 } 5300 list_del_init(&e->list); 5301 if (e->flags & QLA_EVT_FLAG_FREE) 5302 kfree(e); 5303 5304 /* For each work completed decrement vha ref count */ 5305 QLA_VHA_MARK_NOT_BUSY(vha); 5306 } 5307 } 5308 5309 int qla24xx_post_relogin_work(struct scsi_qla_host *vha) 5310 { 5311 struct qla_work_evt *e; 5312 5313 e = qla2x00_alloc_work(vha, QLA_EVT_RELOGIN); 5314 5315 if (!e) { 5316 set_bit(RELOGIN_NEEDED, &vha->dpc_flags); 5317 return QLA_FUNCTION_FAILED; 5318 } 5319 5320 return qla2x00_post_work(vha, e); 5321 } 5322 5323 /* Relogins all the fcports of a vport 5324 * Context: dpc thread 5325 */ 5326 void qla2x00_relogin(struct scsi_qla_host *vha) 5327 { 5328 fc_port_t *fcport; 5329 int status, relogin_needed = 0; 5330 struct event_arg ea; 5331 5332 list_for_each_entry(fcport, &vha->vp_fcports, list) { 5333 /* 5334 * If the port is not ONLINE then try to login 5335 * to it if we haven't run out of retries. 5336 */ 5337 if (atomic_read(&fcport->state) != FCS_ONLINE && 5338 fcport->login_retry) { 5339 if (fcport->scan_state != QLA_FCPORT_FOUND || 5340 fcport->disc_state == DSC_LOGIN_COMPLETE) 5341 continue; 5342 5343 if (fcport->flags & (FCF_ASYNC_SENT|FCF_ASYNC_ACTIVE) || 5344 fcport->disc_state == DSC_DELETE_PEND) { 5345 relogin_needed = 1; 5346 } else { 5347 if (vha->hw->current_topology != ISP_CFG_NL) { 5348 memset(&ea, 0, sizeof(ea)); 5349 ea.event = FCME_RELOGIN; 5350 ea.fcport = fcport; 5351 qla2x00_fcport_event_handler(vha, &ea); 5352 } else if (vha->hw->current_topology == 5353 ISP_CFG_NL) { 5354 fcport->login_retry--; 5355 status = 5356 qla2x00_local_device_login(vha, 5357 fcport); 5358 if (status == QLA_SUCCESS) { 5359 fcport->old_loop_id = 5360 fcport->loop_id; 5361 ql_dbg(ql_dbg_disc, vha, 0x2003, 5362 "Port login OK: logged in ID 0x%x.\n", 5363 fcport->loop_id); 5364 qla2x00_update_fcport 5365 (vha, fcport); 5366 } else if (status == 1) { 5367 set_bit(RELOGIN_NEEDED, 5368 &vha->dpc_flags); 5369 /* retry the login again */ 5370 ql_dbg(ql_dbg_disc, vha, 0x2007, 5371 "Retrying %d login again loop_id 0x%x.\n", 5372 fcport->login_retry, 5373 fcport->loop_id); 5374 } else { 5375 fcport->login_retry = 0; 5376 } 5377 5378 if (fcport->login_retry == 0 && 5379 status != QLA_SUCCESS) 5380 qla2x00_clear_loop_id(fcport); 5381 } 5382 } 5383 } 5384 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) 5385 break; 5386 } 5387 5388 if (relogin_needed) 5389 set_bit(RELOGIN_NEEDED, &vha->dpc_flags); 5390 5391 ql_dbg(ql_dbg_disc, vha, 0x400e, 5392 "Relogin end.\n"); 5393 } 5394 5395 /* Schedule work on any of the dpc-workqueues */ 5396 void 5397 qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code) 5398 { 5399 struct qla_hw_data *ha = base_vha->hw; 5400 5401 switch (work_code) { 5402 case MBA_IDC_AEN: /* 0x8200 */ 5403 if (ha->dpc_lp_wq) 5404 queue_work(ha->dpc_lp_wq, &ha->idc_aen); 5405 break; 5406 5407 case QLA83XX_NIC_CORE_RESET: /* 0x1 */ 5408 if (!ha->flags.nic_core_reset_hdlr_active) { 5409 if (ha->dpc_hp_wq) 5410 queue_work(ha->dpc_hp_wq, &ha->nic_core_reset); 5411 } else 5412 ql_dbg(ql_dbg_p3p, base_vha, 0xb05e, 5413 "NIC Core reset is already active. Skip " 5414 "scheduling it again.\n"); 5415 break; 5416 case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */ 5417 if (ha->dpc_hp_wq) 5418 queue_work(ha->dpc_hp_wq, &ha->idc_state_handler); 5419 break; 5420 case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */ 5421 if (ha->dpc_hp_wq) 5422 queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable); 5423 break; 5424 default: 5425 ql_log(ql_log_warn, base_vha, 0xb05f, 5426 "Unknown work-code=0x%x.\n", work_code); 5427 } 5428 5429 return; 5430 } 5431 5432 /* Work: Perform NIC Core Unrecoverable state handling */ 5433 void 5434 qla83xx_nic_core_unrecoverable_work(struct work_struct *work) 5435 { 5436 struct qla_hw_data *ha = 5437 container_of(work, struct qla_hw_data, nic_core_unrecoverable); 5438 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 5439 uint32_t dev_state = 0; 5440 5441 qla83xx_idc_lock(base_vha, 0); 5442 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); 5443 qla83xx_reset_ownership(base_vha); 5444 if (ha->flags.nic_core_reset_owner) { 5445 ha->flags.nic_core_reset_owner = 0; 5446 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, 5447 QLA8XXX_DEV_FAILED); 5448 ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n"); 5449 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); 5450 } 5451 qla83xx_idc_unlock(base_vha, 0); 5452 } 5453 5454 /* Work: Execute IDC state handler */ 5455 void 5456 qla83xx_idc_state_handler_work(struct work_struct *work) 5457 { 5458 struct qla_hw_data *ha = 5459 container_of(work, struct qla_hw_data, idc_state_handler); 5460 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 5461 uint32_t dev_state = 0; 5462 5463 qla83xx_idc_lock(base_vha, 0); 5464 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); 5465 if (dev_state == QLA8XXX_DEV_FAILED || 5466 dev_state == QLA8XXX_DEV_NEED_QUIESCENT) 5467 qla83xx_idc_state_handler(base_vha); 5468 qla83xx_idc_unlock(base_vha, 0); 5469 } 5470 5471 static int 5472 qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha) 5473 { 5474 int rval = QLA_SUCCESS; 5475 unsigned long heart_beat_wait = jiffies + (1 * HZ); 5476 uint32_t heart_beat_counter1, heart_beat_counter2; 5477 5478 do { 5479 if (time_after(jiffies, heart_beat_wait)) { 5480 ql_dbg(ql_dbg_p3p, base_vha, 0xb07c, 5481 "Nic Core f/w is not alive.\n"); 5482 rval = QLA_FUNCTION_FAILED; 5483 break; 5484 } 5485 5486 qla83xx_idc_lock(base_vha, 0); 5487 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, 5488 &heart_beat_counter1); 5489 qla83xx_idc_unlock(base_vha, 0); 5490 msleep(100); 5491 qla83xx_idc_lock(base_vha, 0); 5492 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, 5493 &heart_beat_counter2); 5494 qla83xx_idc_unlock(base_vha, 0); 5495 } while (heart_beat_counter1 == heart_beat_counter2); 5496 5497 return rval; 5498 } 5499 5500 /* Work: Perform NIC Core Reset handling */ 5501 void 5502 qla83xx_nic_core_reset_work(struct work_struct *work) 5503 { 5504 struct qla_hw_data *ha = 5505 container_of(work, struct qla_hw_data, nic_core_reset); 5506 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 5507 uint32_t dev_state = 0; 5508 5509 if (IS_QLA2031(ha)) { 5510 if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS) 5511 ql_log(ql_log_warn, base_vha, 0xb081, 5512 "Failed to dump mctp\n"); 5513 return; 5514 } 5515 5516 if (!ha->flags.nic_core_reset_hdlr_active) { 5517 if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) { 5518 qla83xx_idc_lock(base_vha, 0); 5519 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, 5520 &dev_state); 5521 qla83xx_idc_unlock(base_vha, 0); 5522 if (dev_state != QLA8XXX_DEV_NEED_RESET) { 5523 ql_dbg(ql_dbg_p3p, base_vha, 0xb07a, 5524 "Nic Core f/w is alive.\n"); 5525 return; 5526 } 5527 } 5528 5529 ha->flags.nic_core_reset_hdlr_active = 1; 5530 if (qla83xx_nic_core_reset(base_vha)) { 5531 /* NIC Core reset failed. */ 5532 ql_dbg(ql_dbg_p3p, base_vha, 0xb061, 5533 "NIC Core reset failed.\n"); 5534 } 5535 ha->flags.nic_core_reset_hdlr_active = 0; 5536 } 5537 } 5538 5539 /* Work: Handle 8200 IDC aens */ 5540 void 5541 qla83xx_service_idc_aen(struct work_struct *work) 5542 { 5543 struct qla_hw_data *ha = 5544 container_of(work, struct qla_hw_data, idc_aen); 5545 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 5546 uint32_t dev_state, idc_control; 5547 5548 qla83xx_idc_lock(base_vha, 0); 5549 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); 5550 qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control); 5551 qla83xx_idc_unlock(base_vha, 0); 5552 if (dev_state == QLA8XXX_DEV_NEED_RESET) { 5553 if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) { 5554 ql_dbg(ql_dbg_p3p, base_vha, 0xb062, 5555 "Application requested NIC Core Reset.\n"); 5556 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); 5557 } else if (qla83xx_check_nic_core_fw_alive(base_vha) == 5558 QLA_SUCCESS) { 5559 ql_dbg(ql_dbg_p3p, base_vha, 0xb07b, 5560 "Other protocol driver requested NIC Core Reset.\n"); 5561 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); 5562 } 5563 } else if (dev_state == QLA8XXX_DEV_FAILED || 5564 dev_state == QLA8XXX_DEV_NEED_QUIESCENT) { 5565 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); 5566 } 5567 } 5568 5569 static void 5570 qla83xx_wait_logic(void) 5571 { 5572 int i; 5573 5574 /* Yield CPU */ 5575 if (!in_interrupt()) { 5576 /* 5577 * Wait about 200ms before retrying again. 5578 * This controls the number of retries for single 5579 * lock operation. 5580 */ 5581 msleep(100); 5582 schedule(); 5583 } else { 5584 for (i = 0; i < 20; i++) 5585 cpu_relax(); /* This a nop instr on i386 */ 5586 } 5587 } 5588 5589 static int 5590 qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha) 5591 { 5592 int rval; 5593 uint32_t data; 5594 uint32_t idc_lck_rcvry_stage_mask = 0x3; 5595 uint32_t idc_lck_rcvry_owner_mask = 0x3c; 5596 struct qla_hw_data *ha = base_vha->hw; 5597 5598 ql_dbg(ql_dbg_p3p, base_vha, 0xb086, 5599 "Trying force recovery of the IDC lock.\n"); 5600 5601 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data); 5602 if (rval) 5603 return rval; 5604 5605 if ((data & idc_lck_rcvry_stage_mask) > 0) { 5606 return QLA_SUCCESS; 5607 } else { 5608 data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2); 5609 rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, 5610 data); 5611 if (rval) 5612 return rval; 5613 5614 msleep(200); 5615 5616 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, 5617 &data); 5618 if (rval) 5619 return rval; 5620 5621 if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) { 5622 data &= (IDC_LOCK_RECOVERY_STAGE2 | 5623 ~(idc_lck_rcvry_stage_mask)); 5624 rval = qla83xx_wr_reg(base_vha, 5625 QLA83XX_IDC_LOCK_RECOVERY, data); 5626 if (rval) 5627 return rval; 5628 5629 /* Forcefully perform IDC UnLock */ 5630 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, 5631 &data); 5632 if (rval) 5633 return rval; 5634 /* Clear lock-id by setting 0xff */ 5635 rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 5636 0xff); 5637 if (rval) 5638 return rval; 5639 /* Clear lock-recovery by setting 0x0 */ 5640 rval = qla83xx_wr_reg(base_vha, 5641 QLA83XX_IDC_LOCK_RECOVERY, 0x0); 5642 if (rval) 5643 return rval; 5644 } else 5645 return QLA_SUCCESS; 5646 } 5647 5648 return rval; 5649 } 5650 5651 static int 5652 qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha) 5653 { 5654 int rval = QLA_SUCCESS; 5655 uint32_t o_drv_lockid, n_drv_lockid; 5656 unsigned long lock_recovery_timeout; 5657 5658 lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT; 5659 retry_lockid: 5660 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid); 5661 if (rval) 5662 goto exit; 5663 5664 /* MAX wait time before forcing IDC Lock recovery = 2 secs */ 5665 if (time_after_eq(jiffies, lock_recovery_timeout)) { 5666 if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS) 5667 return QLA_SUCCESS; 5668 else 5669 return QLA_FUNCTION_FAILED; 5670 } 5671 5672 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid); 5673 if (rval) 5674 goto exit; 5675 5676 if (o_drv_lockid == n_drv_lockid) { 5677 qla83xx_wait_logic(); 5678 goto retry_lockid; 5679 } else 5680 return QLA_SUCCESS; 5681 5682 exit: 5683 return rval; 5684 } 5685 5686 void 5687 qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id) 5688 { 5689 uint16_t options = (requester_id << 15) | BIT_6; 5690 uint32_t data; 5691 uint32_t lock_owner; 5692 struct qla_hw_data *ha = base_vha->hw; 5693 5694 /* IDC-lock implementation using driver-lock/lock-id remote registers */ 5695 retry_lock: 5696 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data) 5697 == QLA_SUCCESS) { 5698 if (data) { 5699 /* Setting lock-id to our function-number */ 5700 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 5701 ha->portnum); 5702 } else { 5703 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, 5704 &lock_owner); 5705 ql_dbg(ql_dbg_p3p, base_vha, 0xb063, 5706 "Failed to acquire IDC lock, acquired by %d, " 5707 "retrying...\n", lock_owner); 5708 5709 /* Retry/Perform IDC-Lock recovery */ 5710 if (qla83xx_idc_lock_recovery(base_vha) 5711 == QLA_SUCCESS) { 5712 qla83xx_wait_logic(); 5713 goto retry_lock; 5714 } else 5715 ql_log(ql_log_warn, base_vha, 0xb075, 5716 "IDC Lock recovery FAILED.\n"); 5717 } 5718 5719 } 5720 5721 return; 5722 5723 /* XXX: IDC-lock implementation using access-control mbx */ 5724 retry_lock2: 5725 if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { 5726 ql_dbg(ql_dbg_p3p, base_vha, 0xb072, 5727 "Failed to acquire IDC lock. retrying...\n"); 5728 /* Retry/Perform IDC-Lock recovery */ 5729 if (qla83xx_idc_lock_recovery(base_vha) == QLA_SUCCESS) { 5730 qla83xx_wait_logic(); 5731 goto retry_lock2; 5732 } else 5733 ql_log(ql_log_warn, base_vha, 0xb076, 5734 "IDC Lock recovery FAILED.\n"); 5735 } 5736 5737 return; 5738 } 5739 5740 void 5741 qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id) 5742 { 5743 #if 0 5744 uint16_t options = (requester_id << 15) | BIT_7; 5745 #endif 5746 uint16_t retry; 5747 uint32_t data; 5748 struct qla_hw_data *ha = base_vha->hw; 5749 5750 /* IDC-unlock implementation using driver-unlock/lock-id 5751 * remote registers 5752 */ 5753 retry = 0; 5754 retry_unlock: 5755 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data) 5756 == QLA_SUCCESS) { 5757 if (data == ha->portnum) { 5758 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data); 5759 /* Clearing lock-id by setting 0xff */ 5760 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff); 5761 } else if (retry < 10) { 5762 /* SV: XXX: IDC unlock retrying needed here? */ 5763 5764 /* Retry for IDC-unlock */ 5765 qla83xx_wait_logic(); 5766 retry++; 5767 ql_dbg(ql_dbg_p3p, base_vha, 0xb064, 5768 "Failed to release IDC lock, retrying=%d\n", retry); 5769 goto retry_unlock; 5770 } 5771 } else if (retry < 10) { 5772 /* Retry for IDC-unlock */ 5773 qla83xx_wait_logic(); 5774 retry++; 5775 ql_dbg(ql_dbg_p3p, base_vha, 0xb065, 5776 "Failed to read drv-lockid, retrying=%d\n", retry); 5777 goto retry_unlock; 5778 } 5779 5780 return; 5781 5782 #if 0 5783 /* XXX: IDC-unlock implementation using access-control mbx */ 5784 retry = 0; 5785 retry_unlock2: 5786 if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { 5787 if (retry < 10) { 5788 /* Retry for IDC-unlock */ 5789 qla83xx_wait_logic(); 5790 retry++; 5791 ql_dbg(ql_dbg_p3p, base_vha, 0xb066, 5792 "Failed to release IDC lock, retrying=%d\n", retry); 5793 goto retry_unlock2; 5794 } 5795 } 5796 5797 return; 5798 #endif 5799 } 5800 5801 int 5802 __qla83xx_set_drv_presence(scsi_qla_host_t *vha) 5803 { 5804 int rval = QLA_SUCCESS; 5805 struct qla_hw_data *ha = vha->hw; 5806 uint32_t drv_presence; 5807 5808 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); 5809 if (rval == QLA_SUCCESS) { 5810 drv_presence |= (1 << ha->portnum); 5811 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, 5812 drv_presence); 5813 } 5814 5815 return rval; 5816 } 5817 5818 int 5819 qla83xx_set_drv_presence(scsi_qla_host_t *vha) 5820 { 5821 int rval = QLA_SUCCESS; 5822 5823 qla83xx_idc_lock(vha, 0); 5824 rval = __qla83xx_set_drv_presence(vha); 5825 qla83xx_idc_unlock(vha, 0); 5826 5827 return rval; 5828 } 5829 5830 int 5831 __qla83xx_clear_drv_presence(scsi_qla_host_t *vha) 5832 { 5833 int rval = QLA_SUCCESS; 5834 struct qla_hw_data *ha = vha->hw; 5835 uint32_t drv_presence; 5836 5837 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); 5838 if (rval == QLA_SUCCESS) { 5839 drv_presence &= ~(1 << ha->portnum); 5840 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, 5841 drv_presence); 5842 } 5843 5844 return rval; 5845 } 5846 5847 int 5848 qla83xx_clear_drv_presence(scsi_qla_host_t *vha) 5849 { 5850 int rval = QLA_SUCCESS; 5851 5852 qla83xx_idc_lock(vha, 0); 5853 rval = __qla83xx_clear_drv_presence(vha); 5854 qla83xx_idc_unlock(vha, 0); 5855 5856 return rval; 5857 } 5858 5859 static void 5860 qla83xx_need_reset_handler(scsi_qla_host_t *vha) 5861 { 5862 struct qla_hw_data *ha = vha->hw; 5863 uint32_t drv_ack, drv_presence; 5864 unsigned long ack_timeout; 5865 5866 /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */ 5867 ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ); 5868 while (1) { 5869 qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack); 5870 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); 5871 if ((drv_ack & drv_presence) == drv_presence) 5872 break; 5873 5874 if (time_after_eq(jiffies, ack_timeout)) { 5875 ql_log(ql_log_warn, vha, 0xb067, 5876 "RESET ACK TIMEOUT! drv_presence=0x%x " 5877 "drv_ack=0x%x\n", drv_presence, drv_ack); 5878 /* 5879 * The function(s) which did not ack in time are forced 5880 * to withdraw any further participation in the IDC 5881 * reset. 5882 */ 5883 if (drv_ack != drv_presence) 5884 qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, 5885 drv_ack); 5886 break; 5887 } 5888 5889 qla83xx_idc_unlock(vha, 0); 5890 msleep(1000); 5891 qla83xx_idc_lock(vha, 0); 5892 } 5893 5894 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD); 5895 ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n"); 5896 } 5897 5898 static int 5899 qla83xx_device_bootstrap(scsi_qla_host_t *vha) 5900 { 5901 int rval = QLA_SUCCESS; 5902 uint32_t idc_control; 5903 5904 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING); 5905 ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n"); 5906 5907 /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */ 5908 __qla83xx_get_idc_control(vha, &idc_control); 5909 idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET; 5910 __qla83xx_set_idc_control(vha, 0); 5911 5912 qla83xx_idc_unlock(vha, 0); 5913 rval = qla83xx_restart_nic_firmware(vha); 5914 qla83xx_idc_lock(vha, 0); 5915 5916 if (rval != QLA_SUCCESS) { 5917 ql_log(ql_log_fatal, vha, 0xb06a, 5918 "Failed to restart NIC f/w.\n"); 5919 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED); 5920 ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n"); 5921 } else { 5922 ql_dbg(ql_dbg_p3p, vha, 0xb06c, 5923 "Success in restarting nic f/w.\n"); 5924 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY); 5925 ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n"); 5926 } 5927 5928 return rval; 5929 } 5930 5931 /* Assumes idc_lock always held on entry */ 5932 int 5933 qla83xx_idc_state_handler(scsi_qla_host_t *base_vha) 5934 { 5935 struct qla_hw_data *ha = base_vha->hw; 5936 int rval = QLA_SUCCESS; 5937 unsigned long dev_init_timeout; 5938 uint32_t dev_state; 5939 5940 /* Wait for MAX-INIT-TIMEOUT for the device to go ready */ 5941 dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ); 5942 5943 while (1) { 5944 5945 if (time_after_eq(jiffies, dev_init_timeout)) { 5946 ql_log(ql_log_warn, base_vha, 0xb06e, 5947 "Initialization TIMEOUT!\n"); 5948 /* Init timeout. Disable further NIC Core 5949 * communication. 5950 */ 5951 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, 5952 QLA8XXX_DEV_FAILED); 5953 ql_log(ql_log_info, base_vha, 0xb06f, 5954 "HW State: FAILED.\n"); 5955 } 5956 5957 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); 5958 switch (dev_state) { 5959 case QLA8XXX_DEV_READY: 5960 if (ha->flags.nic_core_reset_owner) 5961 qla83xx_idc_audit(base_vha, 5962 IDC_AUDIT_COMPLETION); 5963 ha->flags.nic_core_reset_owner = 0; 5964 ql_dbg(ql_dbg_p3p, base_vha, 0xb070, 5965 "Reset_owner reset by 0x%x.\n", 5966 ha->portnum); 5967 goto exit; 5968 case QLA8XXX_DEV_COLD: 5969 if (ha->flags.nic_core_reset_owner) 5970 rval = qla83xx_device_bootstrap(base_vha); 5971 else { 5972 /* Wait for AEN to change device-state */ 5973 qla83xx_idc_unlock(base_vha, 0); 5974 msleep(1000); 5975 qla83xx_idc_lock(base_vha, 0); 5976 } 5977 break; 5978 case QLA8XXX_DEV_INITIALIZING: 5979 /* Wait for AEN to change device-state */ 5980 qla83xx_idc_unlock(base_vha, 0); 5981 msleep(1000); 5982 qla83xx_idc_lock(base_vha, 0); 5983 break; 5984 case QLA8XXX_DEV_NEED_RESET: 5985 if (!ql2xdontresethba && ha->flags.nic_core_reset_owner) 5986 qla83xx_need_reset_handler(base_vha); 5987 else { 5988 /* Wait for AEN to change device-state */ 5989 qla83xx_idc_unlock(base_vha, 0); 5990 msleep(1000); 5991 qla83xx_idc_lock(base_vha, 0); 5992 } 5993 /* reset timeout value after need reset handler */ 5994 dev_init_timeout = jiffies + 5995 (ha->fcoe_dev_init_timeout * HZ); 5996 break; 5997 case QLA8XXX_DEV_NEED_QUIESCENT: 5998 /* XXX: DEBUG for now */ 5999 qla83xx_idc_unlock(base_vha, 0); 6000 msleep(1000); 6001 qla83xx_idc_lock(base_vha, 0); 6002 break; 6003 case QLA8XXX_DEV_QUIESCENT: 6004 /* XXX: DEBUG for now */ 6005 if (ha->flags.quiesce_owner) 6006 goto exit; 6007 6008 qla83xx_idc_unlock(base_vha, 0); 6009 msleep(1000); 6010 qla83xx_idc_lock(base_vha, 0); 6011 dev_init_timeout = jiffies + 6012 (ha->fcoe_dev_init_timeout * HZ); 6013 break; 6014 case QLA8XXX_DEV_FAILED: 6015 if (ha->flags.nic_core_reset_owner) 6016 qla83xx_idc_audit(base_vha, 6017 IDC_AUDIT_COMPLETION); 6018 ha->flags.nic_core_reset_owner = 0; 6019 __qla83xx_clear_drv_presence(base_vha); 6020 qla83xx_idc_unlock(base_vha, 0); 6021 qla8xxx_dev_failed_handler(base_vha); 6022 rval = QLA_FUNCTION_FAILED; 6023 qla83xx_idc_lock(base_vha, 0); 6024 goto exit; 6025 case QLA8XXX_BAD_VALUE: 6026 qla83xx_idc_unlock(base_vha, 0); 6027 msleep(1000); 6028 qla83xx_idc_lock(base_vha, 0); 6029 break; 6030 default: 6031 ql_log(ql_log_warn, base_vha, 0xb071, 6032 "Unknown Device State: %x.\n", dev_state); 6033 qla83xx_idc_unlock(base_vha, 0); 6034 qla8xxx_dev_failed_handler(base_vha); 6035 rval = QLA_FUNCTION_FAILED; 6036 qla83xx_idc_lock(base_vha, 0); 6037 goto exit; 6038 } 6039 } 6040 6041 exit: 6042 return rval; 6043 } 6044 6045 void 6046 qla2x00_disable_board_on_pci_error(struct work_struct *work) 6047 { 6048 struct qla_hw_data *ha = container_of(work, struct qla_hw_data, 6049 board_disable); 6050 struct pci_dev *pdev = ha->pdev; 6051 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 6052 6053 /* 6054 * if UNLOAD flag is already set, then continue unload, 6055 * where it was set first. 6056 */ 6057 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 6058 return; 6059 6060 ql_log(ql_log_warn, base_vha, 0x015b, 6061 "Disabling adapter.\n"); 6062 6063 if (!atomic_read(&pdev->enable_cnt)) { 6064 ql_log(ql_log_info, base_vha, 0xfffc, 6065 "PCI device disabled, no action req for PCI error=%lx\n", 6066 base_vha->pci_flags); 6067 return; 6068 } 6069 6070 qla2x00_wait_for_sess_deletion(base_vha); 6071 6072 set_bit(UNLOADING, &base_vha->dpc_flags); 6073 6074 qla2x00_delete_all_vps(ha, base_vha); 6075 6076 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); 6077 6078 qla2x00_dfs_remove(base_vha); 6079 6080 qla84xx_put_chip(base_vha); 6081 6082 if (base_vha->timer_active) 6083 qla2x00_stop_timer(base_vha); 6084 6085 base_vha->flags.online = 0; 6086 6087 qla2x00_destroy_deferred_work(ha); 6088 6089 /* 6090 * Do not try to stop beacon blink as it will issue a mailbox 6091 * command. 6092 */ 6093 qla2x00_free_sysfs_attr(base_vha, false); 6094 6095 fc_remove_host(base_vha->host); 6096 6097 scsi_remove_host(base_vha->host); 6098 6099 base_vha->flags.init_done = 0; 6100 qla25xx_delete_queues(base_vha); 6101 qla2x00_free_fcports(base_vha); 6102 qla2x00_free_irqs(base_vha); 6103 qla2x00_mem_free(ha); 6104 qla82xx_md_free(base_vha); 6105 qla2x00_free_queues(ha); 6106 6107 qla2x00_unmap_iobases(ha); 6108 6109 pci_release_selected_regions(ha->pdev, ha->bars); 6110 pci_disable_pcie_error_reporting(pdev); 6111 pci_disable_device(pdev); 6112 6113 /* 6114 * Let qla2x00_remove_one cleanup qla_hw_data on device removal. 6115 */ 6116 } 6117 6118 /************************************************************************** 6119 * qla2x00_do_dpc 6120 * This kernel thread is a task that is schedule by the interrupt handler 6121 * to perform the background processing for interrupts. 6122 * 6123 * Notes: 6124 * This task always run in the context of a kernel thread. It 6125 * is kick-off by the driver's detect code and starts up 6126 * up one per adapter. It immediately goes to sleep and waits for 6127 * some fibre event. When either the interrupt handler or 6128 * the timer routine detects a event it will one of the task 6129 * bits then wake us up. 6130 **************************************************************************/ 6131 static int 6132 qla2x00_do_dpc(void *data) 6133 { 6134 scsi_qla_host_t *base_vha; 6135 struct qla_hw_data *ha; 6136 uint32_t online; 6137 struct qla_qpair *qpair; 6138 6139 ha = (struct qla_hw_data *)data; 6140 base_vha = pci_get_drvdata(ha->pdev); 6141 6142 set_user_nice(current, MIN_NICE); 6143 6144 set_current_state(TASK_INTERRUPTIBLE); 6145 while (!kthread_should_stop()) { 6146 ql_dbg(ql_dbg_dpc, base_vha, 0x4000, 6147 "DPC handler sleeping.\n"); 6148 6149 schedule(); 6150 6151 if (!base_vha->flags.init_done || ha->flags.mbox_busy) 6152 goto end_loop; 6153 6154 if (ha->flags.eeh_busy) { 6155 ql_dbg(ql_dbg_dpc, base_vha, 0x4003, 6156 "eeh_busy=%d.\n", ha->flags.eeh_busy); 6157 goto end_loop; 6158 } 6159 6160 ha->dpc_active = 1; 6161 6162 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001, 6163 "DPC handler waking up, dpc_flags=0x%lx.\n", 6164 base_vha->dpc_flags); 6165 6166 if (test_bit(UNLOADING, &base_vha->dpc_flags)) 6167 break; 6168 6169 if (IS_P3P_TYPE(ha)) { 6170 if (IS_QLA8044(ha)) { 6171 if (test_and_clear_bit(ISP_UNRECOVERABLE, 6172 &base_vha->dpc_flags)) { 6173 qla8044_idc_lock(ha); 6174 qla8044_wr_direct(base_vha, 6175 QLA8044_CRB_DEV_STATE_INDEX, 6176 QLA8XXX_DEV_FAILED); 6177 qla8044_idc_unlock(ha); 6178 ql_log(ql_log_info, base_vha, 0x4004, 6179 "HW State: FAILED.\n"); 6180 qla8044_device_state_handler(base_vha); 6181 continue; 6182 } 6183 6184 } else { 6185 if (test_and_clear_bit(ISP_UNRECOVERABLE, 6186 &base_vha->dpc_flags)) { 6187 qla82xx_idc_lock(ha); 6188 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, 6189 QLA8XXX_DEV_FAILED); 6190 qla82xx_idc_unlock(ha); 6191 ql_log(ql_log_info, base_vha, 0x0151, 6192 "HW State: FAILED.\n"); 6193 qla82xx_device_state_handler(base_vha); 6194 continue; 6195 } 6196 } 6197 6198 if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED, 6199 &base_vha->dpc_flags)) { 6200 6201 ql_dbg(ql_dbg_dpc, base_vha, 0x4005, 6202 "FCoE context reset scheduled.\n"); 6203 if (!(test_and_set_bit(ABORT_ISP_ACTIVE, 6204 &base_vha->dpc_flags))) { 6205 if (qla82xx_fcoe_ctx_reset(base_vha)) { 6206 /* FCoE-ctx reset failed. 6207 * Escalate to chip-reset 6208 */ 6209 set_bit(ISP_ABORT_NEEDED, 6210 &base_vha->dpc_flags); 6211 } 6212 clear_bit(ABORT_ISP_ACTIVE, 6213 &base_vha->dpc_flags); 6214 } 6215 6216 ql_dbg(ql_dbg_dpc, base_vha, 0x4006, 6217 "FCoE context reset end.\n"); 6218 } 6219 } else if (IS_QLAFX00(ha)) { 6220 if (test_and_clear_bit(ISP_UNRECOVERABLE, 6221 &base_vha->dpc_flags)) { 6222 ql_dbg(ql_dbg_dpc, base_vha, 0x4020, 6223 "Firmware Reset Recovery\n"); 6224 if (qlafx00_reset_initialize(base_vha)) { 6225 /* Failed. Abort isp later. */ 6226 if (!test_bit(UNLOADING, 6227 &base_vha->dpc_flags)) { 6228 set_bit(ISP_UNRECOVERABLE, 6229 &base_vha->dpc_flags); 6230 ql_dbg(ql_dbg_dpc, base_vha, 6231 0x4021, 6232 "Reset Recovery Failed\n"); 6233 } 6234 } 6235 } 6236 6237 if (test_and_clear_bit(FX00_TARGET_SCAN, 6238 &base_vha->dpc_flags)) { 6239 ql_dbg(ql_dbg_dpc, base_vha, 0x4022, 6240 "ISPFx00 Target Scan scheduled\n"); 6241 if (qlafx00_rescan_isp(base_vha)) { 6242 if (!test_bit(UNLOADING, 6243 &base_vha->dpc_flags)) 6244 set_bit(ISP_UNRECOVERABLE, 6245 &base_vha->dpc_flags); 6246 ql_dbg(ql_dbg_dpc, base_vha, 0x401e, 6247 "ISPFx00 Target Scan Failed\n"); 6248 } 6249 ql_dbg(ql_dbg_dpc, base_vha, 0x401f, 6250 "ISPFx00 Target Scan End\n"); 6251 } 6252 if (test_and_clear_bit(FX00_HOST_INFO_RESEND, 6253 &base_vha->dpc_flags)) { 6254 ql_dbg(ql_dbg_dpc, base_vha, 0x4023, 6255 "ISPFx00 Host Info resend scheduled\n"); 6256 qlafx00_fx_disc(base_vha, 6257 &base_vha->hw->mr.fcport, 6258 FXDISC_REG_HOST_INFO); 6259 } 6260 } 6261 6262 if (test_and_clear_bit(DETECT_SFP_CHANGE, 6263 &base_vha->dpc_flags) && 6264 !test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) { 6265 qla24xx_detect_sfp(base_vha); 6266 6267 if (ha->flags.detected_lr_sfp != 6268 ha->flags.using_lr_setting) 6269 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); 6270 } 6271 6272 if (test_and_clear_bit 6273 (ISP_ABORT_NEEDED, &base_vha->dpc_flags) && 6274 !test_bit(UNLOADING, &base_vha->dpc_flags)) { 6275 bool do_reset = true; 6276 6277 switch (base_vha->qlini_mode) { 6278 case QLA2XXX_INI_MODE_ENABLED: 6279 break; 6280 case QLA2XXX_INI_MODE_DISABLED: 6281 if (!qla_tgt_mode_enabled(base_vha) && 6282 !ha->flags.fw_started) 6283 do_reset = false; 6284 break; 6285 case QLA2XXX_INI_MODE_DUAL: 6286 if (!qla_dual_mode_enabled(base_vha) && 6287 !ha->flags.fw_started) 6288 do_reset = false; 6289 break; 6290 default: 6291 break; 6292 } 6293 6294 if (do_reset && !(test_and_set_bit(ABORT_ISP_ACTIVE, 6295 &base_vha->dpc_flags))) { 6296 ql_dbg(ql_dbg_dpc, base_vha, 0x4007, 6297 "ISP abort scheduled.\n"); 6298 if (ha->isp_ops->abort_isp(base_vha)) { 6299 /* failed. retry later */ 6300 set_bit(ISP_ABORT_NEEDED, 6301 &base_vha->dpc_flags); 6302 } 6303 clear_bit(ABORT_ISP_ACTIVE, 6304 &base_vha->dpc_flags); 6305 ql_dbg(ql_dbg_dpc, base_vha, 0x4008, 6306 "ISP abort end.\n"); 6307 } 6308 } 6309 6310 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, 6311 &base_vha->dpc_flags)) { 6312 qla2x00_update_fcports(base_vha); 6313 } 6314 6315 if (IS_QLAFX00(ha)) 6316 goto loop_resync_check; 6317 6318 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) { 6319 ql_dbg(ql_dbg_dpc, base_vha, 0x4009, 6320 "Quiescence mode scheduled.\n"); 6321 if (IS_P3P_TYPE(ha)) { 6322 if (IS_QLA82XX(ha)) 6323 qla82xx_device_state_handler(base_vha); 6324 if (IS_QLA8044(ha)) 6325 qla8044_device_state_handler(base_vha); 6326 clear_bit(ISP_QUIESCE_NEEDED, 6327 &base_vha->dpc_flags); 6328 if (!ha->flags.quiesce_owner) { 6329 qla2x00_perform_loop_resync(base_vha); 6330 if (IS_QLA82XX(ha)) { 6331 qla82xx_idc_lock(ha); 6332 qla82xx_clear_qsnt_ready( 6333 base_vha); 6334 qla82xx_idc_unlock(ha); 6335 } else if (IS_QLA8044(ha)) { 6336 qla8044_idc_lock(ha); 6337 qla8044_clear_qsnt_ready( 6338 base_vha); 6339 qla8044_idc_unlock(ha); 6340 } 6341 } 6342 } else { 6343 clear_bit(ISP_QUIESCE_NEEDED, 6344 &base_vha->dpc_flags); 6345 qla2x00_quiesce_io(base_vha); 6346 } 6347 ql_dbg(ql_dbg_dpc, base_vha, 0x400a, 6348 "Quiescence mode end.\n"); 6349 } 6350 6351 if (test_and_clear_bit(RESET_MARKER_NEEDED, 6352 &base_vha->dpc_flags) && 6353 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { 6354 6355 ql_dbg(ql_dbg_dpc, base_vha, 0x400b, 6356 "Reset marker scheduled.\n"); 6357 qla2x00_rst_aen(base_vha); 6358 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); 6359 ql_dbg(ql_dbg_dpc, base_vha, 0x400c, 6360 "Reset marker end.\n"); 6361 } 6362 6363 /* Retry each device up to login retry count */ 6364 if (test_bit(RELOGIN_NEEDED, &base_vha->dpc_flags) && 6365 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && 6366 atomic_read(&base_vha->loop_state) != LOOP_DOWN) { 6367 6368 if (!base_vha->relogin_jif || 6369 time_after_eq(jiffies, base_vha->relogin_jif)) { 6370 base_vha->relogin_jif = jiffies + HZ; 6371 clear_bit(RELOGIN_NEEDED, &base_vha->dpc_flags); 6372 6373 ql_dbg(ql_dbg_disc, base_vha, 0x400d, 6374 "Relogin scheduled.\n"); 6375 qla24xx_post_relogin_work(base_vha); 6376 } 6377 } 6378 loop_resync_check: 6379 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, 6380 &base_vha->dpc_flags)) { 6381 6382 ql_dbg(ql_dbg_dpc, base_vha, 0x400f, 6383 "Loop resync scheduled.\n"); 6384 6385 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, 6386 &base_vha->dpc_flags))) { 6387 6388 qla2x00_loop_resync(base_vha); 6389 6390 clear_bit(LOOP_RESYNC_ACTIVE, 6391 &base_vha->dpc_flags); 6392 } 6393 6394 ql_dbg(ql_dbg_dpc, base_vha, 0x4010, 6395 "Loop resync end.\n"); 6396 } 6397 6398 if (IS_QLAFX00(ha)) 6399 goto intr_on_check; 6400 6401 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && 6402 atomic_read(&base_vha->loop_state) == LOOP_READY) { 6403 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); 6404 qla2xxx_flash_npiv_conf(base_vha); 6405 } 6406 6407 intr_on_check: 6408 if (!ha->interrupts_on) 6409 ha->isp_ops->enable_intrs(ha); 6410 6411 if (test_and_clear_bit(BEACON_BLINK_NEEDED, 6412 &base_vha->dpc_flags)) { 6413 if (ha->beacon_blink_led == 1) 6414 ha->isp_ops->beacon_blink(base_vha); 6415 } 6416 6417 /* qpair online check */ 6418 if (test_and_clear_bit(QPAIR_ONLINE_CHECK_NEEDED, 6419 &base_vha->dpc_flags)) { 6420 if (ha->flags.eeh_busy || 6421 ha->flags.pci_channel_io_perm_failure) 6422 online = 0; 6423 else 6424 online = 1; 6425 6426 mutex_lock(&ha->mq_lock); 6427 list_for_each_entry(qpair, &base_vha->qp_list, 6428 qp_list_elem) 6429 qpair->online = online; 6430 mutex_unlock(&ha->mq_lock); 6431 } 6432 6433 if (test_and_clear_bit(SET_NVME_ZIO_THRESHOLD_NEEDED, 6434 &base_vha->dpc_flags)) { 6435 ql_log(ql_log_info, base_vha, 0xffffff, 6436 "nvme: SET ZIO Activity exchange threshold to %d.\n", 6437 ha->nvme_last_rptd_aen); 6438 if (qla27xx_set_zio_threshold(base_vha, 6439 ha->nvme_last_rptd_aen)) { 6440 ql_log(ql_log_info, base_vha, 0xffffff, 6441 "nvme: Unable to SET ZIO Activity exchange threshold to %d.\n", 6442 ha->nvme_last_rptd_aen); 6443 } 6444 } 6445 6446 if (test_and_clear_bit(SET_ZIO_THRESHOLD_NEEDED, 6447 &base_vha->dpc_flags)) { 6448 ql_log(ql_log_info, base_vha, 0xffffff, 6449 "SET ZIO Activity exchange threshold to %d.\n", 6450 ha->last_zio_threshold); 6451 qla27xx_set_zio_threshold(base_vha, 6452 ha->last_zio_threshold); 6453 } 6454 6455 if (!IS_QLAFX00(ha)) 6456 qla2x00_do_dpc_all_vps(base_vha); 6457 6458 if (test_and_clear_bit(N2N_LINK_RESET, 6459 &base_vha->dpc_flags)) { 6460 qla2x00_lip_reset(base_vha); 6461 } 6462 6463 ha->dpc_active = 0; 6464 end_loop: 6465 set_current_state(TASK_INTERRUPTIBLE); 6466 } /* End of while(1) */ 6467 __set_current_state(TASK_RUNNING); 6468 6469 ql_dbg(ql_dbg_dpc, base_vha, 0x4011, 6470 "DPC handler exiting.\n"); 6471 6472 /* 6473 * Make sure that nobody tries to wake us up again. 6474 */ 6475 ha->dpc_active = 0; 6476 6477 /* Cleanup any residual CTX SRBs. */ 6478 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); 6479 6480 return 0; 6481 } 6482 6483 void 6484 qla2xxx_wake_dpc(struct scsi_qla_host *vha) 6485 { 6486 struct qla_hw_data *ha = vha->hw; 6487 struct task_struct *t = ha->dpc_thread; 6488 6489 if (!test_bit(UNLOADING, &vha->dpc_flags) && t) 6490 wake_up_process(t); 6491 } 6492 6493 /* 6494 * qla2x00_rst_aen 6495 * Processes asynchronous reset. 6496 * 6497 * Input: 6498 * ha = adapter block pointer. 6499 */ 6500 static void 6501 qla2x00_rst_aen(scsi_qla_host_t *vha) 6502 { 6503 if (vha->flags.online && !vha->flags.reset_active && 6504 !atomic_read(&vha->loop_down_timer) && 6505 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { 6506 do { 6507 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); 6508 6509 /* 6510 * Issue marker command only when we are going to start 6511 * the I/O. 6512 */ 6513 vha->marker_needed = 1; 6514 } while (!atomic_read(&vha->loop_down_timer) && 6515 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); 6516 } 6517 } 6518 6519 /************************************************************************** 6520 * qla2x00_timer 6521 * 6522 * Description: 6523 * One second timer 6524 * 6525 * Context: Interrupt 6526 ***************************************************************************/ 6527 void 6528 qla2x00_timer(struct timer_list *t) 6529 { 6530 scsi_qla_host_t *vha = from_timer(vha, t, timer); 6531 unsigned long cpu_flags = 0; 6532 int start_dpc = 0; 6533 int index; 6534 srb_t *sp; 6535 uint16_t w; 6536 struct qla_hw_data *ha = vha->hw; 6537 struct req_que *req; 6538 6539 if (ha->flags.eeh_busy) { 6540 ql_dbg(ql_dbg_timer, vha, 0x6000, 6541 "EEH = %d, restarting timer.\n", 6542 ha->flags.eeh_busy); 6543 qla2x00_restart_timer(vha, WATCH_INTERVAL); 6544 return; 6545 } 6546 6547 /* 6548 * Hardware read to raise pending EEH errors during mailbox waits. If 6549 * the read returns -1 then disable the board. 6550 */ 6551 if (!pci_channel_offline(ha->pdev)) { 6552 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w); 6553 qla2x00_check_reg16_for_disconnect(vha, w); 6554 } 6555 6556 /* Make sure qla82xx_watchdog is run only for physical port */ 6557 if (!vha->vp_idx && IS_P3P_TYPE(ha)) { 6558 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) 6559 start_dpc++; 6560 if (IS_QLA82XX(ha)) 6561 qla82xx_watchdog(vha); 6562 else if (IS_QLA8044(ha)) 6563 qla8044_watchdog(vha); 6564 } 6565 6566 if (!vha->vp_idx && IS_QLAFX00(ha)) 6567 qlafx00_timer_routine(vha); 6568 6569 /* Loop down handler. */ 6570 if (atomic_read(&vha->loop_down_timer) > 0 && 6571 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) && 6572 !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags)) 6573 && vha->flags.online) { 6574 6575 if (atomic_read(&vha->loop_down_timer) == 6576 vha->loop_down_abort_time) { 6577 6578 ql_log(ql_log_info, vha, 0x6008, 6579 "Loop down - aborting the queues before time expires.\n"); 6580 6581 if (!IS_QLA2100(ha) && vha->link_down_timeout) 6582 atomic_set(&vha->loop_state, LOOP_DEAD); 6583 6584 /* 6585 * Schedule an ISP abort to return any FCP2-device 6586 * commands. 6587 */ 6588 /* NPIV - scan physical port only */ 6589 if (!vha->vp_idx) { 6590 spin_lock_irqsave(&ha->hardware_lock, 6591 cpu_flags); 6592 req = ha->req_q_map[0]; 6593 for (index = 1; 6594 index < req->num_outstanding_cmds; 6595 index++) { 6596 fc_port_t *sfcp; 6597 6598 sp = req->outstanding_cmds[index]; 6599 if (!sp) 6600 continue; 6601 if (sp->cmd_type != TYPE_SRB) 6602 continue; 6603 if (sp->type != SRB_SCSI_CMD) 6604 continue; 6605 sfcp = sp->fcport; 6606 if (!(sfcp->flags & FCF_FCP2_DEVICE)) 6607 continue; 6608 6609 if (IS_QLA82XX(ha)) 6610 set_bit(FCOE_CTX_RESET_NEEDED, 6611 &vha->dpc_flags); 6612 else 6613 set_bit(ISP_ABORT_NEEDED, 6614 &vha->dpc_flags); 6615 break; 6616 } 6617 spin_unlock_irqrestore(&ha->hardware_lock, 6618 cpu_flags); 6619 } 6620 start_dpc++; 6621 } 6622 6623 /* if the loop has been down for 4 minutes, reinit adapter */ 6624 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { 6625 if (!(vha->device_flags & DFLG_NO_CABLE)) { 6626 ql_log(ql_log_warn, vha, 0x6009, 6627 "Loop down - aborting ISP.\n"); 6628 6629 if (IS_QLA82XX(ha)) 6630 set_bit(FCOE_CTX_RESET_NEEDED, 6631 &vha->dpc_flags); 6632 else 6633 set_bit(ISP_ABORT_NEEDED, 6634 &vha->dpc_flags); 6635 } 6636 } 6637 ql_dbg(ql_dbg_timer, vha, 0x600a, 6638 "Loop down - seconds remaining %d.\n", 6639 atomic_read(&vha->loop_down_timer)); 6640 } 6641 /* Check if beacon LED needs to be blinked for physical host only */ 6642 if (!vha->vp_idx && (ha->beacon_blink_led == 1)) { 6643 /* There is no beacon_blink function for ISP82xx */ 6644 if (!IS_P3P_TYPE(ha)) { 6645 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); 6646 start_dpc++; 6647 } 6648 } 6649 6650 /* Process any deferred work. */ 6651 if (!list_empty(&vha->work_list)) { 6652 unsigned long flags; 6653 bool q = false; 6654 6655 spin_lock_irqsave(&vha->work_lock, flags); 6656 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags)) 6657 q = true; 6658 spin_unlock_irqrestore(&vha->work_lock, flags); 6659 if (q) 6660 queue_work(vha->hw->wq, &vha->iocb_work); 6661 } 6662 6663 /* 6664 * FC-NVME 6665 * see if the active AEN count has changed from what was last reported. 6666 */ 6667 if (!vha->vp_idx && 6668 (atomic_read(&ha->nvme_active_aen_cnt) != ha->nvme_last_rptd_aen) && 6669 ha->zio_mode == QLA_ZIO_MODE_6 && 6670 !ha->flags.host_shutting_down) { 6671 ql_log(ql_log_info, vha, 0x3002, 6672 "nvme: Sched: Set ZIO exchange threshold to %d.\n", 6673 ha->nvme_last_rptd_aen); 6674 ha->nvme_last_rptd_aen = atomic_read(&ha->nvme_active_aen_cnt); 6675 set_bit(SET_NVME_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags); 6676 start_dpc++; 6677 } 6678 6679 if (!vha->vp_idx && 6680 (atomic_read(&ha->zio_threshold) != ha->last_zio_threshold) && 6681 (ha->zio_mode == QLA_ZIO_MODE_6) && 6682 (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha))) { 6683 ql_log(ql_log_info, vha, 0x3002, 6684 "Sched: Set ZIO exchange threshold to %d.\n", 6685 ha->last_zio_threshold); 6686 ha->last_zio_threshold = atomic_read(&ha->zio_threshold); 6687 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags); 6688 start_dpc++; 6689 } 6690 6691 /* Schedule the DPC routine if needed */ 6692 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || 6693 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || 6694 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || 6695 start_dpc || 6696 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || 6697 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || 6698 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) || 6699 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) || 6700 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || 6701 test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) { 6702 ql_dbg(ql_dbg_timer, vha, 0x600b, 6703 "isp_abort_needed=%d loop_resync_needed=%d " 6704 "fcport_update_needed=%d start_dpc=%d " 6705 "reset_marker_needed=%d", 6706 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags), 6707 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags), 6708 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags), 6709 start_dpc, 6710 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)); 6711 ql_dbg(ql_dbg_timer, vha, 0x600c, 6712 "beacon_blink_needed=%d isp_unrecoverable=%d " 6713 "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d " 6714 "relogin_needed=%d.\n", 6715 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags), 6716 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags), 6717 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags), 6718 test_bit(VP_DPC_NEEDED, &vha->dpc_flags), 6719 test_bit(RELOGIN_NEEDED, &vha->dpc_flags)); 6720 qla2xxx_wake_dpc(vha); 6721 } 6722 6723 qla2x00_restart_timer(vha, WATCH_INTERVAL); 6724 } 6725 6726 /* Firmware interface routines. */ 6727 6728 #define FW_ISP21XX 0 6729 #define FW_ISP22XX 1 6730 #define FW_ISP2300 2 6731 #define FW_ISP2322 3 6732 #define FW_ISP24XX 4 6733 #define FW_ISP25XX 5 6734 #define FW_ISP81XX 6 6735 #define FW_ISP82XX 7 6736 #define FW_ISP2031 8 6737 #define FW_ISP8031 9 6738 #define FW_ISP27XX 10 6739 #define FW_ISP28XX 11 6740 6741 #define FW_FILE_ISP21XX "ql2100_fw.bin" 6742 #define FW_FILE_ISP22XX "ql2200_fw.bin" 6743 #define FW_FILE_ISP2300 "ql2300_fw.bin" 6744 #define FW_FILE_ISP2322 "ql2322_fw.bin" 6745 #define FW_FILE_ISP24XX "ql2400_fw.bin" 6746 #define FW_FILE_ISP25XX "ql2500_fw.bin" 6747 #define FW_FILE_ISP81XX "ql8100_fw.bin" 6748 #define FW_FILE_ISP82XX "ql8200_fw.bin" 6749 #define FW_FILE_ISP2031 "ql2600_fw.bin" 6750 #define FW_FILE_ISP8031 "ql8300_fw.bin" 6751 #define FW_FILE_ISP27XX "ql2700_fw.bin" 6752 #define FW_FILE_ISP28XX "ql2800_fw.bin" 6753 6754 6755 static DEFINE_MUTEX(qla_fw_lock); 6756 6757 static struct fw_blob qla_fw_blobs[] = { 6758 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, 6759 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, 6760 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, 6761 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, 6762 { .name = FW_FILE_ISP24XX, }, 6763 { .name = FW_FILE_ISP25XX, }, 6764 { .name = FW_FILE_ISP81XX, }, 6765 { .name = FW_FILE_ISP82XX, }, 6766 { .name = FW_FILE_ISP2031, }, 6767 { .name = FW_FILE_ISP8031, }, 6768 { .name = FW_FILE_ISP27XX, }, 6769 { .name = FW_FILE_ISP28XX, }, 6770 { .name = NULL, }, 6771 }; 6772 6773 struct fw_blob * 6774 qla2x00_request_firmware(scsi_qla_host_t *vha) 6775 { 6776 struct qla_hw_data *ha = vha->hw; 6777 struct fw_blob *blob; 6778 6779 if (IS_QLA2100(ha)) { 6780 blob = &qla_fw_blobs[FW_ISP21XX]; 6781 } else if (IS_QLA2200(ha)) { 6782 blob = &qla_fw_blobs[FW_ISP22XX]; 6783 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { 6784 blob = &qla_fw_blobs[FW_ISP2300]; 6785 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { 6786 blob = &qla_fw_blobs[FW_ISP2322]; 6787 } else if (IS_QLA24XX_TYPE(ha)) { 6788 blob = &qla_fw_blobs[FW_ISP24XX]; 6789 } else if (IS_QLA25XX(ha)) { 6790 blob = &qla_fw_blobs[FW_ISP25XX]; 6791 } else if (IS_QLA81XX(ha)) { 6792 blob = &qla_fw_blobs[FW_ISP81XX]; 6793 } else if (IS_QLA82XX(ha)) { 6794 blob = &qla_fw_blobs[FW_ISP82XX]; 6795 } else if (IS_QLA2031(ha)) { 6796 blob = &qla_fw_blobs[FW_ISP2031]; 6797 } else if (IS_QLA8031(ha)) { 6798 blob = &qla_fw_blobs[FW_ISP8031]; 6799 } else if (IS_QLA27XX(ha)) { 6800 blob = &qla_fw_blobs[FW_ISP27XX]; 6801 } else if (IS_QLA28XX(ha)) { 6802 blob = &qla_fw_blobs[FW_ISP28XX]; 6803 } else { 6804 return NULL; 6805 } 6806 6807 if (!blob->name) 6808 return NULL; 6809 6810 mutex_lock(&qla_fw_lock); 6811 if (blob->fw) 6812 goto out; 6813 6814 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { 6815 ql_log(ql_log_warn, vha, 0x0063, 6816 "Failed to load firmware image (%s).\n", blob->name); 6817 blob->fw = NULL; 6818 blob = NULL; 6819 } 6820 6821 out: 6822 mutex_unlock(&qla_fw_lock); 6823 return blob; 6824 } 6825 6826 static void 6827 qla2x00_release_firmware(void) 6828 { 6829 struct fw_blob *blob; 6830 6831 mutex_lock(&qla_fw_lock); 6832 for (blob = qla_fw_blobs; blob->name; blob++) 6833 release_firmware(blob->fw); 6834 mutex_unlock(&qla_fw_lock); 6835 } 6836 6837 static void qla_pci_error_cleanup(scsi_qla_host_t *vha) 6838 { 6839 struct qla_hw_data *ha = vha->hw; 6840 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); 6841 struct qla_qpair *qpair = NULL; 6842 struct scsi_qla_host *vp; 6843 fc_port_t *fcport; 6844 int i; 6845 unsigned long flags; 6846 6847 ha->chip_reset++; 6848 6849 ha->base_qpair->chip_reset = ha->chip_reset; 6850 for (i = 0; i < ha->max_qpairs; i++) { 6851 if (ha->queue_pair_map[i]) 6852 ha->queue_pair_map[i]->chip_reset = 6853 ha->base_qpair->chip_reset; 6854 } 6855 6856 /* purge MBox commands */ 6857 if (atomic_read(&ha->num_pend_mbx_stage3)) { 6858 clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); 6859 complete(&ha->mbx_intr_comp); 6860 } 6861 6862 i = 0; 6863 6864 while (atomic_read(&ha->num_pend_mbx_stage3) || 6865 atomic_read(&ha->num_pend_mbx_stage2) || 6866 atomic_read(&ha->num_pend_mbx_stage1)) { 6867 msleep(20); 6868 i++; 6869 if (i > 50) 6870 break; 6871 } 6872 6873 ha->flags.purge_mbox = 0; 6874 6875 mutex_lock(&ha->mq_lock); 6876 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem) 6877 qpair->online = 0; 6878 mutex_unlock(&ha->mq_lock); 6879 6880 qla2x00_mark_all_devices_lost(vha, 0); 6881 6882 spin_lock_irqsave(&ha->vport_slock, flags); 6883 list_for_each_entry(vp, &ha->vp_list, list) { 6884 atomic_inc(&vp->vref_count); 6885 spin_unlock_irqrestore(&ha->vport_slock, flags); 6886 qla2x00_mark_all_devices_lost(vp, 0); 6887 spin_lock_irqsave(&ha->vport_slock, flags); 6888 atomic_dec(&vp->vref_count); 6889 } 6890 spin_unlock_irqrestore(&ha->vport_slock, flags); 6891 6892 /* Clear all async request states across all VPs. */ 6893 list_for_each_entry(fcport, &vha->vp_fcports, list) 6894 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT); 6895 6896 spin_lock_irqsave(&ha->vport_slock, flags); 6897 list_for_each_entry(vp, &ha->vp_list, list) { 6898 atomic_inc(&vp->vref_count); 6899 spin_unlock_irqrestore(&ha->vport_slock, flags); 6900 list_for_each_entry(fcport, &vp->vp_fcports, list) 6901 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT); 6902 spin_lock_irqsave(&ha->vport_slock, flags); 6903 atomic_dec(&vp->vref_count); 6904 } 6905 spin_unlock_irqrestore(&ha->vport_slock, flags); 6906 } 6907 6908 6909 static pci_ers_result_t 6910 qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) 6911 { 6912 scsi_qla_host_t *vha = pci_get_drvdata(pdev); 6913 struct qla_hw_data *ha = vha->hw; 6914 6915 ql_dbg(ql_dbg_aer, vha, 0x9000, 6916 "PCI error detected, state %x.\n", state); 6917 6918 if (!atomic_read(&pdev->enable_cnt)) { 6919 ql_log(ql_log_info, vha, 0xffff, 6920 "PCI device is disabled,state %x\n", state); 6921 return PCI_ERS_RESULT_NEED_RESET; 6922 } 6923 6924 switch (state) { 6925 case pci_channel_io_normal: 6926 ha->flags.eeh_busy = 0; 6927 if (ql2xmqsupport || ql2xnvmeenable) { 6928 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags); 6929 qla2xxx_wake_dpc(vha); 6930 } 6931 return PCI_ERS_RESULT_CAN_RECOVER; 6932 case pci_channel_io_frozen: 6933 ha->flags.eeh_busy = 1; 6934 qla_pci_error_cleanup(vha); 6935 return PCI_ERS_RESULT_NEED_RESET; 6936 case pci_channel_io_perm_failure: 6937 ha->flags.pci_channel_io_perm_failure = 1; 6938 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); 6939 if (ql2xmqsupport || ql2xnvmeenable) { 6940 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags); 6941 qla2xxx_wake_dpc(vha); 6942 } 6943 return PCI_ERS_RESULT_DISCONNECT; 6944 } 6945 return PCI_ERS_RESULT_NEED_RESET; 6946 } 6947 6948 static pci_ers_result_t 6949 qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) 6950 { 6951 int risc_paused = 0; 6952 uint32_t stat; 6953 unsigned long flags; 6954 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); 6955 struct qla_hw_data *ha = base_vha->hw; 6956 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; 6957 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; 6958 6959 if (IS_QLA82XX(ha)) 6960 return PCI_ERS_RESULT_RECOVERED; 6961 6962 spin_lock_irqsave(&ha->hardware_lock, flags); 6963 if (IS_QLA2100(ha) || IS_QLA2200(ha)){ 6964 stat = RD_REG_DWORD(®->hccr); 6965 if (stat & HCCR_RISC_PAUSE) 6966 risc_paused = 1; 6967 } else if (IS_QLA23XX(ha)) { 6968 stat = RD_REG_DWORD(®->u.isp2300.host_status); 6969 if (stat & HSR_RISC_PAUSED) 6970 risc_paused = 1; 6971 } else if (IS_FWI2_CAPABLE(ha)) { 6972 stat = RD_REG_DWORD(®24->host_status); 6973 if (stat & HSRX_RISC_PAUSED) 6974 risc_paused = 1; 6975 } 6976 spin_unlock_irqrestore(&ha->hardware_lock, flags); 6977 6978 if (risc_paused) { 6979 ql_log(ql_log_info, base_vha, 0x9003, 6980 "RISC paused -- mmio_enabled, Dumping firmware.\n"); 6981 ha->isp_ops->fw_dump(base_vha, 0); 6982 6983 return PCI_ERS_RESULT_NEED_RESET; 6984 } else 6985 return PCI_ERS_RESULT_RECOVERED; 6986 } 6987 6988 static pci_ers_result_t 6989 qla2xxx_pci_slot_reset(struct pci_dev *pdev) 6990 { 6991 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; 6992 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); 6993 struct qla_hw_data *ha = base_vha->hw; 6994 int rc; 6995 struct qla_qpair *qpair = NULL; 6996 6997 ql_dbg(ql_dbg_aer, base_vha, 0x9004, 6998 "Slot Reset.\n"); 6999 7000 /* Workaround: qla2xxx driver which access hardware earlier 7001 * needs error state to be pci_channel_io_online. 7002 * Otherwise mailbox command timesout. 7003 */ 7004 pdev->error_state = pci_channel_io_normal; 7005 7006 pci_restore_state(pdev); 7007 7008 /* pci_restore_state() clears the saved_state flag of the device 7009 * save restored state which resets saved_state flag 7010 */ 7011 pci_save_state(pdev); 7012 7013 if (ha->mem_only) 7014 rc = pci_enable_device_mem(pdev); 7015 else 7016 rc = pci_enable_device(pdev); 7017 7018 if (rc) { 7019 ql_log(ql_log_warn, base_vha, 0x9005, 7020 "Can't re-enable PCI device after reset.\n"); 7021 goto exit_slot_reset; 7022 } 7023 7024 7025 if (ha->isp_ops->pci_config(base_vha)) 7026 goto exit_slot_reset; 7027 7028 mutex_lock(&ha->mq_lock); 7029 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem) 7030 qpair->online = 1; 7031 mutex_unlock(&ha->mq_lock); 7032 7033 base_vha->flags.online = 1; 7034 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 7035 if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS) 7036 ret = PCI_ERS_RESULT_RECOVERED; 7037 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 7038 7039 7040 exit_slot_reset: 7041 ql_dbg(ql_dbg_aer, base_vha, 0x900e, 7042 "slot_reset return %x.\n", ret); 7043 7044 return ret; 7045 } 7046 7047 static void 7048 qla2xxx_pci_resume(struct pci_dev *pdev) 7049 { 7050 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); 7051 struct qla_hw_data *ha = base_vha->hw; 7052 int ret; 7053 7054 ql_dbg(ql_dbg_aer, base_vha, 0x900f, 7055 "pci_resume.\n"); 7056 7057 ha->flags.eeh_busy = 0; 7058 7059 ret = qla2x00_wait_for_hba_online(base_vha); 7060 if (ret != QLA_SUCCESS) { 7061 ql_log(ql_log_fatal, base_vha, 0x9002, 7062 "The device failed to resume I/O from slot/link_reset.\n"); 7063 } 7064 } 7065 7066 static void 7067 qla_pci_reset_prepare(struct pci_dev *pdev) 7068 { 7069 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); 7070 struct qla_hw_data *ha = base_vha->hw; 7071 struct qla_qpair *qpair; 7072 7073 ql_log(ql_log_warn, base_vha, 0xffff, 7074 "%s.\n", __func__); 7075 7076 /* 7077 * PCI FLR/function reset is about to reset the 7078 * slot. Stop the chip to stop all DMA access. 7079 * It is assumed that pci_reset_done will be called 7080 * after FLR to resume Chip operation. 7081 */ 7082 ha->flags.eeh_busy = 1; 7083 mutex_lock(&ha->mq_lock); 7084 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem) 7085 qpair->online = 0; 7086 mutex_unlock(&ha->mq_lock); 7087 7088 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 7089 qla2x00_abort_isp_cleanup(base_vha); 7090 qla2x00_abort_all_cmds(base_vha, DID_RESET << 16); 7091 } 7092 7093 static void 7094 qla_pci_reset_done(struct pci_dev *pdev) 7095 { 7096 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); 7097 struct qla_hw_data *ha = base_vha->hw; 7098 struct qla_qpair *qpair; 7099 7100 ql_log(ql_log_warn, base_vha, 0xffff, 7101 "%s.\n", __func__); 7102 7103 /* 7104 * FLR just completed by PCI layer. Resume adapter 7105 */ 7106 ha->flags.eeh_busy = 0; 7107 mutex_lock(&ha->mq_lock); 7108 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem) 7109 qpair->online = 1; 7110 mutex_unlock(&ha->mq_lock); 7111 7112 base_vha->flags.online = 1; 7113 ha->isp_ops->abort_isp(base_vha); 7114 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); 7115 } 7116 7117 static int qla2xxx_map_queues(struct Scsi_Host *shost) 7118 { 7119 int rc; 7120 scsi_qla_host_t *vha = (scsi_qla_host_t *)shost->hostdata; 7121 struct blk_mq_queue_map *qmap = &shost->tag_set.map[HCTX_TYPE_DEFAULT]; 7122 7123 if (USER_CTRL_IRQ(vha->hw) || !vha->hw->mqiobase) 7124 rc = blk_mq_map_queues(qmap); 7125 else 7126 rc = blk_mq_pci_map_queues(qmap, vha->hw->pdev, vha->irq_offset); 7127 return rc; 7128 } 7129 7130 struct scsi_host_template qla2xxx_driver_template = { 7131 .module = THIS_MODULE, 7132 .name = QLA2XXX_DRIVER_NAME, 7133 .queuecommand = qla2xxx_queuecommand, 7134 7135 .eh_timed_out = fc_eh_timed_out, 7136 .eh_abort_handler = qla2xxx_eh_abort, 7137 .eh_device_reset_handler = qla2xxx_eh_device_reset, 7138 .eh_target_reset_handler = qla2xxx_eh_target_reset, 7139 .eh_bus_reset_handler = qla2xxx_eh_bus_reset, 7140 .eh_host_reset_handler = qla2xxx_eh_host_reset, 7141 7142 .slave_configure = qla2xxx_slave_configure, 7143 7144 .slave_alloc = qla2xxx_slave_alloc, 7145 .slave_destroy = qla2xxx_slave_destroy, 7146 .scan_finished = qla2xxx_scan_finished, 7147 .scan_start = qla2xxx_scan_start, 7148 .change_queue_depth = scsi_change_queue_depth, 7149 .map_queues = qla2xxx_map_queues, 7150 .this_id = -1, 7151 .cmd_per_lun = 3, 7152 .sg_tablesize = SG_ALL, 7153 7154 .max_sectors = 0xFFFF, 7155 .shost_attrs = qla2x00_host_attrs, 7156 7157 .supported_mode = MODE_INITIATOR, 7158 .track_queue_depth = 1, 7159 }; 7160 7161 static const struct pci_error_handlers qla2xxx_err_handler = { 7162 .error_detected = qla2xxx_pci_error_detected, 7163 .mmio_enabled = qla2xxx_pci_mmio_enabled, 7164 .slot_reset = qla2xxx_pci_slot_reset, 7165 .resume = qla2xxx_pci_resume, 7166 .reset_prepare = qla_pci_reset_prepare, 7167 .reset_done = qla_pci_reset_done, 7168 }; 7169 7170 static struct pci_device_id qla2xxx_pci_tbl[] = { 7171 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, 7172 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, 7173 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, 7174 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, 7175 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, 7176 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, 7177 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, 7178 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, 7179 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, 7180 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, 7181 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, 7182 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, 7183 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, 7184 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) }, 7185 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, 7186 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) }, 7187 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) }, 7188 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) }, 7189 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) }, 7190 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) }, 7191 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) }, 7192 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2261) }, 7193 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2061) }, 7194 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2081) }, 7195 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2281) }, 7196 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2089) }, 7197 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2289) }, 7198 { 0 }, 7199 }; 7200 MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); 7201 7202 static struct pci_driver qla2xxx_pci_driver = { 7203 .name = QLA2XXX_DRIVER_NAME, 7204 .driver = { 7205 .owner = THIS_MODULE, 7206 }, 7207 .id_table = qla2xxx_pci_tbl, 7208 .probe = qla2x00_probe_one, 7209 .remove = qla2x00_remove_one, 7210 .shutdown = qla2x00_shutdown, 7211 .err_handler = &qla2xxx_err_handler, 7212 }; 7213 7214 static const struct file_operations apidev_fops = { 7215 .owner = THIS_MODULE, 7216 .llseek = noop_llseek, 7217 }; 7218 7219 /** 7220 * qla2x00_module_init - Module initialization. 7221 **/ 7222 static int __init 7223 qla2x00_module_init(void) 7224 { 7225 int ret = 0; 7226 7227 BUILD_BUG_ON(sizeof(cmd_entry_t) != 64); 7228 BUILD_BUG_ON(sizeof(cont_a64_entry_t) != 64); 7229 BUILD_BUG_ON(sizeof(cont_entry_t) != 64); 7230 BUILD_BUG_ON(sizeof(init_cb_t) != 96); 7231 BUILD_BUG_ON(sizeof(ms_iocb_entry_t) != 64); 7232 BUILD_BUG_ON(sizeof(request_t) != 64); 7233 BUILD_BUG_ON(sizeof(struct access_chip_84xx) != 64); 7234 BUILD_BUG_ON(sizeof(struct cmd_bidir) != 64); 7235 BUILD_BUG_ON(sizeof(struct cmd_nvme) != 64); 7236 BUILD_BUG_ON(sizeof(struct cmd_type_6) != 64); 7237 BUILD_BUG_ON(sizeof(struct cmd_type_7) != 64); 7238 BUILD_BUG_ON(sizeof(struct cmd_type_7_fx00) != 64); 7239 BUILD_BUG_ON(sizeof(struct cmd_type_crc_2) != 64); 7240 BUILD_BUG_ON(sizeof(struct ct_entry_24xx) != 64); 7241 BUILD_BUG_ON(sizeof(struct ctio_crc2_to_fw) != 64); 7242 BUILD_BUG_ON(sizeof(struct els_entry_24xx) != 64); 7243 BUILD_BUG_ON(sizeof(struct fxdisc_entry_fx00) != 64); 7244 BUILD_BUG_ON(sizeof(struct init_cb_24xx) != 128); 7245 BUILD_BUG_ON(sizeof(struct init_cb_81xx) != 128); 7246 BUILD_BUG_ON(sizeof(struct pt_ls4_request) != 64); 7247 BUILD_BUG_ON(sizeof(struct sns_cmd_pkt) != 2064); 7248 BUILD_BUG_ON(sizeof(struct verify_chip_entry_84xx) != 64); 7249 BUILD_BUG_ON(sizeof(struct vf_evfp_entry_24xx) != 56); 7250 7251 /* Allocate cache for SRBs. */ 7252 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, 7253 SLAB_HWCACHE_ALIGN, NULL); 7254 if (srb_cachep == NULL) { 7255 ql_log(ql_log_fatal, NULL, 0x0001, 7256 "Unable to allocate SRB cache...Failing load!.\n"); 7257 return -ENOMEM; 7258 } 7259 7260 /* Initialize target kmem_cache and mem_pools */ 7261 ret = qlt_init(); 7262 if (ret < 0) { 7263 goto destroy_cache; 7264 } else if (ret > 0) { 7265 /* 7266 * If initiator mode is explictly disabled by qlt_init(), 7267 * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from 7268 * performing scsi_scan_target() during LOOP UP event. 7269 */ 7270 qla2xxx_transport_functions.disable_target_scan = 1; 7271 qla2xxx_transport_vport_functions.disable_target_scan = 1; 7272 } 7273 7274 /* Derive version string. */ 7275 strcpy(qla2x00_version_str, QLA2XXX_VERSION); 7276 if (ql2xextended_error_logging) 7277 strcat(qla2x00_version_str, "-debug"); 7278 if (ql2xextended_error_logging == 1) 7279 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK; 7280 7281 if (ql2x_ini_mode == QLA2XXX_INI_MODE_DUAL) 7282 qla_insert_tgt_attrs(); 7283 7284 qla2xxx_transport_template = 7285 fc_attach_transport(&qla2xxx_transport_functions); 7286 if (!qla2xxx_transport_template) { 7287 ql_log(ql_log_fatal, NULL, 0x0002, 7288 "fc_attach_transport failed...Failing load!.\n"); 7289 ret = -ENODEV; 7290 goto qlt_exit; 7291 } 7292 7293 apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops); 7294 if (apidev_major < 0) { 7295 ql_log(ql_log_fatal, NULL, 0x0003, 7296 "Unable to register char device %s.\n", QLA2XXX_APIDEV); 7297 } 7298 7299 qla2xxx_transport_vport_template = 7300 fc_attach_transport(&qla2xxx_transport_vport_functions); 7301 if (!qla2xxx_transport_vport_template) { 7302 ql_log(ql_log_fatal, NULL, 0x0004, 7303 "fc_attach_transport vport failed...Failing load!.\n"); 7304 ret = -ENODEV; 7305 goto unreg_chrdev; 7306 } 7307 ql_log(ql_log_info, NULL, 0x0005, 7308 "QLogic Fibre Channel HBA Driver: %s.\n", 7309 qla2x00_version_str); 7310 ret = pci_register_driver(&qla2xxx_pci_driver); 7311 if (ret) { 7312 ql_log(ql_log_fatal, NULL, 0x0006, 7313 "pci_register_driver failed...ret=%d Failing load!.\n", 7314 ret); 7315 goto release_vport_transport; 7316 } 7317 return ret; 7318 7319 release_vport_transport: 7320 fc_release_transport(qla2xxx_transport_vport_template); 7321 7322 unreg_chrdev: 7323 if (apidev_major >= 0) 7324 unregister_chrdev(apidev_major, QLA2XXX_APIDEV); 7325 fc_release_transport(qla2xxx_transport_template); 7326 7327 qlt_exit: 7328 qlt_exit(); 7329 7330 destroy_cache: 7331 kmem_cache_destroy(srb_cachep); 7332 return ret; 7333 } 7334 7335 /** 7336 * qla2x00_module_exit - Module cleanup. 7337 **/ 7338 static void __exit 7339 qla2x00_module_exit(void) 7340 { 7341 pci_unregister_driver(&qla2xxx_pci_driver); 7342 qla2x00_release_firmware(); 7343 kmem_cache_destroy(ctx_cachep); 7344 fc_release_transport(qla2xxx_transport_vport_template); 7345 if (apidev_major >= 0) 7346 unregister_chrdev(apidev_major, QLA2XXX_APIDEV); 7347 fc_release_transport(qla2xxx_transport_template); 7348 qlt_exit(); 7349 kmem_cache_destroy(srb_cachep); 7350 } 7351 7352 module_init(qla2x00_module_init); 7353 module_exit(qla2x00_module_exit); 7354 7355 MODULE_AUTHOR("QLogic Corporation"); 7356 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); 7357 MODULE_LICENSE("GPL"); 7358 MODULE_VERSION(QLA2XXX_VERSION); 7359 MODULE_FIRMWARE(FW_FILE_ISP21XX); 7360 MODULE_FIRMWARE(FW_FILE_ISP22XX); 7361 MODULE_FIRMWARE(FW_FILE_ISP2300); 7362 MODULE_FIRMWARE(FW_FILE_ISP2322); 7363 MODULE_FIRMWARE(FW_FILE_ISP24XX); 7364 MODULE_FIRMWARE(FW_FILE_ISP25XX); 7365