1 /* 2 * This file is part of the Emulex Linux Device Driver for Enterprise iSCSI 3 * Host Bus Adapters. Refer to the README file included with this package 4 * for driver version and adapter compatibility. 5 * 6 * Copyright (c) 2018 Broadcom. All Rights Reserved. 7 * The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. 8 * 9 * This program is free software; you can redistribute it and/or modify it 10 * under the terms of version 2 of the GNU General Public License as published 11 * by the Free Software Foundation. 12 * 13 * This program is distributed in the hope that it will be useful. ALL EXPRESS 14 * OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY 15 * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, 16 * OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH 17 * DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. 18 * See the GNU General Public License for more details, a copy of which 19 * can be found in the file COPYING included with this package. 20 * 21 * Contact Information: 22 * linux-drivers@broadcom.com 23 * 24 */ 25 26 #include <linux/reboot.h> 27 #include <linux/delay.h> 28 #include <linux/slab.h> 29 #include <linux/interrupt.h> 30 #include <linux/blkdev.h> 31 #include <linux/pci.h> 32 #include <linux/string.h> 33 #include <linux/kernel.h> 34 #include <linux/semaphore.h> 35 #include <linux/iscsi_boot_sysfs.h> 36 #include <linux/module.h> 37 #include <linux/bsg-lib.h> 38 #include <linux/irq_poll.h> 39 40 #include <scsi/libiscsi.h> 41 #include <scsi/scsi_bsg_iscsi.h> 42 #include <scsi/scsi_netlink.h> 43 #include <scsi/scsi_transport_iscsi.h> 44 #include <scsi/scsi_transport.h> 45 #include <scsi/scsi_cmnd.h> 46 #include <scsi/scsi_device.h> 47 #include <scsi/scsi_host.h> 48 #include <scsi/scsi.h> 49 #include "be_main.h" 50 #include "be_iscsi.h" 51 #include "be_mgmt.h" 52 #include "be_cmds.h" 53 54 static unsigned int be_iopoll_budget = 10; 55 static unsigned int be_max_phys_size = 64; 56 static unsigned int enable_msix = 1; 57 58 MODULE_DESCRIPTION(DRV_DESC " " BUILD_STR); 59 MODULE_VERSION(BUILD_STR); 60 MODULE_AUTHOR("Emulex Corporation"); 61 MODULE_LICENSE("GPL"); 62 module_param(be_iopoll_budget, int, 0); 63 module_param(enable_msix, int, 0); 64 module_param(be_max_phys_size, uint, S_IRUGO); 65 MODULE_PARM_DESC(be_max_phys_size, 66 "Maximum Size (In Kilobytes) of physically contiguous " 67 "memory that can be allocated. Range is 16 - 128"); 68 69 #define beiscsi_disp_param(_name)\ 70 static ssize_t \ 71 beiscsi_##_name##_disp(struct device *dev,\ 72 struct device_attribute *attrib, char *buf) \ 73 { \ 74 struct Scsi_Host *shost = class_to_shost(dev);\ 75 struct beiscsi_hba *phba = iscsi_host_priv(shost); \ 76 return snprintf(buf, PAGE_SIZE, "%d\n",\ 77 phba->attr_##_name);\ 78 } 79 80 #define beiscsi_change_param(_name, _minval, _maxval, _defaval)\ 81 static int \ 82 beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\ 83 {\ 84 if (val >= _minval && val <= _maxval) {\ 85 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\ 86 "BA_%d : beiscsi_"#_name" updated "\ 87 "from 0x%x ==> 0x%x\n",\ 88 phba->attr_##_name, val); \ 89 phba->attr_##_name = val;\ 90 return 0;\ 91 } \ 92 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, \ 93 "BA_%d beiscsi_"#_name" attribute "\ 94 "cannot be updated to 0x%x, "\ 95 "range allowed is ["#_minval" - "#_maxval"]\n", val);\ 96 return -EINVAL;\ 97 } 98 99 #define beiscsi_store_param(_name) \ 100 static ssize_t \ 101 beiscsi_##_name##_store(struct device *dev,\ 102 struct device_attribute *attr, const char *buf,\ 103 size_t count) \ 104 { \ 105 struct Scsi_Host *shost = class_to_shost(dev);\ 106 struct beiscsi_hba *phba = iscsi_host_priv(shost);\ 107 uint32_t param_val = 0;\ 108 if (!isdigit(buf[0]))\ 109 return -EINVAL;\ 110 if (sscanf(buf, "%i", ¶m_val) != 1)\ 111 return -EINVAL;\ 112 if (beiscsi_##_name##_change(phba, param_val) == 0) \ 113 return strlen(buf);\ 114 else \ 115 return -EINVAL;\ 116 } 117 118 #define beiscsi_init_param(_name, _minval, _maxval, _defval) \ 119 static int \ 120 beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \ 121 { \ 122 if (val >= _minval && val <= _maxval) {\ 123 phba->attr_##_name = val;\ 124 return 0;\ 125 } \ 126 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\ 127 "BA_%d beiscsi_"#_name" attribute " \ 128 "cannot be updated to 0x%x, "\ 129 "range allowed is ["#_minval" - "#_maxval"]\n", val);\ 130 phba->attr_##_name = _defval;\ 131 return -EINVAL;\ 132 } 133 134 #define BEISCSI_RW_ATTR(_name, _minval, _maxval, _defval, _descp) \ 135 static uint beiscsi_##_name = _defval;\ 136 module_param(beiscsi_##_name, uint, S_IRUGO);\ 137 MODULE_PARM_DESC(beiscsi_##_name, _descp);\ 138 beiscsi_disp_param(_name)\ 139 beiscsi_change_param(_name, _minval, _maxval, _defval)\ 140 beiscsi_store_param(_name)\ 141 beiscsi_init_param(_name, _minval, _maxval, _defval)\ 142 DEVICE_ATTR(beiscsi_##_name, S_IRUGO | S_IWUSR,\ 143 beiscsi_##_name##_disp, beiscsi_##_name##_store) 144 145 /* 146 * When new log level added update the 147 * the MAX allowed value for log_enable 148 */ 149 BEISCSI_RW_ATTR(log_enable, 0x00, 150 0xFF, 0x00, "Enable logging Bit Mask\n" 151 "\t\t\t\tInitialization Events : 0x01\n" 152 "\t\t\t\tMailbox Events : 0x02\n" 153 "\t\t\t\tMiscellaneous Events : 0x04\n" 154 "\t\t\t\tError Handling : 0x08\n" 155 "\t\t\t\tIO Path Events : 0x10\n" 156 "\t\t\t\tConfiguration Path : 0x20\n" 157 "\t\t\t\tiSCSI Protocol : 0x40\n"); 158 159 DEVICE_ATTR(beiscsi_drvr_ver, S_IRUGO, beiscsi_drvr_ver_disp, NULL); 160 DEVICE_ATTR(beiscsi_adapter_family, S_IRUGO, beiscsi_adap_family_disp, NULL); 161 DEVICE_ATTR(beiscsi_fw_ver, S_IRUGO, beiscsi_fw_ver_disp, NULL); 162 DEVICE_ATTR(beiscsi_phys_port, S_IRUGO, beiscsi_phys_port_disp, NULL); 163 DEVICE_ATTR(beiscsi_active_session_count, S_IRUGO, 164 beiscsi_active_session_disp, NULL); 165 DEVICE_ATTR(beiscsi_free_session_count, S_IRUGO, 166 beiscsi_free_session_disp, NULL); 167 static struct device_attribute *beiscsi_attrs[] = { 168 &dev_attr_beiscsi_log_enable, 169 &dev_attr_beiscsi_drvr_ver, 170 &dev_attr_beiscsi_adapter_family, 171 &dev_attr_beiscsi_fw_ver, 172 &dev_attr_beiscsi_active_session_count, 173 &dev_attr_beiscsi_free_session_count, 174 &dev_attr_beiscsi_phys_port, 175 NULL, 176 }; 177 178 static char const *cqe_desc[] = { 179 "RESERVED_DESC", 180 "SOL_CMD_COMPLETE", 181 "SOL_CMD_KILLED_DATA_DIGEST_ERR", 182 "CXN_KILLED_PDU_SIZE_EXCEEDS_DSL", 183 "CXN_KILLED_BURST_LEN_MISMATCH", 184 "CXN_KILLED_AHS_RCVD", 185 "CXN_KILLED_HDR_DIGEST_ERR", 186 "CXN_KILLED_UNKNOWN_HDR", 187 "CXN_KILLED_STALE_ITT_TTT_RCVD", 188 "CXN_KILLED_INVALID_ITT_TTT_RCVD", 189 "CXN_KILLED_RST_RCVD", 190 "CXN_KILLED_TIMED_OUT", 191 "CXN_KILLED_RST_SENT", 192 "CXN_KILLED_FIN_RCVD", 193 "CXN_KILLED_BAD_UNSOL_PDU_RCVD", 194 "CXN_KILLED_BAD_WRB_INDEX_ERROR", 195 "CXN_KILLED_OVER_RUN_RESIDUAL", 196 "CXN_KILLED_UNDER_RUN_RESIDUAL", 197 "CMD_KILLED_INVALID_STATSN_RCVD", 198 "CMD_KILLED_INVALID_R2T_RCVD", 199 "CMD_CXN_KILLED_LUN_INVALID", 200 "CMD_CXN_KILLED_ICD_INVALID", 201 "CMD_CXN_KILLED_ITT_INVALID", 202 "CMD_CXN_KILLED_SEQ_OUTOFORDER", 203 "CMD_CXN_KILLED_INVALID_DATASN_RCVD", 204 "CXN_INVALIDATE_NOTIFY", 205 "CXN_INVALIDATE_INDEX_NOTIFY", 206 "CMD_INVALIDATED_NOTIFY", 207 "UNSOL_HDR_NOTIFY", 208 "UNSOL_DATA_NOTIFY", 209 "UNSOL_DATA_DIGEST_ERROR_NOTIFY", 210 "DRIVERMSG_NOTIFY", 211 "CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN", 212 "SOL_CMD_KILLED_DIF_ERR", 213 "CXN_KILLED_SYN_RCVD", 214 "CXN_KILLED_IMM_DATA_RCVD" 215 }; 216 217 static int beiscsi_eh_abort(struct scsi_cmnd *sc) 218 { 219 struct iscsi_task *abrt_task = (struct iscsi_task *)sc->SCp.ptr; 220 struct iscsi_cls_session *cls_session; 221 struct beiscsi_io_task *abrt_io_task; 222 struct beiscsi_conn *beiscsi_conn; 223 struct iscsi_session *session; 224 struct invldt_cmd_tbl inv_tbl; 225 struct beiscsi_hba *phba; 226 struct iscsi_conn *conn; 227 int rc; 228 229 cls_session = starget_to_session(scsi_target(sc->device)); 230 session = cls_session->dd_data; 231 232 /* check if we raced, task just got cleaned up under us */ 233 spin_lock_bh(&session->back_lock); 234 if (!abrt_task || !abrt_task->sc) { 235 spin_unlock_bh(&session->back_lock); 236 return SUCCESS; 237 } 238 /* get a task ref till FW processes the req for the ICD used */ 239 __iscsi_get_task(abrt_task); 240 abrt_io_task = abrt_task->dd_data; 241 conn = abrt_task->conn; 242 beiscsi_conn = conn->dd_data; 243 phba = beiscsi_conn->phba; 244 /* mark WRB invalid which have been not processed by FW yet */ 245 if (is_chip_be2_be3r(phba)) { 246 AMAP_SET_BITS(struct amap_iscsi_wrb, invld, 247 abrt_io_task->pwrb_handle->pwrb, 1); 248 } else { 249 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld, 250 abrt_io_task->pwrb_handle->pwrb, 1); 251 } 252 inv_tbl.cid = beiscsi_conn->beiscsi_conn_cid; 253 inv_tbl.icd = abrt_io_task->psgl_handle->sgl_index; 254 spin_unlock_bh(&session->back_lock); 255 256 rc = beiscsi_mgmt_invalidate_icds(phba, &inv_tbl, 1); 257 iscsi_put_task(abrt_task); 258 if (rc) { 259 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH, 260 "BM_%d : sc %p invalidation failed %d\n", 261 sc, rc); 262 return FAILED; 263 } 264 265 return iscsi_eh_abort(sc); 266 } 267 268 static int beiscsi_eh_device_reset(struct scsi_cmnd *sc) 269 { 270 struct beiscsi_invldt_cmd_tbl { 271 struct invldt_cmd_tbl tbl[BE_INVLDT_CMD_TBL_SZ]; 272 struct iscsi_task *task[BE_INVLDT_CMD_TBL_SZ]; 273 } *inv_tbl; 274 struct iscsi_cls_session *cls_session; 275 struct beiscsi_conn *beiscsi_conn; 276 struct beiscsi_io_task *io_task; 277 struct iscsi_session *session; 278 struct beiscsi_hba *phba; 279 struct iscsi_conn *conn; 280 struct iscsi_task *task; 281 unsigned int i, nents; 282 int rc, more = 0; 283 284 cls_session = starget_to_session(scsi_target(sc->device)); 285 session = cls_session->dd_data; 286 287 spin_lock_bh(&session->frwd_lock); 288 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) { 289 spin_unlock_bh(&session->frwd_lock); 290 return FAILED; 291 } 292 293 conn = session->leadconn; 294 beiscsi_conn = conn->dd_data; 295 phba = beiscsi_conn->phba; 296 297 inv_tbl = kzalloc(sizeof(*inv_tbl), GFP_ATOMIC); 298 if (!inv_tbl) { 299 spin_unlock_bh(&session->frwd_lock); 300 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH, 301 "BM_%d : invldt_cmd_tbl alloc failed\n"); 302 return FAILED; 303 } 304 nents = 0; 305 /* take back_lock to prevent task from getting cleaned up under us */ 306 spin_lock(&session->back_lock); 307 for (i = 0; i < conn->session->cmds_max; i++) { 308 task = conn->session->cmds[i]; 309 if (!task->sc) 310 continue; 311 312 if (sc->device->lun != task->sc->device->lun) 313 continue; 314 /** 315 * Can't fit in more cmds? Normally this won't happen b'coz 316 * BEISCSI_CMD_PER_LUN is same as BE_INVLDT_CMD_TBL_SZ. 317 */ 318 if (nents == BE_INVLDT_CMD_TBL_SZ) { 319 more = 1; 320 break; 321 } 322 323 /* get a task ref till FW processes the req for the ICD used */ 324 __iscsi_get_task(task); 325 io_task = task->dd_data; 326 /* mark WRB invalid which have been not processed by FW yet */ 327 if (is_chip_be2_be3r(phba)) { 328 AMAP_SET_BITS(struct amap_iscsi_wrb, invld, 329 io_task->pwrb_handle->pwrb, 1); 330 } else { 331 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld, 332 io_task->pwrb_handle->pwrb, 1); 333 } 334 335 inv_tbl->tbl[nents].cid = beiscsi_conn->beiscsi_conn_cid; 336 inv_tbl->tbl[nents].icd = io_task->psgl_handle->sgl_index; 337 inv_tbl->task[nents] = task; 338 nents++; 339 } 340 spin_unlock(&session->back_lock); 341 spin_unlock_bh(&session->frwd_lock); 342 343 rc = SUCCESS; 344 if (!nents) 345 goto end_reset; 346 347 if (more) { 348 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH, 349 "BM_%d : number of cmds exceeds size of invalidation table\n"); 350 rc = FAILED; 351 goto end_reset; 352 } 353 354 if (beiscsi_mgmt_invalidate_icds(phba, &inv_tbl->tbl[0], nents)) { 355 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH, 356 "BM_%d : cid %u scmds invalidation failed\n", 357 beiscsi_conn->beiscsi_conn_cid); 358 rc = FAILED; 359 } 360 361 end_reset: 362 for (i = 0; i < nents; i++) 363 iscsi_put_task(inv_tbl->task[i]); 364 kfree(inv_tbl); 365 366 if (rc == SUCCESS) 367 rc = iscsi_eh_device_reset(sc); 368 return rc; 369 } 370 371 /*------------------- PCI Driver operations and data ----------------- */ 372 static const struct pci_device_id beiscsi_pci_id_table[] = { 373 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) }, 374 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) }, 375 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) }, 376 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) }, 377 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) }, 378 { PCI_DEVICE(ELX_VENDOR_ID, OC_SKH_ID1) }, 379 { 0 } 380 }; 381 MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table); 382 383 384 static struct scsi_host_template beiscsi_sht = { 385 .module = THIS_MODULE, 386 .name = "Emulex 10Gbe open-iscsi Initiator Driver", 387 .proc_name = DRV_NAME, 388 .queuecommand = iscsi_queuecommand, 389 .change_queue_depth = scsi_change_queue_depth, 390 .target_alloc = iscsi_target_alloc, 391 .eh_timed_out = iscsi_eh_cmd_timed_out, 392 .eh_abort_handler = beiscsi_eh_abort, 393 .eh_device_reset_handler = beiscsi_eh_device_reset, 394 .eh_target_reset_handler = iscsi_eh_session_reset, 395 .shost_attrs = beiscsi_attrs, 396 .sg_tablesize = BEISCSI_SGLIST_ELEMENTS, 397 .can_queue = BE2_IO_DEPTH, 398 .this_id = -1, 399 .max_sectors = BEISCSI_MAX_SECTORS, 400 .max_segment_size = 65536, 401 .cmd_per_lun = BEISCSI_CMD_PER_LUN, 402 .vendor_id = SCSI_NL_VID_TYPE_PCI | BE_VENDOR_ID, 403 .track_queue_depth = 1, 404 }; 405 406 static struct scsi_transport_template *beiscsi_scsi_transport; 407 408 static struct beiscsi_hba *beiscsi_hba_alloc(struct pci_dev *pcidev) 409 { 410 struct beiscsi_hba *phba; 411 struct Scsi_Host *shost; 412 413 shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0); 414 if (!shost) { 415 dev_err(&pcidev->dev, 416 "beiscsi_hba_alloc - iscsi_host_alloc failed\n"); 417 return NULL; 418 } 419 shost->max_id = BE2_MAX_SESSIONS - 1; 420 shost->max_channel = 0; 421 shost->max_cmd_len = BEISCSI_MAX_CMD_LEN; 422 shost->max_lun = BEISCSI_NUM_MAX_LUN; 423 shost->transportt = beiscsi_scsi_transport; 424 phba = iscsi_host_priv(shost); 425 memset(phba, 0, sizeof(*phba)); 426 phba->shost = shost; 427 phba->pcidev = pci_dev_get(pcidev); 428 pci_set_drvdata(pcidev, phba); 429 phba->interface_handle = 0xFFFFFFFF; 430 431 return phba; 432 } 433 434 static void beiscsi_unmap_pci_function(struct beiscsi_hba *phba) 435 { 436 if (phba->csr_va) { 437 iounmap(phba->csr_va); 438 phba->csr_va = NULL; 439 } 440 if (phba->db_va) { 441 iounmap(phba->db_va); 442 phba->db_va = NULL; 443 } 444 if (phba->pci_va) { 445 iounmap(phba->pci_va); 446 phba->pci_va = NULL; 447 } 448 } 449 450 static int beiscsi_map_pci_bars(struct beiscsi_hba *phba, 451 struct pci_dev *pcidev) 452 { 453 u8 __iomem *addr; 454 int pcicfg_reg; 455 456 addr = ioremap(pci_resource_start(pcidev, 2), 457 pci_resource_len(pcidev, 2)); 458 if (addr == NULL) 459 return -ENOMEM; 460 phba->ctrl.csr = addr; 461 phba->csr_va = addr; 462 463 addr = ioremap(pci_resource_start(pcidev, 4), 128 * 1024); 464 if (addr == NULL) 465 goto pci_map_err; 466 phba->ctrl.db = addr; 467 phba->db_va = addr; 468 469 if (phba->generation == BE_GEN2) 470 pcicfg_reg = 1; 471 else 472 pcicfg_reg = 0; 473 474 addr = ioremap(pci_resource_start(pcidev, pcicfg_reg), 475 pci_resource_len(pcidev, pcicfg_reg)); 476 477 if (addr == NULL) 478 goto pci_map_err; 479 phba->ctrl.pcicfg = addr; 480 phba->pci_va = addr; 481 return 0; 482 483 pci_map_err: 484 beiscsi_unmap_pci_function(phba); 485 return -ENOMEM; 486 } 487 488 static int beiscsi_enable_pci(struct pci_dev *pcidev) 489 { 490 int ret; 491 492 ret = pci_enable_device(pcidev); 493 if (ret) { 494 dev_err(&pcidev->dev, 495 "beiscsi_enable_pci - enable device failed\n"); 496 return ret; 497 } 498 499 ret = pci_request_regions(pcidev, DRV_NAME); 500 if (ret) { 501 dev_err(&pcidev->dev, 502 "beiscsi_enable_pci - request region failed\n"); 503 goto pci_dev_disable; 504 } 505 506 pci_set_master(pcidev); 507 ret = dma_set_mask_and_coherent(&pcidev->dev, DMA_BIT_MASK(64)); 508 if (ret) { 509 ret = dma_set_mask_and_coherent(&pcidev->dev, DMA_BIT_MASK(32)); 510 if (ret) { 511 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n"); 512 goto pci_region_release; 513 } 514 } 515 return 0; 516 517 pci_region_release: 518 pci_release_regions(pcidev); 519 pci_dev_disable: 520 pci_disable_device(pcidev); 521 522 return ret; 523 } 524 525 static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev) 526 { 527 struct be_ctrl_info *ctrl = &phba->ctrl; 528 struct be_dma_mem *mbox_mem_alloc = &ctrl->mbox_mem_alloced; 529 struct be_dma_mem *mbox_mem_align = &ctrl->mbox_mem; 530 int status = 0; 531 532 ctrl->pdev = pdev; 533 status = beiscsi_map_pci_bars(phba, pdev); 534 if (status) 535 return status; 536 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16; 537 mbox_mem_alloc->va = dma_alloc_coherent(&pdev->dev, 538 mbox_mem_alloc->size, &mbox_mem_alloc->dma, GFP_KERNEL); 539 if (!mbox_mem_alloc->va) { 540 beiscsi_unmap_pci_function(phba); 541 return -ENOMEM; 542 } 543 544 mbox_mem_align->size = sizeof(struct be_mcc_mailbox); 545 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16); 546 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16); 547 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox)); 548 mutex_init(&ctrl->mbox_lock); 549 spin_lock_init(&phba->ctrl.mcc_lock); 550 551 return status; 552 } 553 554 /** 555 * beiscsi_get_params()- Set the config paramters 556 * @phba: ptr device priv structure 557 **/ 558 static void beiscsi_get_params(struct beiscsi_hba *phba) 559 { 560 uint32_t total_cid_count = 0; 561 uint32_t total_icd_count = 0; 562 uint8_t ulp_num = 0; 563 564 total_cid_count = BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP0) + 565 BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP1); 566 567 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 568 uint32_t align_mask = 0; 569 uint32_t icd_post_per_page = 0; 570 uint32_t icd_count_unavailable = 0; 571 uint32_t icd_start = 0, icd_count = 0; 572 uint32_t icd_start_align = 0, icd_count_align = 0; 573 574 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 575 icd_start = phba->fw_config.iscsi_icd_start[ulp_num]; 576 icd_count = phba->fw_config.iscsi_icd_count[ulp_num]; 577 578 /* Get ICD count that can be posted on each page */ 579 icd_post_per_page = (PAGE_SIZE / (BE2_SGE * 580 sizeof(struct iscsi_sge))); 581 align_mask = (icd_post_per_page - 1); 582 583 /* Check if icd_start is aligned ICD per page posting */ 584 if (icd_start % icd_post_per_page) { 585 icd_start_align = ((icd_start + 586 icd_post_per_page) & 587 ~(align_mask)); 588 phba->fw_config. 589 iscsi_icd_start[ulp_num] = 590 icd_start_align; 591 } 592 593 icd_count_align = (icd_count & ~align_mask); 594 595 /* ICD discarded in the process of alignment */ 596 if (icd_start_align) 597 icd_count_unavailable = ((icd_start_align - 598 icd_start) + 599 (icd_count - 600 icd_count_align)); 601 602 /* Updated ICD count available */ 603 phba->fw_config.iscsi_icd_count[ulp_num] = (icd_count - 604 icd_count_unavailable); 605 606 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 607 "BM_%d : Aligned ICD values\n" 608 "\t ICD Start : %d\n" 609 "\t ICD Count : %d\n" 610 "\t ICD Discarded : %d\n", 611 phba->fw_config. 612 iscsi_icd_start[ulp_num], 613 phba->fw_config. 614 iscsi_icd_count[ulp_num], 615 icd_count_unavailable); 616 break; 617 } 618 } 619 620 total_icd_count = phba->fw_config.iscsi_icd_count[ulp_num]; 621 phba->params.ios_per_ctrl = (total_icd_count - 622 (total_cid_count + 623 BE2_TMFS + BE2_NOPOUT_REQ)); 624 phba->params.cxns_per_ctrl = total_cid_count; 625 phba->params.icds_per_ctrl = total_icd_count; 626 phba->params.num_sge_per_io = BE2_SGE; 627 phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ; 628 phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ; 629 phba->params.num_eq_entries = 1024; 630 phba->params.num_cq_entries = 1024; 631 phba->params.wrbs_per_cxn = 256; 632 } 633 634 static void hwi_ring_eq_db(struct beiscsi_hba *phba, 635 unsigned int id, unsigned int clr_interrupt, 636 unsigned int num_processed, 637 unsigned char rearm, unsigned char event) 638 { 639 u32 val = 0; 640 641 if (rearm) 642 val |= 1 << DB_EQ_REARM_SHIFT; 643 if (clr_interrupt) 644 val |= 1 << DB_EQ_CLR_SHIFT; 645 if (event) 646 val |= 1 << DB_EQ_EVNT_SHIFT; 647 648 val |= num_processed << DB_EQ_NUM_POPPED_SHIFT; 649 /* Setting lower order EQ_ID Bits */ 650 val |= (id & DB_EQ_RING_ID_LOW_MASK); 651 652 /* Setting Higher order EQ_ID Bits */ 653 val |= (((id >> DB_EQ_HIGH_FEILD_SHIFT) & 654 DB_EQ_RING_ID_HIGH_MASK) 655 << DB_EQ_HIGH_SET_SHIFT); 656 657 iowrite32(val, phba->db_va + DB_EQ_OFFSET); 658 } 659 660 /** 661 * be_isr_mcc - The isr routine of the driver. 662 * @irq: Not used 663 * @dev_id: Pointer to host adapter structure 664 */ 665 static irqreturn_t be_isr_mcc(int irq, void *dev_id) 666 { 667 struct beiscsi_hba *phba; 668 struct be_eq_entry *eqe; 669 struct be_queue_info *eq; 670 struct be_queue_info *mcc; 671 unsigned int mcc_events; 672 struct be_eq_obj *pbe_eq; 673 674 pbe_eq = dev_id; 675 eq = &pbe_eq->q; 676 phba = pbe_eq->phba; 677 mcc = &phba->ctrl.mcc_obj.cq; 678 eqe = queue_tail_node(eq); 679 680 mcc_events = 0; 681 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] 682 & EQE_VALID_MASK) { 683 if (((eqe->dw[offsetof(struct amap_eq_entry, 684 resource_id) / 32] & 685 EQE_RESID_MASK) >> 16) == mcc->id) { 686 mcc_events++; 687 } 688 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0); 689 queue_tail_inc(eq); 690 eqe = queue_tail_node(eq); 691 } 692 693 if (mcc_events) { 694 queue_work(phba->wq, &pbe_eq->mcc_work); 695 hwi_ring_eq_db(phba, eq->id, 1, mcc_events, 1, 1); 696 } 697 return IRQ_HANDLED; 698 } 699 700 /** 701 * be_isr_msix - The isr routine of the driver. 702 * @irq: Not used 703 * @dev_id: Pointer to host adapter structure 704 */ 705 static irqreturn_t be_isr_msix(int irq, void *dev_id) 706 { 707 struct beiscsi_hba *phba; 708 struct be_queue_info *eq; 709 struct be_eq_obj *pbe_eq; 710 711 pbe_eq = dev_id; 712 eq = &pbe_eq->q; 713 714 phba = pbe_eq->phba; 715 /* disable interrupt till iopoll completes */ 716 hwi_ring_eq_db(phba, eq->id, 1, 0, 0, 1); 717 irq_poll_sched(&pbe_eq->iopoll); 718 719 return IRQ_HANDLED; 720 } 721 722 /** 723 * be_isr - The isr routine of the driver. 724 * @irq: Not used 725 * @dev_id: Pointer to host adapter structure 726 */ 727 static irqreturn_t be_isr(int irq, void *dev_id) 728 { 729 struct beiscsi_hba *phba; 730 struct hwi_controller *phwi_ctrlr; 731 struct hwi_context_memory *phwi_context; 732 struct be_eq_entry *eqe; 733 struct be_queue_info *eq; 734 struct be_queue_info *mcc; 735 unsigned int mcc_events, io_events; 736 struct be_ctrl_info *ctrl; 737 struct be_eq_obj *pbe_eq; 738 int isr, rearm; 739 740 phba = dev_id; 741 ctrl = &phba->ctrl; 742 isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET + 743 (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE)); 744 if (!isr) 745 return IRQ_NONE; 746 747 phwi_ctrlr = phba->phwi_ctrlr; 748 phwi_context = phwi_ctrlr->phwi_ctxt; 749 pbe_eq = &phwi_context->be_eq[0]; 750 751 eq = &phwi_context->be_eq[0].q; 752 mcc = &phba->ctrl.mcc_obj.cq; 753 eqe = queue_tail_node(eq); 754 755 io_events = 0; 756 mcc_events = 0; 757 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] 758 & EQE_VALID_MASK) { 759 if (((eqe->dw[offsetof(struct amap_eq_entry, 760 resource_id) / 32] & EQE_RESID_MASK) >> 16) == mcc->id) 761 mcc_events++; 762 else 763 io_events++; 764 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0); 765 queue_tail_inc(eq); 766 eqe = queue_tail_node(eq); 767 } 768 if (!io_events && !mcc_events) 769 return IRQ_NONE; 770 771 /* no need to rearm if interrupt is only for IOs */ 772 rearm = 0; 773 if (mcc_events) { 774 queue_work(phba->wq, &pbe_eq->mcc_work); 775 /* rearm for MCCQ */ 776 rearm = 1; 777 } 778 if (io_events) 779 irq_poll_sched(&pbe_eq->iopoll); 780 hwi_ring_eq_db(phba, eq->id, 0, (io_events + mcc_events), rearm, 1); 781 return IRQ_HANDLED; 782 } 783 784 static void beiscsi_free_irqs(struct beiscsi_hba *phba) 785 { 786 struct hwi_context_memory *phwi_context; 787 int i; 788 789 if (!phba->pcidev->msix_enabled) { 790 if (phba->pcidev->irq) 791 free_irq(phba->pcidev->irq, phba); 792 return; 793 } 794 795 phwi_context = phba->phwi_ctrlr->phwi_ctxt; 796 for (i = 0; i <= phba->num_cpus; i++) { 797 free_irq(pci_irq_vector(phba->pcidev, i), 798 &phwi_context->be_eq[i]); 799 kfree(phba->msi_name[i]); 800 } 801 } 802 803 static int beiscsi_init_irqs(struct beiscsi_hba *phba) 804 { 805 struct pci_dev *pcidev = phba->pcidev; 806 struct hwi_controller *phwi_ctrlr; 807 struct hwi_context_memory *phwi_context; 808 int ret, i, j; 809 810 phwi_ctrlr = phba->phwi_ctrlr; 811 phwi_context = phwi_ctrlr->phwi_ctxt; 812 813 if (pcidev->msix_enabled) { 814 for (i = 0; i < phba->num_cpus; i++) { 815 phba->msi_name[i] = kasprintf(GFP_KERNEL, 816 "beiscsi_%02x_%02x", 817 phba->shost->host_no, i); 818 if (!phba->msi_name[i]) { 819 ret = -ENOMEM; 820 goto free_msix_irqs; 821 } 822 823 ret = request_irq(pci_irq_vector(pcidev, i), 824 be_isr_msix, 0, phba->msi_name[i], 825 &phwi_context->be_eq[i]); 826 if (ret) { 827 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 828 "BM_%d : beiscsi_init_irqs-Failed to" 829 "register msix for i = %d\n", 830 i); 831 kfree(phba->msi_name[i]); 832 goto free_msix_irqs; 833 } 834 } 835 phba->msi_name[i] = kasprintf(GFP_KERNEL, "beiscsi_mcc_%02x", 836 phba->shost->host_no); 837 if (!phba->msi_name[i]) { 838 ret = -ENOMEM; 839 goto free_msix_irqs; 840 } 841 ret = request_irq(pci_irq_vector(pcidev, i), be_isr_mcc, 0, 842 phba->msi_name[i], &phwi_context->be_eq[i]); 843 if (ret) { 844 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT , 845 "BM_%d : beiscsi_init_irqs-" 846 "Failed to register beiscsi_msix_mcc\n"); 847 kfree(phba->msi_name[i]); 848 goto free_msix_irqs; 849 } 850 851 } else { 852 ret = request_irq(pcidev->irq, be_isr, IRQF_SHARED, 853 "beiscsi", phba); 854 if (ret) { 855 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 856 "BM_%d : beiscsi_init_irqs-" 857 "Failed to register irq\\n"); 858 return ret; 859 } 860 } 861 return 0; 862 free_msix_irqs: 863 for (j = i - 1; j >= 0; j--) { 864 free_irq(pci_irq_vector(pcidev, i), &phwi_context->be_eq[j]); 865 kfree(phba->msi_name[j]); 866 } 867 return ret; 868 } 869 870 void hwi_ring_cq_db(struct beiscsi_hba *phba, 871 unsigned int id, unsigned int num_processed, 872 unsigned char rearm) 873 { 874 u32 val = 0; 875 876 if (rearm) 877 val |= 1 << DB_CQ_REARM_SHIFT; 878 879 val |= num_processed << DB_CQ_NUM_POPPED_SHIFT; 880 881 /* Setting lower order CQ_ID Bits */ 882 val |= (id & DB_CQ_RING_ID_LOW_MASK); 883 884 /* Setting Higher order CQ_ID Bits */ 885 val |= (((id >> DB_CQ_HIGH_FEILD_SHIFT) & 886 DB_CQ_RING_ID_HIGH_MASK) 887 << DB_CQ_HIGH_SET_SHIFT); 888 889 iowrite32(val, phba->db_va + DB_CQ_OFFSET); 890 } 891 892 static struct sgl_handle *alloc_io_sgl_handle(struct beiscsi_hba *phba) 893 { 894 struct sgl_handle *psgl_handle; 895 unsigned long flags; 896 897 spin_lock_irqsave(&phba->io_sgl_lock, flags); 898 if (phba->io_sgl_hndl_avbl) { 899 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO, 900 "BM_%d : In alloc_io_sgl_handle," 901 " io_sgl_alloc_index=%d\n", 902 phba->io_sgl_alloc_index); 903 904 psgl_handle = phba->io_sgl_hndl_base[phba-> 905 io_sgl_alloc_index]; 906 phba->io_sgl_hndl_base[phba->io_sgl_alloc_index] = NULL; 907 phba->io_sgl_hndl_avbl--; 908 if (phba->io_sgl_alloc_index == (phba->params. 909 ios_per_ctrl - 1)) 910 phba->io_sgl_alloc_index = 0; 911 else 912 phba->io_sgl_alloc_index++; 913 } else 914 psgl_handle = NULL; 915 spin_unlock_irqrestore(&phba->io_sgl_lock, flags); 916 return psgl_handle; 917 } 918 919 static void 920 free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle) 921 { 922 unsigned long flags; 923 924 spin_lock_irqsave(&phba->io_sgl_lock, flags); 925 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO, 926 "BM_%d : In free_,io_sgl_free_index=%d\n", 927 phba->io_sgl_free_index); 928 929 if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) { 930 /* 931 * this can happen if clean_task is called on a task that 932 * failed in xmit_task or alloc_pdu. 933 */ 934 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO, 935 "BM_%d : Double Free in IO SGL io_sgl_free_index=%d, value there=%p\n", 936 phba->io_sgl_free_index, 937 phba->io_sgl_hndl_base[phba->io_sgl_free_index]); 938 spin_unlock_irqrestore(&phba->io_sgl_lock, flags); 939 return; 940 } 941 phba->io_sgl_hndl_base[phba->io_sgl_free_index] = psgl_handle; 942 phba->io_sgl_hndl_avbl++; 943 if (phba->io_sgl_free_index == (phba->params.ios_per_ctrl - 1)) 944 phba->io_sgl_free_index = 0; 945 else 946 phba->io_sgl_free_index++; 947 spin_unlock_irqrestore(&phba->io_sgl_lock, flags); 948 } 949 950 static inline struct wrb_handle * 951 beiscsi_get_wrb_handle(struct hwi_wrb_context *pwrb_context, 952 unsigned int wrbs_per_cxn) 953 { 954 struct wrb_handle *pwrb_handle; 955 unsigned long flags; 956 957 spin_lock_irqsave(&pwrb_context->wrb_lock, flags); 958 if (!pwrb_context->wrb_handles_available) { 959 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags); 960 return NULL; 961 } 962 pwrb_handle = pwrb_context->pwrb_handle_base[pwrb_context->alloc_index]; 963 pwrb_context->wrb_handles_available--; 964 if (pwrb_context->alloc_index == (wrbs_per_cxn - 1)) 965 pwrb_context->alloc_index = 0; 966 else 967 pwrb_context->alloc_index++; 968 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags); 969 970 if (pwrb_handle) 971 memset(pwrb_handle->pwrb, 0, sizeof(*pwrb_handle->pwrb)); 972 973 return pwrb_handle; 974 } 975 976 /** 977 * alloc_wrb_handle - To allocate a wrb handle 978 * @phba: The hba pointer 979 * @cid: The cid to use for allocation 980 * @pcontext: ptr to ptr to wrb context 981 * 982 * This happens under session_lock until submission to chip 983 */ 984 struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid, 985 struct hwi_wrb_context **pcontext) 986 { 987 struct hwi_wrb_context *pwrb_context; 988 struct hwi_controller *phwi_ctrlr; 989 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid); 990 991 phwi_ctrlr = phba->phwi_ctrlr; 992 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 993 /* return the context address */ 994 *pcontext = pwrb_context; 995 return beiscsi_get_wrb_handle(pwrb_context, phba->params.wrbs_per_cxn); 996 } 997 998 static inline void 999 beiscsi_put_wrb_handle(struct hwi_wrb_context *pwrb_context, 1000 struct wrb_handle *pwrb_handle, 1001 unsigned int wrbs_per_cxn) 1002 { 1003 unsigned long flags; 1004 1005 spin_lock_irqsave(&pwrb_context->wrb_lock, flags); 1006 pwrb_context->pwrb_handle_base[pwrb_context->free_index] = pwrb_handle; 1007 pwrb_context->wrb_handles_available++; 1008 if (pwrb_context->free_index == (wrbs_per_cxn - 1)) 1009 pwrb_context->free_index = 0; 1010 else 1011 pwrb_context->free_index++; 1012 pwrb_handle->pio_handle = NULL; 1013 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags); 1014 } 1015 1016 /** 1017 * free_wrb_handle - To free the wrb handle back to pool 1018 * @phba: The hba pointer 1019 * @pwrb_context: The context to free from 1020 * @pwrb_handle: The wrb_handle to free 1021 * 1022 * This happens under session_lock until submission to chip 1023 */ 1024 static void 1025 free_wrb_handle(struct beiscsi_hba *phba, struct hwi_wrb_context *pwrb_context, 1026 struct wrb_handle *pwrb_handle) 1027 { 1028 beiscsi_put_wrb_handle(pwrb_context, 1029 pwrb_handle, 1030 phba->params.wrbs_per_cxn); 1031 beiscsi_log(phba, KERN_INFO, 1032 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1033 "BM_%d : FREE WRB: pwrb_handle=%p free_index=0x%x" 1034 "wrb_handles_available=%d\n", 1035 pwrb_handle, pwrb_context->free_index, 1036 pwrb_context->wrb_handles_available); 1037 } 1038 1039 static struct sgl_handle *alloc_mgmt_sgl_handle(struct beiscsi_hba *phba) 1040 { 1041 struct sgl_handle *psgl_handle; 1042 unsigned long flags; 1043 1044 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags); 1045 if (phba->eh_sgl_hndl_avbl) { 1046 psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index]; 1047 phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL; 1048 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG, 1049 "BM_%d : mgmt_sgl_alloc_index=%d=0x%x\n", 1050 phba->eh_sgl_alloc_index, 1051 phba->eh_sgl_alloc_index); 1052 1053 phba->eh_sgl_hndl_avbl--; 1054 if (phba->eh_sgl_alloc_index == 1055 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1056 1)) 1057 phba->eh_sgl_alloc_index = 0; 1058 else 1059 phba->eh_sgl_alloc_index++; 1060 } else 1061 psgl_handle = NULL; 1062 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags); 1063 return psgl_handle; 1064 } 1065 1066 void 1067 free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle) 1068 { 1069 unsigned long flags; 1070 1071 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags); 1072 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG, 1073 "BM_%d : In free_mgmt_sgl_handle," 1074 "eh_sgl_free_index=%d\n", 1075 phba->eh_sgl_free_index); 1076 1077 if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) { 1078 /* 1079 * this can happen if clean_task is called on a task that 1080 * failed in xmit_task or alloc_pdu. 1081 */ 1082 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG, 1083 "BM_%d : Double Free in eh SGL ," 1084 "eh_sgl_free_index=%d\n", 1085 phba->eh_sgl_free_index); 1086 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags); 1087 return; 1088 } 1089 phba->eh_sgl_hndl_base[phba->eh_sgl_free_index] = psgl_handle; 1090 phba->eh_sgl_hndl_avbl++; 1091 if (phba->eh_sgl_free_index == 1092 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1)) 1093 phba->eh_sgl_free_index = 0; 1094 else 1095 phba->eh_sgl_free_index++; 1096 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags); 1097 } 1098 1099 static void 1100 be_complete_io(struct beiscsi_conn *beiscsi_conn, 1101 struct iscsi_task *task, 1102 struct common_sol_cqe *csol_cqe) 1103 { 1104 struct beiscsi_io_task *io_task = task->dd_data; 1105 struct be_status_bhs *sts_bhs = 1106 (struct be_status_bhs *)io_task->cmd_bhs; 1107 struct iscsi_conn *conn = beiscsi_conn->conn; 1108 unsigned char *sense; 1109 u32 resid = 0, exp_cmdsn, max_cmdsn; 1110 u8 rsp, status, flags; 1111 1112 exp_cmdsn = csol_cqe->exp_cmdsn; 1113 max_cmdsn = (csol_cqe->exp_cmdsn + 1114 csol_cqe->cmd_wnd - 1); 1115 rsp = csol_cqe->i_resp; 1116 status = csol_cqe->i_sts; 1117 flags = csol_cqe->i_flags; 1118 resid = csol_cqe->res_cnt; 1119 1120 if (!task->sc) { 1121 if (io_task->scsi_cmnd) { 1122 scsi_dma_unmap(io_task->scsi_cmnd); 1123 io_task->scsi_cmnd = NULL; 1124 } 1125 1126 return; 1127 } 1128 task->sc->result = (DID_OK << 16) | status; 1129 if (rsp != ISCSI_STATUS_CMD_COMPLETED) { 1130 task->sc->result = DID_ERROR << 16; 1131 goto unmap; 1132 } 1133 1134 /* bidi not initially supported */ 1135 if (flags & (ISCSI_FLAG_CMD_UNDERFLOW | ISCSI_FLAG_CMD_OVERFLOW)) { 1136 if (!status && (flags & ISCSI_FLAG_CMD_OVERFLOW)) 1137 task->sc->result = DID_ERROR << 16; 1138 1139 if (flags & ISCSI_FLAG_CMD_UNDERFLOW) { 1140 scsi_set_resid(task->sc, resid); 1141 if (!status && (scsi_bufflen(task->sc) - resid < 1142 task->sc->underflow)) 1143 task->sc->result = DID_ERROR << 16; 1144 } 1145 } 1146 1147 if (status == SAM_STAT_CHECK_CONDITION) { 1148 u16 sense_len; 1149 unsigned short *slen = (unsigned short *)sts_bhs->sense_info; 1150 1151 sense = sts_bhs->sense_info + sizeof(unsigned short); 1152 sense_len = be16_to_cpu(*slen); 1153 memcpy(task->sc->sense_buffer, sense, 1154 min_t(u16, sense_len, SCSI_SENSE_BUFFERSIZE)); 1155 } 1156 1157 if (io_task->cmd_bhs->iscsi_hdr.flags & ISCSI_FLAG_CMD_READ) 1158 conn->rxdata_octets += resid; 1159 unmap: 1160 if (io_task->scsi_cmnd) { 1161 scsi_dma_unmap(io_task->scsi_cmnd); 1162 io_task->scsi_cmnd = NULL; 1163 } 1164 iscsi_complete_scsi_task(task, exp_cmdsn, max_cmdsn); 1165 } 1166 1167 static void 1168 be_complete_logout(struct beiscsi_conn *beiscsi_conn, 1169 struct iscsi_task *task, 1170 struct common_sol_cqe *csol_cqe) 1171 { 1172 struct iscsi_logout_rsp *hdr; 1173 struct beiscsi_io_task *io_task = task->dd_data; 1174 struct iscsi_conn *conn = beiscsi_conn->conn; 1175 1176 hdr = (struct iscsi_logout_rsp *)task->hdr; 1177 hdr->opcode = ISCSI_OP_LOGOUT_RSP; 1178 hdr->t2wait = 5; 1179 hdr->t2retain = 0; 1180 hdr->flags = csol_cqe->i_flags; 1181 hdr->response = csol_cqe->i_resp; 1182 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn); 1183 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn + 1184 csol_cqe->cmd_wnd - 1); 1185 1186 hdr->dlength[0] = 0; 1187 hdr->dlength[1] = 0; 1188 hdr->dlength[2] = 0; 1189 hdr->hlength = 0; 1190 hdr->itt = io_task->libiscsi_itt; 1191 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0); 1192 } 1193 1194 static void 1195 be_complete_tmf(struct beiscsi_conn *beiscsi_conn, 1196 struct iscsi_task *task, 1197 struct common_sol_cqe *csol_cqe) 1198 { 1199 struct iscsi_tm_rsp *hdr; 1200 struct iscsi_conn *conn = beiscsi_conn->conn; 1201 struct beiscsi_io_task *io_task = task->dd_data; 1202 1203 hdr = (struct iscsi_tm_rsp *)task->hdr; 1204 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP; 1205 hdr->flags = csol_cqe->i_flags; 1206 hdr->response = csol_cqe->i_resp; 1207 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn); 1208 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn + 1209 csol_cqe->cmd_wnd - 1); 1210 1211 hdr->itt = io_task->libiscsi_itt; 1212 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0); 1213 } 1214 1215 static void 1216 hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn, 1217 struct beiscsi_hba *phba, struct sol_cqe *psol) 1218 { 1219 struct hwi_wrb_context *pwrb_context; 1220 uint16_t wrb_index, cid, cri_index; 1221 struct hwi_controller *phwi_ctrlr; 1222 struct wrb_handle *pwrb_handle; 1223 struct iscsi_session *session; 1224 struct iscsi_task *task; 1225 1226 phwi_ctrlr = phba->phwi_ctrlr; 1227 if (is_chip_be2_be3r(phba)) { 1228 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe, 1229 wrb_idx, psol); 1230 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe, 1231 cid, psol); 1232 } else { 1233 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2, 1234 wrb_idx, psol); 1235 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2, 1236 cid, psol); 1237 } 1238 1239 cri_index = BE_GET_CRI_FROM_CID(cid); 1240 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 1241 pwrb_handle = pwrb_context->pwrb_handle_basestd[wrb_index]; 1242 session = beiscsi_conn->conn->session; 1243 spin_lock_bh(&session->back_lock); 1244 task = pwrb_handle->pio_handle; 1245 if (task) 1246 __iscsi_put_task(task); 1247 spin_unlock_bh(&session->back_lock); 1248 } 1249 1250 static void 1251 be_complete_nopin_resp(struct beiscsi_conn *beiscsi_conn, 1252 struct iscsi_task *task, 1253 struct common_sol_cqe *csol_cqe) 1254 { 1255 struct iscsi_nopin *hdr; 1256 struct iscsi_conn *conn = beiscsi_conn->conn; 1257 struct beiscsi_io_task *io_task = task->dd_data; 1258 1259 hdr = (struct iscsi_nopin *)task->hdr; 1260 hdr->flags = csol_cqe->i_flags; 1261 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn); 1262 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn + 1263 csol_cqe->cmd_wnd - 1); 1264 1265 hdr->opcode = ISCSI_OP_NOOP_IN; 1266 hdr->itt = io_task->libiscsi_itt; 1267 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0); 1268 } 1269 1270 static void adapter_get_sol_cqe(struct beiscsi_hba *phba, 1271 struct sol_cqe *psol, 1272 struct common_sol_cqe *csol_cqe) 1273 { 1274 if (is_chip_be2_be3r(phba)) { 1275 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe, 1276 i_exp_cmd_sn, psol); 1277 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe, 1278 i_res_cnt, psol); 1279 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe, 1280 i_cmd_wnd, psol); 1281 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe, 1282 wrb_index, psol); 1283 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe, 1284 cid, psol); 1285 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe, 1286 hw_sts, psol); 1287 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe, 1288 i_resp, psol); 1289 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe, 1290 i_sts, psol); 1291 csol_cqe->i_flags = AMAP_GET_BITS(struct amap_sol_cqe, 1292 i_flags, psol); 1293 } else { 1294 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1295 i_exp_cmd_sn, psol); 1296 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1297 i_res_cnt, psol); 1298 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1299 wrb_index, psol); 1300 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1301 cid, psol); 1302 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1303 hw_sts, psol); 1304 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1305 i_cmd_wnd, psol); 1306 if (AMAP_GET_BITS(struct amap_sol_cqe_v2, 1307 cmd_cmpl, psol)) 1308 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1309 i_sts, psol); 1310 else 1311 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1312 i_sts, psol); 1313 if (AMAP_GET_BITS(struct amap_sol_cqe_v2, 1314 u, psol)) 1315 csol_cqe->i_flags = ISCSI_FLAG_CMD_UNDERFLOW; 1316 1317 if (AMAP_GET_BITS(struct amap_sol_cqe_v2, 1318 o, psol)) 1319 csol_cqe->i_flags |= ISCSI_FLAG_CMD_OVERFLOW; 1320 } 1321 } 1322 1323 1324 static void hwi_complete_cmd(struct beiscsi_conn *beiscsi_conn, 1325 struct beiscsi_hba *phba, struct sol_cqe *psol) 1326 { 1327 struct iscsi_conn *conn = beiscsi_conn->conn; 1328 struct iscsi_session *session = conn->session; 1329 struct common_sol_cqe csol_cqe = {0}; 1330 struct hwi_wrb_context *pwrb_context; 1331 struct hwi_controller *phwi_ctrlr; 1332 struct wrb_handle *pwrb_handle; 1333 struct iscsi_task *task; 1334 uint16_t cri_index = 0; 1335 uint8_t type; 1336 1337 phwi_ctrlr = phba->phwi_ctrlr; 1338 1339 /* Copy the elements to a common structure */ 1340 adapter_get_sol_cqe(phba, psol, &csol_cqe); 1341 1342 cri_index = BE_GET_CRI_FROM_CID(csol_cqe.cid); 1343 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 1344 1345 pwrb_handle = pwrb_context->pwrb_handle_basestd[ 1346 csol_cqe.wrb_index]; 1347 1348 spin_lock_bh(&session->back_lock); 1349 task = pwrb_handle->pio_handle; 1350 if (!task) { 1351 spin_unlock_bh(&session->back_lock); 1352 return; 1353 } 1354 type = ((struct beiscsi_io_task *)task->dd_data)->wrb_type; 1355 1356 switch (type) { 1357 case HWH_TYPE_IO: 1358 case HWH_TYPE_IO_RD: 1359 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == 1360 ISCSI_OP_NOOP_OUT) 1361 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe); 1362 else 1363 be_complete_io(beiscsi_conn, task, &csol_cqe); 1364 break; 1365 1366 case HWH_TYPE_LOGOUT: 1367 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT) 1368 be_complete_logout(beiscsi_conn, task, &csol_cqe); 1369 else 1370 be_complete_tmf(beiscsi_conn, task, &csol_cqe); 1371 break; 1372 1373 case HWH_TYPE_LOGIN: 1374 beiscsi_log(phba, KERN_ERR, 1375 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1376 "BM_%d :\t\t No HWH_TYPE_LOGIN Expected in" 1377 " hwi_complete_cmd- Solicited path\n"); 1378 break; 1379 1380 case HWH_TYPE_NOP: 1381 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe); 1382 break; 1383 1384 default: 1385 beiscsi_log(phba, KERN_WARNING, 1386 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1387 "BM_%d : In hwi_complete_cmd, unknown type = %d" 1388 "wrb_index 0x%x CID 0x%x\n", type, 1389 csol_cqe.wrb_index, 1390 csol_cqe.cid); 1391 break; 1392 } 1393 1394 spin_unlock_bh(&session->back_lock); 1395 } 1396 1397 /* 1398 * ASYNC PDUs include 1399 * a. Unsolicited NOP-In (target initiated NOP-In) 1400 * b. ASYNC Messages 1401 * c. Reject PDU 1402 * d. Login response 1403 * These headers arrive unprocessed by the EP firmware. 1404 * iSCSI layer processes them. 1405 */ 1406 static unsigned int 1407 beiscsi_complete_pdu(struct beiscsi_conn *beiscsi_conn, 1408 struct pdu_base *phdr, void *pdata, unsigned int dlen) 1409 { 1410 struct beiscsi_hba *phba = beiscsi_conn->phba; 1411 struct iscsi_conn *conn = beiscsi_conn->conn; 1412 struct beiscsi_io_task *io_task; 1413 struct iscsi_hdr *login_hdr; 1414 struct iscsi_task *task; 1415 u8 code; 1416 1417 code = AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr); 1418 switch (code) { 1419 case ISCSI_OP_NOOP_IN: 1420 pdata = NULL; 1421 dlen = 0; 1422 break; 1423 case ISCSI_OP_ASYNC_EVENT: 1424 break; 1425 case ISCSI_OP_REJECT: 1426 WARN_ON(!pdata); 1427 WARN_ON(!(dlen == 48)); 1428 beiscsi_log(phba, KERN_ERR, 1429 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1430 "BM_%d : In ISCSI_OP_REJECT\n"); 1431 break; 1432 case ISCSI_OP_LOGIN_RSP: 1433 case ISCSI_OP_TEXT_RSP: 1434 task = conn->login_task; 1435 io_task = task->dd_data; 1436 login_hdr = (struct iscsi_hdr *)phdr; 1437 login_hdr->itt = io_task->libiscsi_itt; 1438 break; 1439 default: 1440 beiscsi_log(phba, KERN_WARNING, 1441 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1442 "BM_%d : unrecognized async PDU opcode 0x%x\n", 1443 code); 1444 return 1; 1445 } 1446 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)phdr, pdata, dlen); 1447 return 0; 1448 } 1449 1450 static inline void 1451 beiscsi_hdl_put_handle(struct hd_async_context *pasync_ctx, 1452 struct hd_async_handle *pasync_handle) 1453 { 1454 pasync_handle->is_final = 0; 1455 pasync_handle->buffer_len = 0; 1456 pasync_handle->in_use = 0; 1457 list_del_init(&pasync_handle->link); 1458 } 1459 1460 static void 1461 beiscsi_hdl_purge_handles(struct beiscsi_hba *phba, 1462 struct hd_async_context *pasync_ctx, 1463 u16 cri) 1464 { 1465 struct hd_async_handle *pasync_handle, *tmp_handle; 1466 struct list_head *plist; 1467 1468 plist = &pasync_ctx->async_entry[cri].wq.list; 1469 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link) 1470 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle); 1471 1472 INIT_LIST_HEAD(&pasync_ctx->async_entry[cri].wq.list); 1473 pasync_ctx->async_entry[cri].wq.hdr_len = 0; 1474 pasync_ctx->async_entry[cri].wq.bytes_received = 0; 1475 pasync_ctx->async_entry[cri].wq.bytes_needed = 0; 1476 } 1477 1478 static struct hd_async_handle * 1479 beiscsi_hdl_get_handle(struct beiscsi_conn *beiscsi_conn, 1480 struct hd_async_context *pasync_ctx, 1481 struct i_t_dpdu_cqe *pdpdu_cqe, 1482 u8 *header) 1483 { 1484 struct beiscsi_hba *phba = beiscsi_conn->phba; 1485 struct hd_async_handle *pasync_handle; 1486 struct be_bus_address phys_addr; 1487 u16 cid, code, ci, cri; 1488 u8 final, error = 0; 1489 u32 dpl; 1490 1491 cid = beiscsi_conn->beiscsi_conn_cid; 1492 cri = BE_GET_ASYNC_CRI_FROM_CID(cid); 1493 /** 1494 * This function is invoked to get the right async_handle structure 1495 * from a given DEF PDU CQ entry. 1496 * 1497 * - index in CQ entry gives the vertical index 1498 * - address in CQ entry is the offset where the DMA last ended 1499 * - final - no more notifications for this PDU 1500 */ 1501 if (is_chip_be2_be3r(phba)) { 1502 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1503 dpl, pdpdu_cqe); 1504 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1505 index, pdpdu_cqe); 1506 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1507 final, pdpdu_cqe); 1508 } else { 1509 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2, 1510 dpl, pdpdu_cqe); 1511 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2, 1512 index, pdpdu_cqe); 1513 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2, 1514 final, pdpdu_cqe); 1515 } 1516 1517 /** 1518 * DB addr Hi/Lo is same for BE and SKH. 1519 * Subtract the dataplacementlength to get to the base. 1520 */ 1521 phys_addr.u.a32.address_lo = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1522 db_addr_lo, pdpdu_cqe); 1523 phys_addr.u.a32.address_lo -= dpl; 1524 phys_addr.u.a32.address_hi = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1525 db_addr_hi, pdpdu_cqe); 1526 1527 code = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, code, pdpdu_cqe); 1528 switch (code) { 1529 case UNSOL_HDR_NOTIFY: 1530 pasync_handle = pasync_ctx->async_entry[ci].header; 1531 *header = 1; 1532 break; 1533 case UNSOL_DATA_DIGEST_ERROR_NOTIFY: 1534 error = 1; 1535 fallthrough; 1536 case UNSOL_DATA_NOTIFY: 1537 pasync_handle = pasync_ctx->async_entry[ci].data; 1538 break; 1539 /* called only for above codes */ 1540 default: 1541 return NULL; 1542 } 1543 1544 if (pasync_handle->pa.u.a64.address != phys_addr.u.a64.address || 1545 pasync_handle->index != ci) { 1546 /* driver bug - if ci does not match async handle index */ 1547 error = 1; 1548 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI, 1549 "BM_%d : cid %u async PDU handle mismatch - addr in %cQE %llx at %u:addr in CQE %llx ci %u\n", 1550 cid, pasync_handle->is_header ? 'H' : 'D', 1551 pasync_handle->pa.u.a64.address, 1552 pasync_handle->index, 1553 phys_addr.u.a64.address, ci); 1554 /* FW has stale address - attempt continuing by dropping */ 1555 } 1556 1557 /** 1558 * DEF PDU header and data buffers with errors should be simply 1559 * dropped as there are no consumers for it. 1560 */ 1561 if (error) { 1562 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle); 1563 return NULL; 1564 } 1565 1566 if (pasync_handle->in_use || !list_empty(&pasync_handle->link)) { 1567 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI, 1568 "BM_%d : cid %d async PDU handle in use - code %d ci %d addr %llx\n", 1569 cid, code, ci, phys_addr.u.a64.address); 1570 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri); 1571 } 1572 1573 list_del_init(&pasync_handle->link); 1574 /** 1575 * Each CID is associated with unique CRI. 1576 * ASYNC_CRI_FROM_CID mapping and CRI_FROM_CID are totaly different. 1577 **/ 1578 pasync_handle->cri = cri; 1579 pasync_handle->is_final = final; 1580 pasync_handle->buffer_len = dpl; 1581 pasync_handle->in_use = 1; 1582 1583 return pasync_handle; 1584 } 1585 1586 static unsigned int 1587 beiscsi_hdl_fwd_pdu(struct beiscsi_conn *beiscsi_conn, 1588 struct hd_async_context *pasync_ctx, 1589 u16 cri) 1590 { 1591 struct iscsi_session *session = beiscsi_conn->conn->session; 1592 struct hd_async_handle *pasync_handle, *plast_handle; 1593 struct beiscsi_hba *phba = beiscsi_conn->phba; 1594 void *phdr = NULL, *pdata = NULL; 1595 u32 dlen = 0, status = 0; 1596 struct list_head *plist; 1597 1598 plist = &pasync_ctx->async_entry[cri].wq.list; 1599 plast_handle = NULL; 1600 list_for_each_entry(pasync_handle, plist, link) { 1601 plast_handle = pasync_handle; 1602 /* get the header, the first entry */ 1603 if (!phdr) { 1604 phdr = pasync_handle->pbuffer; 1605 continue; 1606 } 1607 /* use first buffer to collect all the data */ 1608 if (!pdata) { 1609 pdata = pasync_handle->pbuffer; 1610 dlen = pasync_handle->buffer_len; 1611 continue; 1612 } 1613 if (!pasync_handle->buffer_len || 1614 (dlen + pasync_handle->buffer_len) > 1615 pasync_ctx->async_data.buffer_size) 1616 break; 1617 memcpy(pdata + dlen, pasync_handle->pbuffer, 1618 pasync_handle->buffer_len); 1619 dlen += pasync_handle->buffer_len; 1620 } 1621 1622 if (!plast_handle->is_final) { 1623 /* last handle should have final PDU notification from FW */ 1624 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI, 1625 "BM_%d : cid %u %p fwd async PDU opcode %x with last handle missing - HL%u:DN%u:DR%u\n", 1626 beiscsi_conn->beiscsi_conn_cid, plast_handle, 1627 AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr), 1628 pasync_ctx->async_entry[cri].wq.hdr_len, 1629 pasync_ctx->async_entry[cri].wq.bytes_needed, 1630 pasync_ctx->async_entry[cri].wq.bytes_received); 1631 } 1632 spin_lock_bh(&session->back_lock); 1633 status = beiscsi_complete_pdu(beiscsi_conn, phdr, pdata, dlen); 1634 spin_unlock_bh(&session->back_lock); 1635 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri); 1636 return status; 1637 } 1638 1639 static unsigned int 1640 beiscsi_hdl_gather_pdu(struct beiscsi_conn *beiscsi_conn, 1641 struct hd_async_context *pasync_ctx, 1642 struct hd_async_handle *pasync_handle) 1643 { 1644 unsigned int bytes_needed = 0, status = 0; 1645 u16 cri = pasync_handle->cri; 1646 struct cri_wait_queue *wq; 1647 struct beiscsi_hba *phba; 1648 struct pdu_base *ppdu; 1649 char *err = ""; 1650 1651 phba = beiscsi_conn->phba; 1652 wq = &pasync_ctx->async_entry[cri].wq; 1653 if (pasync_handle->is_header) { 1654 /* check if PDU hdr is rcv'd when old hdr not completed */ 1655 if (wq->hdr_len) { 1656 err = "incomplete"; 1657 goto drop_pdu; 1658 } 1659 ppdu = pasync_handle->pbuffer; 1660 bytes_needed = AMAP_GET_BITS(struct amap_pdu_base, 1661 data_len_hi, ppdu); 1662 bytes_needed <<= 16; 1663 bytes_needed |= be16_to_cpu(AMAP_GET_BITS(struct amap_pdu_base, 1664 data_len_lo, ppdu)); 1665 wq->hdr_len = pasync_handle->buffer_len; 1666 wq->bytes_received = 0; 1667 wq->bytes_needed = bytes_needed; 1668 list_add_tail(&pasync_handle->link, &wq->list); 1669 if (!bytes_needed) 1670 status = beiscsi_hdl_fwd_pdu(beiscsi_conn, 1671 pasync_ctx, cri); 1672 } else { 1673 /* check if data received has header and is needed */ 1674 if (!wq->hdr_len || !wq->bytes_needed) { 1675 err = "header less"; 1676 goto drop_pdu; 1677 } 1678 wq->bytes_received += pasync_handle->buffer_len; 1679 /* Something got overwritten? Better catch it here. */ 1680 if (wq->bytes_received > wq->bytes_needed) { 1681 err = "overflow"; 1682 goto drop_pdu; 1683 } 1684 list_add_tail(&pasync_handle->link, &wq->list); 1685 if (wq->bytes_received == wq->bytes_needed) 1686 status = beiscsi_hdl_fwd_pdu(beiscsi_conn, 1687 pasync_ctx, cri); 1688 } 1689 return status; 1690 1691 drop_pdu: 1692 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI, 1693 "BM_%d : cid %u async PDU %s - def-%c:HL%u:DN%u:DR%u\n", 1694 beiscsi_conn->beiscsi_conn_cid, err, 1695 pasync_handle->is_header ? 'H' : 'D', 1696 wq->hdr_len, wq->bytes_needed, 1697 pasync_handle->buffer_len); 1698 /* discard this handle */ 1699 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle); 1700 /* free all the other handles in cri_wait_queue */ 1701 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri); 1702 /* try continuing */ 1703 return status; 1704 } 1705 1706 static void 1707 beiscsi_hdq_post_handles(struct beiscsi_hba *phba, 1708 u8 header, u8 ulp_num, u16 nbuf) 1709 { 1710 struct hd_async_handle *pasync_handle; 1711 struct hd_async_context *pasync_ctx; 1712 struct hwi_controller *phwi_ctrlr; 1713 struct phys_addr *pasync_sge; 1714 u32 ring_id, doorbell = 0; 1715 u32 doorbell_offset; 1716 u16 prod, pi; 1717 1718 phwi_ctrlr = phba->phwi_ctrlr; 1719 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num); 1720 if (header) { 1721 pasync_sge = pasync_ctx->async_header.ring_base; 1722 pi = pasync_ctx->async_header.pi; 1723 ring_id = phwi_ctrlr->default_pdu_hdr[ulp_num].id; 1724 doorbell_offset = phwi_ctrlr->default_pdu_hdr[ulp_num]. 1725 doorbell_offset; 1726 } else { 1727 pasync_sge = pasync_ctx->async_data.ring_base; 1728 pi = pasync_ctx->async_data.pi; 1729 ring_id = phwi_ctrlr->default_pdu_data[ulp_num].id; 1730 doorbell_offset = phwi_ctrlr->default_pdu_data[ulp_num]. 1731 doorbell_offset; 1732 } 1733 1734 for (prod = 0; prod < nbuf; prod++) { 1735 if (header) 1736 pasync_handle = pasync_ctx->async_entry[pi].header; 1737 else 1738 pasync_handle = pasync_ctx->async_entry[pi].data; 1739 WARN_ON(pasync_handle->is_header != header); 1740 WARN_ON(pasync_handle->index != pi); 1741 /* setup the ring only once */ 1742 if (nbuf == pasync_ctx->num_entries) { 1743 /* note hi is lo */ 1744 pasync_sge[pi].hi = pasync_handle->pa.u.a32.address_lo; 1745 pasync_sge[pi].lo = pasync_handle->pa.u.a32.address_hi; 1746 } 1747 if (++pi == pasync_ctx->num_entries) 1748 pi = 0; 1749 } 1750 1751 if (header) 1752 pasync_ctx->async_header.pi = pi; 1753 else 1754 pasync_ctx->async_data.pi = pi; 1755 1756 doorbell |= ring_id & DB_DEF_PDU_RING_ID_MASK; 1757 doorbell |= 1 << DB_DEF_PDU_REARM_SHIFT; 1758 doorbell |= 0 << DB_DEF_PDU_EVENT_SHIFT; 1759 doorbell |= (prod & DB_DEF_PDU_CQPROC_MASK) << DB_DEF_PDU_CQPROC_SHIFT; 1760 iowrite32(doorbell, phba->db_va + doorbell_offset); 1761 } 1762 1763 static void 1764 beiscsi_hdq_process_compl(struct beiscsi_conn *beiscsi_conn, 1765 struct i_t_dpdu_cqe *pdpdu_cqe) 1766 { 1767 struct beiscsi_hba *phba = beiscsi_conn->phba; 1768 struct hd_async_handle *pasync_handle = NULL; 1769 struct hd_async_context *pasync_ctx; 1770 struct hwi_controller *phwi_ctrlr; 1771 u8 ulp_num, consumed, header = 0; 1772 u16 cid_cri; 1773 1774 phwi_ctrlr = phba->phwi_ctrlr; 1775 cid_cri = BE_GET_CRI_FROM_CID(beiscsi_conn->beiscsi_conn_cid); 1776 ulp_num = BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr, cid_cri); 1777 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num); 1778 pasync_handle = beiscsi_hdl_get_handle(beiscsi_conn, pasync_ctx, 1779 pdpdu_cqe, &header); 1780 if (is_chip_be2_be3r(phba)) 1781 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, 1782 num_cons, pdpdu_cqe); 1783 else 1784 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2, 1785 num_cons, pdpdu_cqe); 1786 if (pasync_handle) 1787 beiscsi_hdl_gather_pdu(beiscsi_conn, pasync_ctx, pasync_handle); 1788 /* num_cons indicates number of 8 RQEs consumed */ 1789 if (consumed) 1790 beiscsi_hdq_post_handles(phba, header, ulp_num, 8 * consumed); 1791 } 1792 1793 void beiscsi_process_mcc_cq(struct beiscsi_hba *phba) 1794 { 1795 struct be_queue_info *mcc_cq; 1796 struct be_mcc_compl *mcc_compl; 1797 unsigned int num_processed = 0; 1798 1799 mcc_cq = &phba->ctrl.mcc_obj.cq; 1800 mcc_compl = queue_tail_node(mcc_cq); 1801 mcc_compl->flags = le32_to_cpu(mcc_compl->flags); 1802 while (mcc_compl->flags & CQE_FLAGS_VALID_MASK) { 1803 if (beiscsi_hba_in_error(phba)) 1804 return; 1805 1806 if (num_processed >= 32) { 1807 hwi_ring_cq_db(phba, mcc_cq->id, 1808 num_processed, 0); 1809 num_processed = 0; 1810 } 1811 if (mcc_compl->flags & CQE_FLAGS_ASYNC_MASK) { 1812 beiscsi_process_async_event(phba, mcc_compl); 1813 } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) { 1814 beiscsi_process_mcc_compl(&phba->ctrl, mcc_compl); 1815 } 1816 1817 mcc_compl->flags = 0; 1818 queue_tail_inc(mcc_cq); 1819 mcc_compl = queue_tail_node(mcc_cq); 1820 mcc_compl->flags = le32_to_cpu(mcc_compl->flags); 1821 num_processed++; 1822 } 1823 1824 if (num_processed > 0) 1825 hwi_ring_cq_db(phba, mcc_cq->id, num_processed, 1); 1826 } 1827 1828 static void beiscsi_mcc_work(struct work_struct *work) 1829 { 1830 struct be_eq_obj *pbe_eq; 1831 struct beiscsi_hba *phba; 1832 1833 pbe_eq = container_of(work, struct be_eq_obj, mcc_work); 1834 phba = pbe_eq->phba; 1835 beiscsi_process_mcc_cq(phba); 1836 /* rearm EQ for further interrupts */ 1837 if (!beiscsi_hba_in_error(phba)) 1838 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1); 1839 } 1840 1841 /** 1842 * beiscsi_process_cq()- Process the Completion Queue 1843 * @pbe_eq: Event Q on which the Completion has come 1844 * @budget: Max number of events to processed 1845 * 1846 * return 1847 * Number of Completion Entries processed. 1848 **/ 1849 unsigned int beiscsi_process_cq(struct be_eq_obj *pbe_eq, int budget) 1850 { 1851 struct be_queue_info *cq; 1852 struct sol_cqe *sol; 1853 unsigned int total = 0; 1854 unsigned int num_processed = 0; 1855 unsigned short code = 0, cid = 0; 1856 uint16_t cri_index = 0; 1857 struct beiscsi_conn *beiscsi_conn; 1858 struct beiscsi_endpoint *beiscsi_ep; 1859 struct iscsi_endpoint *ep; 1860 struct beiscsi_hba *phba; 1861 1862 cq = pbe_eq->cq; 1863 sol = queue_tail_node(cq); 1864 phba = pbe_eq->phba; 1865 1866 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] & 1867 CQE_VALID_MASK) { 1868 if (beiscsi_hba_in_error(phba)) 1869 return 0; 1870 1871 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe)); 1872 1873 code = (sol->dw[offsetof(struct amap_sol_cqe, code) / 32] & 1874 CQE_CODE_MASK); 1875 1876 /* Get the CID */ 1877 if (is_chip_be2_be3r(phba)) { 1878 cid = AMAP_GET_BITS(struct amap_sol_cqe, cid, sol); 1879 } else { 1880 if ((code == DRIVERMSG_NOTIFY) || 1881 (code == UNSOL_HDR_NOTIFY) || 1882 (code == UNSOL_DATA_NOTIFY)) 1883 cid = AMAP_GET_BITS( 1884 struct amap_i_t_dpdu_cqe_v2, 1885 cid, sol); 1886 else 1887 cid = AMAP_GET_BITS(struct amap_sol_cqe_v2, 1888 cid, sol); 1889 } 1890 1891 cri_index = BE_GET_CRI_FROM_CID(cid); 1892 ep = phba->ep_array[cri_index]; 1893 1894 if (ep == NULL) { 1895 /* connection has already been freed 1896 * just move on to next one 1897 */ 1898 beiscsi_log(phba, KERN_WARNING, 1899 BEISCSI_LOG_INIT, 1900 "BM_%d : proc cqe of disconn ep: cid %d\n", 1901 cid); 1902 goto proc_next_cqe; 1903 } 1904 1905 beiscsi_ep = ep->dd_data; 1906 beiscsi_conn = beiscsi_ep->conn; 1907 1908 /* replenish cq */ 1909 if (num_processed == 32) { 1910 hwi_ring_cq_db(phba, cq->id, 32, 0); 1911 num_processed = 0; 1912 } 1913 total++; 1914 1915 switch (code) { 1916 case SOL_CMD_COMPLETE: 1917 hwi_complete_cmd(beiscsi_conn, phba, sol); 1918 break; 1919 case DRIVERMSG_NOTIFY: 1920 beiscsi_log(phba, KERN_INFO, 1921 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1922 "BM_%d : Received %s[%d] on CID : %d\n", 1923 cqe_desc[code], code, cid); 1924 1925 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol); 1926 break; 1927 case UNSOL_HDR_NOTIFY: 1928 beiscsi_log(phba, KERN_INFO, 1929 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1930 "BM_%d : Received %s[%d] on CID : %d\n", 1931 cqe_desc[code], code, cid); 1932 1933 spin_lock_bh(&phba->async_pdu_lock); 1934 beiscsi_hdq_process_compl(beiscsi_conn, 1935 (struct i_t_dpdu_cqe *)sol); 1936 spin_unlock_bh(&phba->async_pdu_lock); 1937 break; 1938 case UNSOL_DATA_NOTIFY: 1939 beiscsi_log(phba, KERN_INFO, 1940 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1941 "BM_%d : Received %s[%d] on CID : %d\n", 1942 cqe_desc[code], code, cid); 1943 1944 spin_lock_bh(&phba->async_pdu_lock); 1945 beiscsi_hdq_process_compl(beiscsi_conn, 1946 (struct i_t_dpdu_cqe *)sol); 1947 spin_unlock_bh(&phba->async_pdu_lock); 1948 break; 1949 case CXN_INVALIDATE_INDEX_NOTIFY: 1950 case CMD_INVALIDATED_NOTIFY: 1951 case CXN_INVALIDATE_NOTIFY: 1952 beiscsi_log(phba, KERN_ERR, 1953 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1954 "BM_%d : Ignoring %s[%d] on CID : %d\n", 1955 cqe_desc[code], code, cid); 1956 break; 1957 case CXN_KILLED_HDR_DIGEST_ERR: 1958 case SOL_CMD_KILLED_DATA_DIGEST_ERR: 1959 beiscsi_log(phba, KERN_ERR, 1960 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1961 "BM_%d : Cmd Notification %s[%d] on CID : %d\n", 1962 cqe_desc[code], code, cid); 1963 break; 1964 case CMD_KILLED_INVALID_STATSN_RCVD: 1965 case CMD_KILLED_INVALID_R2T_RCVD: 1966 case CMD_CXN_KILLED_LUN_INVALID: 1967 case CMD_CXN_KILLED_ICD_INVALID: 1968 case CMD_CXN_KILLED_ITT_INVALID: 1969 case CMD_CXN_KILLED_SEQ_OUTOFORDER: 1970 case CMD_CXN_KILLED_INVALID_DATASN_RCVD: 1971 beiscsi_log(phba, KERN_ERR, 1972 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 1973 "BM_%d : Cmd Notification %s[%d] on CID : %d\n", 1974 cqe_desc[code], code, cid); 1975 break; 1976 case UNSOL_DATA_DIGEST_ERROR_NOTIFY: 1977 beiscsi_log(phba, KERN_ERR, 1978 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 1979 "BM_%d : Dropping %s[%d] on DPDU ring on CID : %d\n", 1980 cqe_desc[code], code, cid); 1981 spin_lock_bh(&phba->async_pdu_lock); 1982 /* driver consumes the entry and drops the contents */ 1983 beiscsi_hdq_process_compl(beiscsi_conn, 1984 (struct i_t_dpdu_cqe *)sol); 1985 spin_unlock_bh(&phba->async_pdu_lock); 1986 break; 1987 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL: 1988 case CXN_KILLED_BURST_LEN_MISMATCH: 1989 case CXN_KILLED_AHS_RCVD: 1990 case CXN_KILLED_UNKNOWN_HDR: 1991 case CXN_KILLED_STALE_ITT_TTT_RCVD: 1992 case CXN_KILLED_INVALID_ITT_TTT_RCVD: 1993 case CXN_KILLED_TIMED_OUT: 1994 case CXN_KILLED_FIN_RCVD: 1995 case CXN_KILLED_RST_SENT: 1996 case CXN_KILLED_RST_RCVD: 1997 case CXN_KILLED_BAD_UNSOL_PDU_RCVD: 1998 case CXN_KILLED_BAD_WRB_INDEX_ERROR: 1999 case CXN_KILLED_OVER_RUN_RESIDUAL: 2000 case CXN_KILLED_UNDER_RUN_RESIDUAL: 2001 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN: 2002 beiscsi_log(phba, KERN_ERR, 2003 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 2004 "BM_%d : Event %s[%d] received on CID : %d\n", 2005 cqe_desc[code], code, cid); 2006 if (beiscsi_conn) 2007 iscsi_conn_failure(beiscsi_conn->conn, 2008 ISCSI_ERR_CONN_FAILED); 2009 break; 2010 default: 2011 beiscsi_log(phba, KERN_ERR, 2012 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 2013 "BM_%d : Invalid CQE Event Received Code : %d" 2014 "CID 0x%x...\n", 2015 code, cid); 2016 break; 2017 } 2018 2019 proc_next_cqe: 2020 AMAP_SET_BITS(struct amap_sol_cqe, valid, sol, 0); 2021 queue_tail_inc(cq); 2022 sol = queue_tail_node(cq); 2023 num_processed++; 2024 if (total == budget) 2025 break; 2026 } 2027 2028 hwi_ring_cq_db(phba, cq->id, num_processed, 1); 2029 return total; 2030 } 2031 2032 static int be_iopoll(struct irq_poll *iop, int budget) 2033 { 2034 unsigned int ret, io_events; 2035 struct beiscsi_hba *phba; 2036 struct be_eq_obj *pbe_eq; 2037 struct be_eq_entry *eqe = NULL; 2038 struct be_queue_info *eq; 2039 2040 pbe_eq = container_of(iop, struct be_eq_obj, iopoll); 2041 phba = pbe_eq->phba; 2042 if (beiscsi_hba_in_error(phba)) { 2043 irq_poll_complete(iop); 2044 return 0; 2045 } 2046 2047 io_events = 0; 2048 eq = &pbe_eq->q; 2049 eqe = queue_tail_node(eq); 2050 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] & 2051 EQE_VALID_MASK) { 2052 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0); 2053 queue_tail_inc(eq); 2054 eqe = queue_tail_node(eq); 2055 io_events++; 2056 } 2057 hwi_ring_eq_db(phba, eq->id, 1, io_events, 0, 1); 2058 2059 ret = beiscsi_process_cq(pbe_eq, budget); 2060 pbe_eq->cq_count += ret; 2061 if (ret < budget) { 2062 irq_poll_complete(iop); 2063 beiscsi_log(phba, KERN_INFO, 2064 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO, 2065 "BM_%d : rearm pbe_eq->q.id =%d ret %d\n", 2066 pbe_eq->q.id, ret); 2067 if (!beiscsi_hba_in_error(phba)) 2068 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1); 2069 } 2070 return ret; 2071 } 2072 2073 static void 2074 hwi_write_sgl_v2(struct iscsi_wrb *pwrb, struct scatterlist *sg, 2075 unsigned int num_sg, struct beiscsi_io_task *io_task) 2076 { 2077 struct iscsi_sge *psgl; 2078 unsigned int sg_len, index; 2079 unsigned int sge_len = 0; 2080 unsigned long long addr; 2081 struct scatterlist *l_sg; 2082 unsigned int offset; 2083 2084 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_lo, pwrb, 2085 io_task->bhs_pa.u.a32.address_lo); 2086 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_hi, pwrb, 2087 io_task->bhs_pa.u.a32.address_hi); 2088 2089 l_sg = sg; 2090 for (index = 0; (index < num_sg) && (index < 2); index++, 2091 sg = sg_next(sg)) { 2092 if (index == 0) { 2093 sg_len = sg_dma_len(sg); 2094 addr = (u64) sg_dma_address(sg); 2095 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2096 sge0_addr_lo, pwrb, 2097 lower_32_bits(addr)); 2098 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2099 sge0_addr_hi, pwrb, 2100 upper_32_bits(addr)); 2101 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2102 sge0_len, pwrb, 2103 sg_len); 2104 sge_len = sg_len; 2105 } else { 2106 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_r2t_offset, 2107 pwrb, sge_len); 2108 sg_len = sg_dma_len(sg); 2109 addr = (u64) sg_dma_address(sg); 2110 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2111 sge1_addr_lo, pwrb, 2112 lower_32_bits(addr)); 2113 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2114 sge1_addr_hi, pwrb, 2115 upper_32_bits(addr)); 2116 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 2117 sge1_len, pwrb, 2118 sg_len); 2119 } 2120 } 2121 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag; 2122 memset(psgl, 0, sizeof(*psgl) * BE2_SGE); 2123 2124 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2); 2125 2126 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2127 io_task->bhs_pa.u.a32.address_hi); 2128 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2129 io_task->bhs_pa.u.a32.address_lo); 2130 2131 if (num_sg == 1) { 2132 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb, 2133 1); 2134 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb, 2135 0); 2136 } else if (num_sg == 2) { 2137 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb, 2138 0); 2139 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb, 2140 1); 2141 } else { 2142 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb, 2143 0); 2144 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb, 2145 0); 2146 } 2147 2148 sg = l_sg; 2149 psgl++; 2150 psgl++; 2151 offset = 0; 2152 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) { 2153 sg_len = sg_dma_len(sg); 2154 addr = (u64) sg_dma_address(sg); 2155 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2156 lower_32_bits(addr)); 2157 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2158 upper_32_bits(addr)); 2159 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len); 2160 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset); 2161 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0); 2162 offset += sg_len; 2163 } 2164 psgl--; 2165 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1); 2166 } 2167 2168 static void 2169 hwi_write_sgl(struct iscsi_wrb *pwrb, struct scatterlist *sg, 2170 unsigned int num_sg, struct beiscsi_io_task *io_task) 2171 { 2172 struct iscsi_sge *psgl; 2173 unsigned int sg_len, index; 2174 unsigned int sge_len = 0; 2175 unsigned long long addr; 2176 struct scatterlist *l_sg; 2177 unsigned int offset; 2178 2179 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb, 2180 io_task->bhs_pa.u.a32.address_lo); 2181 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb, 2182 io_task->bhs_pa.u.a32.address_hi); 2183 2184 l_sg = sg; 2185 for (index = 0; (index < num_sg) && (index < 2); index++, 2186 sg = sg_next(sg)) { 2187 if (index == 0) { 2188 sg_len = sg_dma_len(sg); 2189 addr = (u64) sg_dma_address(sg); 2190 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb, 2191 ((u32)(addr & 0xFFFFFFFF))); 2192 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb, 2193 ((u32)(addr >> 32))); 2194 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb, 2195 sg_len); 2196 sge_len = sg_len; 2197 } else { 2198 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_r2t_offset, 2199 pwrb, sge_len); 2200 sg_len = sg_dma_len(sg); 2201 addr = (u64) sg_dma_address(sg); 2202 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb, 2203 ((u32)(addr & 0xFFFFFFFF))); 2204 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb, 2205 ((u32)(addr >> 32))); 2206 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb, 2207 sg_len); 2208 } 2209 } 2210 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag; 2211 memset(psgl, 0, sizeof(*psgl) * BE2_SGE); 2212 2213 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2); 2214 2215 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2216 io_task->bhs_pa.u.a32.address_hi); 2217 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2218 io_task->bhs_pa.u.a32.address_lo); 2219 2220 if (num_sg == 1) { 2221 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 2222 1); 2223 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb, 2224 0); 2225 } else if (num_sg == 2) { 2226 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 2227 0); 2228 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb, 2229 1); 2230 } else { 2231 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 2232 0); 2233 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb, 2234 0); 2235 } 2236 sg = l_sg; 2237 psgl++; 2238 psgl++; 2239 offset = 0; 2240 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) { 2241 sg_len = sg_dma_len(sg); 2242 addr = (u64) sg_dma_address(sg); 2243 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2244 (addr & 0xFFFFFFFF)); 2245 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2246 (addr >> 32)); 2247 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len); 2248 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset); 2249 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0); 2250 offset += sg_len; 2251 } 2252 psgl--; 2253 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1); 2254 } 2255 2256 /** 2257 * hwi_write_buffer()- Populate the WRB with task info 2258 * @pwrb: ptr to the WRB entry 2259 * @task: iscsi task which is to be executed 2260 **/ 2261 static int hwi_write_buffer(struct iscsi_wrb *pwrb, struct iscsi_task *task) 2262 { 2263 struct iscsi_sge *psgl; 2264 struct beiscsi_io_task *io_task = task->dd_data; 2265 struct beiscsi_conn *beiscsi_conn = io_task->conn; 2266 struct beiscsi_hba *phba = beiscsi_conn->phba; 2267 uint8_t dsp_value = 0; 2268 2269 io_task->bhs_len = sizeof(struct be_nonio_bhs) - 2; 2270 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb, 2271 io_task->bhs_pa.u.a32.address_lo); 2272 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb, 2273 io_task->bhs_pa.u.a32.address_hi); 2274 2275 if (task->data) { 2276 2277 /* Check for the data_count */ 2278 dsp_value = (task->data_count) ? 1 : 0; 2279 2280 if (is_chip_be2_be3r(phba)) 2281 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, 2282 pwrb, dsp_value); 2283 else 2284 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, 2285 pwrb, dsp_value); 2286 2287 /* Map addr only if there is data_count */ 2288 if (dsp_value) { 2289 io_task->mtask_addr = dma_map_single(&phba->pcidev->dev, 2290 task->data, 2291 task->data_count, 2292 DMA_TO_DEVICE); 2293 if (dma_mapping_error(&phba->pcidev->dev, 2294 io_task->mtask_addr)) 2295 return -ENOMEM; 2296 io_task->mtask_data_count = task->data_count; 2297 } else 2298 io_task->mtask_addr = 0; 2299 2300 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb, 2301 lower_32_bits(io_task->mtask_addr)); 2302 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb, 2303 upper_32_bits(io_task->mtask_addr)); 2304 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb, 2305 task->data_count); 2306 2307 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 1); 2308 } else { 2309 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0); 2310 io_task->mtask_addr = 0; 2311 } 2312 2313 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag; 2314 2315 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len); 2316 2317 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2318 io_task->bhs_pa.u.a32.address_hi); 2319 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2320 io_task->bhs_pa.u.a32.address_lo); 2321 if (task->data) { 2322 psgl++; 2323 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 0); 2324 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 0); 2325 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0); 2326 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, 0); 2327 AMAP_SET_BITS(struct amap_iscsi_sge, rsvd0, psgl, 0); 2328 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0); 2329 2330 psgl++; 2331 if (task->data) { 2332 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 2333 lower_32_bits(io_task->mtask_addr)); 2334 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 2335 upper_32_bits(io_task->mtask_addr)); 2336 } 2337 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106); 2338 } 2339 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1); 2340 return 0; 2341 } 2342 2343 /** 2344 * beiscsi_find_mem_req()- Find mem needed 2345 * @phba: ptr to HBA struct 2346 **/ 2347 static void beiscsi_find_mem_req(struct beiscsi_hba *phba) 2348 { 2349 uint8_t mem_descr_index, ulp_num; 2350 unsigned int num_async_pdu_buf_pages; 2351 unsigned int num_async_pdu_data_pages, wrb_sz_per_cxn; 2352 unsigned int num_async_pdu_buf_sgl_pages, num_async_pdu_data_sgl_pages; 2353 2354 phba->params.hwi_ws_sz = sizeof(struct hwi_controller); 2355 2356 phba->mem_req[ISCSI_MEM_GLOBAL_HEADER] = 2 * 2357 BE_ISCSI_PDU_HEADER_SIZE; 2358 phba->mem_req[HWI_MEM_ADDN_CONTEXT] = 2359 sizeof(struct hwi_context_memory); 2360 2361 2362 phba->mem_req[HWI_MEM_WRB] = sizeof(struct iscsi_wrb) 2363 * (phba->params.wrbs_per_cxn) 2364 * phba->params.cxns_per_ctrl; 2365 wrb_sz_per_cxn = sizeof(struct wrb_handle) * 2366 (phba->params.wrbs_per_cxn); 2367 phba->mem_req[HWI_MEM_WRBH] = roundup_pow_of_two((wrb_sz_per_cxn) * 2368 phba->params.cxns_per_ctrl); 2369 2370 phba->mem_req[HWI_MEM_SGLH] = sizeof(struct sgl_handle) * 2371 phba->params.icds_per_ctrl; 2372 phba->mem_req[HWI_MEM_SGE] = sizeof(struct iscsi_sge) * 2373 phba->params.num_sge_per_io * phba->params.icds_per_ctrl; 2374 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 2375 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 2376 2377 num_async_pdu_buf_sgl_pages = 2378 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE( 2379 phba, ulp_num) * 2380 sizeof(struct phys_addr)); 2381 2382 num_async_pdu_buf_pages = 2383 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE( 2384 phba, ulp_num) * 2385 phba->params.defpdu_hdr_sz); 2386 2387 num_async_pdu_data_pages = 2388 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE( 2389 phba, ulp_num) * 2390 phba->params.defpdu_data_sz); 2391 2392 num_async_pdu_data_sgl_pages = 2393 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE( 2394 phba, ulp_num) * 2395 sizeof(struct phys_addr)); 2396 2397 mem_descr_index = (HWI_MEM_TEMPLATE_HDR_ULP0 + 2398 (ulp_num * MEM_DESCR_OFFSET)); 2399 phba->mem_req[mem_descr_index] = 2400 BEISCSI_GET_CID_COUNT(phba, ulp_num) * 2401 BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE; 2402 2403 mem_descr_index = (HWI_MEM_ASYNC_HEADER_BUF_ULP0 + 2404 (ulp_num * MEM_DESCR_OFFSET)); 2405 phba->mem_req[mem_descr_index] = 2406 num_async_pdu_buf_pages * 2407 PAGE_SIZE; 2408 2409 mem_descr_index = (HWI_MEM_ASYNC_DATA_BUF_ULP0 + 2410 (ulp_num * MEM_DESCR_OFFSET)); 2411 phba->mem_req[mem_descr_index] = 2412 num_async_pdu_data_pages * 2413 PAGE_SIZE; 2414 2415 mem_descr_index = (HWI_MEM_ASYNC_HEADER_RING_ULP0 + 2416 (ulp_num * MEM_DESCR_OFFSET)); 2417 phba->mem_req[mem_descr_index] = 2418 num_async_pdu_buf_sgl_pages * 2419 PAGE_SIZE; 2420 2421 mem_descr_index = (HWI_MEM_ASYNC_DATA_RING_ULP0 + 2422 (ulp_num * MEM_DESCR_OFFSET)); 2423 phba->mem_req[mem_descr_index] = 2424 num_async_pdu_data_sgl_pages * 2425 PAGE_SIZE; 2426 2427 mem_descr_index = (HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 + 2428 (ulp_num * MEM_DESCR_OFFSET)); 2429 phba->mem_req[mem_descr_index] = 2430 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) * 2431 sizeof(struct hd_async_handle); 2432 2433 mem_descr_index = (HWI_MEM_ASYNC_DATA_HANDLE_ULP0 + 2434 (ulp_num * MEM_DESCR_OFFSET)); 2435 phba->mem_req[mem_descr_index] = 2436 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) * 2437 sizeof(struct hd_async_handle); 2438 2439 mem_descr_index = (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 + 2440 (ulp_num * MEM_DESCR_OFFSET)); 2441 phba->mem_req[mem_descr_index] = 2442 sizeof(struct hd_async_context) + 2443 (BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) * 2444 sizeof(struct hd_async_entry)); 2445 } 2446 } 2447 } 2448 2449 static int beiscsi_alloc_mem(struct beiscsi_hba *phba) 2450 { 2451 dma_addr_t bus_add; 2452 struct hwi_controller *phwi_ctrlr; 2453 struct be_mem_descriptor *mem_descr; 2454 struct mem_array *mem_arr, *mem_arr_orig; 2455 unsigned int i, j, alloc_size, curr_alloc_size; 2456 2457 phba->phwi_ctrlr = kzalloc(phba->params.hwi_ws_sz, GFP_KERNEL); 2458 if (!phba->phwi_ctrlr) 2459 return -ENOMEM; 2460 2461 /* Allocate memory for wrb_context */ 2462 phwi_ctrlr = phba->phwi_ctrlr; 2463 phwi_ctrlr->wrb_context = kcalloc(phba->params.cxns_per_ctrl, 2464 sizeof(struct hwi_wrb_context), 2465 GFP_KERNEL); 2466 if (!phwi_ctrlr->wrb_context) { 2467 kfree(phba->phwi_ctrlr); 2468 return -ENOMEM; 2469 } 2470 2471 phba->init_mem = kcalloc(SE_MEM_MAX, sizeof(*mem_descr), 2472 GFP_KERNEL); 2473 if (!phba->init_mem) { 2474 kfree(phwi_ctrlr->wrb_context); 2475 kfree(phba->phwi_ctrlr); 2476 return -ENOMEM; 2477 } 2478 2479 mem_arr_orig = kmalloc_array(BEISCSI_MAX_FRAGS_INIT, 2480 sizeof(*mem_arr_orig), 2481 GFP_KERNEL); 2482 if (!mem_arr_orig) { 2483 kfree(phba->init_mem); 2484 kfree(phwi_ctrlr->wrb_context); 2485 kfree(phba->phwi_ctrlr); 2486 return -ENOMEM; 2487 } 2488 2489 mem_descr = phba->init_mem; 2490 for (i = 0; i < SE_MEM_MAX; i++) { 2491 if (!phba->mem_req[i]) { 2492 mem_descr->mem_array = NULL; 2493 mem_descr++; 2494 continue; 2495 } 2496 2497 j = 0; 2498 mem_arr = mem_arr_orig; 2499 alloc_size = phba->mem_req[i]; 2500 memset(mem_arr, 0, sizeof(struct mem_array) * 2501 BEISCSI_MAX_FRAGS_INIT); 2502 curr_alloc_size = min(be_max_phys_size * 1024, alloc_size); 2503 do { 2504 mem_arr->virtual_address = 2505 dma_alloc_coherent(&phba->pcidev->dev, 2506 curr_alloc_size, &bus_add, GFP_KERNEL); 2507 if (!mem_arr->virtual_address) { 2508 if (curr_alloc_size <= BE_MIN_MEM_SIZE) 2509 goto free_mem; 2510 if (curr_alloc_size - 2511 rounddown_pow_of_two(curr_alloc_size)) 2512 curr_alloc_size = rounddown_pow_of_two 2513 (curr_alloc_size); 2514 else 2515 curr_alloc_size = curr_alloc_size / 2; 2516 } else { 2517 mem_arr->bus_address.u. 2518 a64.address = (__u64) bus_add; 2519 mem_arr->size = curr_alloc_size; 2520 alloc_size -= curr_alloc_size; 2521 curr_alloc_size = min(be_max_phys_size * 2522 1024, alloc_size); 2523 j++; 2524 mem_arr++; 2525 } 2526 } while (alloc_size); 2527 mem_descr->num_elements = j; 2528 mem_descr->size_in_bytes = phba->mem_req[i]; 2529 mem_descr->mem_array = kmalloc_array(j, sizeof(*mem_arr), 2530 GFP_KERNEL); 2531 if (!mem_descr->mem_array) 2532 goto free_mem; 2533 2534 memcpy(mem_descr->mem_array, mem_arr_orig, 2535 sizeof(struct mem_array) * j); 2536 mem_descr++; 2537 } 2538 kfree(mem_arr_orig); 2539 return 0; 2540 free_mem: 2541 mem_descr->num_elements = j; 2542 while ((i) || (j)) { 2543 for (j = mem_descr->num_elements; j > 0; j--) { 2544 dma_free_coherent(&phba->pcidev->dev, 2545 mem_descr->mem_array[j - 1].size, 2546 mem_descr->mem_array[j - 1]. 2547 virtual_address, 2548 (unsigned long)mem_descr-> 2549 mem_array[j - 1]. 2550 bus_address.u.a64.address); 2551 } 2552 if (i) { 2553 i--; 2554 kfree(mem_descr->mem_array); 2555 mem_descr--; 2556 } 2557 } 2558 kfree(mem_arr_orig); 2559 kfree(phba->init_mem); 2560 kfree(phba->phwi_ctrlr->wrb_context); 2561 kfree(phba->phwi_ctrlr); 2562 return -ENOMEM; 2563 } 2564 2565 static int beiscsi_get_memory(struct beiscsi_hba *phba) 2566 { 2567 beiscsi_find_mem_req(phba); 2568 return beiscsi_alloc_mem(phba); 2569 } 2570 2571 static void iscsi_init_global_templates(struct beiscsi_hba *phba) 2572 { 2573 struct pdu_data_out *pdata_out; 2574 struct pdu_nop_out *pnop_out; 2575 struct be_mem_descriptor *mem_descr; 2576 2577 mem_descr = phba->init_mem; 2578 mem_descr += ISCSI_MEM_GLOBAL_HEADER; 2579 pdata_out = 2580 (struct pdu_data_out *)mem_descr->mem_array[0].virtual_address; 2581 memset(pdata_out, 0, BE_ISCSI_PDU_HEADER_SIZE); 2582 2583 AMAP_SET_BITS(struct amap_pdu_data_out, opcode, pdata_out, 2584 IIOC_SCSI_DATA); 2585 2586 pnop_out = 2587 (struct pdu_nop_out *)((unsigned char *)mem_descr->mem_array[0]. 2588 virtual_address + BE_ISCSI_PDU_HEADER_SIZE); 2589 2590 memset(pnop_out, 0, BE_ISCSI_PDU_HEADER_SIZE); 2591 AMAP_SET_BITS(struct amap_pdu_nop_out, ttt, pnop_out, 0xFFFFFFFF); 2592 AMAP_SET_BITS(struct amap_pdu_nop_out, f_bit, pnop_out, 1); 2593 AMAP_SET_BITS(struct amap_pdu_nop_out, i_bit, pnop_out, 0); 2594 } 2595 2596 static int beiscsi_init_wrb_handle(struct beiscsi_hba *phba) 2597 { 2598 struct be_mem_descriptor *mem_descr_wrbh, *mem_descr_wrb; 2599 struct hwi_context_memory *phwi_ctxt; 2600 struct wrb_handle *pwrb_handle = NULL; 2601 struct hwi_controller *phwi_ctrlr; 2602 struct hwi_wrb_context *pwrb_context; 2603 struct iscsi_wrb *pwrb = NULL; 2604 unsigned int num_cxn_wrbh = 0; 2605 unsigned int num_cxn_wrb = 0, j, idx = 0, index; 2606 2607 mem_descr_wrbh = phba->init_mem; 2608 mem_descr_wrbh += HWI_MEM_WRBH; 2609 2610 mem_descr_wrb = phba->init_mem; 2611 mem_descr_wrb += HWI_MEM_WRB; 2612 phwi_ctrlr = phba->phwi_ctrlr; 2613 2614 /* Allocate memory for WRBQ */ 2615 phwi_ctxt = phwi_ctrlr->phwi_ctxt; 2616 phwi_ctxt->be_wrbq = kcalloc(phba->params.cxns_per_ctrl, 2617 sizeof(struct be_queue_info), 2618 GFP_KERNEL); 2619 if (!phwi_ctxt->be_wrbq) { 2620 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 2621 "BM_%d : WRBQ Mem Alloc Failed\n"); 2622 return -ENOMEM; 2623 } 2624 2625 for (index = 0; index < phba->params.cxns_per_ctrl; index++) { 2626 pwrb_context = &phwi_ctrlr->wrb_context[index]; 2627 pwrb_context->pwrb_handle_base = 2628 kcalloc(phba->params.wrbs_per_cxn, 2629 sizeof(struct wrb_handle *), 2630 GFP_KERNEL); 2631 if (!pwrb_context->pwrb_handle_base) { 2632 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 2633 "BM_%d : Mem Alloc Failed. Failing to load\n"); 2634 goto init_wrb_hndl_failed; 2635 } 2636 pwrb_context->pwrb_handle_basestd = 2637 kcalloc(phba->params.wrbs_per_cxn, 2638 sizeof(struct wrb_handle *), 2639 GFP_KERNEL); 2640 if (!pwrb_context->pwrb_handle_basestd) { 2641 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 2642 "BM_%d : Mem Alloc Failed. Failing to load\n"); 2643 goto init_wrb_hndl_failed; 2644 } 2645 if (!num_cxn_wrbh) { 2646 pwrb_handle = 2647 mem_descr_wrbh->mem_array[idx].virtual_address; 2648 num_cxn_wrbh = ((mem_descr_wrbh->mem_array[idx].size) / 2649 ((sizeof(struct wrb_handle)) * 2650 phba->params.wrbs_per_cxn)); 2651 idx++; 2652 } 2653 pwrb_context->alloc_index = 0; 2654 pwrb_context->wrb_handles_available = 0; 2655 pwrb_context->free_index = 0; 2656 2657 if (num_cxn_wrbh) { 2658 for (j = 0; j < phba->params.wrbs_per_cxn; j++) { 2659 pwrb_context->pwrb_handle_base[j] = pwrb_handle; 2660 pwrb_context->pwrb_handle_basestd[j] = 2661 pwrb_handle; 2662 pwrb_context->wrb_handles_available++; 2663 pwrb_handle->wrb_index = j; 2664 pwrb_handle++; 2665 } 2666 num_cxn_wrbh--; 2667 } 2668 spin_lock_init(&pwrb_context->wrb_lock); 2669 } 2670 idx = 0; 2671 for (index = 0; index < phba->params.cxns_per_ctrl; index++) { 2672 pwrb_context = &phwi_ctrlr->wrb_context[index]; 2673 if (!num_cxn_wrb) { 2674 pwrb = mem_descr_wrb->mem_array[idx].virtual_address; 2675 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) / 2676 ((sizeof(struct iscsi_wrb) * 2677 phba->params.wrbs_per_cxn)); 2678 idx++; 2679 } 2680 2681 if (num_cxn_wrb) { 2682 for (j = 0; j < phba->params.wrbs_per_cxn; j++) { 2683 pwrb_handle = pwrb_context->pwrb_handle_base[j]; 2684 pwrb_handle->pwrb = pwrb; 2685 pwrb++; 2686 } 2687 num_cxn_wrb--; 2688 } 2689 } 2690 return 0; 2691 init_wrb_hndl_failed: 2692 for (j = index; j > 0; j--) { 2693 pwrb_context = &phwi_ctrlr->wrb_context[j]; 2694 kfree(pwrb_context->pwrb_handle_base); 2695 kfree(pwrb_context->pwrb_handle_basestd); 2696 } 2697 return -ENOMEM; 2698 } 2699 2700 static int hwi_init_async_pdu_ctx(struct beiscsi_hba *phba) 2701 { 2702 uint8_t ulp_num; 2703 struct hwi_controller *phwi_ctrlr; 2704 struct hba_parameters *p = &phba->params; 2705 struct hd_async_context *pasync_ctx; 2706 struct hd_async_handle *pasync_header_h, *pasync_data_h; 2707 unsigned int index, idx, num_per_mem, num_async_data; 2708 struct be_mem_descriptor *mem_descr; 2709 2710 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 2711 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 2712 /* get async_ctx for each ULP */ 2713 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2714 mem_descr += (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 + 2715 (ulp_num * MEM_DESCR_OFFSET)); 2716 2717 phwi_ctrlr = phba->phwi_ctrlr; 2718 phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num] = 2719 (struct hd_async_context *) 2720 mem_descr->mem_array[0].virtual_address; 2721 2722 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num]; 2723 memset(pasync_ctx, 0, sizeof(*pasync_ctx)); 2724 2725 pasync_ctx->async_entry = 2726 (struct hd_async_entry *) 2727 ((long unsigned int)pasync_ctx + 2728 sizeof(struct hd_async_context)); 2729 2730 pasync_ctx->num_entries = BEISCSI_ASYNC_HDQ_SIZE(phba, 2731 ulp_num); 2732 /* setup header buffers */ 2733 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2734 mem_descr += HWI_MEM_ASYNC_HEADER_BUF_ULP0 + 2735 (ulp_num * MEM_DESCR_OFFSET); 2736 if (mem_descr->mem_array[0].virtual_address) { 2737 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 2738 "BM_%d : hwi_init_async_pdu_ctx" 2739 " HWI_MEM_ASYNC_HEADER_BUF_ULP%d va=%p\n", 2740 ulp_num, 2741 mem_descr->mem_array[0]. 2742 virtual_address); 2743 } else 2744 beiscsi_log(phba, KERN_WARNING, 2745 BEISCSI_LOG_INIT, 2746 "BM_%d : No Virtual address for ULP : %d\n", 2747 ulp_num); 2748 2749 pasync_ctx->async_header.pi = 0; 2750 pasync_ctx->async_header.buffer_size = p->defpdu_hdr_sz; 2751 pasync_ctx->async_header.va_base = 2752 mem_descr->mem_array[0].virtual_address; 2753 2754 pasync_ctx->async_header.pa_base.u.a64.address = 2755 mem_descr->mem_array[0]. 2756 bus_address.u.a64.address; 2757 2758 /* setup header buffer sgls */ 2759 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2760 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 + 2761 (ulp_num * MEM_DESCR_OFFSET); 2762 if (mem_descr->mem_array[0].virtual_address) { 2763 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 2764 "BM_%d : hwi_init_async_pdu_ctx" 2765 " HWI_MEM_ASYNC_HEADER_RING_ULP%d va=%p\n", 2766 ulp_num, 2767 mem_descr->mem_array[0]. 2768 virtual_address); 2769 } else 2770 beiscsi_log(phba, KERN_WARNING, 2771 BEISCSI_LOG_INIT, 2772 "BM_%d : No Virtual address for ULP : %d\n", 2773 ulp_num); 2774 2775 pasync_ctx->async_header.ring_base = 2776 mem_descr->mem_array[0].virtual_address; 2777 2778 /* setup header buffer handles */ 2779 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2780 mem_descr += HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 + 2781 (ulp_num * MEM_DESCR_OFFSET); 2782 if (mem_descr->mem_array[0].virtual_address) { 2783 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 2784 "BM_%d : hwi_init_async_pdu_ctx" 2785 " HWI_MEM_ASYNC_HEADER_HANDLE_ULP%d va=%p\n", 2786 ulp_num, 2787 mem_descr->mem_array[0]. 2788 virtual_address); 2789 } else 2790 beiscsi_log(phba, KERN_WARNING, 2791 BEISCSI_LOG_INIT, 2792 "BM_%d : No Virtual address for ULP : %d\n", 2793 ulp_num); 2794 2795 pasync_ctx->async_header.handle_base = 2796 mem_descr->mem_array[0].virtual_address; 2797 2798 /* setup data buffer sgls */ 2799 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2800 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 + 2801 (ulp_num * MEM_DESCR_OFFSET); 2802 if (mem_descr->mem_array[0].virtual_address) { 2803 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 2804 "BM_%d : hwi_init_async_pdu_ctx" 2805 " HWI_MEM_ASYNC_DATA_RING_ULP%d va=%p\n", 2806 ulp_num, 2807 mem_descr->mem_array[0]. 2808 virtual_address); 2809 } else 2810 beiscsi_log(phba, KERN_WARNING, 2811 BEISCSI_LOG_INIT, 2812 "BM_%d : No Virtual address for ULP : %d\n", 2813 ulp_num); 2814 2815 pasync_ctx->async_data.ring_base = 2816 mem_descr->mem_array[0].virtual_address; 2817 2818 /* setup data buffer handles */ 2819 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2820 mem_descr += HWI_MEM_ASYNC_DATA_HANDLE_ULP0 + 2821 (ulp_num * MEM_DESCR_OFFSET); 2822 if (!mem_descr->mem_array[0].virtual_address) 2823 beiscsi_log(phba, KERN_WARNING, 2824 BEISCSI_LOG_INIT, 2825 "BM_%d : No Virtual address for ULP : %d\n", 2826 ulp_num); 2827 2828 pasync_ctx->async_data.handle_base = 2829 mem_descr->mem_array[0].virtual_address; 2830 2831 pasync_header_h = 2832 (struct hd_async_handle *) 2833 pasync_ctx->async_header.handle_base; 2834 pasync_data_h = 2835 (struct hd_async_handle *) 2836 pasync_ctx->async_data.handle_base; 2837 2838 /* setup data buffers */ 2839 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 2840 mem_descr += HWI_MEM_ASYNC_DATA_BUF_ULP0 + 2841 (ulp_num * MEM_DESCR_OFFSET); 2842 if (mem_descr->mem_array[0].virtual_address) { 2843 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 2844 "BM_%d : hwi_init_async_pdu_ctx" 2845 " HWI_MEM_ASYNC_DATA_BUF_ULP%d va=%p\n", 2846 ulp_num, 2847 mem_descr->mem_array[0]. 2848 virtual_address); 2849 } else 2850 beiscsi_log(phba, KERN_WARNING, 2851 BEISCSI_LOG_INIT, 2852 "BM_%d : No Virtual address for ULP : %d\n", 2853 ulp_num); 2854 2855 idx = 0; 2856 pasync_ctx->async_data.pi = 0; 2857 pasync_ctx->async_data.buffer_size = p->defpdu_data_sz; 2858 pasync_ctx->async_data.va_base = 2859 mem_descr->mem_array[idx].virtual_address; 2860 pasync_ctx->async_data.pa_base.u.a64.address = 2861 mem_descr->mem_array[idx]. 2862 bus_address.u.a64.address; 2863 2864 num_async_data = ((mem_descr->mem_array[idx].size) / 2865 phba->params.defpdu_data_sz); 2866 num_per_mem = 0; 2867 2868 for (index = 0; index < BEISCSI_ASYNC_HDQ_SIZE 2869 (phba, ulp_num); index++) { 2870 pasync_header_h->cri = -1; 2871 pasync_header_h->is_header = 1; 2872 pasync_header_h->index = index; 2873 INIT_LIST_HEAD(&pasync_header_h->link); 2874 pasync_header_h->pbuffer = 2875 (void *)((unsigned long) 2876 (pasync_ctx-> 2877 async_header.va_base) + 2878 (p->defpdu_hdr_sz * index)); 2879 2880 pasync_header_h->pa.u.a64.address = 2881 pasync_ctx->async_header.pa_base.u.a64. 2882 address + (p->defpdu_hdr_sz * index); 2883 2884 pasync_ctx->async_entry[index].header = 2885 pasync_header_h; 2886 pasync_header_h++; 2887 INIT_LIST_HEAD(&pasync_ctx->async_entry[index]. 2888 wq.list); 2889 2890 pasync_data_h->cri = -1; 2891 pasync_data_h->is_header = 0; 2892 pasync_data_h->index = index; 2893 INIT_LIST_HEAD(&pasync_data_h->link); 2894 2895 if (!num_async_data) { 2896 num_per_mem = 0; 2897 idx++; 2898 pasync_ctx->async_data.va_base = 2899 mem_descr->mem_array[idx]. 2900 virtual_address; 2901 pasync_ctx->async_data.pa_base.u. 2902 a64.address = 2903 mem_descr->mem_array[idx]. 2904 bus_address.u.a64.address; 2905 num_async_data = 2906 ((mem_descr->mem_array[idx]. 2907 size) / 2908 phba->params.defpdu_data_sz); 2909 } 2910 pasync_data_h->pbuffer = 2911 (void *)((unsigned long) 2912 (pasync_ctx->async_data.va_base) + 2913 (p->defpdu_data_sz * num_per_mem)); 2914 2915 pasync_data_h->pa.u.a64.address = 2916 pasync_ctx->async_data.pa_base.u.a64. 2917 address + (p->defpdu_data_sz * 2918 num_per_mem); 2919 num_per_mem++; 2920 num_async_data--; 2921 2922 pasync_ctx->async_entry[index].data = 2923 pasync_data_h; 2924 pasync_data_h++; 2925 } 2926 } 2927 } 2928 2929 return 0; 2930 } 2931 2932 static int 2933 be_sgl_create_contiguous(void *virtual_address, 2934 u64 physical_address, u32 length, 2935 struct be_dma_mem *sgl) 2936 { 2937 WARN_ON(!virtual_address); 2938 WARN_ON(!physical_address); 2939 WARN_ON(!length); 2940 WARN_ON(!sgl); 2941 2942 sgl->va = virtual_address; 2943 sgl->dma = (unsigned long)physical_address; 2944 sgl->size = length; 2945 2946 return 0; 2947 } 2948 2949 static void be_sgl_destroy_contiguous(struct be_dma_mem *sgl) 2950 { 2951 memset(sgl, 0, sizeof(*sgl)); 2952 } 2953 2954 static void 2955 hwi_build_be_sgl_arr(struct beiscsi_hba *phba, 2956 struct mem_array *pmem, struct be_dma_mem *sgl) 2957 { 2958 if (sgl->va) 2959 be_sgl_destroy_contiguous(sgl); 2960 2961 be_sgl_create_contiguous(pmem->virtual_address, 2962 pmem->bus_address.u.a64.address, 2963 pmem->size, sgl); 2964 } 2965 2966 static void 2967 hwi_build_be_sgl_by_offset(struct beiscsi_hba *phba, 2968 struct mem_array *pmem, struct be_dma_mem *sgl) 2969 { 2970 if (sgl->va) 2971 be_sgl_destroy_contiguous(sgl); 2972 2973 be_sgl_create_contiguous((unsigned char *)pmem->virtual_address, 2974 pmem->bus_address.u.a64.address, 2975 pmem->size, sgl); 2976 } 2977 2978 static int be_fill_queue(struct be_queue_info *q, 2979 u16 len, u16 entry_size, void *vaddress) 2980 { 2981 struct be_dma_mem *mem = &q->dma_mem; 2982 2983 memset(q, 0, sizeof(*q)); 2984 q->len = len; 2985 q->entry_size = entry_size; 2986 mem->size = len * entry_size; 2987 mem->va = vaddress; 2988 if (!mem->va) 2989 return -ENOMEM; 2990 memset(mem->va, 0, mem->size); 2991 return 0; 2992 } 2993 2994 static int beiscsi_create_eqs(struct beiscsi_hba *phba, 2995 struct hwi_context_memory *phwi_context) 2996 { 2997 int ret = -ENOMEM, eq_for_mcc; 2998 unsigned int i, num_eq_pages; 2999 struct be_queue_info *eq; 3000 struct be_dma_mem *mem; 3001 void *eq_vaddress; 3002 dma_addr_t paddr; 3003 3004 num_eq_pages = PAGES_REQUIRED(phba->params.num_eq_entries * \ 3005 sizeof(struct be_eq_entry)); 3006 3007 if (phba->pcidev->msix_enabled) 3008 eq_for_mcc = 1; 3009 else 3010 eq_for_mcc = 0; 3011 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) { 3012 eq = &phwi_context->be_eq[i].q; 3013 mem = &eq->dma_mem; 3014 phwi_context->be_eq[i].phba = phba; 3015 eq_vaddress = dma_alloc_coherent(&phba->pcidev->dev, 3016 num_eq_pages * PAGE_SIZE, 3017 &paddr, GFP_KERNEL); 3018 if (!eq_vaddress) { 3019 ret = -ENOMEM; 3020 goto create_eq_error; 3021 } 3022 3023 mem->va = eq_vaddress; 3024 ret = be_fill_queue(eq, phba->params.num_eq_entries, 3025 sizeof(struct be_eq_entry), eq_vaddress); 3026 if (ret) { 3027 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3028 "BM_%d : be_fill_queue Failed for EQ\n"); 3029 goto create_eq_error; 3030 } 3031 3032 mem->dma = paddr; 3033 ret = beiscsi_cmd_eq_create(&phba->ctrl, eq, 3034 BEISCSI_EQ_DELAY_DEF); 3035 if (ret) { 3036 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3037 "BM_%d : beiscsi_cmd_eq_create" 3038 "Failed for EQ\n"); 3039 goto create_eq_error; 3040 } 3041 3042 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3043 "BM_%d : eqid = %d\n", 3044 phwi_context->be_eq[i].q.id); 3045 } 3046 return 0; 3047 3048 create_eq_error: 3049 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) { 3050 eq = &phwi_context->be_eq[i].q; 3051 mem = &eq->dma_mem; 3052 if (mem->va) 3053 dma_free_coherent(&phba->pcidev->dev, num_eq_pages 3054 * PAGE_SIZE, 3055 mem->va, mem->dma); 3056 } 3057 return ret; 3058 } 3059 3060 static int beiscsi_create_cqs(struct beiscsi_hba *phba, 3061 struct hwi_context_memory *phwi_context) 3062 { 3063 unsigned int i, num_cq_pages; 3064 struct be_queue_info *cq, *eq; 3065 struct be_dma_mem *mem; 3066 struct be_eq_obj *pbe_eq; 3067 void *cq_vaddress; 3068 int ret = -ENOMEM; 3069 dma_addr_t paddr; 3070 3071 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \ 3072 sizeof(struct sol_cqe)); 3073 3074 for (i = 0; i < phba->num_cpus; i++) { 3075 cq = &phwi_context->be_cq[i]; 3076 eq = &phwi_context->be_eq[i].q; 3077 pbe_eq = &phwi_context->be_eq[i]; 3078 pbe_eq->cq = cq; 3079 pbe_eq->phba = phba; 3080 mem = &cq->dma_mem; 3081 cq_vaddress = dma_alloc_coherent(&phba->pcidev->dev, 3082 num_cq_pages * PAGE_SIZE, 3083 &paddr, GFP_KERNEL); 3084 if (!cq_vaddress) { 3085 ret = -ENOMEM; 3086 goto create_cq_error; 3087 } 3088 3089 ret = be_fill_queue(cq, phba->params.num_cq_entries, 3090 sizeof(struct sol_cqe), cq_vaddress); 3091 if (ret) { 3092 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3093 "BM_%d : be_fill_queue Failed " 3094 "for ISCSI CQ\n"); 3095 goto create_cq_error; 3096 } 3097 3098 mem->dma = paddr; 3099 ret = beiscsi_cmd_cq_create(&phba->ctrl, cq, eq, false, 3100 false, 0); 3101 if (ret) { 3102 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3103 "BM_%d : beiscsi_cmd_eq_create" 3104 "Failed for ISCSI CQ\n"); 3105 goto create_cq_error; 3106 } 3107 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3108 "BM_%d : iscsi cq_id is %d for eq_id %d\n" 3109 "iSCSI CQ CREATED\n", cq->id, eq->id); 3110 } 3111 return 0; 3112 3113 create_cq_error: 3114 for (i = 0; i < phba->num_cpus; i++) { 3115 cq = &phwi_context->be_cq[i]; 3116 mem = &cq->dma_mem; 3117 if (mem->va) 3118 dma_free_coherent(&phba->pcidev->dev, num_cq_pages 3119 * PAGE_SIZE, 3120 mem->va, mem->dma); 3121 } 3122 return ret; 3123 } 3124 3125 static int 3126 beiscsi_create_def_hdr(struct beiscsi_hba *phba, 3127 struct hwi_context_memory *phwi_context, 3128 struct hwi_controller *phwi_ctrlr, 3129 unsigned int def_pdu_ring_sz, uint8_t ulp_num) 3130 { 3131 unsigned int idx; 3132 int ret; 3133 struct be_queue_info *dq, *cq; 3134 struct be_dma_mem *mem; 3135 struct be_mem_descriptor *mem_descr; 3136 void *dq_vaddress; 3137 3138 idx = 0; 3139 dq = &phwi_context->be_def_hdrq[ulp_num]; 3140 cq = &phwi_context->be_cq[0]; 3141 mem = &dq->dma_mem; 3142 mem_descr = phba->init_mem; 3143 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 + 3144 (ulp_num * MEM_DESCR_OFFSET); 3145 dq_vaddress = mem_descr->mem_array[idx].virtual_address; 3146 ret = be_fill_queue(dq, mem_descr->mem_array[0].size / 3147 sizeof(struct phys_addr), 3148 sizeof(struct phys_addr), dq_vaddress); 3149 if (ret) { 3150 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3151 "BM_%d : be_fill_queue Failed for DEF PDU HDR on ULP : %d\n", 3152 ulp_num); 3153 3154 return ret; 3155 } 3156 mem->dma = (unsigned long)mem_descr->mem_array[idx]. 3157 bus_address.u.a64.address; 3158 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq, 3159 def_pdu_ring_sz, 3160 phba->params.defpdu_hdr_sz, 3161 BEISCSI_DEFQ_HDR, ulp_num); 3162 if (ret) { 3163 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3164 "BM_%d : be_cmd_create_default_pdu_queue Failed DEFHDR on ULP : %d\n", 3165 ulp_num); 3166 3167 return ret; 3168 } 3169 3170 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3171 "BM_%d : iscsi hdr def pdu id for ULP : %d is %d\n", 3172 ulp_num, 3173 phwi_context->be_def_hdrq[ulp_num].id); 3174 return 0; 3175 } 3176 3177 static int 3178 beiscsi_create_def_data(struct beiscsi_hba *phba, 3179 struct hwi_context_memory *phwi_context, 3180 struct hwi_controller *phwi_ctrlr, 3181 unsigned int def_pdu_ring_sz, uint8_t ulp_num) 3182 { 3183 unsigned int idx; 3184 int ret; 3185 struct be_queue_info *dataq, *cq; 3186 struct be_dma_mem *mem; 3187 struct be_mem_descriptor *mem_descr; 3188 void *dq_vaddress; 3189 3190 idx = 0; 3191 dataq = &phwi_context->be_def_dataq[ulp_num]; 3192 cq = &phwi_context->be_cq[0]; 3193 mem = &dataq->dma_mem; 3194 mem_descr = phba->init_mem; 3195 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 + 3196 (ulp_num * MEM_DESCR_OFFSET); 3197 dq_vaddress = mem_descr->mem_array[idx].virtual_address; 3198 ret = be_fill_queue(dataq, mem_descr->mem_array[0].size / 3199 sizeof(struct phys_addr), 3200 sizeof(struct phys_addr), dq_vaddress); 3201 if (ret) { 3202 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3203 "BM_%d : be_fill_queue Failed for DEF PDU " 3204 "DATA on ULP : %d\n", 3205 ulp_num); 3206 3207 return ret; 3208 } 3209 mem->dma = (unsigned long)mem_descr->mem_array[idx]. 3210 bus_address.u.a64.address; 3211 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq, 3212 def_pdu_ring_sz, 3213 phba->params.defpdu_data_sz, 3214 BEISCSI_DEFQ_DATA, ulp_num); 3215 if (ret) { 3216 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3217 "BM_%d be_cmd_create_default_pdu_queue" 3218 " Failed for DEF PDU DATA on ULP : %d\n", 3219 ulp_num); 3220 return ret; 3221 } 3222 3223 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3224 "BM_%d : iscsi def data id on ULP : %d is %d\n", 3225 ulp_num, 3226 phwi_context->be_def_dataq[ulp_num].id); 3227 3228 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3229 "BM_%d : DEFAULT PDU DATA RING CREATED" 3230 "on ULP : %d\n", ulp_num); 3231 return 0; 3232 } 3233 3234 3235 static int 3236 beiscsi_post_template_hdr(struct beiscsi_hba *phba) 3237 { 3238 struct be_mem_descriptor *mem_descr; 3239 struct mem_array *pm_arr; 3240 struct be_dma_mem sgl; 3241 int status, ulp_num; 3242 3243 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 3244 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 3245 mem_descr = (struct be_mem_descriptor *)phba->init_mem; 3246 mem_descr += HWI_MEM_TEMPLATE_HDR_ULP0 + 3247 (ulp_num * MEM_DESCR_OFFSET); 3248 pm_arr = mem_descr->mem_array; 3249 3250 hwi_build_be_sgl_arr(phba, pm_arr, &sgl); 3251 status = be_cmd_iscsi_post_template_hdr( 3252 &phba->ctrl, &sgl); 3253 3254 if (status != 0) { 3255 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3256 "BM_%d : Post Template HDR Failed for" 3257 "ULP_%d\n", ulp_num); 3258 return status; 3259 } 3260 3261 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3262 "BM_%d : Template HDR Pages Posted for" 3263 "ULP_%d\n", ulp_num); 3264 } 3265 } 3266 return 0; 3267 } 3268 3269 static int 3270 beiscsi_post_pages(struct beiscsi_hba *phba) 3271 { 3272 struct be_mem_descriptor *mem_descr; 3273 struct mem_array *pm_arr; 3274 unsigned int page_offset, i; 3275 struct be_dma_mem sgl; 3276 int status, ulp_num = 0; 3277 3278 mem_descr = phba->init_mem; 3279 mem_descr += HWI_MEM_SGE; 3280 pm_arr = mem_descr->mem_array; 3281 3282 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) 3283 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) 3284 break; 3285 3286 page_offset = (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io * 3287 phba->fw_config.iscsi_icd_start[ulp_num]) / PAGE_SIZE; 3288 for (i = 0; i < mem_descr->num_elements; i++) { 3289 hwi_build_be_sgl_arr(phba, pm_arr, &sgl); 3290 status = be_cmd_iscsi_post_sgl_pages(&phba->ctrl, &sgl, 3291 page_offset, 3292 (pm_arr->size / PAGE_SIZE)); 3293 page_offset += pm_arr->size / PAGE_SIZE; 3294 if (status != 0) { 3295 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3296 "BM_%d : post sgl failed.\n"); 3297 return status; 3298 } 3299 pm_arr++; 3300 } 3301 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3302 "BM_%d : POSTED PAGES\n"); 3303 return 0; 3304 } 3305 3306 static void be_queue_free(struct beiscsi_hba *phba, struct be_queue_info *q) 3307 { 3308 struct be_dma_mem *mem = &q->dma_mem; 3309 if (mem->va) { 3310 dma_free_coherent(&phba->pcidev->dev, mem->size, 3311 mem->va, mem->dma); 3312 mem->va = NULL; 3313 } 3314 } 3315 3316 static int be_queue_alloc(struct beiscsi_hba *phba, struct be_queue_info *q, 3317 u16 len, u16 entry_size) 3318 { 3319 struct be_dma_mem *mem = &q->dma_mem; 3320 3321 memset(q, 0, sizeof(*q)); 3322 q->len = len; 3323 q->entry_size = entry_size; 3324 mem->size = len * entry_size; 3325 mem->va = dma_alloc_coherent(&phba->pcidev->dev, mem->size, &mem->dma, 3326 GFP_KERNEL); 3327 if (!mem->va) 3328 return -ENOMEM; 3329 return 0; 3330 } 3331 3332 static int 3333 beiscsi_create_wrb_rings(struct beiscsi_hba *phba, 3334 struct hwi_context_memory *phwi_context, 3335 struct hwi_controller *phwi_ctrlr) 3336 { 3337 unsigned int num_wrb_rings; 3338 u64 pa_addr_lo; 3339 unsigned int idx, num, i, ulp_num; 3340 struct mem_array *pwrb_arr; 3341 void *wrb_vaddr; 3342 struct be_dma_mem sgl; 3343 struct be_mem_descriptor *mem_descr; 3344 struct hwi_wrb_context *pwrb_context; 3345 int status; 3346 uint8_t ulp_count = 0, ulp_base_num = 0; 3347 uint16_t cid_count_ulp[BEISCSI_ULP_COUNT] = { 0 }; 3348 3349 idx = 0; 3350 mem_descr = phba->init_mem; 3351 mem_descr += HWI_MEM_WRB; 3352 pwrb_arr = kmalloc_array(phba->params.cxns_per_ctrl, 3353 sizeof(*pwrb_arr), 3354 GFP_KERNEL); 3355 if (!pwrb_arr) { 3356 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3357 "BM_%d : Memory alloc failed in create wrb ring.\n"); 3358 return -ENOMEM; 3359 } 3360 wrb_vaddr = mem_descr->mem_array[idx].virtual_address; 3361 pa_addr_lo = mem_descr->mem_array[idx].bus_address.u.a64.address; 3362 num_wrb_rings = mem_descr->mem_array[idx].size / 3363 (phba->params.wrbs_per_cxn * sizeof(struct iscsi_wrb)); 3364 3365 for (num = 0; num < phba->params.cxns_per_ctrl; num++) { 3366 if (num_wrb_rings) { 3367 pwrb_arr[num].virtual_address = wrb_vaddr; 3368 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo; 3369 pwrb_arr[num].size = phba->params.wrbs_per_cxn * 3370 sizeof(struct iscsi_wrb); 3371 wrb_vaddr += pwrb_arr[num].size; 3372 pa_addr_lo += pwrb_arr[num].size; 3373 num_wrb_rings--; 3374 } else { 3375 idx++; 3376 wrb_vaddr = mem_descr->mem_array[idx].virtual_address; 3377 pa_addr_lo = mem_descr->mem_array[idx].\ 3378 bus_address.u.a64.address; 3379 num_wrb_rings = mem_descr->mem_array[idx].size / 3380 (phba->params.wrbs_per_cxn * 3381 sizeof(struct iscsi_wrb)); 3382 pwrb_arr[num].virtual_address = wrb_vaddr; 3383 pwrb_arr[num].bus_address.u.a64.address\ 3384 = pa_addr_lo; 3385 pwrb_arr[num].size = phba->params.wrbs_per_cxn * 3386 sizeof(struct iscsi_wrb); 3387 wrb_vaddr += pwrb_arr[num].size; 3388 pa_addr_lo += pwrb_arr[num].size; 3389 num_wrb_rings--; 3390 } 3391 } 3392 3393 /* Get the ULP Count */ 3394 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) 3395 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 3396 ulp_count++; 3397 ulp_base_num = ulp_num; 3398 cid_count_ulp[ulp_num] = 3399 BEISCSI_GET_CID_COUNT(phba, ulp_num); 3400 } 3401 3402 for (i = 0; i < phba->params.cxns_per_ctrl; i++) { 3403 if (ulp_count > 1) { 3404 ulp_base_num = (ulp_base_num + 1) % BEISCSI_ULP_COUNT; 3405 3406 if (!cid_count_ulp[ulp_base_num]) 3407 ulp_base_num = (ulp_base_num + 1) % 3408 BEISCSI_ULP_COUNT; 3409 3410 cid_count_ulp[ulp_base_num]--; 3411 } 3412 3413 3414 hwi_build_be_sgl_by_offset(phba, &pwrb_arr[i], &sgl); 3415 status = be_cmd_wrbq_create(&phba->ctrl, &sgl, 3416 &phwi_context->be_wrbq[i], 3417 &phwi_ctrlr->wrb_context[i], 3418 ulp_base_num); 3419 if (status != 0) { 3420 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3421 "BM_%d : wrbq create failed."); 3422 kfree(pwrb_arr); 3423 return status; 3424 } 3425 pwrb_context = &phwi_ctrlr->wrb_context[i]; 3426 BE_SET_CID_TO_CRI(i, pwrb_context->cid); 3427 } 3428 kfree(pwrb_arr); 3429 return 0; 3430 } 3431 3432 static void free_wrb_handles(struct beiscsi_hba *phba) 3433 { 3434 unsigned int index; 3435 struct hwi_controller *phwi_ctrlr; 3436 struct hwi_wrb_context *pwrb_context; 3437 3438 phwi_ctrlr = phba->phwi_ctrlr; 3439 for (index = 0; index < phba->params.cxns_per_ctrl; index++) { 3440 pwrb_context = &phwi_ctrlr->wrb_context[index]; 3441 kfree(pwrb_context->pwrb_handle_base); 3442 kfree(pwrb_context->pwrb_handle_basestd); 3443 } 3444 } 3445 3446 static void be_mcc_queues_destroy(struct beiscsi_hba *phba) 3447 { 3448 struct be_ctrl_info *ctrl = &phba->ctrl; 3449 struct be_dma_mem *ptag_mem; 3450 struct be_queue_info *q; 3451 int i, tag; 3452 3453 q = &phba->ctrl.mcc_obj.q; 3454 for (i = 0; i < MAX_MCC_CMD; i++) { 3455 tag = i + 1; 3456 if (!test_bit(MCC_TAG_STATE_RUNNING, 3457 &ctrl->ptag_state[tag].tag_state)) 3458 continue; 3459 3460 if (test_bit(MCC_TAG_STATE_TIMEOUT, 3461 &ctrl->ptag_state[tag].tag_state)) { 3462 ptag_mem = &ctrl->ptag_state[tag].tag_mem_state; 3463 if (ptag_mem->size) { 3464 dma_free_coherent(&ctrl->pdev->dev, 3465 ptag_mem->size, 3466 ptag_mem->va, 3467 ptag_mem->dma); 3468 ptag_mem->size = 0; 3469 } 3470 continue; 3471 } 3472 /** 3473 * If MCC is still active and waiting then wake up the process. 3474 * We are here only because port is going offline. The process 3475 * sees that (BEISCSI_HBA_ONLINE is cleared) and EIO error is 3476 * returned for the operation and allocated memory cleaned up. 3477 */ 3478 if (waitqueue_active(&ctrl->mcc_wait[tag])) { 3479 ctrl->mcc_tag_status[tag] = MCC_STATUS_FAILED; 3480 ctrl->mcc_tag_status[tag] |= CQE_VALID_MASK; 3481 wake_up_interruptible(&ctrl->mcc_wait[tag]); 3482 /* 3483 * Control tag info gets reinitialized in enable 3484 * so wait for the process to clear running state. 3485 */ 3486 while (test_bit(MCC_TAG_STATE_RUNNING, 3487 &ctrl->ptag_state[tag].tag_state)) 3488 schedule_timeout_uninterruptible(HZ); 3489 } 3490 /** 3491 * For MCC with tag_states MCC_TAG_STATE_ASYNC and 3492 * MCC_TAG_STATE_IGNORE nothing needs to done. 3493 */ 3494 } 3495 if (q->created) { 3496 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_MCCQ); 3497 be_queue_free(phba, q); 3498 } 3499 3500 q = &phba->ctrl.mcc_obj.cq; 3501 if (q->created) { 3502 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ); 3503 be_queue_free(phba, q); 3504 } 3505 } 3506 3507 static int be_mcc_queues_create(struct beiscsi_hba *phba, 3508 struct hwi_context_memory *phwi_context) 3509 { 3510 struct be_queue_info *q, *cq; 3511 struct be_ctrl_info *ctrl = &phba->ctrl; 3512 3513 /* Alloc MCC compl queue */ 3514 cq = &phba->ctrl.mcc_obj.cq; 3515 if (be_queue_alloc(phba, cq, MCC_CQ_LEN, 3516 sizeof(struct be_mcc_compl))) 3517 goto err; 3518 /* Ask BE to create MCC compl queue; */ 3519 if (phba->pcidev->msix_enabled) { 3520 if (beiscsi_cmd_cq_create(ctrl, cq, 3521 &phwi_context->be_eq[phba->num_cpus].q, 3522 false, true, 0)) 3523 goto mcc_cq_free; 3524 } else { 3525 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq[0].q, 3526 false, true, 0)) 3527 goto mcc_cq_free; 3528 } 3529 3530 /* Alloc MCC queue */ 3531 q = &phba->ctrl.mcc_obj.q; 3532 if (be_queue_alloc(phba, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb))) 3533 goto mcc_cq_destroy; 3534 3535 /* Ask BE to create MCC queue */ 3536 if (beiscsi_cmd_mccq_create(phba, q, cq)) 3537 goto mcc_q_free; 3538 3539 return 0; 3540 3541 mcc_q_free: 3542 be_queue_free(phba, q); 3543 mcc_cq_destroy: 3544 beiscsi_cmd_q_destroy(ctrl, cq, QTYPE_CQ); 3545 mcc_cq_free: 3546 be_queue_free(phba, cq); 3547 err: 3548 return -ENOMEM; 3549 } 3550 3551 static void be2iscsi_enable_msix(struct beiscsi_hba *phba) 3552 { 3553 int nvec = 1; 3554 3555 switch (phba->generation) { 3556 case BE_GEN2: 3557 case BE_GEN3: 3558 nvec = BEISCSI_MAX_NUM_CPUS + 1; 3559 break; 3560 case BE_GEN4: 3561 nvec = phba->fw_config.eqid_count; 3562 break; 3563 default: 3564 nvec = 2; 3565 break; 3566 } 3567 3568 /* if eqid_count == 1 fall back to INTX */ 3569 if (enable_msix && nvec > 1) { 3570 struct irq_affinity desc = { .post_vectors = 1 }; 3571 3572 if (pci_alloc_irq_vectors_affinity(phba->pcidev, 2, nvec, 3573 PCI_IRQ_MSIX | PCI_IRQ_AFFINITY, &desc) < 0) { 3574 phba->num_cpus = nvec - 1; 3575 return; 3576 } 3577 } 3578 3579 phba->num_cpus = 1; 3580 } 3581 3582 static void hwi_purge_eq(struct beiscsi_hba *phba) 3583 { 3584 struct hwi_controller *phwi_ctrlr; 3585 struct hwi_context_memory *phwi_context; 3586 struct be_queue_info *eq; 3587 struct be_eq_entry *eqe = NULL; 3588 int i, eq_msix; 3589 unsigned int num_processed; 3590 3591 if (beiscsi_hba_in_error(phba)) 3592 return; 3593 3594 phwi_ctrlr = phba->phwi_ctrlr; 3595 phwi_context = phwi_ctrlr->phwi_ctxt; 3596 if (phba->pcidev->msix_enabled) 3597 eq_msix = 1; 3598 else 3599 eq_msix = 0; 3600 3601 for (i = 0; i < (phba->num_cpus + eq_msix); i++) { 3602 eq = &phwi_context->be_eq[i].q; 3603 eqe = queue_tail_node(eq); 3604 num_processed = 0; 3605 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] 3606 & EQE_VALID_MASK) { 3607 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0); 3608 queue_tail_inc(eq); 3609 eqe = queue_tail_node(eq); 3610 num_processed++; 3611 } 3612 3613 if (num_processed) 3614 hwi_ring_eq_db(phba, eq->id, 1, num_processed, 1, 1); 3615 } 3616 } 3617 3618 static void hwi_cleanup_port(struct beiscsi_hba *phba) 3619 { 3620 struct be_queue_info *q; 3621 struct be_ctrl_info *ctrl = &phba->ctrl; 3622 struct hwi_controller *phwi_ctrlr; 3623 struct hwi_context_memory *phwi_context; 3624 int i, eq_for_mcc, ulp_num; 3625 3626 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) 3627 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) 3628 beiscsi_cmd_iscsi_cleanup(phba, ulp_num); 3629 3630 /** 3631 * Purge all EQ entries that may have been left out. This is to 3632 * workaround a problem we've seen occasionally where driver gets an 3633 * interrupt with EQ entry bit set after stopping the controller. 3634 */ 3635 hwi_purge_eq(phba); 3636 3637 phwi_ctrlr = phba->phwi_ctrlr; 3638 phwi_context = phwi_ctrlr->phwi_ctxt; 3639 3640 be_cmd_iscsi_remove_template_hdr(ctrl); 3641 3642 for (i = 0; i < phba->params.cxns_per_ctrl; i++) { 3643 q = &phwi_context->be_wrbq[i]; 3644 if (q->created) 3645 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_WRBQ); 3646 } 3647 kfree(phwi_context->be_wrbq); 3648 free_wrb_handles(phba); 3649 3650 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 3651 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 3652 3653 q = &phwi_context->be_def_hdrq[ulp_num]; 3654 if (q->created) 3655 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ); 3656 3657 q = &phwi_context->be_def_dataq[ulp_num]; 3658 if (q->created) 3659 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ); 3660 } 3661 } 3662 3663 beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL); 3664 3665 for (i = 0; i < (phba->num_cpus); i++) { 3666 q = &phwi_context->be_cq[i]; 3667 if (q->created) { 3668 be_queue_free(phba, q); 3669 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ); 3670 } 3671 } 3672 3673 be_mcc_queues_destroy(phba); 3674 if (phba->pcidev->msix_enabled) 3675 eq_for_mcc = 1; 3676 else 3677 eq_for_mcc = 0; 3678 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) { 3679 q = &phwi_context->be_eq[i].q; 3680 if (q->created) { 3681 be_queue_free(phba, q); 3682 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_EQ); 3683 } 3684 } 3685 /* this ensures complete FW cleanup */ 3686 beiscsi_cmd_function_reset(phba); 3687 /* last communication, indicate driver is unloading */ 3688 beiscsi_cmd_special_wrb(&phba->ctrl, 0); 3689 } 3690 3691 static int hwi_init_port(struct beiscsi_hba *phba) 3692 { 3693 struct hwi_controller *phwi_ctrlr; 3694 struct hwi_context_memory *phwi_context; 3695 unsigned int def_pdu_ring_sz; 3696 struct be_ctrl_info *ctrl = &phba->ctrl; 3697 int status, ulp_num; 3698 u16 nbufs; 3699 3700 phwi_ctrlr = phba->phwi_ctrlr; 3701 phwi_context = phwi_ctrlr->phwi_ctxt; 3702 /* set port optic state to unknown */ 3703 phba->optic_state = 0xff; 3704 3705 status = beiscsi_create_eqs(phba, phwi_context); 3706 if (status != 0) { 3707 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3708 "BM_%d : EQ not created\n"); 3709 goto error; 3710 } 3711 3712 status = be_mcc_queues_create(phba, phwi_context); 3713 if (status != 0) 3714 goto error; 3715 3716 status = beiscsi_check_supported_fw(ctrl, phba); 3717 if (status != 0) { 3718 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3719 "BM_%d : Unsupported fw version\n"); 3720 goto error; 3721 } 3722 3723 status = beiscsi_create_cqs(phba, phwi_context); 3724 if (status != 0) { 3725 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3726 "BM_%d : CQ not created\n"); 3727 goto error; 3728 } 3729 3730 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 3731 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 3732 nbufs = phwi_context->pasync_ctx[ulp_num]->num_entries; 3733 def_pdu_ring_sz = nbufs * sizeof(struct phys_addr); 3734 3735 status = beiscsi_create_def_hdr(phba, phwi_context, 3736 phwi_ctrlr, 3737 def_pdu_ring_sz, 3738 ulp_num); 3739 if (status != 0) { 3740 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3741 "BM_%d : Default Header not created for ULP : %d\n", 3742 ulp_num); 3743 goto error; 3744 } 3745 3746 status = beiscsi_create_def_data(phba, phwi_context, 3747 phwi_ctrlr, 3748 def_pdu_ring_sz, 3749 ulp_num); 3750 if (status != 0) { 3751 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3752 "BM_%d : Default Data not created for ULP : %d\n", 3753 ulp_num); 3754 goto error; 3755 } 3756 /** 3757 * Now that the default PDU rings have been created, 3758 * let EP know about it. 3759 */ 3760 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_HDR, 3761 ulp_num, nbufs); 3762 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_DATA, 3763 ulp_num, nbufs); 3764 } 3765 } 3766 3767 status = beiscsi_post_pages(phba); 3768 if (status != 0) { 3769 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3770 "BM_%d : Post SGL Pages Failed\n"); 3771 goto error; 3772 } 3773 3774 status = beiscsi_post_template_hdr(phba); 3775 if (status != 0) { 3776 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3777 "BM_%d : Template HDR Posting for CXN Failed\n"); 3778 } 3779 3780 status = beiscsi_create_wrb_rings(phba, phwi_context, phwi_ctrlr); 3781 if (status != 0) { 3782 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3783 "BM_%d : WRB Rings not created\n"); 3784 goto error; 3785 } 3786 3787 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 3788 uint16_t async_arr_idx = 0; 3789 3790 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) { 3791 uint16_t cri = 0; 3792 struct hd_async_context *pasync_ctx; 3793 3794 pasync_ctx = HWI_GET_ASYNC_PDU_CTX( 3795 phwi_ctrlr, ulp_num); 3796 for (cri = 0; cri < 3797 phba->params.cxns_per_ctrl; cri++) { 3798 if (ulp_num == BEISCSI_GET_ULP_FROM_CRI 3799 (phwi_ctrlr, cri)) 3800 pasync_ctx->cid_to_async_cri_map[ 3801 phwi_ctrlr->wrb_context[cri].cid] = 3802 async_arr_idx++; 3803 } 3804 } 3805 } 3806 3807 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3808 "BM_%d : hwi_init_port success\n"); 3809 return 0; 3810 3811 error: 3812 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3813 "BM_%d : hwi_init_port failed"); 3814 hwi_cleanup_port(phba); 3815 return status; 3816 } 3817 3818 static int hwi_init_controller(struct beiscsi_hba *phba) 3819 { 3820 struct hwi_controller *phwi_ctrlr; 3821 3822 phwi_ctrlr = phba->phwi_ctrlr; 3823 if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) { 3824 phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba-> 3825 init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address; 3826 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3827 "BM_%d : phwi_ctrlr->phwi_ctxt=%p\n", 3828 phwi_ctrlr->phwi_ctxt); 3829 } else { 3830 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3831 "BM_%d : HWI_MEM_ADDN_CONTEXT is more " 3832 "than one element.Failing to load\n"); 3833 return -ENOMEM; 3834 } 3835 3836 iscsi_init_global_templates(phba); 3837 if (beiscsi_init_wrb_handle(phba)) 3838 return -ENOMEM; 3839 3840 if (hwi_init_async_pdu_ctx(phba)) { 3841 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3842 "BM_%d : hwi_init_async_pdu_ctx failed\n"); 3843 return -ENOMEM; 3844 } 3845 3846 if (hwi_init_port(phba) != 0) { 3847 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3848 "BM_%d : hwi_init_controller failed\n"); 3849 3850 return -ENOMEM; 3851 } 3852 return 0; 3853 } 3854 3855 static void beiscsi_free_mem(struct beiscsi_hba *phba) 3856 { 3857 struct be_mem_descriptor *mem_descr; 3858 int i, j; 3859 3860 mem_descr = phba->init_mem; 3861 for (i = 0; i < SE_MEM_MAX; i++) { 3862 for (j = mem_descr->num_elements; j > 0; j--) { 3863 dma_free_coherent(&phba->pcidev->dev, 3864 mem_descr->mem_array[j - 1].size, 3865 mem_descr->mem_array[j - 1].virtual_address, 3866 (unsigned long)mem_descr->mem_array[j - 1]. 3867 bus_address.u.a64.address); 3868 } 3869 3870 kfree(mem_descr->mem_array); 3871 mem_descr++; 3872 } 3873 kfree(phba->init_mem); 3874 kfree(phba->phwi_ctrlr->wrb_context); 3875 kfree(phba->phwi_ctrlr); 3876 } 3877 3878 static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba) 3879 { 3880 struct be_mem_descriptor *mem_descr_sglh, *mem_descr_sg; 3881 struct sgl_handle *psgl_handle; 3882 struct iscsi_sge *pfrag; 3883 unsigned int arr_index, i, idx; 3884 unsigned int ulp_icd_start, ulp_num = 0; 3885 3886 phba->io_sgl_hndl_avbl = 0; 3887 phba->eh_sgl_hndl_avbl = 0; 3888 3889 mem_descr_sglh = phba->init_mem; 3890 mem_descr_sglh += HWI_MEM_SGLH; 3891 if (1 == mem_descr_sglh->num_elements) { 3892 phba->io_sgl_hndl_base = kcalloc(phba->params.ios_per_ctrl, 3893 sizeof(struct sgl_handle *), 3894 GFP_KERNEL); 3895 if (!phba->io_sgl_hndl_base) { 3896 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3897 "BM_%d : Mem Alloc Failed. Failing to load\n"); 3898 return -ENOMEM; 3899 } 3900 phba->eh_sgl_hndl_base = 3901 kcalloc(phba->params.icds_per_ctrl - 3902 phba->params.ios_per_ctrl, 3903 sizeof(struct sgl_handle *), GFP_KERNEL); 3904 if (!phba->eh_sgl_hndl_base) { 3905 kfree(phba->io_sgl_hndl_base); 3906 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3907 "BM_%d : Mem Alloc Failed. Failing to load\n"); 3908 return -ENOMEM; 3909 } 3910 } else { 3911 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3912 "BM_%d : HWI_MEM_SGLH is more than one element." 3913 "Failing to load\n"); 3914 return -ENOMEM; 3915 } 3916 3917 arr_index = 0; 3918 idx = 0; 3919 while (idx < mem_descr_sglh->num_elements) { 3920 psgl_handle = mem_descr_sglh->mem_array[idx].virtual_address; 3921 3922 for (i = 0; i < (mem_descr_sglh->mem_array[idx].size / 3923 sizeof(struct sgl_handle)); i++) { 3924 if (arr_index < phba->params.ios_per_ctrl) { 3925 phba->io_sgl_hndl_base[arr_index] = psgl_handle; 3926 phba->io_sgl_hndl_avbl++; 3927 arr_index++; 3928 } else { 3929 phba->eh_sgl_hndl_base[arr_index - 3930 phba->params.ios_per_ctrl] = 3931 psgl_handle; 3932 arr_index++; 3933 phba->eh_sgl_hndl_avbl++; 3934 } 3935 psgl_handle++; 3936 } 3937 idx++; 3938 } 3939 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3940 "BM_%d : phba->io_sgl_hndl_avbl=%d" 3941 "phba->eh_sgl_hndl_avbl=%d\n", 3942 phba->io_sgl_hndl_avbl, 3943 phba->eh_sgl_hndl_avbl); 3944 3945 mem_descr_sg = phba->init_mem; 3946 mem_descr_sg += HWI_MEM_SGE; 3947 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 3948 "\n BM_%d : mem_descr_sg->num_elements=%d\n", 3949 mem_descr_sg->num_elements); 3950 3951 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) 3952 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) 3953 break; 3954 3955 ulp_icd_start = phba->fw_config.iscsi_icd_start[ulp_num]; 3956 3957 arr_index = 0; 3958 idx = 0; 3959 while (idx < mem_descr_sg->num_elements) { 3960 pfrag = mem_descr_sg->mem_array[idx].virtual_address; 3961 3962 for (i = 0; 3963 i < (mem_descr_sg->mem_array[idx].size) / 3964 (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io); 3965 i++) { 3966 if (arr_index < phba->params.ios_per_ctrl) 3967 psgl_handle = phba->io_sgl_hndl_base[arr_index]; 3968 else 3969 psgl_handle = phba->eh_sgl_hndl_base[arr_index - 3970 phba->params.ios_per_ctrl]; 3971 psgl_handle->pfrag = pfrag; 3972 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, pfrag, 0); 3973 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, pfrag, 0); 3974 pfrag += phba->params.num_sge_per_io; 3975 psgl_handle->sgl_index = ulp_icd_start + arr_index++; 3976 } 3977 idx++; 3978 } 3979 phba->io_sgl_free_index = 0; 3980 phba->io_sgl_alloc_index = 0; 3981 phba->eh_sgl_free_index = 0; 3982 phba->eh_sgl_alloc_index = 0; 3983 return 0; 3984 } 3985 3986 static int hba_setup_cid_tbls(struct beiscsi_hba *phba) 3987 { 3988 int ret; 3989 uint16_t i, ulp_num; 3990 struct ulp_cid_info *ptr_cid_info = NULL; 3991 3992 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 3993 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) { 3994 ptr_cid_info = kzalloc(sizeof(struct ulp_cid_info), 3995 GFP_KERNEL); 3996 3997 if (!ptr_cid_info) { 3998 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 3999 "BM_%d : Failed to allocate memory" 4000 "for ULP_CID_INFO for ULP : %d\n", 4001 ulp_num); 4002 ret = -ENOMEM; 4003 goto free_memory; 4004 4005 } 4006 4007 /* Allocate memory for CID array */ 4008 ptr_cid_info->cid_array = 4009 kcalloc(BEISCSI_GET_CID_COUNT(phba, ulp_num), 4010 sizeof(*ptr_cid_info->cid_array), 4011 GFP_KERNEL); 4012 if (!ptr_cid_info->cid_array) { 4013 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4014 "BM_%d : Failed to allocate memory" 4015 "for CID_ARRAY for ULP : %d\n", 4016 ulp_num); 4017 kfree(ptr_cid_info); 4018 ptr_cid_info = NULL; 4019 ret = -ENOMEM; 4020 4021 goto free_memory; 4022 } 4023 ptr_cid_info->avlbl_cids = BEISCSI_GET_CID_COUNT( 4024 phba, ulp_num); 4025 4026 /* Save the cid_info_array ptr */ 4027 phba->cid_array_info[ulp_num] = ptr_cid_info; 4028 } 4029 } 4030 phba->ep_array = kcalloc(phba->params.cxns_per_ctrl, 4031 sizeof(struct iscsi_endpoint *), 4032 GFP_KERNEL); 4033 if (!phba->ep_array) { 4034 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4035 "BM_%d : Failed to allocate memory in " 4036 "hba_setup_cid_tbls\n"); 4037 ret = -ENOMEM; 4038 4039 goto free_memory; 4040 } 4041 4042 phba->conn_table = kcalloc(phba->params.cxns_per_ctrl, 4043 sizeof(struct beiscsi_conn *), 4044 GFP_KERNEL); 4045 if (!phba->conn_table) { 4046 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4047 "BM_%d : Failed to allocate memory in" 4048 "hba_setup_cid_tbls\n"); 4049 4050 kfree(phba->ep_array); 4051 phba->ep_array = NULL; 4052 ret = -ENOMEM; 4053 4054 goto free_memory; 4055 } 4056 4057 for (i = 0; i < phba->params.cxns_per_ctrl; i++) { 4058 ulp_num = phba->phwi_ctrlr->wrb_context[i].ulp_num; 4059 4060 ptr_cid_info = phba->cid_array_info[ulp_num]; 4061 ptr_cid_info->cid_array[ptr_cid_info->cid_alloc++] = 4062 phba->phwi_ctrlr->wrb_context[i].cid; 4063 4064 } 4065 4066 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 4067 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) { 4068 ptr_cid_info = phba->cid_array_info[ulp_num]; 4069 4070 ptr_cid_info->cid_alloc = 0; 4071 ptr_cid_info->cid_free = 0; 4072 } 4073 } 4074 return 0; 4075 4076 free_memory: 4077 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 4078 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) { 4079 ptr_cid_info = phba->cid_array_info[ulp_num]; 4080 4081 if (ptr_cid_info) { 4082 kfree(ptr_cid_info->cid_array); 4083 kfree(ptr_cid_info); 4084 phba->cid_array_info[ulp_num] = NULL; 4085 } 4086 } 4087 } 4088 4089 return ret; 4090 } 4091 4092 static void hwi_enable_intr(struct beiscsi_hba *phba) 4093 { 4094 struct be_ctrl_info *ctrl = &phba->ctrl; 4095 struct hwi_controller *phwi_ctrlr; 4096 struct hwi_context_memory *phwi_context; 4097 struct be_queue_info *eq; 4098 u8 __iomem *addr; 4099 u32 reg, i; 4100 u32 enabled; 4101 4102 phwi_ctrlr = phba->phwi_ctrlr; 4103 phwi_context = phwi_ctrlr->phwi_ctxt; 4104 4105 addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg + 4106 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET); 4107 reg = ioread32(addr); 4108 4109 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK; 4110 if (!enabled) { 4111 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK; 4112 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 4113 "BM_%d : reg =x%08x addr=%p\n", reg, addr); 4114 iowrite32(reg, addr); 4115 } 4116 4117 if (!phba->pcidev->msix_enabled) { 4118 eq = &phwi_context->be_eq[0].q; 4119 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 4120 "BM_%d : eq->id=%d\n", eq->id); 4121 4122 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1); 4123 } else { 4124 for (i = 0; i <= phba->num_cpus; i++) { 4125 eq = &phwi_context->be_eq[i].q; 4126 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 4127 "BM_%d : eq->id=%d\n", eq->id); 4128 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1); 4129 } 4130 } 4131 } 4132 4133 static void hwi_disable_intr(struct beiscsi_hba *phba) 4134 { 4135 struct be_ctrl_info *ctrl = &phba->ctrl; 4136 4137 u8 __iomem *addr = ctrl->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET; 4138 u32 reg = ioread32(addr); 4139 4140 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK; 4141 if (enabled) { 4142 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK; 4143 iowrite32(reg, addr); 4144 } else 4145 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT, 4146 "BM_%d : In hwi_disable_intr, Already Disabled\n"); 4147 } 4148 4149 static int beiscsi_init_port(struct beiscsi_hba *phba) 4150 { 4151 int ret; 4152 4153 ret = hwi_init_controller(phba); 4154 if (ret < 0) { 4155 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4156 "BM_%d : init controller failed\n"); 4157 return ret; 4158 } 4159 ret = beiscsi_init_sgl_handle(phba); 4160 if (ret < 0) { 4161 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4162 "BM_%d : init sgl handles failed\n"); 4163 goto cleanup_port; 4164 } 4165 4166 ret = hba_setup_cid_tbls(phba); 4167 if (ret < 0) { 4168 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 4169 "BM_%d : setup CID table failed\n"); 4170 kfree(phba->io_sgl_hndl_base); 4171 kfree(phba->eh_sgl_hndl_base); 4172 goto cleanup_port; 4173 } 4174 return ret; 4175 4176 cleanup_port: 4177 hwi_cleanup_port(phba); 4178 return ret; 4179 } 4180 4181 static void beiscsi_cleanup_port(struct beiscsi_hba *phba) 4182 { 4183 struct ulp_cid_info *ptr_cid_info = NULL; 4184 int ulp_num; 4185 4186 kfree(phba->io_sgl_hndl_base); 4187 kfree(phba->eh_sgl_hndl_base); 4188 kfree(phba->ep_array); 4189 kfree(phba->conn_table); 4190 4191 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) { 4192 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) { 4193 ptr_cid_info = phba->cid_array_info[ulp_num]; 4194 4195 if (ptr_cid_info) { 4196 kfree(ptr_cid_info->cid_array); 4197 kfree(ptr_cid_info); 4198 phba->cid_array_info[ulp_num] = NULL; 4199 } 4200 } 4201 } 4202 } 4203 4204 /** 4205 * beiscsi_free_mgmt_task_handles()- Free driver CXN resources 4206 * @beiscsi_conn: ptr to the conn to be cleaned up 4207 * @task: ptr to iscsi_task resource to be freed. 4208 * 4209 * Free driver mgmt resources binded to CXN. 4210 **/ 4211 void 4212 beiscsi_free_mgmt_task_handles(struct beiscsi_conn *beiscsi_conn, 4213 struct iscsi_task *task) 4214 { 4215 struct beiscsi_io_task *io_task; 4216 struct beiscsi_hba *phba = beiscsi_conn->phba; 4217 struct hwi_wrb_context *pwrb_context; 4218 struct hwi_controller *phwi_ctrlr; 4219 uint16_t cri_index = BE_GET_CRI_FROM_CID( 4220 beiscsi_conn->beiscsi_conn_cid); 4221 4222 phwi_ctrlr = phba->phwi_ctrlr; 4223 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 4224 4225 io_task = task->dd_data; 4226 4227 if (io_task->pwrb_handle) { 4228 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle); 4229 io_task->pwrb_handle = NULL; 4230 } 4231 4232 if (io_task->psgl_handle) { 4233 free_mgmt_sgl_handle(phba, io_task->psgl_handle); 4234 io_task->psgl_handle = NULL; 4235 } 4236 4237 if (io_task->mtask_addr) { 4238 dma_unmap_single(&phba->pcidev->dev, 4239 io_task->mtask_addr, 4240 io_task->mtask_data_count, 4241 DMA_TO_DEVICE); 4242 io_task->mtask_addr = 0; 4243 } 4244 } 4245 4246 /** 4247 * beiscsi_cleanup_task()- Free driver resources of the task 4248 * @task: ptr to the iscsi task 4249 * 4250 **/ 4251 static void beiscsi_cleanup_task(struct iscsi_task *task) 4252 { 4253 struct beiscsi_io_task *io_task = task->dd_data; 4254 struct iscsi_conn *conn = task->conn; 4255 struct beiscsi_conn *beiscsi_conn = conn->dd_data; 4256 struct beiscsi_hba *phba = beiscsi_conn->phba; 4257 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess; 4258 struct hwi_wrb_context *pwrb_context; 4259 struct hwi_controller *phwi_ctrlr; 4260 uint16_t cri_index = BE_GET_CRI_FROM_CID( 4261 beiscsi_conn->beiscsi_conn_cid); 4262 4263 phwi_ctrlr = phba->phwi_ctrlr; 4264 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 4265 4266 if (io_task->cmd_bhs) { 4267 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs, 4268 io_task->bhs_pa.u.a64.address); 4269 io_task->cmd_bhs = NULL; 4270 task->hdr = NULL; 4271 } 4272 4273 if (task->sc) { 4274 if (io_task->pwrb_handle) { 4275 free_wrb_handle(phba, pwrb_context, 4276 io_task->pwrb_handle); 4277 io_task->pwrb_handle = NULL; 4278 } 4279 4280 if (io_task->psgl_handle) { 4281 free_io_sgl_handle(phba, io_task->psgl_handle); 4282 io_task->psgl_handle = NULL; 4283 } 4284 4285 if (io_task->scsi_cmnd) { 4286 if (io_task->num_sg) 4287 scsi_dma_unmap(io_task->scsi_cmnd); 4288 io_task->scsi_cmnd = NULL; 4289 } 4290 } else { 4291 if (!beiscsi_conn->login_in_progress) 4292 beiscsi_free_mgmt_task_handles(beiscsi_conn, task); 4293 } 4294 } 4295 4296 void 4297 beiscsi_offload_connection(struct beiscsi_conn *beiscsi_conn, 4298 struct beiscsi_offload_params *params) 4299 { 4300 struct wrb_handle *pwrb_handle; 4301 struct hwi_wrb_context *pwrb_context = NULL; 4302 struct beiscsi_hba *phba = beiscsi_conn->phba; 4303 struct iscsi_task *task = beiscsi_conn->task; 4304 struct iscsi_session *session = task->conn->session; 4305 u32 doorbell = 0; 4306 4307 /* 4308 * We can always use 0 here because it is reserved by libiscsi for 4309 * login/startup related tasks. 4310 */ 4311 beiscsi_conn->login_in_progress = 0; 4312 spin_lock_bh(&session->back_lock); 4313 beiscsi_cleanup_task(task); 4314 spin_unlock_bh(&session->back_lock); 4315 4316 pwrb_handle = alloc_wrb_handle(phba, beiscsi_conn->beiscsi_conn_cid, 4317 &pwrb_context); 4318 4319 /* Check for the adapter family */ 4320 if (is_chip_be2_be3r(phba)) 4321 beiscsi_offload_cxn_v0(params, pwrb_handle, 4322 phba->init_mem, 4323 pwrb_context); 4324 else 4325 beiscsi_offload_cxn_v2(params, pwrb_handle, 4326 pwrb_context); 4327 4328 be_dws_le_to_cpu(pwrb_handle->pwrb, 4329 sizeof(struct iscsi_target_context_update_wrb)); 4330 4331 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK; 4332 doorbell |= (pwrb_handle->wrb_index & DB_DEF_PDU_WRB_INDEX_MASK) 4333 << DB_DEF_PDU_WRB_INDEX_SHIFT; 4334 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT; 4335 iowrite32(doorbell, phba->db_va + 4336 beiscsi_conn->doorbell_offset); 4337 4338 /* 4339 * There is no completion for CONTEXT_UPDATE. The completion of next 4340 * WRB posted guarantees FW's processing and DMA'ing of it. 4341 * Use beiscsi_put_wrb_handle to put it back in the pool which makes 4342 * sure zero'ing or reuse of the WRB only after wrbs_per_cxn. 4343 */ 4344 beiscsi_put_wrb_handle(pwrb_context, pwrb_handle, 4345 phba->params.wrbs_per_cxn); 4346 beiscsi_log(phba, KERN_INFO, 4347 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 4348 "BM_%d : put CONTEXT_UPDATE pwrb_handle=%p free_index=0x%x wrb_handles_available=%d\n", 4349 pwrb_handle, pwrb_context->free_index, 4350 pwrb_context->wrb_handles_available); 4351 } 4352 4353 static void beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt, 4354 int *index, int *age) 4355 { 4356 *index = (int)itt; 4357 if (age) 4358 *age = conn->session->age; 4359 } 4360 4361 /** 4362 * beiscsi_alloc_pdu - allocates pdu and related resources 4363 * @task: libiscsi task 4364 * @opcode: opcode of pdu for task 4365 * 4366 * This is called with the session lock held. It will allocate 4367 * the wrb and sgl if needed for the command. And it will prep 4368 * the pdu's itt. beiscsi_parse_pdu will later translate 4369 * the pdu itt to the libiscsi task itt. 4370 */ 4371 static int beiscsi_alloc_pdu(struct iscsi_task *task, uint8_t opcode) 4372 { 4373 struct beiscsi_io_task *io_task = task->dd_data; 4374 struct iscsi_conn *conn = task->conn; 4375 struct beiscsi_conn *beiscsi_conn = conn->dd_data; 4376 struct beiscsi_hba *phba = beiscsi_conn->phba; 4377 struct hwi_wrb_context *pwrb_context; 4378 struct hwi_controller *phwi_ctrlr; 4379 itt_t itt; 4380 uint16_t cri_index = 0; 4381 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess; 4382 dma_addr_t paddr; 4383 4384 io_task->cmd_bhs = dma_pool_alloc(beiscsi_sess->bhs_pool, 4385 GFP_ATOMIC, &paddr); 4386 if (!io_task->cmd_bhs) 4387 return -ENOMEM; 4388 io_task->bhs_pa.u.a64.address = paddr; 4389 io_task->libiscsi_itt = (itt_t)task->itt; 4390 io_task->conn = beiscsi_conn; 4391 4392 task->hdr = (struct iscsi_hdr *)&io_task->cmd_bhs->iscsi_hdr; 4393 task->hdr_max = sizeof(struct be_cmd_bhs); 4394 io_task->psgl_handle = NULL; 4395 io_task->pwrb_handle = NULL; 4396 4397 if (task->sc) { 4398 io_task->psgl_handle = alloc_io_sgl_handle(phba); 4399 if (!io_task->psgl_handle) { 4400 beiscsi_log(phba, KERN_ERR, 4401 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 4402 "BM_%d : Alloc of IO_SGL_ICD Failed" 4403 "for the CID : %d\n", 4404 beiscsi_conn->beiscsi_conn_cid); 4405 goto free_hndls; 4406 } 4407 io_task->pwrb_handle = alloc_wrb_handle(phba, 4408 beiscsi_conn->beiscsi_conn_cid, 4409 &io_task->pwrb_context); 4410 if (!io_task->pwrb_handle) { 4411 beiscsi_log(phba, KERN_ERR, 4412 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 4413 "BM_%d : Alloc of WRB_HANDLE Failed" 4414 "for the CID : %d\n", 4415 beiscsi_conn->beiscsi_conn_cid); 4416 goto free_io_hndls; 4417 } 4418 } else { 4419 io_task->scsi_cmnd = NULL; 4420 if ((opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN) { 4421 beiscsi_conn->task = task; 4422 if (!beiscsi_conn->login_in_progress) { 4423 io_task->psgl_handle = (struct sgl_handle *) 4424 alloc_mgmt_sgl_handle(phba); 4425 if (!io_task->psgl_handle) { 4426 beiscsi_log(phba, KERN_ERR, 4427 BEISCSI_LOG_IO | 4428 BEISCSI_LOG_CONFIG, 4429 "BM_%d : Alloc of MGMT_SGL_ICD Failed" 4430 "for the CID : %d\n", 4431 beiscsi_conn-> 4432 beiscsi_conn_cid); 4433 goto free_hndls; 4434 } 4435 4436 beiscsi_conn->login_in_progress = 1; 4437 beiscsi_conn->plogin_sgl_handle = 4438 io_task->psgl_handle; 4439 io_task->pwrb_handle = 4440 alloc_wrb_handle(phba, 4441 beiscsi_conn->beiscsi_conn_cid, 4442 &io_task->pwrb_context); 4443 if (!io_task->pwrb_handle) { 4444 beiscsi_log(phba, KERN_ERR, 4445 BEISCSI_LOG_IO | 4446 BEISCSI_LOG_CONFIG, 4447 "BM_%d : Alloc of WRB_HANDLE Failed" 4448 "for the CID : %d\n", 4449 beiscsi_conn-> 4450 beiscsi_conn_cid); 4451 goto free_mgmt_hndls; 4452 } 4453 beiscsi_conn->plogin_wrb_handle = 4454 io_task->pwrb_handle; 4455 4456 } else { 4457 io_task->psgl_handle = 4458 beiscsi_conn->plogin_sgl_handle; 4459 io_task->pwrb_handle = 4460 beiscsi_conn->plogin_wrb_handle; 4461 } 4462 } else { 4463 io_task->psgl_handle = alloc_mgmt_sgl_handle(phba); 4464 if (!io_task->psgl_handle) { 4465 beiscsi_log(phba, KERN_ERR, 4466 BEISCSI_LOG_IO | 4467 BEISCSI_LOG_CONFIG, 4468 "BM_%d : Alloc of MGMT_SGL_ICD Failed" 4469 "for the CID : %d\n", 4470 beiscsi_conn-> 4471 beiscsi_conn_cid); 4472 goto free_hndls; 4473 } 4474 io_task->pwrb_handle = 4475 alloc_wrb_handle(phba, 4476 beiscsi_conn->beiscsi_conn_cid, 4477 &io_task->pwrb_context); 4478 if (!io_task->pwrb_handle) { 4479 beiscsi_log(phba, KERN_ERR, 4480 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG, 4481 "BM_%d : Alloc of WRB_HANDLE Failed" 4482 "for the CID : %d\n", 4483 beiscsi_conn->beiscsi_conn_cid); 4484 goto free_mgmt_hndls; 4485 } 4486 4487 } 4488 } 4489 itt = (itt_t) cpu_to_be32(((unsigned int)io_task->pwrb_handle-> 4490 wrb_index << 16) | (unsigned int) 4491 (io_task->psgl_handle->sgl_index)); 4492 io_task->pwrb_handle->pio_handle = task; 4493 4494 io_task->cmd_bhs->iscsi_hdr.itt = itt; 4495 return 0; 4496 4497 free_io_hndls: 4498 free_io_sgl_handle(phba, io_task->psgl_handle); 4499 goto free_hndls; 4500 free_mgmt_hndls: 4501 free_mgmt_sgl_handle(phba, io_task->psgl_handle); 4502 io_task->psgl_handle = NULL; 4503 free_hndls: 4504 phwi_ctrlr = phba->phwi_ctrlr; 4505 cri_index = BE_GET_CRI_FROM_CID( 4506 beiscsi_conn->beiscsi_conn_cid); 4507 pwrb_context = &phwi_ctrlr->wrb_context[cri_index]; 4508 if (io_task->pwrb_handle) 4509 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle); 4510 io_task->pwrb_handle = NULL; 4511 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs, 4512 io_task->bhs_pa.u.a64.address); 4513 io_task->cmd_bhs = NULL; 4514 return -ENOMEM; 4515 } 4516 static int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg, 4517 unsigned int num_sg, unsigned int xferlen, 4518 unsigned int writedir) 4519 { 4520 4521 struct beiscsi_io_task *io_task = task->dd_data; 4522 struct iscsi_conn *conn = task->conn; 4523 struct beiscsi_conn *beiscsi_conn = conn->dd_data; 4524 struct beiscsi_hba *phba = beiscsi_conn->phba; 4525 struct iscsi_wrb *pwrb = NULL; 4526 unsigned int doorbell = 0; 4527 4528 pwrb = io_task->pwrb_handle->pwrb; 4529 4530 io_task->bhs_len = sizeof(struct be_cmd_bhs); 4531 4532 if (writedir) { 4533 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb, 4534 INI_WR_CMD); 4535 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 1); 4536 } else { 4537 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb, 4538 INI_RD_CMD); 4539 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 0); 4540 } 4541 4542 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb_v2, 4543 type, pwrb); 4544 4545 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, lun, pwrb, 4546 cpu_to_be16(*(unsigned short *) 4547 &io_task->cmd_bhs->iscsi_hdr.lun)); 4548 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb, xferlen); 4549 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb, 4550 io_task->pwrb_handle->wrb_index); 4551 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb, 4552 be32_to_cpu(task->cmdsn)); 4553 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb, 4554 io_task->psgl_handle->sgl_index); 4555 4556 hwi_write_sgl_v2(pwrb, sg, num_sg, io_task); 4557 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb, 4558 io_task->pwrb_handle->wrb_index); 4559 if (io_task->pwrb_context->plast_wrb) 4560 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, 4561 io_task->pwrb_context->plast_wrb, 4562 io_task->pwrb_handle->wrb_index); 4563 io_task->pwrb_context->plast_wrb = pwrb; 4564 4565 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb)); 4566 4567 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK; 4568 doorbell |= (io_task->pwrb_handle->wrb_index & 4569 DB_DEF_PDU_WRB_INDEX_MASK) << 4570 DB_DEF_PDU_WRB_INDEX_SHIFT; 4571 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT; 4572 iowrite32(doorbell, phba->db_va + 4573 beiscsi_conn->doorbell_offset); 4574 return 0; 4575 } 4576 4577 static int beiscsi_iotask(struct iscsi_task *task, struct scatterlist *sg, 4578 unsigned int num_sg, unsigned int xferlen, 4579 unsigned int writedir) 4580 { 4581 4582 struct beiscsi_io_task *io_task = task->dd_data; 4583 struct iscsi_conn *conn = task->conn; 4584 struct beiscsi_conn *beiscsi_conn = conn->dd_data; 4585 struct beiscsi_hba *phba = beiscsi_conn->phba; 4586 struct iscsi_wrb *pwrb = NULL; 4587 unsigned int doorbell = 0; 4588 4589 pwrb = io_task->pwrb_handle->pwrb; 4590 io_task->bhs_len = sizeof(struct be_cmd_bhs); 4591 4592 if (writedir) { 4593 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb, 4594 INI_WR_CMD); 4595 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1); 4596 } else { 4597 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb, 4598 INI_RD_CMD); 4599 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0); 4600 } 4601 4602 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb, 4603 type, pwrb); 4604 4605 AMAP_SET_BITS(struct amap_iscsi_wrb, lun, pwrb, 4606 cpu_to_be16(*(unsigned short *) 4607 &io_task->cmd_bhs->iscsi_hdr.lun)); 4608 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, xferlen); 4609 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb, 4610 io_task->pwrb_handle->wrb_index); 4611 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 4612 be32_to_cpu(task->cmdsn)); 4613 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb, 4614 io_task->psgl_handle->sgl_index); 4615 4616 hwi_write_sgl(pwrb, sg, num_sg, io_task); 4617 4618 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb, 4619 io_task->pwrb_handle->wrb_index); 4620 if (io_task->pwrb_context->plast_wrb) 4621 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, 4622 io_task->pwrb_context->plast_wrb, 4623 io_task->pwrb_handle->wrb_index); 4624 io_task->pwrb_context->plast_wrb = pwrb; 4625 4626 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb)); 4627 4628 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK; 4629 doorbell |= (io_task->pwrb_handle->wrb_index & 4630 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT; 4631 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT; 4632 4633 iowrite32(doorbell, phba->db_va + 4634 beiscsi_conn->doorbell_offset); 4635 return 0; 4636 } 4637 4638 static int beiscsi_mtask(struct iscsi_task *task) 4639 { 4640 struct beiscsi_io_task *io_task = task->dd_data; 4641 struct iscsi_conn *conn = task->conn; 4642 struct beiscsi_conn *beiscsi_conn = conn->dd_data; 4643 struct beiscsi_hba *phba = beiscsi_conn->phba; 4644 struct iscsi_wrb *pwrb = NULL; 4645 unsigned int doorbell = 0; 4646 unsigned int cid; 4647 unsigned int pwrb_typeoffset = 0; 4648 int ret = 0; 4649 4650 cid = beiscsi_conn->beiscsi_conn_cid; 4651 pwrb = io_task->pwrb_handle->pwrb; 4652 4653 if (is_chip_be2_be3r(phba)) { 4654 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 4655 be32_to_cpu(task->cmdsn)); 4656 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb, 4657 io_task->pwrb_handle->wrb_index); 4658 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb, 4659 io_task->psgl_handle->sgl_index); 4660 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, 4661 task->data_count); 4662 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb, 4663 io_task->pwrb_handle->wrb_index); 4664 if (io_task->pwrb_context->plast_wrb) 4665 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, 4666 io_task->pwrb_context->plast_wrb, 4667 io_task->pwrb_handle->wrb_index); 4668 io_task->pwrb_context->plast_wrb = pwrb; 4669 4670 pwrb_typeoffset = BE_WRB_TYPE_OFFSET; 4671 } else { 4672 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb, 4673 be32_to_cpu(task->cmdsn)); 4674 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb, 4675 io_task->pwrb_handle->wrb_index); 4676 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb, 4677 io_task->psgl_handle->sgl_index); 4678 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb, 4679 task->data_count); 4680 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb, 4681 io_task->pwrb_handle->wrb_index); 4682 if (io_task->pwrb_context->plast_wrb) 4683 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, 4684 io_task->pwrb_context->plast_wrb, 4685 io_task->pwrb_handle->wrb_index); 4686 io_task->pwrb_context->plast_wrb = pwrb; 4687 4688 pwrb_typeoffset = SKH_WRB_TYPE_OFFSET; 4689 } 4690 4691 4692 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) { 4693 case ISCSI_OP_LOGIN: 4694 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 1); 4695 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset); 4696 ret = hwi_write_buffer(pwrb, task); 4697 break; 4698 case ISCSI_OP_NOOP_OUT: 4699 if (task->hdr->ttt != ISCSI_RESERVED_TAG) { 4700 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset); 4701 if (is_chip_be2_be3r(phba)) 4702 AMAP_SET_BITS(struct amap_iscsi_wrb, 4703 dmsg, pwrb, 1); 4704 else 4705 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 4706 dmsg, pwrb, 1); 4707 } else { 4708 ADAPTER_SET_WRB_TYPE(pwrb, INI_RD_CMD, pwrb_typeoffset); 4709 if (is_chip_be2_be3r(phba)) 4710 AMAP_SET_BITS(struct amap_iscsi_wrb, 4711 dmsg, pwrb, 0); 4712 else 4713 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, 4714 dmsg, pwrb, 0); 4715 } 4716 ret = hwi_write_buffer(pwrb, task); 4717 break; 4718 case ISCSI_OP_TEXT: 4719 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset); 4720 ret = hwi_write_buffer(pwrb, task); 4721 break; 4722 case ISCSI_OP_SCSI_TMFUNC: 4723 ADAPTER_SET_WRB_TYPE(pwrb, INI_TMF_CMD, pwrb_typeoffset); 4724 ret = hwi_write_buffer(pwrb, task); 4725 break; 4726 case ISCSI_OP_LOGOUT: 4727 ADAPTER_SET_WRB_TYPE(pwrb, HWH_TYPE_LOGOUT, pwrb_typeoffset); 4728 ret = hwi_write_buffer(pwrb, task); 4729 break; 4730 4731 default: 4732 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG, 4733 "BM_%d : opcode =%d Not supported\n", 4734 task->hdr->opcode & ISCSI_OPCODE_MASK); 4735 4736 return -EINVAL; 4737 } 4738 4739 if (ret) 4740 return ret; 4741 4742 /* Set the task type */ 4743 io_task->wrb_type = (is_chip_be2_be3r(phba)) ? 4744 AMAP_GET_BITS(struct amap_iscsi_wrb, type, pwrb) : 4745 AMAP_GET_BITS(struct amap_iscsi_wrb_v2, type, pwrb); 4746 4747 doorbell |= cid & DB_WRB_POST_CID_MASK; 4748 doorbell |= (io_task->pwrb_handle->wrb_index & 4749 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT; 4750 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT; 4751 iowrite32(doorbell, phba->db_va + 4752 beiscsi_conn->doorbell_offset); 4753 return 0; 4754 } 4755 4756 static int beiscsi_task_xmit(struct iscsi_task *task) 4757 { 4758 struct beiscsi_io_task *io_task = task->dd_data; 4759 struct scsi_cmnd *sc = task->sc; 4760 struct beiscsi_hba *phba; 4761 struct scatterlist *sg; 4762 int num_sg; 4763 unsigned int writedir = 0, xferlen = 0; 4764 4765 phba = io_task->conn->phba; 4766 /** 4767 * HBA in error includes BEISCSI_HBA_FW_TIMEOUT. IO path might be 4768 * operational if FW still gets heartbeat from EP FW. Is management 4769 * path really needed to continue further? 4770 */ 4771 if (!beiscsi_hba_is_online(phba)) 4772 return -EIO; 4773 4774 if (!io_task->conn->login_in_progress) 4775 task->hdr->exp_statsn = 0; 4776 4777 if (!sc) 4778 return beiscsi_mtask(task); 4779 4780 io_task->scsi_cmnd = sc; 4781 io_task->num_sg = 0; 4782 num_sg = scsi_dma_map(sc); 4783 if (num_sg < 0) { 4784 beiscsi_log(phba, KERN_ERR, 4785 BEISCSI_LOG_IO | BEISCSI_LOG_ISCSI, 4786 "BM_%d : scsi_dma_map Failed " 4787 "Driver_ITT : 0x%x ITT : 0x%x Xferlen : 0x%x\n", 4788 be32_to_cpu(io_task->cmd_bhs->iscsi_hdr.itt), 4789 io_task->libiscsi_itt, scsi_bufflen(sc)); 4790 4791 return num_sg; 4792 } 4793 /** 4794 * For scsi cmd task, check num_sg before unmapping in cleanup_task. 4795 * For management task, cleanup_task checks mtask_addr before unmapping. 4796 */ 4797 io_task->num_sg = num_sg; 4798 xferlen = scsi_bufflen(sc); 4799 sg = scsi_sglist(sc); 4800 if (sc->sc_data_direction == DMA_TO_DEVICE) 4801 writedir = 1; 4802 else 4803 writedir = 0; 4804 4805 return phba->iotask_fn(task, sg, num_sg, xferlen, writedir); 4806 } 4807 4808 /** 4809 * beiscsi_bsg_request - handle bsg request from ISCSI transport 4810 * @job: job to handle 4811 */ 4812 static int beiscsi_bsg_request(struct bsg_job *job) 4813 { 4814 struct Scsi_Host *shost; 4815 struct beiscsi_hba *phba; 4816 struct iscsi_bsg_request *bsg_req = job->request; 4817 int rc = -EINVAL; 4818 unsigned int tag; 4819 struct be_dma_mem nonemb_cmd; 4820 struct be_cmd_resp_hdr *resp; 4821 struct iscsi_bsg_reply *bsg_reply = job->reply; 4822 unsigned short status, extd_status; 4823 4824 shost = iscsi_job_to_shost(job); 4825 phba = iscsi_host_priv(shost); 4826 4827 if (!beiscsi_hba_is_online(phba)) { 4828 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG, 4829 "BM_%d : HBA in error 0x%lx\n", phba->state); 4830 return -ENXIO; 4831 } 4832 4833 switch (bsg_req->msgcode) { 4834 case ISCSI_BSG_HST_VENDOR: 4835 nonemb_cmd.va = dma_alloc_coherent(&phba->ctrl.pdev->dev, 4836 job->request_payload.payload_len, 4837 &nonemb_cmd.dma, GFP_KERNEL); 4838 if (nonemb_cmd.va == NULL) { 4839 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG, 4840 "BM_%d : Failed to allocate memory for " 4841 "beiscsi_bsg_request\n"); 4842 return -ENOMEM; 4843 } 4844 tag = mgmt_vendor_specific_fw_cmd(&phba->ctrl, phba, job, 4845 &nonemb_cmd); 4846 if (!tag) { 4847 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG, 4848 "BM_%d : MBX Tag Allocation Failed\n"); 4849 4850 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size, 4851 nonemb_cmd.va, nonemb_cmd.dma); 4852 return -EAGAIN; 4853 } 4854 4855 rc = wait_event_interruptible_timeout( 4856 phba->ctrl.mcc_wait[tag], 4857 phba->ctrl.mcc_tag_status[tag], 4858 msecs_to_jiffies( 4859 BEISCSI_HOST_MBX_TIMEOUT)); 4860 4861 if (!test_bit(BEISCSI_HBA_ONLINE, &phba->state)) { 4862 clear_bit(MCC_TAG_STATE_RUNNING, 4863 &phba->ctrl.ptag_state[tag].tag_state); 4864 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size, 4865 nonemb_cmd.va, nonemb_cmd.dma); 4866 return -EIO; 4867 } 4868 extd_status = (phba->ctrl.mcc_tag_status[tag] & 4869 CQE_STATUS_ADDL_MASK) >> CQE_STATUS_ADDL_SHIFT; 4870 status = phba->ctrl.mcc_tag_status[tag] & CQE_STATUS_MASK; 4871 free_mcc_wrb(&phba->ctrl, tag); 4872 resp = (struct be_cmd_resp_hdr *)nonemb_cmd.va; 4873 sg_copy_from_buffer(job->reply_payload.sg_list, 4874 job->reply_payload.sg_cnt, 4875 nonemb_cmd.va, (resp->response_length 4876 + sizeof(*resp))); 4877 bsg_reply->reply_payload_rcv_len = resp->response_length; 4878 bsg_reply->result = status; 4879 bsg_job_done(job, bsg_reply->result, 4880 bsg_reply->reply_payload_rcv_len); 4881 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size, 4882 nonemb_cmd.va, nonemb_cmd.dma); 4883 if (status || extd_status) { 4884 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG, 4885 "BM_%d : MBX Cmd Failed" 4886 " status = %d extd_status = %d\n", 4887 status, extd_status); 4888 4889 return -EIO; 4890 } else { 4891 rc = 0; 4892 } 4893 break; 4894 4895 default: 4896 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG, 4897 "BM_%d : Unsupported bsg command: 0x%x\n", 4898 bsg_req->msgcode); 4899 break; 4900 } 4901 4902 return rc; 4903 } 4904 4905 static void beiscsi_hba_attrs_init(struct beiscsi_hba *phba) 4906 { 4907 /* Set the logging parameter */ 4908 beiscsi_log_enable_init(phba, beiscsi_log_enable); 4909 } 4910 4911 void beiscsi_start_boot_work(struct beiscsi_hba *phba, unsigned int s_handle) 4912 { 4913 if (phba->boot_struct.boot_kset) 4914 return; 4915 4916 /* skip if boot work is already in progress */ 4917 if (test_and_set_bit(BEISCSI_HBA_BOOT_WORK, &phba->state)) 4918 return; 4919 4920 phba->boot_struct.retry = 3; 4921 phba->boot_struct.tag = 0; 4922 phba->boot_struct.s_handle = s_handle; 4923 phba->boot_struct.action = BEISCSI_BOOT_GET_SHANDLE; 4924 schedule_work(&phba->boot_work); 4925 } 4926 4927 #define BEISCSI_SYSFS_ISCSI_BOOT_FLAGS 3 4928 /* 4929 * beiscsi_show_boot_tgt_info() 4930 * Boot flag info for iscsi-utilities 4931 * Bit 0 Block valid flag 4932 * Bit 1 Firmware booting selected 4933 */ 4934 static ssize_t beiscsi_show_boot_tgt_info(void *data, int type, char *buf) 4935 { 4936 struct beiscsi_hba *phba = data; 4937 struct mgmt_session_info *boot_sess = &phba->boot_struct.boot_sess; 4938 struct mgmt_conn_info *boot_conn = &boot_sess->conn_list[0]; 4939 char *str = buf; 4940 int rc = -EPERM; 4941 4942 switch (type) { 4943 case ISCSI_BOOT_TGT_NAME: 4944 rc = sprintf(buf, "%.*s\n", 4945 (int)strlen(boot_sess->target_name), 4946 (char *)&boot_sess->target_name); 4947 break; 4948 case ISCSI_BOOT_TGT_IP_ADDR: 4949 if (boot_conn->dest_ipaddr.ip_type == BEISCSI_IP_TYPE_V4) 4950 rc = sprintf(buf, "%pI4\n", 4951 (char *)&boot_conn->dest_ipaddr.addr); 4952 else 4953 rc = sprintf(str, "%pI6\n", 4954 (char *)&boot_conn->dest_ipaddr.addr); 4955 break; 4956 case ISCSI_BOOT_TGT_PORT: 4957 rc = sprintf(str, "%d\n", boot_conn->dest_port); 4958 break; 4959 4960 case ISCSI_BOOT_TGT_CHAP_NAME: 4961 rc = sprintf(str, "%.*s\n", 4962 boot_conn->negotiated_login_options.auth_data.chap. 4963 target_chap_name_length, 4964 (char *)&boot_conn->negotiated_login_options. 4965 auth_data.chap.target_chap_name); 4966 break; 4967 case ISCSI_BOOT_TGT_CHAP_SECRET: 4968 rc = sprintf(str, "%.*s\n", 4969 boot_conn->negotiated_login_options.auth_data.chap. 4970 target_secret_length, 4971 (char *)&boot_conn->negotiated_login_options. 4972 auth_data.chap.target_secret); 4973 break; 4974 case ISCSI_BOOT_TGT_REV_CHAP_NAME: 4975 rc = sprintf(str, "%.*s\n", 4976 boot_conn->negotiated_login_options.auth_data.chap. 4977 intr_chap_name_length, 4978 (char *)&boot_conn->negotiated_login_options. 4979 auth_data.chap.intr_chap_name); 4980 break; 4981 case ISCSI_BOOT_TGT_REV_CHAP_SECRET: 4982 rc = sprintf(str, "%.*s\n", 4983 boot_conn->negotiated_login_options.auth_data.chap. 4984 intr_secret_length, 4985 (char *)&boot_conn->negotiated_login_options. 4986 auth_data.chap.intr_secret); 4987 break; 4988 case ISCSI_BOOT_TGT_FLAGS: 4989 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS); 4990 break; 4991 case ISCSI_BOOT_TGT_NIC_ASSOC: 4992 rc = sprintf(str, "0\n"); 4993 break; 4994 } 4995 return rc; 4996 } 4997 4998 static ssize_t beiscsi_show_boot_ini_info(void *data, int type, char *buf) 4999 { 5000 struct beiscsi_hba *phba = data; 5001 char *str = buf; 5002 int rc = -EPERM; 5003 5004 switch (type) { 5005 case ISCSI_BOOT_INI_INITIATOR_NAME: 5006 rc = sprintf(str, "%s\n", 5007 phba->boot_struct.boot_sess.initiator_iscsiname); 5008 break; 5009 } 5010 return rc; 5011 } 5012 5013 static ssize_t beiscsi_show_boot_eth_info(void *data, int type, char *buf) 5014 { 5015 struct beiscsi_hba *phba = data; 5016 char *str = buf; 5017 int rc = -EPERM; 5018 5019 switch (type) { 5020 case ISCSI_BOOT_ETH_FLAGS: 5021 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS); 5022 break; 5023 case ISCSI_BOOT_ETH_INDEX: 5024 rc = sprintf(str, "0\n"); 5025 break; 5026 case ISCSI_BOOT_ETH_MAC: 5027 rc = beiscsi_get_macaddr(str, phba); 5028 break; 5029 } 5030 return rc; 5031 } 5032 5033 static umode_t beiscsi_tgt_get_attr_visibility(void *data, int type) 5034 { 5035 umode_t rc = 0; 5036 5037 switch (type) { 5038 case ISCSI_BOOT_TGT_NAME: 5039 case ISCSI_BOOT_TGT_IP_ADDR: 5040 case ISCSI_BOOT_TGT_PORT: 5041 case ISCSI_BOOT_TGT_CHAP_NAME: 5042 case ISCSI_BOOT_TGT_CHAP_SECRET: 5043 case ISCSI_BOOT_TGT_REV_CHAP_NAME: 5044 case ISCSI_BOOT_TGT_REV_CHAP_SECRET: 5045 case ISCSI_BOOT_TGT_NIC_ASSOC: 5046 case ISCSI_BOOT_TGT_FLAGS: 5047 rc = S_IRUGO; 5048 break; 5049 } 5050 return rc; 5051 } 5052 5053 static umode_t beiscsi_ini_get_attr_visibility(void *data, int type) 5054 { 5055 umode_t rc = 0; 5056 5057 switch (type) { 5058 case ISCSI_BOOT_INI_INITIATOR_NAME: 5059 rc = S_IRUGO; 5060 break; 5061 } 5062 return rc; 5063 } 5064 5065 static umode_t beiscsi_eth_get_attr_visibility(void *data, int type) 5066 { 5067 umode_t rc = 0; 5068 5069 switch (type) { 5070 case ISCSI_BOOT_ETH_FLAGS: 5071 case ISCSI_BOOT_ETH_MAC: 5072 case ISCSI_BOOT_ETH_INDEX: 5073 rc = S_IRUGO; 5074 break; 5075 } 5076 return rc; 5077 } 5078 5079 static void beiscsi_boot_kobj_release(void *data) 5080 { 5081 struct beiscsi_hba *phba = data; 5082 5083 scsi_host_put(phba->shost); 5084 } 5085 5086 static int beiscsi_boot_create_kset(struct beiscsi_hba *phba) 5087 { 5088 struct boot_struct *bs = &phba->boot_struct; 5089 struct iscsi_boot_kobj *boot_kobj; 5090 5091 if (bs->boot_kset) { 5092 __beiscsi_log(phba, KERN_ERR, 5093 "BM_%d: boot_kset already created\n"); 5094 return 0; 5095 } 5096 5097 bs->boot_kset = iscsi_boot_create_host_kset(phba->shost->host_no); 5098 if (!bs->boot_kset) { 5099 __beiscsi_log(phba, KERN_ERR, 5100 "BM_%d: boot_kset alloc failed\n"); 5101 return -ENOMEM; 5102 } 5103 5104 /* get shost ref because the show function will refer phba */ 5105 if (!scsi_host_get(phba->shost)) 5106 goto free_kset; 5107 5108 boot_kobj = iscsi_boot_create_target(bs->boot_kset, 0, phba, 5109 beiscsi_show_boot_tgt_info, 5110 beiscsi_tgt_get_attr_visibility, 5111 beiscsi_boot_kobj_release); 5112 if (!boot_kobj) 5113 goto put_shost; 5114 5115 if (!scsi_host_get(phba->shost)) 5116 goto free_kset; 5117 5118 boot_kobj = iscsi_boot_create_initiator(bs->boot_kset, 0, phba, 5119 beiscsi_show_boot_ini_info, 5120 beiscsi_ini_get_attr_visibility, 5121 beiscsi_boot_kobj_release); 5122 if (!boot_kobj) 5123 goto put_shost; 5124 5125 if (!scsi_host_get(phba->shost)) 5126 goto free_kset; 5127 5128 boot_kobj = iscsi_boot_create_ethernet(bs->boot_kset, 0, phba, 5129 beiscsi_show_boot_eth_info, 5130 beiscsi_eth_get_attr_visibility, 5131 beiscsi_boot_kobj_release); 5132 if (!boot_kobj) 5133 goto put_shost; 5134 5135 return 0; 5136 5137 put_shost: 5138 scsi_host_put(phba->shost); 5139 free_kset: 5140 iscsi_boot_destroy_kset(bs->boot_kset); 5141 bs->boot_kset = NULL; 5142 return -ENOMEM; 5143 } 5144 5145 static void beiscsi_boot_work(struct work_struct *work) 5146 { 5147 struct beiscsi_hba *phba = 5148 container_of(work, struct beiscsi_hba, boot_work); 5149 struct boot_struct *bs = &phba->boot_struct; 5150 unsigned int tag = 0; 5151 5152 if (!beiscsi_hba_is_online(phba)) 5153 return; 5154 5155 beiscsi_log(phba, KERN_INFO, 5156 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, 5157 "BM_%d : %s action %d\n", 5158 __func__, phba->boot_struct.action); 5159 5160 switch (phba->boot_struct.action) { 5161 case BEISCSI_BOOT_REOPEN_SESS: 5162 tag = beiscsi_boot_reopen_sess(phba); 5163 break; 5164 case BEISCSI_BOOT_GET_SHANDLE: 5165 tag = __beiscsi_boot_get_shandle(phba, 1); 5166 break; 5167 case BEISCSI_BOOT_GET_SINFO: 5168 tag = beiscsi_boot_get_sinfo(phba); 5169 break; 5170 case BEISCSI_BOOT_LOGOUT_SESS: 5171 tag = beiscsi_boot_logout_sess(phba); 5172 break; 5173 case BEISCSI_BOOT_CREATE_KSET: 5174 beiscsi_boot_create_kset(phba); 5175 /** 5176 * updated boot_kset is made visible to all before 5177 * ending the boot work. 5178 */ 5179 mb(); 5180 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state); 5181 return; 5182 } 5183 if (!tag) { 5184 if (bs->retry--) 5185 schedule_work(&phba->boot_work); 5186 else 5187 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state); 5188 } 5189 } 5190 5191 static void beiscsi_eqd_update_work(struct work_struct *work) 5192 { 5193 struct hwi_context_memory *phwi_context; 5194 struct be_set_eqd set_eqd[MAX_CPUS]; 5195 struct hwi_controller *phwi_ctrlr; 5196 struct be_eq_obj *pbe_eq; 5197 struct beiscsi_hba *phba; 5198 unsigned int pps, delta; 5199 struct be_aic_obj *aic; 5200 int eqd, i, num = 0; 5201 unsigned long now; 5202 5203 phba = container_of(work, struct beiscsi_hba, eqd_update.work); 5204 if (!beiscsi_hba_is_online(phba)) 5205 return; 5206 5207 phwi_ctrlr = phba->phwi_ctrlr; 5208 phwi_context = phwi_ctrlr->phwi_ctxt; 5209 5210 for (i = 0; i <= phba->num_cpus; i++) { 5211 aic = &phba->aic_obj[i]; 5212 pbe_eq = &phwi_context->be_eq[i]; 5213 now = jiffies; 5214 if (!aic->jiffies || time_before(now, aic->jiffies) || 5215 pbe_eq->cq_count < aic->eq_prev) { 5216 aic->jiffies = now; 5217 aic->eq_prev = pbe_eq->cq_count; 5218 continue; 5219 } 5220 delta = jiffies_to_msecs(now - aic->jiffies); 5221 pps = (((u32)(pbe_eq->cq_count - aic->eq_prev) * 1000) / delta); 5222 eqd = (pps / 1500) << 2; 5223 5224 if (eqd < 8) 5225 eqd = 0; 5226 eqd = min_t(u32, eqd, BEISCSI_EQ_DELAY_MAX); 5227 eqd = max_t(u32, eqd, BEISCSI_EQ_DELAY_MIN); 5228 5229 aic->jiffies = now; 5230 aic->eq_prev = pbe_eq->cq_count; 5231 5232 if (eqd != aic->prev_eqd) { 5233 set_eqd[num].delay_multiplier = (eqd * 65)/100; 5234 set_eqd[num].eq_id = pbe_eq->q.id; 5235 aic->prev_eqd = eqd; 5236 num++; 5237 } 5238 } 5239 if (num) 5240 /* completion of this is ignored */ 5241 beiscsi_modify_eq_delay(phba, set_eqd, num); 5242 5243 schedule_delayed_work(&phba->eqd_update, 5244 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL)); 5245 } 5246 5247 static void beiscsi_hw_tpe_check(struct timer_list *t) 5248 { 5249 struct beiscsi_hba *phba = from_timer(phba, t, hw_check); 5250 u32 wait; 5251 5252 /* if not TPE, do nothing */ 5253 if (!beiscsi_detect_tpe(phba)) 5254 return; 5255 5256 /* wait default 4000ms before recovering */ 5257 wait = 4000; 5258 if (phba->ue2rp > BEISCSI_UE_DETECT_INTERVAL) 5259 wait = phba->ue2rp - BEISCSI_UE_DETECT_INTERVAL; 5260 queue_delayed_work(phba->wq, &phba->recover_port, 5261 msecs_to_jiffies(wait)); 5262 } 5263 5264 static void beiscsi_hw_health_check(struct timer_list *t) 5265 { 5266 struct beiscsi_hba *phba = from_timer(phba, t, hw_check); 5267 5268 beiscsi_detect_ue(phba); 5269 if (beiscsi_detect_ue(phba)) { 5270 __beiscsi_log(phba, KERN_ERR, 5271 "BM_%d : port in error: %lx\n", phba->state); 5272 /* sessions are no longer valid, so first fail the sessions */ 5273 queue_work(phba->wq, &phba->sess_work); 5274 5275 /* detect UER supported */ 5276 if (!test_bit(BEISCSI_HBA_UER_SUPP, &phba->state)) 5277 return; 5278 /* modify this timer to check TPE */ 5279 phba->hw_check.function = beiscsi_hw_tpe_check; 5280 } 5281 5282 mod_timer(&phba->hw_check, 5283 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL)); 5284 } 5285 5286 /* 5287 * beiscsi_enable_port()- Enables the disabled port. 5288 * Only port resources freed in disable function are reallocated. 5289 * This is called in HBA error handling path. 5290 * 5291 * @phba: Instance of driver private structure 5292 * 5293 **/ 5294 static int beiscsi_enable_port(struct beiscsi_hba *phba) 5295 { 5296 struct hwi_context_memory *phwi_context; 5297 struct hwi_controller *phwi_ctrlr; 5298 struct be_eq_obj *pbe_eq; 5299 int ret, i; 5300 5301 if (test_bit(BEISCSI_HBA_ONLINE, &phba->state)) { 5302 __beiscsi_log(phba, KERN_ERR, 5303 "BM_%d : %s : port is online %lx\n", 5304 __func__, phba->state); 5305 return 0; 5306 } 5307 5308 ret = beiscsi_init_sliport(phba); 5309 if (ret) 5310 return ret; 5311 5312 be2iscsi_enable_msix(phba); 5313 5314 beiscsi_get_params(phba); 5315 beiscsi_set_host_data(phba); 5316 /* Re-enable UER. If different TPE occurs then it is recoverable. */ 5317 beiscsi_set_uer_feature(phba); 5318 5319 phba->shost->max_id = phba->params.cxns_per_ctrl - 1; 5320 phba->shost->can_queue = phba->params.ios_per_ctrl; 5321 ret = beiscsi_init_port(phba); 5322 if (ret < 0) { 5323 __beiscsi_log(phba, KERN_ERR, 5324 "BM_%d : init port failed\n"); 5325 goto disable_msix; 5326 } 5327 5328 for (i = 0; i < MAX_MCC_CMD; i++) { 5329 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]); 5330 phba->ctrl.mcc_tag[i] = i + 1; 5331 phba->ctrl.mcc_tag_status[i + 1] = 0; 5332 phba->ctrl.mcc_tag_available++; 5333 } 5334 5335 phwi_ctrlr = phba->phwi_ctrlr; 5336 phwi_context = phwi_ctrlr->phwi_ctxt; 5337 for (i = 0; i < phba->num_cpus; i++) { 5338 pbe_eq = &phwi_context->be_eq[i]; 5339 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll); 5340 } 5341 5342 i = (phba->pcidev->msix_enabled) ? i : 0; 5343 /* Work item for MCC handling */ 5344 pbe_eq = &phwi_context->be_eq[i]; 5345 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work); 5346 5347 ret = beiscsi_init_irqs(phba); 5348 if (ret < 0) { 5349 __beiscsi_log(phba, KERN_ERR, 5350 "BM_%d : setup IRQs failed %d\n", ret); 5351 goto cleanup_port; 5352 } 5353 hwi_enable_intr(phba); 5354 /* port operational: clear all error bits */ 5355 set_bit(BEISCSI_HBA_ONLINE, &phba->state); 5356 __beiscsi_log(phba, KERN_INFO, 5357 "BM_%d : port online: 0x%lx\n", phba->state); 5358 5359 /* start hw_check timer and eqd_update work */ 5360 schedule_delayed_work(&phba->eqd_update, 5361 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL)); 5362 5363 /** 5364 * Timer function gets modified for TPE detection. 5365 * Always reinit to do health check first. 5366 */ 5367 phba->hw_check.function = beiscsi_hw_health_check; 5368 mod_timer(&phba->hw_check, 5369 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL)); 5370 return 0; 5371 5372 cleanup_port: 5373 for (i = 0; i < phba->num_cpus; i++) { 5374 pbe_eq = &phwi_context->be_eq[i]; 5375 irq_poll_disable(&pbe_eq->iopoll); 5376 } 5377 hwi_cleanup_port(phba); 5378 5379 disable_msix: 5380 pci_free_irq_vectors(phba->pcidev); 5381 return ret; 5382 } 5383 5384 /* 5385 * beiscsi_disable_port()- Disable port and cleanup driver resources. 5386 * This is called in HBA error handling and driver removal. 5387 * @phba: Instance Priv structure 5388 * @unload: indicate driver is unloading 5389 * 5390 * Free the OS and HW resources held by the driver 5391 **/ 5392 static void beiscsi_disable_port(struct beiscsi_hba *phba, int unload) 5393 { 5394 struct hwi_context_memory *phwi_context; 5395 struct hwi_controller *phwi_ctrlr; 5396 struct be_eq_obj *pbe_eq; 5397 unsigned int i; 5398 5399 if (!test_and_clear_bit(BEISCSI_HBA_ONLINE, &phba->state)) 5400 return; 5401 5402 phwi_ctrlr = phba->phwi_ctrlr; 5403 phwi_context = phwi_ctrlr->phwi_ctxt; 5404 hwi_disable_intr(phba); 5405 beiscsi_free_irqs(phba); 5406 pci_free_irq_vectors(phba->pcidev); 5407 5408 for (i = 0; i < phba->num_cpus; i++) { 5409 pbe_eq = &phwi_context->be_eq[i]; 5410 irq_poll_disable(&pbe_eq->iopoll); 5411 } 5412 cancel_delayed_work_sync(&phba->eqd_update); 5413 cancel_work_sync(&phba->boot_work); 5414 /* WQ might be running cancel queued mcc_work if we are not exiting */ 5415 if (!unload && beiscsi_hba_in_error(phba)) { 5416 pbe_eq = &phwi_context->be_eq[i]; 5417 cancel_work_sync(&pbe_eq->mcc_work); 5418 } 5419 hwi_cleanup_port(phba); 5420 beiscsi_cleanup_port(phba); 5421 } 5422 5423 static void beiscsi_sess_work(struct work_struct *work) 5424 { 5425 struct beiscsi_hba *phba; 5426 5427 phba = container_of(work, struct beiscsi_hba, sess_work); 5428 /* 5429 * This work gets scheduled only in case of HBA error. 5430 * Old sessions are gone so need to be re-established. 5431 * iscsi_session_failure needs process context hence this work. 5432 */ 5433 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail); 5434 } 5435 5436 static void beiscsi_recover_port(struct work_struct *work) 5437 { 5438 struct beiscsi_hba *phba; 5439 5440 phba = container_of(work, struct beiscsi_hba, recover_port.work); 5441 beiscsi_disable_port(phba, 0); 5442 beiscsi_enable_port(phba); 5443 } 5444 5445 static pci_ers_result_t beiscsi_eeh_err_detected(struct pci_dev *pdev, 5446 pci_channel_state_t state) 5447 { 5448 struct beiscsi_hba *phba = NULL; 5449 5450 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev); 5451 set_bit(BEISCSI_HBA_PCI_ERR, &phba->state); 5452 5453 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5454 "BM_%d : EEH error detected\n"); 5455 5456 /* first stop UE detection when PCI error detected */ 5457 del_timer_sync(&phba->hw_check); 5458 cancel_delayed_work_sync(&phba->recover_port); 5459 5460 /* sessions are no longer valid, so first fail the sessions */ 5461 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail); 5462 beiscsi_disable_port(phba, 0); 5463 5464 if (state == pci_channel_io_perm_failure) { 5465 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5466 "BM_%d : EEH : State PERM Failure"); 5467 return PCI_ERS_RESULT_DISCONNECT; 5468 } 5469 5470 pci_disable_device(pdev); 5471 5472 /* The error could cause the FW to trigger a flash debug dump. 5473 * Resetting the card while flash dump is in progress 5474 * can cause it not to recover; wait for it to finish. 5475 * Wait only for first function as it is needed only once per 5476 * adapter. 5477 **/ 5478 if (pdev->devfn == 0) 5479 ssleep(30); 5480 5481 return PCI_ERS_RESULT_NEED_RESET; 5482 } 5483 5484 static pci_ers_result_t beiscsi_eeh_reset(struct pci_dev *pdev) 5485 { 5486 struct beiscsi_hba *phba = NULL; 5487 int status = 0; 5488 5489 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev); 5490 5491 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5492 "BM_%d : EEH Reset\n"); 5493 5494 status = pci_enable_device(pdev); 5495 if (status) 5496 return PCI_ERS_RESULT_DISCONNECT; 5497 5498 pci_set_master(pdev); 5499 pci_set_power_state(pdev, PCI_D0); 5500 pci_restore_state(pdev); 5501 5502 status = beiscsi_check_fw_rdy(phba); 5503 if (status) { 5504 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT, 5505 "BM_%d : EEH Reset Completed\n"); 5506 } else { 5507 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT, 5508 "BM_%d : EEH Reset Completion Failure\n"); 5509 return PCI_ERS_RESULT_DISCONNECT; 5510 } 5511 5512 return PCI_ERS_RESULT_RECOVERED; 5513 } 5514 5515 static void beiscsi_eeh_resume(struct pci_dev *pdev) 5516 { 5517 struct beiscsi_hba *phba; 5518 int ret; 5519 5520 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev); 5521 pci_save_state(pdev); 5522 5523 ret = beiscsi_enable_port(phba); 5524 if (ret) 5525 __beiscsi_log(phba, KERN_ERR, 5526 "BM_%d : AER EEH resume failed\n"); 5527 } 5528 5529 static int beiscsi_dev_probe(struct pci_dev *pcidev, 5530 const struct pci_device_id *id) 5531 { 5532 struct hwi_context_memory *phwi_context; 5533 struct hwi_controller *phwi_ctrlr; 5534 struct beiscsi_hba *phba = NULL; 5535 struct be_eq_obj *pbe_eq; 5536 unsigned int s_handle; 5537 char wq_name[20]; 5538 int ret, i; 5539 5540 ret = beiscsi_enable_pci(pcidev); 5541 if (ret < 0) { 5542 dev_err(&pcidev->dev, 5543 "beiscsi_dev_probe - Failed to enable pci device\n"); 5544 return ret; 5545 } 5546 5547 phba = beiscsi_hba_alloc(pcidev); 5548 if (!phba) { 5549 dev_err(&pcidev->dev, 5550 "beiscsi_dev_probe - Failed in beiscsi_hba_alloc\n"); 5551 ret = -ENOMEM; 5552 goto disable_pci; 5553 } 5554 5555 /* Enable EEH reporting */ 5556 ret = pci_enable_pcie_error_reporting(pcidev); 5557 if (ret) 5558 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT, 5559 "BM_%d : PCIe Error Reporting " 5560 "Enabling Failed\n"); 5561 5562 pci_save_state(pcidev); 5563 5564 /* Initialize Driver configuration Paramters */ 5565 beiscsi_hba_attrs_init(phba); 5566 5567 phba->mac_addr_set = false; 5568 5569 switch (pcidev->device) { 5570 case BE_DEVICE_ID1: 5571 case OC_DEVICE_ID1: 5572 case OC_DEVICE_ID2: 5573 phba->generation = BE_GEN2; 5574 phba->iotask_fn = beiscsi_iotask; 5575 dev_warn(&pcidev->dev, 5576 "Obsolete/Unsupported BE2 Adapter Family\n"); 5577 break; 5578 case BE_DEVICE_ID2: 5579 case OC_DEVICE_ID3: 5580 phba->generation = BE_GEN3; 5581 phba->iotask_fn = beiscsi_iotask; 5582 break; 5583 case OC_SKH_ID1: 5584 phba->generation = BE_GEN4; 5585 phba->iotask_fn = beiscsi_iotask_v2; 5586 break; 5587 default: 5588 phba->generation = 0; 5589 } 5590 5591 ret = be_ctrl_init(phba, pcidev); 5592 if (ret) { 5593 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5594 "BM_%d : be_ctrl_init failed\n"); 5595 goto free_hba; 5596 } 5597 5598 ret = beiscsi_init_sliport(phba); 5599 if (ret) 5600 goto free_hba; 5601 5602 spin_lock_init(&phba->io_sgl_lock); 5603 spin_lock_init(&phba->mgmt_sgl_lock); 5604 spin_lock_init(&phba->async_pdu_lock); 5605 ret = beiscsi_get_fw_config(&phba->ctrl, phba); 5606 if (ret != 0) { 5607 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5608 "BM_%d : Error getting fw config\n"); 5609 goto free_port; 5610 } 5611 beiscsi_get_port_name(&phba->ctrl, phba); 5612 beiscsi_get_params(phba); 5613 beiscsi_set_host_data(phba); 5614 beiscsi_set_uer_feature(phba); 5615 5616 be2iscsi_enable_msix(phba); 5617 5618 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 5619 "BM_%d : num_cpus = %d\n", 5620 phba->num_cpus); 5621 5622 phba->shost->max_id = phba->params.cxns_per_ctrl; 5623 phba->shost->can_queue = phba->params.ios_per_ctrl; 5624 ret = beiscsi_get_memory(phba); 5625 if (ret < 0) { 5626 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5627 "BM_%d : alloc host mem failed\n"); 5628 goto free_port; 5629 } 5630 5631 ret = beiscsi_init_port(phba); 5632 if (ret < 0) { 5633 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5634 "BM_%d : init port failed\n"); 5635 beiscsi_free_mem(phba); 5636 goto free_port; 5637 } 5638 5639 for (i = 0; i < MAX_MCC_CMD; i++) { 5640 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]); 5641 phba->ctrl.mcc_tag[i] = i + 1; 5642 phba->ctrl.mcc_tag_status[i + 1] = 0; 5643 phba->ctrl.mcc_tag_available++; 5644 memset(&phba->ctrl.ptag_state[i].tag_mem_state, 0, 5645 sizeof(struct be_dma_mem)); 5646 } 5647 5648 phba->ctrl.mcc_alloc_index = phba->ctrl.mcc_free_index = 0; 5649 5650 snprintf(wq_name, sizeof(wq_name), "beiscsi_%02x_wq", 5651 phba->shost->host_no); 5652 phba->wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, wq_name); 5653 if (!phba->wq) { 5654 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5655 "BM_%d : beiscsi_dev_probe-" 5656 "Failed to allocate work queue\n"); 5657 ret = -ENOMEM; 5658 goto free_twq; 5659 } 5660 5661 INIT_DELAYED_WORK(&phba->eqd_update, beiscsi_eqd_update_work); 5662 5663 phwi_ctrlr = phba->phwi_ctrlr; 5664 phwi_context = phwi_ctrlr->phwi_ctxt; 5665 5666 for (i = 0; i < phba->num_cpus; i++) { 5667 pbe_eq = &phwi_context->be_eq[i]; 5668 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll); 5669 } 5670 5671 i = (phba->pcidev->msix_enabled) ? i : 0; 5672 /* Work item for MCC handling */ 5673 pbe_eq = &phwi_context->be_eq[i]; 5674 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work); 5675 5676 ret = beiscsi_init_irqs(phba); 5677 if (ret < 0) { 5678 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, 5679 "BM_%d : beiscsi_dev_probe-" 5680 "Failed to beiscsi_init_irqs\n"); 5681 goto disable_iopoll; 5682 } 5683 hwi_enable_intr(phba); 5684 5685 ret = iscsi_host_add(phba->shost, &phba->pcidev->dev); 5686 if (ret) 5687 goto free_irqs; 5688 5689 /* set online bit after port is operational */ 5690 set_bit(BEISCSI_HBA_ONLINE, &phba->state); 5691 __beiscsi_log(phba, KERN_INFO, 5692 "BM_%d : port online: 0x%lx\n", phba->state); 5693 5694 INIT_WORK(&phba->boot_work, beiscsi_boot_work); 5695 ret = beiscsi_boot_get_shandle(phba, &s_handle); 5696 if (ret > 0) { 5697 beiscsi_start_boot_work(phba, s_handle); 5698 /** 5699 * Set this bit after starting the work to let 5700 * probe handle it first. 5701 * ASYNC event can too schedule this work. 5702 */ 5703 set_bit(BEISCSI_HBA_BOOT_FOUND, &phba->state); 5704 } 5705 5706 beiscsi_iface_create_default(phba); 5707 schedule_delayed_work(&phba->eqd_update, 5708 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL)); 5709 5710 INIT_WORK(&phba->sess_work, beiscsi_sess_work); 5711 INIT_DELAYED_WORK(&phba->recover_port, beiscsi_recover_port); 5712 /** 5713 * Start UE detection here. UE before this will cause stall in probe 5714 * and eventually fail the probe. 5715 */ 5716 timer_setup(&phba->hw_check, beiscsi_hw_health_check, 0); 5717 mod_timer(&phba->hw_check, 5718 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL)); 5719 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, 5720 "\n\n\n BM_%d : SUCCESS - DRIVER LOADED\n\n\n"); 5721 return 0; 5722 5723 free_irqs: 5724 hwi_disable_intr(phba); 5725 beiscsi_free_irqs(phba); 5726 disable_iopoll: 5727 for (i = 0; i < phba->num_cpus; i++) { 5728 pbe_eq = &phwi_context->be_eq[i]; 5729 irq_poll_disable(&pbe_eq->iopoll); 5730 } 5731 destroy_workqueue(phba->wq); 5732 free_twq: 5733 hwi_cleanup_port(phba); 5734 beiscsi_cleanup_port(phba); 5735 beiscsi_free_mem(phba); 5736 free_port: 5737 dma_free_coherent(&phba->pcidev->dev, 5738 phba->ctrl.mbox_mem_alloced.size, 5739 phba->ctrl.mbox_mem_alloced.va, 5740 phba->ctrl.mbox_mem_alloced.dma); 5741 beiscsi_unmap_pci_function(phba); 5742 free_hba: 5743 pci_disable_msix(phba->pcidev); 5744 pci_dev_put(phba->pcidev); 5745 iscsi_host_free(phba->shost); 5746 pci_set_drvdata(pcidev, NULL); 5747 disable_pci: 5748 pci_release_regions(pcidev); 5749 pci_disable_device(pcidev); 5750 return ret; 5751 } 5752 5753 static void beiscsi_remove(struct pci_dev *pcidev) 5754 { 5755 struct beiscsi_hba *phba = NULL; 5756 5757 phba = pci_get_drvdata(pcidev); 5758 if (!phba) { 5759 dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n"); 5760 return; 5761 } 5762 5763 /* first stop UE detection before unloading */ 5764 del_timer_sync(&phba->hw_check); 5765 cancel_delayed_work_sync(&phba->recover_port); 5766 cancel_work_sync(&phba->sess_work); 5767 5768 beiscsi_iface_destroy_default(phba); 5769 iscsi_host_remove(phba->shost); 5770 beiscsi_disable_port(phba, 1); 5771 5772 /* after cancelling boot_work */ 5773 iscsi_boot_destroy_kset(phba->boot_struct.boot_kset); 5774 5775 /* free all resources */ 5776 destroy_workqueue(phba->wq); 5777 beiscsi_free_mem(phba); 5778 5779 /* ctrl uninit */ 5780 beiscsi_unmap_pci_function(phba); 5781 dma_free_coherent(&phba->pcidev->dev, 5782 phba->ctrl.mbox_mem_alloced.size, 5783 phba->ctrl.mbox_mem_alloced.va, 5784 phba->ctrl.mbox_mem_alloced.dma); 5785 5786 pci_dev_put(phba->pcidev); 5787 iscsi_host_free(phba->shost); 5788 pci_disable_pcie_error_reporting(pcidev); 5789 pci_set_drvdata(pcidev, NULL); 5790 pci_release_regions(pcidev); 5791 pci_disable_device(pcidev); 5792 } 5793 5794 5795 static struct pci_error_handlers beiscsi_eeh_handlers = { 5796 .error_detected = beiscsi_eeh_err_detected, 5797 .slot_reset = beiscsi_eeh_reset, 5798 .resume = beiscsi_eeh_resume, 5799 }; 5800 5801 struct iscsi_transport beiscsi_iscsi_transport = { 5802 .owner = THIS_MODULE, 5803 .name = DRV_NAME, 5804 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_TEXT_NEGO | 5805 CAP_MULTI_R2T | CAP_DATADGST | CAP_DATA_PATH_OFFLOAD, 5806 .create_session = beiscsi_session_create, 5807 .destroy_session = beiscsi_session_destroy, 5808 .create_conn = beiscsi_conn_create, 5809 .bind_conn = beiscsi_conn_bind, 5810 .unbind_conn = iscsi_conn_unbind, 5811 .destroy_conn = iscsi_conn_teardown, 5812 .attr_is_visible = beiscsi_attr_is_visible, 5813 .set_iface_param = beiscsi_iface_set_param, 5814 .get_iface_param = beiscsi_iface_get_param, 5815 .set_param = beiscsi_set_param, 5816 .get_conn_param = iscsi_conn_get_param, 5817 .get_session_param = iscsi_session_get_param, 5818 .get_host_param = beiscsi_get_host_param, 5819 .start_conn = beiscsi_conn_start, 5820 .stop_conn = iscsi_conn_stop, 5821 .send_pdu = iscsi_conn_send_pdu, 5822 .xmit_task = beiscsi_task_xmit, 5823 .cleanup_task = beiscsi_cleanup_task, 5824 .alloc_pdu = beiscsi_alloc_pdu, 5825 .parse_pdu_itt = beiscsi_parse_pdu, 5826 .get_stats = beiscsi_conn_get_stats, 5827 .get_ep_param = beiscsi_ep_get_param, 5828 .ep_connect = beiscsi_ep_connect, 5829 .ep_poll = beiscsi_ep_poll, 5830 .ep_disconnect = beiscsi_ep_disconnect, 5831 .session_recovery_timedout = iscsi_session_recovery_timedout, 5832 .bsg_request = beiscsi_bsg_request, 5833 }; 5834 5835 static struct pci_driver beiscsi_pci_driver = { 5836 .name = DRV_NAME, 5837 .probe = beiscsi_dev_probe, 5838 .remove = beiscsi_remove, 5839 .id_table = beiscsi_pci_id_table, 5840 .err_handler = &beiscsi_eeh_handlers 5841 }; 5842 5843 static int __init beiscsi_module_init(void) 5844 { 5845 int ret; 5846 5847 beiscsi_scsi_transport = 5848 iscsi_register_transport(&beiscsi_iscsi_transport); 5849 if (!beiscsi_scsi_transport) { 5850 printk(KERN_ERR 5851 "beiscsi_module_init - Unable to register beiscsi transport.\n"); 5852 return -ENOMEM; 5853 } 5854 printk(KERN_INFO "In beiscsi_module_init, tt=%p\n", 5855 &beiscsi_iscsi_transport); 5856 5857 ret = pci_register_driver(&beiscsi_pci_driver); 5858 if (ret) { 5859 printk(KERN_ERR 5860 "beiscsi_module_init - Unable to register beiscsi pci driver.\n"); 5861 goto unregister_iscsi_transport; 5862 } 5863 return 0; 5864 5865 unregister_iscsi_transport: 5866 iscsi_unregister_transport(&beiscsi_iscsi_transport); 5867 return ret; 5868 } 5869 5870 static void __exit beiscsi_module_exit(void) 5871 { 5872 pci_unregister_driver(&beiscsi_pci_driver); 5873 iscsi_unregister_transport(&beiscsi_iscsi_transport); 5874 } 5875 5876 module_init(beiscsi_module_init); 5877 module_exit(beiscsi_module_exit); 5878