linux/drivers/scsi/qedi/qedi_main.c
<<
>>
Prefs
   1/*
   2 * QLogic iSCSI Offload Driver
   3 * Copyright (c) 2016 Cavium Inc.
   4 *
   5 * This software is available under the terms of the GNU General Public License
   6 * (GPL) Version 2, available from the file COPYING in the main directory of
   7 * this source tree.
   8 */
   9
  10#include <linux/module.h>
  11#include <linux/pci.h>
  12#include <linux/kernel.h>
  13#include <linux/if_arp.h>
  14#include <scsi/iscsi_if.h>
  15#include <linux/inet.h>
  16#include <net/arp.h>
  17#include <linux/list.h>
  18#include <linux/kthread.h>
  19#include <linux/mm.h>
  20#include <linux/if_vlan.h>
  21#include <linux/cpu.h>
  22#include <linux/iscsi_boot_sysfs.h>
  23
  24#include <scsi/scsi_cmnd.h>
  25#include <scsi/scsi_device.h>
  26#include <scsi/scsi_eh.h>
  27#include <scsi/scsi_host.h>
  28#include <scsi/scsi.h>
  29
  30#include "qedi.h"
  31#include "qedi_gbl.h"
  32#include "qedi_iscsi.h"
  33
  34static uint qedi_fw_debug;
  35module_param(qedi_fw_debug, uint, 0644);
  36MODULE_PARM_DESC(qedi_fw_debug, " Firmware debug level 0(default) to 3");
  37
  38uint qedi_dbg_log = QEDI_LOG_WARN | QEDI_LOG_SCSI_TM;
  39module_param(qedi_dbg_log, uint, 0644);
  40MODULE_PARM_DESC(qedi_dbg_log, " Default debug level");
  41
  42uint qedi_io_tracing;
  43module_param(qedi_io_tracing, uint, 0644);
  44MODULE_PARM_DESC(qedi_io_tracing,
  45                 " Enable logging of SCSI requests/completions into trace buffer. (default off).");
  46
  47const struct qed_iscsi_ops *qedi_ops;
  48static struct scsi_transport_template *qedi_scsi_transport;
  49static struct pci_driver qedi_pci_driver;
  50static DEFINE_PER_CPU(struct qedi_percpu_s, qedi_percpu);
  51static LIST_HEAD(qedi_udev_list);
  52/* Static function declaration */
  53static int qedi_alloc_global_queues(struct qedi_ctx *qedi);
  54static void qedi_free_global_queues(struct qedi_ctx *qedi);
  55static struct qedi_cmd *qedi_get_cmd_from_tid(struct qedi_ctx *qedi, u32 tid);
  56static void qedi_reset_uio_rings(struct qedi_uio_dev *udev);
  57static void qedi_ll2_free_skbs(struct qedi_ctx *qedi);
  58static struct nvm_iscsi_block *qedi_get_nvram_block(struct qedi_ctx *qedi);
  59
  60static int qedi_iscsi_event_cb(void *context, u8 fw_event_code, void *fw_handle)
  61{
  62        struct qedi_ctx *qedi;
  63        struct qedi_endpoint *qedi_ep;
  64        struct iscsi_eqe_data *data;
  65        int rval = 0;
  66
  67        if (!context || !fw_handle) {
  68                QEDI_ERR(NULL, "Recv event with ctx NULL\n");
  69                return -EINVAL;
  70        }
  71
  72        qedi = (struct qedi_ctx *)context;
  73        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
  74                  "Recv Event %d fw_handle %p\n", fw_event_code, fw_handle);
  75
  76        data = (struct iscsi_eqe_data *)fw_handle;
  77        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
  78                  "icid=0x%x conn_id=0x%x err-code=0x%x error-pdu-opcode-reserved=0x%x\n",
  79                   data->icid, data->conn_id, data->error_code,
  80                   data->error_pdu_opcode_reserved);
  81
  82        qedi_ep = qedi->ep_tbl[data->icid];
  83
  84        if (!qedi_ep) {
  85                QEDI_WARN(&qedi->dbg_ctx,
  86                          "Cannot process event, ep already disconnected, cid=0x%x\n",
  87                           data->icid);
  88                WARN_ON(1);
  89                return -ENODEV;
  90        }
  91
  92        switch (fw_event_code) {
  93        case ISCSI_EVENT_TYPE_ASYN_CONNECT_COMPLETE:
  94                if (qedi_ep->state == EP_STATE_OFLDCONN_START)
  95                        qedi_ep->state = EP_STATE_OFLDCONN_COMPL;
  96
  97                wake_up_interruptible(&qedi_ep->tcp_ofld_wait);
  98                break;
  99        case ISCSI_EVENT_TYPE_ASYN_TERMINATE_DONE:
 100                qedi_ep->state = EP_STATE_DISCONN_COMPL;
 101                wake_up_interruptible(&qedi_ep->tcp_ofld_wait);
 102                break;
 103        case ISCSI_EVENT_TYPE_ISCSI_CONN_ERROR:
 104                qedi_process_iscsi_error(qedi_ep, data);
 105                break;
 106        case ISCSI_EVENT_TYPE_ASYN_ABORT_RCVD:
 107        case ISCSI_EVENT_TYPE_ASYN_SYN_RCVD:
 108        case ISCSI_EVENT_TYPE_ASYN_MAX_RT_TIME:
 109        case ISCSI_EVENT_TYPE_ASYN_MAX_RT_CNT:
 110        case ISCSI_EVENT_TYPE_ASYN_MAX_KA_PROBES_CNT:
 111        case ISCSI_EVENT_TYPE_ASYN_FIN_WAIT2:
 112        case ISCSI_EVENT_TYPE_TCP_CONN_ERROR:
 113                qedi_process_tcp_error(qedi_ep, data);
 114                break;
 115        default:
 116                QEDI_ERR(&qedi->dbg_ctx, "Recv Unknown Event %u\n",
 117                         fw_event_code);
 118        }
 119
 120        return rval;
 121}
 122
 123static int qedi_uio_open(struct uio_info *uinfo, struct inode *inode)
 124{
 125        struct qedi_uio_dev *udev = uinfo->priv;
 126        struct qedi_ctx *qedi = udev->qedi;
 127
 128        if (!capable(CAP_NET_ADMIN))
 129                return -EPERM;
 130
 131        if (udev->uio_dev != -1)
 132                return -EBUSY;
 133
 134        rtnl_lock();
 135        udev->uio_dev = iminor(inode);
 136        qedi_reset_uio_rings(udev);
 137        set_bit(UIO_DEV_OPENED, &qedi->flags);
 138        rtnl_unlock();
 139
 140        return 0;
 141}
 142
 143static int qedi_uio_close(struct uio_info *uinfo, struct inode *inode)
 144{
 145        struct qedi_uio_dev *udev = uinfo->priv;
 146        struct qedi_ctx *qedi = udev->qedi;
 147
 148        udev->uio_dev = -1;
 149        clear_bit(UIO_DEV_OPENED, &qedi->flags);
 150        qedi_ll2_free_skbs(qedi);
 151        return 0;
 152}
 153
 154static void __qedi_free_uio_rings(struct qedi_uio_dev *udev)
 155{
 156        if (udev->uctrl) {
 157                free_page((unsigned long)udev->uctrl);
 158                udev->uctrl = NULL;
 159        }
 160
 161        if (udev->ll2_ring) {
 162                free_page((unsigned long)udev->ll2_ring);
 163                udev->ll2_ring = NULL;
 164        }
 165
 166        if (udev->ll2_buf) {
 167                free_pages((unsigned long)udev->ll2_buf, 2);
 168                udev->ll2_buf = NULL;
 169        }
 170}
 171
 172static void __qedi_free_uio(struct qedi_uio_dev *udev)
 173{
 174        uio_unregister_device(&udev->qedi_uinfo);
 175
 176        __qedi_free_uio_rings(udev);
 177
 178        pci_dev_put(udev->pdev);
 179        kfree(udev);
 180}
 181
 182static void qedi_free_uio(struct qedi_uio_dev *udev)
 183{
 184        if (!udev)
 185                return;
 186
 187        list_del_init(&udev->list);
 188        __qedi_free_uio(udev);
 189}
 190
 191static void qedi_reset_uio_rings(struct qedi_uio_dev *udev)
 192{
 193        struct qedi_ctx *qedi = NULL;
 194        struct qedi_uio_ctrl *uctrl = NULL;
 195
 196        qedi = udev->qedi;
 197        uctrl = udev->uctrl;
 198
 199        spin_lock_bh(&qedi->ll2_lock);
 200        uctrl->host_rx_cons = 0;
 201        uctrl->hw_rx_prod = 0;
 202        uctrl->hw_rx_bd_prod = 0;
 203        uctrl->host_rx_bd_cons = 0;
 204
 205        memset(udev->ll2_ring, 0, udev->ll2_ring_size);
 206        memset(udev->ll2_buf, 0, udev->ll2_buf_size);
 207        spin_unlock_bh(&qedi->ll2_lock);
 208}
 209
 210static int __qedi_alloc_uio_rings(struct qedi_uio_dev *udev)
 211{
 212        int rc = 0;
 213
 214        if (udev->ll2_ring || udev->ll2_buf)
 215                return rc;
 216
 217        /* Memory for control area.  */
 218        udev->uctrl = (void *)get_zeroed_page(GFP_KERNEL);
 219        if (!udev->uctrl)
 220                return -ENOMEM;
 221
 222        /* Allocating memory for LL2 ring  */
 223        udev->ll2_ring_size = QEDI_PAGE_SIZE;
 224        udev->ll2_ring = (void *)get_zeroed_page(GFP_KERNEL | __GFP_COMP);
 225        if (!udev->ll2_ring) {
 226                rc = -ENOMEM;
 227                goto exit_alloc_ring;
 228        }
 229
 230        /* Allocating memory for Tx/Rx pkt buffer */
 231        udev->ll2_buf_size = TX_RX_RING * LL2_SINGLE_BUF_SIZE;
 232        udev->ll2_buf_size = QEDI_PAGE_ALIGN(udev->ll2_buf_size);
 233        udev->ll2_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_COMP |
 234                                                 __GFP_ZERO, 2);
 235        if (!udev->ll2_buf) {
 236                rc = -ENOMEM;
 237                goto exit_alloc_buf;
 238        }
 239        return rc;
 240
 241exit_alloc_buf:
 242        free_page((unsigned long)udev->ll2_ring);
 243        udev->ll2_ring = NULL;
 244exit_alloc_ring:
 245        return rc;
 246}
 247
 248static int qedi_alloc_uio_rings(struct qedi_ctx *qedi)
 249{
 250        struct qedi_uio_dev *udev = NULL;
 251        int rc = 0;
 252
 253        list_for_each_entry(udev, &qedi_udev_list, list) {
 254                if (udev->pdev == qedi->pdev) {
 255                        udev->qedi = qedi;
 256                        if (__qedi_alloc_uio_rings(udev)) {
 257                                udev->qedi = NULL;
 258                                return -ENOMEM;
 259                        }
 260                        qedi->udev = udev;
 261                        return 0;
 262                }
 263        }
 264
 265        udev = kzalloc(sizeof(*udev), GFP_KERNEL);
 266        if (!udev) {
 267                rc = -ENOMEM;
 268                goto err_udev;
 269        }
 270
 271        udev->uio_dev = -1;
 272
 273        udev->qedi = qedi;
 274        udev->pdev = qedi->pdev;
 275
 276        rc = __qedi_alloc_uio_rings(udev);
 277        if (rc)
 278                goto err_uctrl;
 279
 280        list_add(&udev->list, &qedi_udev_list);
 281
 282        pci_dev_get(udev->pdev);
 283        qedi->udev = udev;
 284
 285        udev->tx_pkt = udev->ll2_buf;
 286        udev->rx_pkt = udev->ll2_buf + LL2_SINGLE_BUF_SIZE;
 287        return 0;
 288
 289 err_uctrl:
 290        kfree(udev);
 291 err_udev:
 292        return -ENOMEM;
 293}
 294
 295static int qedi_init_uio(struct qedi_ctx *qedi)
 296{
 297        struct qedi_uio_dev *udev = qedi->udev;
 298        struct uio_info *uinfo;
 299        int ret = 0;
 300
 301        if (!udev)
 302                return -ENOMEM;
 303
 304        uinfo = &udev->qedi_uinfo;
 305
 306        uinfo->mem[0].addr = (unsigned long)udev->uctrl;
 307        uinfo->mem[0].size = sizeof(struct qedi_uio_ctrl);
 308        uinfo->mem[0].memtype = UIO_MEM_LOGICAL;
 309
 310        uinfo->mem[1].addr = (unsigned long)udev->ll2_ring;
 311        uinfo->mem[1].size = udev->ll2_ring_size;
 312        uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
 313
 314        uinfo->mem[2].addr = (unsigned long)udev->ll2_buf;
 315        uinfo->mem[2].size = udev->ll2_buf_size;
 316        uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
 317
 318        uinfo->name = "qedi_uio";
 319        uinfo->version = QEDI_MODULE_VERSION;
 320        uinfo->irq = UIO_IRQ_CUSTOM;
 321
 322        uinfo->open = qedi_uio_open;
 323        uinfo->release = qedi_uio_close;
 324
 325        if (udev->uio_dev == -1) {
 326                if (!uinfo->priv) {
 327                        uinfo->priv = udev;
 328
 329                        ret = uio_register_device(&udev->pdev->dev, uinfo);
 330                        if (ret) {
 331                                QEDI_ERR(&qedi->dbg_ctx,
 332                                         "UIO registration failed\n");
 333                        }
 334                }
 335        }
 336
 337        return ret;
 338}
 339
 340static int qedi_alloc_and_init_sb(struct qedi_ctx *qedi,
 341                                  struct qed_sb_info *sb_info, u16 sb_id)
 342{
 343        struct status_block_e4 *sb_virt;
 344        dma_addr_t sb_phys;
 345        int ret;
 346
 347        sb_virt = dma_alloc_coherent(&qedi->pdev->dev,
 348                                     sizeof(struct status_block_e4), &sb_phys,
 349                                     GFP_KERNEL);
 350        if (!sb_virt) {
 351                QEDI_ERR(&qedi->dbg_ctx,
 352                         "Status block allocation failed for id = %d.\n",
 353                          sb_id);
 354                return -ENOMEM;
 355        }
 356
 357        ret = qedi_ops->common->sb_init(qedi->cdev, sb_info, sb_virt, sb_phys,
 358                                       sb_id, QED_SB_TYPE_STORAGE);
 359        if (ret) {
 360                QEDI_ERR(&qedi->dbg_ctx,
 361                         "Status block initialization failed for id = %d.\n",
 362                          sb_id);
 363                return ret;
 364        }
 365
 366        return 0;
 367}
 368
 369static void qedi_free_sb(struct qedi_ctx *qedi)
 370{
 371        struct qed_sb_info *sb_info;
 372        int id;
 373
 374        for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
 375                sb_info = &qedi->sb_array[id];
 376                if (sb_info->sb_virt)
 377                        dma_free_coherent(&qedi->pdev->dev,
 378                                          sizeof(*sb_info->sb_virt),
 379                                          (void *)sb_info->sb_virt,
 380                                          sb_info->sb_phys);
 381        }
 382}
 383
 384static void qedi_free_fp(struct qedi_ctx *qedi)
 385{
 386        kfree(qedi->fp_array);
 387        kfree(qedi->sb_array);
 388}
 389
 390static void qedi_destroy_fp(struct qedi_ctx *qedi)
 391{
 392        qedi_free_sb(qedi);
 393        qedi_free_fp(qedi);
 394}
 395
 396static int qedi_alloc_fp(struct qedi_ctx *qedi)
 397{
 398        int ret = 0;
 399
 400        qedi->fp_array = kcalloc(MIN_NUM_CPUS_MSIX(qedi),
 401                                 sizeof(struct qedi_fastpath), GFP_KERNEL);
 402        if (!qedi->fp_array) {
 403                QEDI_ERR(&qedi->dbg_ctx,
 404                         "fastpath fp array allocation failed.\n");
 405                return -ENOMEM;
 406        }
 407
 408        qedi->sb_array = kcalloc(MIN_NUM_CPUS_MSIX(qedi),
 409                                 sizeof(struct qed_sb_info), GFP_KERNEL);
 410        if (!qedi->sb_array) {
 411                QEDI_ERR(&qedi->dbg_ctx,
 412                         "fastpath sb array allocation failed.\n");
 413                ret = -ENOMEM;
 414                goto free_fp;
 415        }
 416
 417        return ret;
 418
 419free_fp:
 420        qedi_free_fp(qedi);
 421        return ret;
 422}
 423
 424static void qedi_int_fp(struct qedi_ctx *qedi)
 425{
 426        struct qedi_fastpath *fp;
 427        int id;
 428
 429        memset(qedi->fp_array, 0, MIN_NUM_CPUS_MSIX(qedi) *
 430               sizeof(*qedi->fp_array));
 431        memset(qedi->sb_array, 0, MIN_NUM_CPUS_MSIX(qedi) *
 432               sizeof(*qedi->sb_array));
 433
 434        for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
 435                fp = &qedi->fp_array[id];
 436                fp->sb_info = &qedi->sb_array[id];
 437                fp->sb_id = id;
 438                fp->qedi = qedi;
 439                snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
 440                         "qedi", id);
 441
 442                /* fp_array[i] ---- irq cookie
 443                 * So init data which is needed in int ctx
 444                 */
 445        }
 446}
 447
 448static int qedi_prepare_fp(struct qedi_ctx *qedi)
 449{
 450        struct qedi_fastpath *fp;
 451        int id, ret = 0;
 452
 453        ret = qedi_alloc_fp(qedi);
 454        if (ret)
 455                goto err;
 456
 457        qedi_int_fp(qedi);
 458
 459        for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
 460                fp = &qedi->fp_array[id];
 461                ret = qedi_alloc_and_init_sb(qedi, fp->sb_info, fp->sb_id);
 462                if (ret) {
 463                        QEDI_ERR(&qedi->dbg_ctx,
 464                                 "SB allocation and initialization failed.\n");
 465                        ret = -EIO;
 466                        goto err_init;
 467                }
 468        }
 469
 470        return 0;
 471
 472err_init:
 473        qedi_free_sb(qedi);
 474        qedi_free_fp(qedi);
 475err:
 476        return ret;
 477}
 478
 479static int qedi_setup_cid_que(struct qedi_ctx *qedi)
 480{
 481        int i;
 482
 483        qedi->cid_que.cid_que_base = kmalloc_array(qedi->max_active_conns,
 484                                                   sizeof(u32), GFP_KERNEL);
 485        if (!qedi->cid_que.cid_que_base)
 486                return -ENOMEM;
 487
 488        qedi->cid_que.conn_cid_tbl = kmalloc_array(qedi->max_active_conns,
 489                                                   sizeof(struct qedi_conn *),
 490                                                   GFP_KERNEL);
 491        if (!qedi->cid_que.conn_cid_tbl) {
 492                kfree(qedi->cid_que.cid_que_base);
 493                qedi->cid_que.cid_que_base = NULL;
 494                return -ENOMEM;
 495        }
 496
 497        qedi->cid_que.cid_que = (u32 *)qedi->cid_que.cid_que_base;
 498        qedi->cid_que.cid_q_prod_idx = 0;
 499        qedi->cid_que.cid_q_cons_idx = 0;
 500        qedi->cid_que.cid_q_max_idx = qedi->max_active_conns;
 501        qedi->cid_que.cid_free_cnt = qedi->max_active_conns;
 502
 503        for (i = 0; i < qedi->max_active_conns; i++) {
 504                qedi->cid_que.cid_que[i] = i;
 505                qedi->cid_que.conn_cid_tbl[i] = NULL;
 506        }
 507
 508        return 0;
 509}
 510
 511static void qedi_release_cid_que(struct qedi_ctx *qedi)
 512{
 513        kfree(qedi->cid_que.cid_que_base);
 514        qedi->cid_que.cid_que_base = NULL;
 515
 516        kfree(qedi->cid_que.conn_cid_tbl);
 517        qedi->cid_que.conn_cid_tbl = NULL;
 518}
 519
 520static int qedi_init_id_tbl(struct qedi_portid_tbl *id_tbl, u16 size,
 521                            u16 start_id, u16 next)
 522{
 523        id_tbl->start = start_id;
 524        id_tbl->max = size;
 525        id_tbl->next = next;
 526        spin_lock_init(&id_tbl->lock);
 527        id_tbl->table = kcalloc(BITS_TO_LONGS(size), sizeof(long), GFP_KERNEL);
 528        if (!id_tbl->table)
 529                return -ENOMEM;
 530
 531        return 0;
 532}
 533
 534static void qedi_free_id_tbl(struct qedi_portid_tbl *id_tbl)
 535{
 536        kfree(id_tbl->table);
 537        id_tbl->table = NULL;
 538}
 539
 540int qedi_alloc_id(struct qedi_portid_tbl *id_tbl, u16 id)
 541{
 542        int ret = -1;
 543
 544        id -= id_tbl->start;
 545        if (id >= id_tbl->max)
 546                return ret;
 547
 548        spin_lock(&id_tbl->lock);
 549        if (!test_bit(id, id_tbl->table)) {
 550                set_bit(id, id_tbl->table);
 551                ret = 0;
 552        }
 553        spin_unlock(&id_tbl->lock);
 554        return ret;
 555}
 556
 557u16 qedi_alloc_new_id(struct qedi_portid_tbl *id_tbl)
 558{
 559        u16 id;
 560
 561        spin_lock(&id_tbl->lock);
 562        id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
 563        if (id >= id_tbl->max) {
 564                id = QEDI_LOCAL_PORT_INVALID;
 565                if (id_tbl->next != 0) {
 566                        id = find_first_zero_bit(id_tbl->table, id_tbl->next);
 567                        if (id >= id_tbl->next)
 568                                id = QEDI_LOCAL_PORT_INVALID;
 569                }
 570        }
 571
 572        if (id < id_tbl->max) {
 573                set_bit(id, id_tbl->table);
 574                id_tbl->next = (id + 1) & (id_tbl->max - 1);
 575                id += id_tbl->start;
 576        }
 577
 578        spin_unlock(&id_tbl->lock);
 579
 580        return id;
 581}
 582
 583void qedi_free_id(struct qedi_portid_tbl *id_tbl, u16 id)
 584{
 585        if (id == QEDI_LOCAL_PORT_INVALID)
 586                return;
 587
 588        id -= id_tbl->start;
 589        if (id >= id_tbl->max)
 590                return;
 591
 592        clear_bit(id, id_tbl->table);
 593}
 594
 595static void qedi_cm_free_mem(struct qedi_ctx *qedi)
 596{
 597        kfree(qedi->ep_tbl);
 598        qedi->ep_tbl = NULL;
 599        qedi_free_id_tbl(&qedi->lcl_port_tbl);
 600}
 601
 602static int qedi_cm_alloc_mem(struct qedi_ctx *qedi)
 603{
 604        u16 port_id;
 605
 606        qedi->ep_tbl = kzalloc((qedi->max_active_conns *
 607                                sizeof(struct qedi_endpoint *)), GFP_KERNEL);
 608        if (!qedi->ep_tbl)
 609                return -ENOMEM;
 610        port_id = prandom_u32() % QEDI_LOCAL_PORT_RANGE;
 611        if (qedi_init_id_tbl(&qedi->lcl_port_tbl, QEDI_LOCAL_PORT_RANGE,
 612                             QEDI_LOCAL_PORT_MIN, port_id)) {
 613                qedi_cm_free_mem(qedi);
 614                return -ENOMEM;
 615        }
 616
 617        return 0;
 618}
 619
 620static struct qedi_ctx *qedi_host_alloc(struct pci_dev *pdev)
 621{
 622        struct Scsi_Host *shost;
 623        struct qedi_ctx *qedi = NULL;
 624
 625        shost = iscsi_host_alloc(&qedi_host_template,
 626                                 sizeof(struct qedi_ctx), 0);
 627        if (!shost) {
 628                QEDI_ERR(NULL, "Could not allocate shost\n");
 629                goto exit_setup_shost;
 630        }
 631
 632        shost->max_id = QEDI_MAX_ISCSI_CONNS_PER_HBA;
 633        shost->max_channel = 0;
 634        shost->max_lun = ~0;
 635        shost->max_cmd_len = 16;
 636        shost->transportt = qedi_scsi_transport;
 637
 638        qedi = iscsi_host_priv(shost);
 639        memset(qedi, 0, sizeof(*qedi));
 640        qedi->shost = shost;
 641        qedi->dbg_ctx.host_no = shost->host_no;
 642        qedi->pdev = pdev;
 643        qedi->dbg_ctx.pdev = pdev;
 644        qedi->max_active_conns = ISCSI_MAX_SESS_PER_HBA;
 645        qedi->max_sqes = QEDI_SQ_SIZE;
 646
 647        if (shost_use_blk_mq(shost))
 648                shost->nr_hw_queues = MIN_NUM_CPUS_MSIX(qedi);
 649
 650        pci_set_drvdata(pdev, qedi);
 651
 652exit_setup_shost:
 653        return qedi;
 654}
 655
 656static int qedi_ll2_rx(void *cookie, struct sk_buff *skb, u32 arg1, u32 arg2)
 657{
 658        struct qedi_ctx *qedi = (struct qedi_ctx *)cookie;
 659        struct qedi_uio_dev *udev;
 660        struct qedi_uio_ctrl *uctrl;
 661        struct skb_work_list *work;
 662        u32 prod;
 663
 664        if (!qedi) {
 665                QEDI_ERR(NULL, "qedi is NULL\n");
 666                return -1;
 667        }
 668
 669        if (!test_bit(UIO_DEV_OPENED, &qedi->flags)) {
 670                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_UIO,
 671                          "UIO DEV is not opened\n");
 672                kfree_skb(skb);
 673                return 0;
 674        }
 675
 676        udev = qedi->udev;
 677        uctrl = udev->uctrl;
 678
 679        work = kzalloc(sizeof(*work), GFP_ATOMIC);
 680        if (!work) {
 681                QEDI_WARN(&qedi->dbg_ctx,
 682                          "Could not allocate work so dropping frame.\n");
 683                kfree_skb(skb);
 684                return 0;
 685        }
 686
 687        INIT_LIST_HEAD(&work->list);
 688        work->skb = skb;
 689
 690        if (skb_vlan_tag_present(skb))
 691                work->vlan_id = skb_vlan_tag_get(skb);
 692
 693        if (work->vlan_id)
 694                __vlan_insert_tag(work->skb, htons(ETH_P_8021Q), work->vlan_id);
 695
 696        spin_lock_bh(&qedi->ll2_lock);
 697        list_add_tail(&work->list, &qedi->ll2_skb_list);
 698
 699        ++uctrl->hw_rx_prod_cnt;
 700        prod = (uctrl->hw_rx_prod + 1) % RX_RING;
 701        if (prod != uctrl->host_rx_cons) {
 702                uctrl->hw_rx_prod = prod;
 703                spin_unlock_bh(&qedi->ll2_lock);
 704                wake_up_process(qedi->ll2_recv_thread);
 705                return 0;
 706        }
 707
 708        spin_unlock_bh(&qedi->ll2_lock);
 709        return 0;
 710}
 711
 712/* map this skb to iscsiuio mmaped region */
 713static int qedi_ll2_process_skb(struct qedi_ctx *qedi, struct sk_buff *skb,
 714                                u16 vlan_id)
 715{
 716        struct qedi_uio_dev *udev = NULL;
 717        struct qedi_uio_ctrl *uctrl = NULL;
 718        struct qedi_rx_bd rxbd;
 719        struct qedi_rx_bd *p_rxbd;
 720        u32 rx_bd_prod;
 721        void *pkt;
 722        int len = 0;
 723
 724        if (!qedi) {
 725                QEDI_ERR(NULL, "qedi is NULL\n");
 726                return -1;
 727        }
 728
 729        udev = qedi->udev;
 730        uctrl = udev->uctrl;
 731        pkt = udev->rx_pkt + (uctrl->hw_rx_prod * LL2_SINGLE_BUF_SIZE);
 732        len = min_t(u32, skb->len, (u32)LL2_SINGLE_BUF_SIZE);
 733        memcpy(pkt, skb->data, len);
 734
 735        memset(&rxbd, 0, sizeof(rxbd));
 736        rxbd.rx_pkt_index = uctrl->hw_rx_prod;
 737        rxbd.rx_pkt_len = len;
 738        rxbd.vlan_id = vlan_id;
 739
 740        uctrl->hw_rx_bd_prod = (uctrl->hw_rx_bd_prod + 1) % QEDI_NUM_RX_BD;
 741        rx_bd_prod = uctrl->hw_rx_bd_prod;
 742        p_rxbd = (struct qedi_rx_bd *)udev->ll2_ring;
 743        p_rxbd += rx_bd_prod;
 744
 745        memcpy(p_rxbd, &rxbd, sizeof(rxbd));
 746
 747        /* notify the iscsiuio about new packet */
 748        uio_event_notify(&udev->qedi_uinfo);
 749
 750        return 0;
 751}
 752
 753static void qedi_ll2_free_skbs(struct qedi_ctx *qedi)
 754{
 755        struct skb_work_list *work, *work_tmp;
 756
 757        spin_lock_bh(&qedi->ll2_lock);
 758        list_for_each_entry_safe(work, work_tmp, &qedi->ll2_skb_list, list) {
 759                list_del(&work->list);
 760                if (work->skb)
 761                        kfree_skb(work->skb);
 762                kfree(work);
 763        }
 764        spin_unlock_bh(&qedi->ll2_lock);
 765}
 766
 767static int qedi_ll2_recv_thread(void *arg)
 768{
 769        struct qedi_ctx *qedi = (struct qedi_ctx *)arg;
 770        struct skb_work_list *work, *work_tmp;
 771
 772        set_user_nice(current, -20);
 773
 774        while (!kthread_should_stop()) {
 775                spin_lock_bh(&qedi->ll2_lock);
 776                list_for_each_entry_safe(work, work_tmp, &qedi->ll2_skb_list,
 777                                         list) {
 778                        list_del(&work->list);
 779                        qedi_ll2_process_skb(qedi, work->skb, work->vlan_id);
 780                        kfree_skb(work->skb);
 781                        kfree(work);
 782                }
 783                set_current_state(TASK_INTERRUPTIBLE);
 784                spin_unlock_bh(&qedi->ll2_lock);
 785                schedule();
 786        }
 787
 788        __set_current_state(TASK_RUNNING);
 789        return 0;
 790}
 791
 792static int qedi_set_iscsi_pf_param(struct qedi_ctx *qedi)
 793{
 794        u8 num_sq_pages;
 795        u32 log_page_size;
 796        int rval = 0;
 797
 798
 799        num_sq_pages = (MAX_OUSTANDING_TASKS_PER_CON * 8) / PAGE_SIZE;
 800
 801        qedi->num_queues = MIN_NUM_CPUS_MSIX(qedi);
 802
 803        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
 804                  "Number of CQ count is %d\n", qedi->num_queues);
 805
 806        memset(&qedi->pf_params.iscsi_pf_params, 0,
 807               sizeof(qedi->pf_params.iscsi_pf_params));
 808
 809        qedi->p_cpuq = pci_alloc_consistent(qedi->pdev,
 810                        qedi->num_queues * sizeof(struct qedi_glbl_q_params),
 811                        &qedi->hw_p_cpuq);
 812        if (!qedi->p_cpuq) {
 813                QEDI_ERR(&qedi->dbg_ctx, "pci_alloc_consistent fail\n");
 814                rval = -1;
 815                goto err_alloc_mem;
 816        }
 817
 818        rval = qedi_alloc_global_queues(qedi);
 819        if (rval) {
 820                QEDI_ERR(&qedi->dbg_ctx, "Global queue allocation failed.\n");
 821                rval = -1;
 822                goto err_alloc_mem;
 823        }
 824
 825        qedi->pf_params.iscsi_pf_params.num_cons = QEDI_MAX_ISCSI_CONNS_PER_HBA;
 826        qedi->pf_params.iscsi_pf_params.num_tasks = QEDI_MAX_ISCSI_TASK;
 827        qedi->pf_params.iscsi_pf_params.half_way_close_timeout = 10;
 828        qedi->pf_params.iscsi_pf_params.num_sq_pages_in_ring = num_sq_pages;
 829        qedi->pf_params.iscsi_pf_params.num_r2tq_pages_in_ring = num_sq_pages;
 830        qedi->pf_params.iscsi_pf_params.num_uhq_pages_in_ring = num_sq_pages;
 831        qedi->pf_params.iscsi_pf_params.num_queues = qedi->num_queues;
 832        qedi->pf_params.iscsi_pf_params.debug_mode = qedi_fw_debug;
 833        qedi->pf_params.iscsi_pf_params.two_msl_timer = 4000;
 834        qedi->pf_params.iscsi_pf_params.max_fin_rt = 2;
 835
 836        for (log_page_size = 0 ; log_page_size < 32 ; log_page_size++) {
 837                if ((1 << log_page_size) == PAGE_SIZE)
 838                        break;
 839        }
 840        qedi->pf_params.iscsi_pf_params.log_page_size = log_page_size;
 841
 842        qedi->pf_params.iscsi_pf_params.glbl_q_params_addr =
 843                                                           (u64)qedi->hw_p_cpuq;
 844
 845        /* RQ BDQ initializations.
 846         * rq_num_entries: suggested value for Initiator is 16 (4KB RQ)
 847         * rqe_log_size: 8 for 256B RQE
 848         */
 849        qedi->pf_params.iscsi_pf_params.rqe_log_size = 8;
 850        /* BDQ address and size */
 851        qedi->pf_params.iscsi_pf_params.bdq_pbl_base_addr[BDQ_ID_RQ] =
 852                                                        qedi->bdq_pbl_list_dma;
 853        qedi->pf_params.iscsi_pf_params.bdq_pbl_num_entries[BDQ_ID_RQ] =
 854                                                qedi->bdq_pbl_list_num_entries;
 855        qedi->pf_params.iscsi_pf_params.rq_buffer_size = QEDI_BDQ_BUF_SIZE;
 856
 857        /* cq_num_entries: num_tasks + rq_num_entries */
 858        qedi->pf_params.iscsi_pf_params.cq_num_entries = 2048;
 859
 860        qedi->pf_params.iscsi_pf_params.gl_rq_pi = QEDI_PROTO_CQ_PROD_IDX;
 861        qedi->pf_params.iscsi_pf_params.gl_cmd_pi = 1;
 862
 863err_alloc_mem:
 864        return rval;
 865}
 866
 867/* Free DMA coherent memory for array of queue pointers we pass to qed */
 868static void qedi_free_iscsi_pf_param(struct qedi_ctx *qedi)
 869{
 870        size_t size = 0;
 871
 872        if (qedi->p_cpuq) {
 873                size = qedi->num_queues * sizeof(struct qedi_glbl_q_params);
 874                pci_free_consistent(qedi->pdev, size, qedi->p_cpuq,
 875                                    qedi->hw_p_cpuq);
 876        }
 877
 878        qedi_free_global_queues(qedi);
 879
 880        kfree(qedi->global_queues);
 881}
 882
 883static void qedi_get_boot_tgt_info(struct nvm_iscsi_block *block,
 884                                   struct qedi_boot_target *tgt, u8 index)
 885{
 886        u32 ipv6_en;
 887
 888        ipv6_en = !!(block->generic.ctrl_flags &
 889                     NVM_ISCSI_CFG_GEN_IPV6_ENABLED);
 890
 891        snprintf(tgt->iscsi_name, sizeof(tgt->iscsi_name), "%s\n",
 892                 block->target[index].target_name.byte);
 893
 894        tgt->ipv6_en = ipv6_en;
 895
 896        if (ipv6_en)
 897                snprintf(tgt->ip_addr, IPV6_LEN, "%pI6\n",
 898                         block->target[index].ipv6_addr.byte);
 899        else
 900                snprintf(tgt->ip_addr, IPV4_LEN, "%pI4\n",
 901                         block->target[index].ipv4_addr.byte);
 902}
 903
 904static int qedi_find_boot_info(struct qedi_ctx *qedi,
 905                               struct qed_mfw_tlv_iscsi *iscsi,
 906                               struct nvm_iscsi_block *block)
 907{
 908        struct qedi_boot_target *pri_tgt = NULL, *sec_tgt = NULL;
 909        u32 pri_ctrl_flags = 0, sec_ctrl_flags = 0, found = 0;
 910        struct iscsi_cls_session *cls_sess;
 911        struct iscsi_cls_conn *cls_conn;
 912        struct qedi_conn *qedi_conn;
 913        struct iscsi_session *sess;
 914        struct iscsi_conn *conn;
 915        char ep_ip_addr[64];
 916        int i, ret = 0;
 917
 918        pri_ctrl_flags = !!(block->target[0].ctrl_flags &
 919                                        NVM_ISCSI_CFG_TARGET_ENABLED);
 920        if (pri_ctrl_flags) {
 921                pri_tgt = kzalloc(sizeof(*pri_tgt), GFP_KERNEL);
 922                if (!pri_tgt)
 923                        return -1;
 924                qedi_get_boot_tgt_info(block, pri_tgt, 0);
 925        }
 926
 927        sec_ctrl_flags = !!(block->target[1].ctrl_flags &
 928                                        NVM_ISCSI_CFG_TARGET_ENABLED);
 929        if (sec_ctrl_flags) {
 930                sec_tgt = kzalloc(sizeof(*sec_tgt), GFP_KERNEL);
 931                if (!sec_tgt) {
 932                        ret = -1;
 933                        goto free_tgt;
 934                }
 935                qedi_get_boot_tgt_info(block, sec_tgt, 1);
 936        }
 937
 938        for (i = 0; i < qedi->max_active_conns; i++) {
 939                qedi_conn = qedi_get_conn_from_id(qedi, i);
 940                if (!qedi_conn)
 941                        continue;
 942
 943                if (qedi_conn->ep->ip_type == TCP_IPV4)
 944                        snprintf(ep_ip_addr, IPV4_LEN, "%pI4\n",
 945                                 qedi_conn->ep->dst_addr);
 946                else
 947                        snprintf(ep_ip_addr, IPV6_LEN, "%pI6\n",
 948                                 qedi_conn->ep->dst_addr);
 949
 950                cls_conn = qedi_conn->cls_conn;
 951                conn = cls_conn->dd_data;
 952                cls_sess = iscsi_conn_to_session(cls_conn);
 953                sess = cls_sess->dd_data;
 954
 955                if (pri_ctrl_flags) {
 956                        if (!strcmp(pri_tgt->iscsi_name, sess->targetname) &&
 957                            !strcmp(pri_tgt->ip_addr, ep_ip_addr)) {
 958                                found = 1;
 959                                break;
 960                        }
 961                }
 962
 963                if (sec_ctrl_flags) {
 964                        if (!strcmp(sec_tgt->iscsi_name, sess->targetname) &&
 965                            !strcmp(sec_tgt->ip_addr, ep_ip_addr)) {
 966                                found = 1;
 967                                break;
 968                        }
 969                }
 970        }
 971
 972        if (found) {
 973                if (conn->hdrdgst_en) {
 974                        iscsi->header_digest_set = true;
 975                        iscsi->header_digest = 1;
 976                }
 977
 978                if (conn->datadgst_en) {
 979                        iscsi->data_digest_set = true;
 980                        iscsi->data_digest = 1;
 981                }
 982                iscsi->boot_taget_portal_set = true;
 983                iscsi->boot_taget_portal = sess->tpgt;
 984
 985        } else {
 986                ret = -1;
 987        }
 988
 989        if (sec_ctrl_flags)
 990                kfree(sec_tgt);
 991free_tgt:
 992        if (pri_ctrl_flags)
 993                kfree(pri_tgt);
 994
 995        return ret;
 996}
 997
 998static void qedi_get_generic_tlv_data(void *dev, struct qed_generic_tlvs *data)
 999{
1000        struct qedi_ctx *qedi;
1001
1002        if (!dev) {
1003                QEDI_INFO(NULL, QEDI_LOG_EVT,
1004                          "dev is NULL so ignoring get_generic_tlv_data request.\n");
1005                return;
1006        }
1007        qedi = (struct qedi_ctx *)dev;
1008
1009        memset(data, 0, sizeof(struct qed_generic_tlvs));
1010        ether_addr_copy(data->mac[0], qedi->mac);
1011}
1012
1013/*
1014 * Protocol TLV handler
1015 */
1016static void qedi_get_protocol_tlv_data(void *dev, void *data)
1017{
1018        struct qed_mfw_tlv_iscsi *iscsi = data;
1019        struct qed_iscsi_stats *fw_iscsi_stats;
1020        struct nvm_iscsi_block *block = NULL;
1021        u32 chap_en = 0, mchap_en = 0;
1022        struct qedi_ctx *qedi = dev;
1023        int rval = 0;
1024
1025        fw_iscsi_stats = kmalloc(sizeof(*fw_iscsi_stats), GFP_KERNEL);
1026        if (!fw_iscsi_stats) {
1027                QEDI_ERR(&qedi->dbg_ctx,
1028                         "Could not allocate memory for fw_iscsi_stats.\n");
1029                goto exit_get_data;
1030        }
1031
1032        mutex_lock(&qedi->stats_lock);
1033        /* Query firmware for offload stats */
1034        qedi_ops->get_stats(qedi->cdev, fw_iscsi_stats);
1035        mutex_unlock(&qedi->stats_lock);
1036
1037        iscsi->rx_frames_set = true;
1038        iscsi->rx_frames = fw_iscsi_stats->iscsi_rx_packet_cnt;
1039        iscsi->rx_bytes_set = true;
1040        iscsi->rx_bytes = fw_iscsi_stats->iscsi_rx_bytes_cnt;
1041        iscsi->tx_frames_set = true;
1042        iscsi->tx_frames = fw_iscsi_stats->iscsi_tx_packet_cnt;
1043        iscsi->tx_bytes_set = true;
1044        iscsi->tx_bytes = fw_iscsi_stats->iscsi_tx_bytes_cnt;
1045        iscsi->frame_size_set = true;
1046        iscsi->frame_size = qedi->ll2_mtu;
1047        block = qedi_get_nvram_block(qedi);
1048        if (block) {
1049                chap_en = !!(block->generic.ctrl_flags &
1050                             NVM_ISCSI_CFG_GEN_CHAP_ENABLED);
1051                mchap_en = !!(block->generic.ctrl_flags &
1052                              NVM_ISCSI_CFG_GEN_CHAP_MUTUAL_ENABLED);
1053
1054                iscsi->auth_method_set = (chap_en || mchap_en) ? true : false;
1055                iscsi->auth_method = 1;
1056                if (chap_en)
1057                        iscsi->auth_method = 2;
1058                if (mchap_en)
1059                        iscsi->auth_method = 3;
1060
1061                iscsi->tx_desc_size_set = true;
1062                iscsi->tx_desc_size = QEDI_SQ_SIZE;
1063                iscsi->rx_desc_size_set = true;
1064                iscsi->rx_desc_size = QEDI_CQ_SIZE;
1065
1066                /* tpgt, hdr digest, data digest */
1067                rval = qedi_find_boot_info(qedi, iscsi, block);
1068                if (rval)
1069                        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
1070                                  "Boot target not set");
1071        }
1072
1073        kfree(fw_iscsi_stats);
1074exit_get_data:
1075        return;
1076}
1077
1078static void qedi_link_update(void *dev, struct qed_link_output *link)
1079{
1080        struct qedi_ctx *qedi = (struct qedi_ctx *)dev;
1081
1082        if (link->link_up) {
1083                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, "Link Up event.\n");
1084                atomic_set(&qedi->link_state, QEDI_LINK_UP);
1085        } else {
1086                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
1087                          "Link Down event.\n");
1088                atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
1089        }
1090}
1091
1092static struct qed_iscsi_cb_ops qedi_cb_ops = {
1093        {
1094                .link_update =          qedi_link_update,
1095                .get_protocol_tlv_data = qedi_get_protocol_tlv_data,
1096                .get_generic_tlv_data = qedi_get_generic_tlv_data,
1097        }
1098};
1099
1100static int qedi_queue_cqe(struct qedi_ctx *qedi, union iscsi_cqe *cqe,
1101                          u16 que_idx, struct qedi_percpu_s *p)
1102{
1103        struct qedi_work *qedi_work;
1104        struct qedi_conn *q_conn;
1105        struct iscsi_conn *conn;
1106        struct qedi_cmd *qedi_cmd;
1107        u32 iscsi_cid;
1108        int rc = 0;
1109
1110        iscsi_cid  = cqe->cqe_common.conn_id;
1111        q_conn = qedi->cid_que.conn_cid_tbl[iscsi_cid];
1112        if (!q_conn) {
1113                QEDI_WARN(&qedi->dbg_ctx,
1114                          "Session no longer exists for cid=0x%x!!\n",
1115                          iscsi_cid);
1116                return -1;
1117        }
1118        conn = q_conn->cls_conn->dd_data;
1119
1120        switch (cqe->cqe_common.cqe_type) {
1121        case ISCSI_CQE_TYPE_SOLICITED:
1122        case ISCSI_CQE_TYPE_SOLICITED_WITH_SENSE:
1123                qedi_cmd = qedi_get_cmd_from_tid(qedi, cqe->cqe_solicited.itid);
1124                if (!qedi_cmd) {
1125                        rc = -1;
1126                        break;
1127                }
1128                INIT_LIST_HEAD(&qedi_cmd->cqe_work.list);
1129                qedi_cmd->cqe_work.qedi = qedi;
1130                memcpy(&qedi_cmd->cqe_work.cqe, cqe, sizeof(union iscsi_cqe));
1131                qedi_cmd->cqe_work.que_idx = que_idx;
1132                qedi_cmd->cqe_work.is_solicited = true;
1133                list_add_tail(&qedi_cmd->cqe_work.list, &p->work_list);
1134                break;
1135        case ISCSI_CQE_TYPE_UNSOLICITED:
1136        case ISCSI_CQE_TYPE_DUMMY:
1137        case ISCSI_CQE_TYPE_TASK_CLEANUP:
1138                qedi_work = kzalloc(sizeof(*qedi_work), GFP_ATOMIC);
1139                if (!qedi_work) {
1140                        rc = -1;
1141                        break;
1142                }
1143                INIT_LIST_HEAD(&qedi_work->list);
1144                qedi_work->qedi = qedi;
1145                memcpy(&qedi_work->cqe, cqe, sizeof(union iscsi_cqe));
1146                qedi_work->que_idx = que_idx;
1147                qedi_work->is_solicited = false;
1148                list_add_tail(&qedi_work->list, &p->work_list);
1149                break;
1150        default:
1151                rc = -1;
1152                QEDI_ERR(&qedi->dbg_ctx, "FW Error cqe.\n");
1153        }
1154        return rc;
1155}
1156
1157static bool qedi_process_completions(struct qedi_fastpath *fp)
1158{
1159        struct qedi_ctx *qedi = fp->qedi;
1160        struct qed_sb_info *sb_info = fp->sb_info;
1161        struct status_block_e4 *sb = sb_info->sb_virt;
1162        struct qedi_percpu_s *p = NULL;
1163        struct global_queue *que;
1164        u16 prod_idx;
1165        unsigned long flags;
1166        union iscsi_cqe *cqe;
1167        int cpu;
1168        int ret;
1169
1170        /* Get the current firmware producer index */
1171        prod_idx = sb->pi_array[QEDI_PROTO_CQ_PROD_IDX];
1172
1173        if (prod_idx >= QEDI_CQ_SIZE)
1174                prod_idx = prod_idx % QEDI_CQ_SIZE;
1175
1176        que = qedi->global_queues[fp->sb_id];
1177        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_IO,
1178                  "Before: global queue=%p prod_idx=%d cons_idx=%d, sb_id=%d\n",
1179                  que, prod_idx, que->cq_cons_idx, fp->sb_id);
1180
1181        qedi->intr_cpu = fp->sb_id;
1182        cpu = smp_processor_id();
1183        p = &per_cpu(qedi_percpu, cpu);
1184
1185        if (unlikely(!p->iothread))
1186                WARN_ON(1);
1187
1188        spin_lock_irqsave(&p->p_work_lock, flags);
1189        while (que->cq_cons_idx != prod_idx) {
1190                cqe = &que->cq[que->cq_cons_idx];
1191
1192                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_IO,
1193                          "cqe=%p prod_idx=%d cons_idx=%d.\n",
1194                          cqe, prod_idx, que->cq_cons_idx);
1195
1196                ret = qedi_queue_cqe(qedi, cqe, fp->sb_id, p);
1197                if (ret)
1198                        QEDI_WARN(&qedi->dbg_ctx,
1199                                  "Dropping CQE 0x%x for cid=0x%x.\n",
1200                                  que->cq_cons_idx, cqe->cqe_common.conn_id);
1201
1202                que->cq_cons_idx++;
1203                if (que->cq_cons_idx == QEDI_CQ_SIZE)
1204                        que->cq_cons_idx = 0;
1205        }
1206        wake_up_process(p->iothread);
1207        spin_unlock_irqrestore(&p->p_work_lock, flags);
1208
1209        return true;
1210}
1211
1212static bool qedi_fp_has_work(struct qedi_fastpath *fp)
1213{
1214        struct qedi_ctx *qedi = fp->qedi;
1215        struct global_queue *que;
1216        struct qed_sb_info *sb_info = fp->sb_info;
1217        struct status_block_e4 *sb = sb_info->sb_virt;
1218        u16 prod_idx;
1219
1220        barrier();
1221
1222        /* Get the current firmware producer index */
1223        prod_idx = sb->pi_array[QEDI_PROTO_CQ_PROD_IDX];
1224
1225        /* Get the pointer to the global CQ this completion is on */
1226        que = qedi->global_queues[fp->sb_id];
1227
1228        /* prod idx wrap around uint16 */
1229        if (prod_idx >= QEDI_CQ_SIZE)
1230                prod_idx = prod_idx % QEDI_CQ_SIZE;
1231
1232        return (que->cq_cons_idx != prod_idx);
1233}
1234
1235/* MSI-X fastpath handler code */
1236static irqreturn_t qedi_msix_handler(int irq, void *dev_id)
1237{
1238        struct qedi_fastpath *fp = dev_id;
1239        struct qedi_ctx *qedi = fp->qedi;
1240        bool wake_io_thread = true;
1241
1242        qed_sb_ack(fp->sb_info, IGU_INT_DISABLE, 0);
1243
1244process_again:
1245        wake_io_thread = qedi_process_completions(fp);
1246        if (wake_io_thread) {
1247                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1248                          "process already running\n");
1249        }
1250
1251        if (qedi_fp_has_work(fp) == 0)
1252                qed_sb_update_sb_idx(fp->sb_info);
1253
1254        /* Check for more work */
1255        rmb();
1256
1257        if (qedi_fp_has_work(fp) == 0)
1258                qed_sb_ack(fp->sb_info, IGU_INT_ENABLE, 1);
1259        else
1260                goto process_again;
1261
1262        return IRQ_HANDLED;
1263}
1264
1265/* simd handler for MSI/INTa */
1266static void qedi_simd_int_handler(void *cookie)
1267{
1268        /* Cookie is qedi_ctx struct */
1269        struct qedi_ctx *qedi = (struct qedi_ctx *)cookie;
1270
1271        QEDI_WARN(&qedi->dbg_ctx, "qedi=%p.\n", qedi);
1272}
1273
1274#define QEDI_SIMD_HANDLER_NUM           0
1275static void qedi_sync_free_irqs(struct qedi_ctx *qedi)
1276{
1277        int i;
1278
1279        if (qedi->int_info.msix_cnt) {
1280                for (i = 0; i < qedi->int_info.used_cnt; i++) {
1281                        synchronize_irq(qedi->int_info.msix[i].vector);
1282                        irq_set_affinity_hint(qedi->int_info.msix[i].vector,
1283                                              NULL);
1284                        free_irq(qedi->int_info.msix[i].vector,
1285                                 &qedi->fp_array[i]);
1286                }
1287        } else {
1288                qedi_ops->common->simd_handler_clean(qedi->cdev,
1289                                                     QEDI_SIMD_HANDLER_NUM);
1290        }
1291
1292        qedi->int_info.used_cnt = 0;
1293        qedi_ops->common->set_fp_int(qedi->cdev, 0);
1294}
1295
1296static int qedi_request_msix_irq(struct qedi_ctx *qedi)
1297{
1298        int i, rc, cpu;
1299
1300        cpu = cpumask_first(cpu_online_mask);
1301        for (i = 0; i < MIN_NUM_CPUS_MSIX(qedi); i++) {
1302                rc = request_irq(qedi->int_info.msix[i].vector,
1303                                 qedi_msix_handler, 0, "qedi",
1304                                 &qedi->fp_array[i]);
1305
1306                if (rc) {
1307                        QEDI_WARN(&qedi->dbg_ctx, "request_irq failed.\n");
1308                        qedi_sync_free_irqs(qedi);
1309                        return rc;
1310                }
1311                qedi->int_info.used_cnt++;
1312                rc = irq_set_affinity_hint(qedi->int_info.msix[i].vector,
1313                                           get_cpu_mask(cpu));
1314                cpu = cpumask_next(cpu, cpu_online_mask);
1315        }
1316
1317        return 0;
1318}
1319
1320static int qedi_setup_int(struct qedi_ctx *qedi)
1321{
1322        int rc = 0;
1323
1324        rc = qedi_ops->common->set_fp_int(qedi->cdev, num_online_cpus());
1325        rc = qedi_ops->common->get_fp_int(qedi->cdev, &qedi->int_info);
1326        if (rc)
1327                goto exit_setup_int;
1328
1329        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1330                  "Number of msix_cnt = 0x%x num of cpus = 0x%x\n",
1331                   qedi->int_info.msix_cnt, num_online_cpus());
1332
1333        if (qedi->int_info.msix_cnt) {
1334                rc = qedi_request_msix_irq(qedi);
1335                goto exit_setup_int;
1336        } else {
1337                qedi_ops->common->simd_handler_config(qedi->cdev, &qedi,
1338                                                      QEDI_SIMD_HANDLER_NUM,
1339                                                      qedi_simd_int_handler);
1340                qedi->int_info.used_cnt = 1;
1341        }
1342
1343exit_setup_int:
1344        return rc;
1345}
1346
1347static void qedi_free_nvm_iscsi_cfg(struct qedi_ctx *qedi)
1348{
1349        if (qedi->iscsi_image)
1350                dma_free_coherent(&qedi->pdev->dev,
1351                                  sizeof(struct qedi_nvm_iscsi_image),
1352                                  qedi->iscsi_image, qedi->nvm_buf_dma);
1353}
1354
1355static int qedi_alloc_nvm_iscsi_cfg(struct qedi_ctx *qedi)
1356{
1357        struct qedi_nvm_iscsi_image nvm_image;
1358
1359        qedi->iscsi_image = dma_zalloc_coherent(&qedi->pdev->dev,
1360                                                sizeof(nvm_image),
1361                                                &qedi->nvm_buf_dma,
1362                                                GFP_KERNEL);
1363        if (!qedi->iscsi_image) {
1364                QEDI_ERR(&qedi->dbg_ctx, "Could not allocate NVM BUF.\n");
1365                return -ENOMEM;
1366        }
1367        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
1368                  "NVM BUF addr=0x%p dma=0x%llx.\n", qedi->iscsi_image,
1369                  qedi->nvm_buf_dma);
1370
1371        return 0;
1372}
1373
1374static void qedi_free_bdq(struct qedi_ctx *qedi)
1375{
1376        int i;
1377
1378        if (qedi->bdq_pbl_list)
1379                dma_free_coherent(&qedi->pdev->dev, PAGE_SIZE,
1380                                  qedi->bdq_pbl_list, qedi->bdq_pbl_list_dma);
1381
1382        if (qedi->bdq_pbl)
1383                dma_free_coherent(&qedi->pdev->dev, qedi->bdq_pbl_mem_size,
1384                                  qedi->bdq_pbl, qedi->bdq_pbl_dma);
1385
1386        for (i = 0; i < QEDI_BDQ_NUM; i++) {
1387                if (qedi->bdq[i].buf_addr) {
1388                        dma_free_coherent(&qedi->pdev->dev, QEDI_BDQ_BUF_SIZE,
1389                                          qedi->bdq[i].buf_addr,
1390                                          qedi->bdq[i].buf_dma);
1391                }
1392        }
1393}
1394
1395static void qedi_free_global_queues(struct qedi_ctx *qedi)
1396{
1397        int i;
1398        struct global_queue **gl = qedi->global_queues;
1399
1400        for (i = 0; i < qedi->num_queues; i++) {
1401                if (!gl[i])
1402                        continue;
1403
1404                if (gl[i]->cq)
1405                        dma_free_coherent(&qedi->pdev->dev, gl[i]->cq_mem_size,
1406                                          gl[i]->cq, gl[i]->cq_dma);
1407                if (gl[i]->cq_pbl)
1408                        dma_free_coherent(&qedi->pdev->dev, gl[i]->cq_pbl_size,
1409                                          gl[i]->cq_pbl, gl[i]->cq_pbl_dma);
1410
1411                kfree(gl[i]);
1412        }
1413        qedi_free_bdq(qedi);
1414        qedi_free_nvm_iscsi_cfg(qedi);
1415}
1416
1417static int qedi_alloc_bdq(struct qedi_ctx *qedi)
1418{
1419        int i;
1420        struct scsi_bd *pbl;
1421        u64 *list;
1422        dma_addr_t page;
1423
1424        /* Alloc dma memory for BDQ buffers */
1425        for (i = 0; i < QEDI_BDQ_NUM; i++) {
1426                qedi->bdq[i].buf_addr =
1427                                dma_alloc_coherent(&qedi->pdev->dev,
1428                                                   QEDI_BDQ_BUF_SIZE,
1429                                                   &qedi->bdq[i].buf_dma,
1430                                                   GFP_KERNEL);
1431                if (!qedi->bdq[i].buf_addr) {
1432                        QEDI_ERR(&qedi->dbg_ctx,
1433                                 "Could not allocate BDQ buffer %d.\n", i);
1434                        return -ENOMEM;
1435                }
1436        }
1437
1438        /* Alloc dma memory for BDQ page buffer list */
1439        qedi->bdq_pbl_mem_size = QEDI_BDQ_NUM * sizeof(struct scsi_bd);
1440        qedi->bdq_pbl_mem_size = ALIGN(qedi->bdq_pbl_mem_size, PAGE_SIZE);
1441        qedi->rq_num_entries = qedi->bdq_pbl_mem_size / sizeof(struct scsi_bd);
1442
1443        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, "rq_num_entries = %d.\n",
1444                  qedi->rq_num_entries);
1445
1446        qedi->bdq_pbl = dma_alloc_coherent(&qedi->pdev->dev,
1447                                           qedi->bdq_pbl_mem_size,
1448                                           &qedi->bdq_pbl_dma, GFP_KERNEL);
1449        if (!qedi->bdq_pbl) {
1450                QEDI_ERR(&qedi->dbg_ctx, "Could not allocate BDQ PBL.\n");
1451                return -ENOMEM;
1452        }
1453
1454        /*
1455         * Populate BDQ PBL with physical and virtual address of individual
1456         * BDQ buffers
1457         */
1458        pbl = (struct scsi_bd  *)qedi->bdq_pbl;
1459        for (i = 0; i < QEDI_BDQ_NUM; i++) {
1460                pbl->address.hi =
1461                                cpu_to_le32(QEDI_U64_HI(qedi->bdq[i].buf_dma));
1462                pbl->address.lo =
1463                                cpu_to_le32(QEDI_U64_LO(qedi->bdq[i].buf_dma));
1464                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1465                          "pbl [0x%p] pbl->address hi [0x%llx] lo [0x%llx], idx [%d]\n",
1466                          pbl, pbl->address.hi, pbl->address.lo, i);
1467                pbl->opaque.iscsi_opaque.reserved_zero[0] = 0;
1468                pbl->opaque.iscsi_opaque.reserved_zero[1] = 0;
1469                pbl->opaque.iscsi_opaque.reserved_zero[2] = 0;
1470                pbl->opaque.iscsi_opaque.opaque = cpu_to_le16(i);
1471                pbl++;
1472        }
1473
1474        /* Allocate list of PBL pages */
1475        qedi->bdq_pbl_list = dma_zalloc_coherent(&qedi->pdev->dev, PAGE_SIZE,
1476                                                 &qedi->bdq_pbl_list_dma,
1477                                                 GFP_KERNEL);
1478        if (!qedi->bdq_pbl_list) {
1479                QEDI_ERR(&qedi->dbg_ctx,
1480                         "Could not allocate list of PBL pages.\n");
1481                return -ENOMEM;
1482        }
1483
1484        /*
1485         * Now populate PBL list with pages that contain pointers to the
1486         * individual buffers.
1487         */
1488        qedi->bdq_pbl_list_num_entries = qedi->bdq_pbl_mem_size / PAGE_SIZE;
1489        list = (u64 *)qedi->bdq_pbl_list;
1490        page = qedi->bdq_pbl_list_dma;
1491        for (i = 0; i < qedi->bdq_pbl_list_num_entries; i++) {
1492                *list = qedi->bdq_pbl_dma;
1493                list++;
1494                page += PAGE_SIZE;
1495        }
1496
1497        return 0;
1498}
1499
1500static int qedi_alloc_global_queues(struct qedi_ctx *qedi)
1501{
1502        u32 *list;
1503        int i;
1504        int status = 0, rc;
1505        u32 *pbl;
1506        dma_addr_t page;
1507        int num_pages;
1508
1509        /*
1510         * Number of global queues (CQ / RQ). This should
1511         * be <= number of available MSIX vectors for the PF
1512         */
1513        if (!qedi->num_queues) {
1514                QEDI_ERR(&qedi->dbg_ctx, "No MSI-X vectors available!\n");
1515                return 1;
1516        }
1517
1518        /* Make sure we allocated the PBL that will contain the physical
1519         * addresses of our queues
1520         */
1521        if (!qedi->p_cpuq) {
1522                status = 1;
1523                goto mem_alloc_failure;
1524        }
1525
1526        qedi->global_queues = kzalloc((sizeof(struct global_queue *) *
1527                                       qedi->num_queues), GFP_KERNEL);
1528        if (!qedi->global_queues) {
1529                QEDI_ERR(&qedi->dbg_ctx,
1530                         "Unable to allocate global queues array ptr memory\n");
1531                return -ENOMEM;
1532        }
1533        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1534                  "qedi->global_queues=%p.\n", qedi->global_queues);
1535
1536        /* Allocate DMA coherent buffers for BDQ */
1537        rc = qedi_alloc_bdq(qedi);
1538        if (rc)
1539                goto mem_alloc_failure;
1540
1541        /* Allocate DMA coherent buffers for NVM_ISCSI_CFG */
1542        rc = qedi_alloc_nvm_iscsi_cfg(qedi);
1543        if (rc)
1544                goto mem_alloc_failure;
1545
1546        /* Allocate a CQ and an associated PBL for each MSI-X
1547         * vector.
1548         */
1549        for (i = 0; i < qedi->num_queues; i++) {
1550                qedi->global_queues[i] =
1551                                        kzalloc(sizeof(*qedi->global_queues[0]),
1552                                                GFP_KERNEL);
1553                if (!qedi->global_queues[i]) {
1554                        QEDI_ERR(&qedi->dbg_ctx,
1555                                 "Unable to allocation global queue %d.\n", i);
1556                        goto mem_alloc_failure;
1557                }
1558
1559                qedi->global_queues[i]->cq_mem_size =
1560                    (QEDI_CQ_SIZE + 8) * sizeof(union iscsi_cqe);
1561                qedi->global_queues[i]->cq_mem_size =
1562                    (qedi->global_queues[i]->cq_mem_size +
1563                    (QEDI_PAGE_SIZE - 1));
1564
1565                qedi->global_queues[i]->cq_pbl_size =
1566                    (qedi->global_queues[i]->cq_mem_size /
1567                    QEDI_PAGE_SIZE) * sizeof(void *);
1568                qedi->global_queues[i]->cq_pbl_size =
1569                    (qedi->global_queues[i]->cq_pbl_size +
1570                    (QEDI_PAGE_SIZE - 1));
1571
1572                qedi->global_queues[i]->cq = dma_zalloc_coherent(&qedi->pdev->dev,
1573                                                                 qedi->global_queues[i]->cq_mem_size,
1574                                                                 &qedi->global_queues[i]->cq_dma,
1575                                                                 GFP_KERNEL);
1576
1577                if (!qedi->global_queues[i]->cq) {
1578                        QEDI_WARN(&qedi->dbg_ctx,
1579                                  "Could not allocate cq.\n");
1580                        status = -ENOMEM;
1581                        goto mem_alloc_failure;
1582                }
1583                qedi->global_queues[i]->cq_pbl = dma_zalloc_coherent(&qedi->pdev->dev,
1584                                                                     qedi->global_queues[i]->cq_pbl_size,
1585                                                                     &qedi->global_queues[i]->cq_pbl_dma,
1586                                                                     GFP_KERNEL);
1587
1588                if (!qedi->global_queues[i]->cq_pbl) {
1589                        QEDI_WARN(&qedi->dbg_ctx,
1590                                  "Could not allocate cq PBL.\n");
1591                        status = -ENOMEM;
1592                        goto mem_alloc_failure;
1593                }
1594
1595                /* Create PBL */
1596                num_pages = qedi->global_queues[i]->cq_mem_size /
1597                    QEDI_PAGE_SIZE;
1598                page = qedi->global_queues[i]->cq_dma;
1599                pbl = (u32 *)qedi->global_queues[i]->cq_pbl;
1600
1601                while (num_pages--) {
1602                        *pbl = (u32)page;
1603                        pbl++;
1604                        *pbl = (u32)((u64)page >> 32);
1605                        pbl++;
1606                        page += QEDI_PAGE_SIZE;
1607                }
1608        }
1609
1610        list = (u32 *)qedi->p_cpuq;
1611
1612        /*
1613         * The list is built as follows: CQ#0 PBL pointer, RQ#0 PBL pointer,
1614         * CQ#1 PBL pointer, RQ#1 PBL pointer, etc.  Each PBL pointer points
1615         * to the physical address which contains an array of pointers to the
1616         * physical addresses of the specific queue pages.
1617         */
1618        for (i = 0; i < qedi->num_queues; i++) {
1619                *list = (u32)qedi->global_queues[i]->cq_pbl_dma;
1620                list++;
1621                *list = (u32)((u64)qedi->global_queues[i]->cq_pbl_dma >> 32);
1622                list++;
1623
1624                *list = (u32)0;
1625                list++;
1626                *list = (u32)((u64)0 >> 32);
1627                list++;
1628        }
1629
1630        return 0;
1631
1632mem_alloc_failure:
1633        qedi_free_global_queues(qedi);
1634        return status;
1635}
1636
1637int qedi_alloc_sq(struct qedi_ctx *qedi, struct qedi_endpoint *ep)
1638{
1639        int rval = 0;
1640        u32 *pbl;
1641        dma_addr_t page;
1642        int num_pages;
1643
1644        if (!ep)
1645                return -EIO;
1646
1647        /* Calculate appropriate queue and PBL sizes */
1648        ep->sq_mem_size = QEDI_SQ_SIZE * sizeof(struct iscsi_wqe);
1649        ep->sq_mem_size += QEDI_PAGE_SIZE - 1;
1650
1651        ep->sq_pbl_size = (ep->sq_mem_size / QEDI_PAGE_SIZE) * sizeof(void *);
1652        ep->sq_pbl_size = ep->sq_pbl_size + QEDI_PAGE_SIZE;
1653
1654        ep->sq = dma_zalloc_coherent(&qedi->pdev->dev, ep->sq_mem_size,
1655                                     &ep->sq_dma, GFP_KERNEL);
1656        if (!ep->sq) {
1657                QEDI_WARN(&qedi->dbg_ctx,
1658                          "Could not allocate send queue.\n");
1659                rval = -ENOMEM;
1660                goto out;
1661        }
1662        ep->sq_pbl = dma_zalloc_coherent(&qedi->pdev->dev, ep->sq_pbl_size,
1663                                         &ep->sq_pbl_dma, GFP_KERNEL);
1664        if (!ep->sq_pbl) {
1665                QEDI_WARN(&qedi->dbg_ctx,
1666                          "Could not allocate send queue PBL.\n");
1667                rval = -ENOMEM;
1668                goto out_free_sq;
1669        }
1670
1671        /* Create PBL */
1672        num_pages = ep->sq_mem_size / QEDI_PAGE_SIZE;
1673        page = ep->sq_dma;
1674        pbl = (u32 *)ep->sq_pbl;
1675
1676        while (num_pages--) {
1677                *pbl = (u32)page;
1678                pbl++;
1679                *pbl = (u32)((u64)page >> 32);
1680                pbl++;
1681                page += QEDI_PAGE_SIZE;
1682        }
1683
1684        return rval;
1685
1686out_free_sq:
1687        dma_free_coherent(&qedi->pdev->dev, ep->sq_mem_size, ep->sq,
1688                          ep->sq_dma);
1689out:
1690        return rval;
1691}
1692
1693void qedi_free_sq(struct qedi_ctx *qedi, struct qedi_endpoint *ep)
1694{
1695        if (ep->sq_pbl)
1696                dma_free_coherent(&qedi->pdev->dev, ep->sq_pbl_size, ep->sq_pbl,
1697                                  ep->sq_pbl_dma);
1698        if (ep->sq)
1699                dma_free_coherent(&qedi->pdev->dev, ep->sq_mem_size, ep->sq,
1700                                  ep->sq_dma);
1701}
1702
1703int qedi_get_task_idx(struct qedi_ctx *qedi)
1704{
1705        s16 tmp_idx;
1706
1707again:
1708        tmp_idx = find_first_zero_bit(qedi->task_idx_map,
1709                                      MAX_ISCSI_TASK_ENTRIES);
1710
1711        if (tmp_idx >= MAX_ISCSI_TASK_ENTRIES) {
1712                QEDI_ERR(&qedi->dbg_ctx, "FW task context pool is full.\n");
1713                tmp_idx = -1;
1714                goto err_idx;
1715        }
1716
1717        if (test_and_set_bit(tmp_idx, qedi->task_idx_map))
1718                goto again;
1719
1720err_idx:
1721        return tmp_idx;
1722}
1723
1724void qedi_clear_task_idx(struct qedi_ctx *qedi, int idx)
1725{
1726        if (!test_and_clear_bit(idx, qedi->task_idx_map))
1727                QEDI_ERR(&qedi->dbg_ctx,
1728                         "FW task context, already cleared, tid=0x%x\n", idx);
1729}
1730
1731void qedi_update_itt_map(struct qedi_ctx *qedi, u32 tid, u32 proto_itt,
1732                         struct qedi_cmd *cmd)
1733{
1734        qedi->itt_map[tid].itt = proto_itt;
1735        qedi->itt_map[tid].p_cmd = cmd;
1736
1737        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1738                  "update itt map tid=0x%x, with proto itt=0x%x\n", tid,
1739                  qedi->itt_map[tid].itt);
1740}
1741
1742void qedi_get_task_tid(struct qedi_ctx *qedi, u32 itt, s16 *tid)
1743{
1744        u16 i;
1745
1746        for (i = 0; i < MAX_ISCSI_TASK_ENTRIES; i++) {
1747                if (qedi->itt_map[i].itt == itt) {
1748                        *tid = i;
1749                        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1750                                  "Ref itt=0x%x, found at tid=0x%x\n",
1751                                  itt, *tid);
1752                        return;
1753                }
1754        }
1755
1756        WARN_ON(1);
1757}
1758
1759void qedi_get_proto_itt(struct qedi_ctx *qedi, u32 tid, u32 *proto_itt)
1760{
1761        *proto_itt = qedi->itt_map[tid].itt;
1762        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1763                  "Get itt map tid [0x%x with proto itt[0x%x]",
1764                  tid, *proto_itt);
1765}
1766
1767struct qedi_cmd *qedi_get_cmd_from_tid(struct qedi_ctx *qedi, u32 tid)
1768{
1769        struct qedi_cmd *cmd = NULL;
1770
1771        if (tid >= MAX_ISCSI_TASK_ENTRIES)
1772                return NULL;
1773
1774        cmd = qedi->itt_map[tid].p_cmd;
1775        if (cmd->task_id != tid)
1776                return NULL;
1777
1778        qedi->itt_map[tid].p_cmd = NULL;
1779
1780        return cmd;
1781}
1782
1783static int qedi_alloc_itt(struct qedi_ctx *qedi)
1784{
1785        qedi->itt_map = kcalloc(MAX_ISCSI_TASK_ENTRIES,
1786                                sizeof(struct qedi_itt_map), GFP_KERNEL);
1787        if (!qedi->itt_map) {
1788                QEDI_ERR(&qedi->dbg_ctx,
1789                         "Unable to allocate itt map array memory\n");
1790                return -ENOMEM;
1791        }
1792        return 0;
1793}
1794
1795static void qedi_free_itt(struct qedi_ctx *qedi)
1796{
1797        kfree(qedi->itt_map);
1798}
1799
1800static struct qed_ll2_cb_ops qedi_ll2_cb_ops = {
1801        .rx_cb = qedi_ll2_rx,
1802        .tx_cb = NULL,
1803};
1804
1805static int qedi_percpu_io_thread(void *arg)
1806{
1807        struct qedi_percpu_s *p = arg;
1808        struct qedi_work *work, *tmp;
1809        unsigned long flags;
1810        LIST_HEAD(work_list);
1811
1812        set_user_nice(current, -20);
1813
1814        while (!kthread_should_stop()) {
1815                spin_lock_irqsave(&p->p_work_lock, flags);
1816                while (!list_empty(&p->work_list)) {
1817                        list_splice_init(&p->work_list, &work_list);
1818                        spin_unlock_irqrestore(&p->p_work_lock, flags);
1819
1820                        list_for_each_entry_safe(work, tmp, &work_list, list) {
1821                                list_del_init(&work->list);
1822                                qedi_fp_process_cqes(work);
1823                                if (!work->is_solicited)
1824                                        kfree(work);
1825                        }
1826                        cond_resched();
1827                        spin_lock_irqsave(&p->p_work_lock, flags);
1828                }
1829                set_current_state(TASK_INTERRUPTIBLE);
1830                spin_unlock_irqrestore(&p->p_work_lock, flags);
1831                schedule();
1832        }
1833        __set_current_state(TASK_RUNNING);
1834
1835        return 0;
1836}
1837
1838static int qedi_cpu_online(unsigned int cpu)
1839{
1840        struct qedi_percpu_s *p = this_cpu_ptr(&qedi_percpu);
1841        struct task_struct *thread;
1842
1843        thread = kthread_create_on_node(qedi_percpu_io_thread, (void *)p,
1844                                        cpu_to_node(cpu),
1845                                        "qedi_thread/%d", cpu);
1846        if (IS_ERR(thread))
1847                return PTR_ERR(thread);
1848
1849        kthread_bind(thread, cpu);
1850        p->iothread = thread;
1851        wake_up_process(thread);
1852        return 0;
1853}
1854
1855static int qedi_cpu_offline(unsigned int cpu)
1856{
1857        struct qedi_percpu_s *p = this_cpu_ptr(&qedi_percpu);
1858        struct qedi_work *work, *tmp;
1859        struct task_struct *thread;
1860
1861        spin_lock_bh(&p->p_work_lock);
1862        thread = p->iothread;
1863        p->iothread = NULL;
1864
1865        list_for_each_entry_safe(work, tmp, &p->work_list, list) {
1866                list_del_init(&work->list);
1867                qedi_fp_process_cqes(work);
1868                if (!work->is_solicited)
1869                        kfree(work);
1870        }
1871
1872        spin_unlock_bh(&p->p_work_lock);
1873        if (thread)
1874                kthread_stop(thread);
1875        return 0;
1876}
1877
1878void qedi_reset_host_mtu(struct qedi_ctx *qedi, u16 mtu)
1879{
1880        struct qed_ll2_params params;
1881
1882        qedi_recover_all_conns(qedi);
1883
1884        qedi_ops->ll2->stop(qedi->cdev);
1885        qedi_ll2_free_skbs(qedi);
1886
1887        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, "old MTU %u, new MTU %u\n",
1888                  qedi->ll2_mtu, mtu);
1889        memset(&params, 0, sizeof(params));
1890        qedi->ll2_mtu = mtu;
1891        params.mtu = qedi->ll2_mtu + IPV6_HDR_LEN + TCP_HDR_LEN;
1892        params.drop_ttl0_packets = 0;
1893        params.rx_vlan_stripping = 1;
1894        ether_addr_copy(params.ll2_mac_address, qedi->dev_info.common.hw_mac);
1895        qedi_ops->ll2->start(qedi->cdev, &params);
1896}
1897
1898/**
1899 * qedi_get_nvram_block: - Scan through the iSCSI NVRAM block (while accounting
1900 * for gaps) for the matching absolute-pf-id of the QEDI device.
1901 */
1902static struct nvm_iscsi_block *
1903qedi_get_nvram_block(struct qedi_ctx *qedi)
1904{
1905        int i;
1906        u8 pf;
1907        u32 flags;
1908        struct nvm_iscsi_block *block;
1909
1910        pf = qedi->dev_info.common.abs_pf_id;
1911        block = &qedi->iscsi_image->iscsi_cfg.block[0];
1912        for (i = 0; i < NUM_OF_ISCSI_PF_SUPPORTED; i++, block++) {
1913                flags = ((block->id) & NVM_ISCSI_CFG_BLK_CTRL_FLAG_MASK) >>
1914                        NVM_ISCSI_CFG_BLK_CTRL_FLAG_OFFSET;
1915                if (flags & (NVM_ISCSI_CFG_BLK_CTRL_FLAG_IS_NOT_EMPTY |
1916                                NVM_ISCSI_CFG_BLK_CTRL_FLAG_PF_MAPPED) &&
1917                        (pf == (block->id & NVM_ISCSI_CFG_BLK_MAPPED_PF_ID_MASK)
1918                                >> NVM_ISCSI_CFG_BLK_MAPPED_PF_ID_OFFSET))
1919                        return block;
1920        }
1921        return NULL;
1922}
1923
1924static ssize_t qedi_show_boot_eth_info(void *data, int type, char *buf)
1925{
1926        struct qedi_ctx *qedi = data;
1927        struct nvm_iscsi_initiator *initiator;
1928        int rc = 1;
1929        u32 ipv6_en, dhcp_en, ip_len;
1930        struct nvm_iscsi_block *block;
1931        char *fmt, *ip, *sub, *gw;
1932
1933        block = qedi_get_nvram_block(qedi);
1934        if (!block)
1935                return 0;
1936
1937        initiator = &block->initiator;
1938        ipv6_en = block->generic.ctrl_flags &
1939                  NVM_ISCSI_CFG_GEN_IPV6_ENABLED;
1940        dhcp_en = block->generic.ctrl_flags &
1941                  NVM_ISCSI_CFG_GEN_DHCP_TCPIP_CONFIG_ENABLED;
1942        /* Static IP assignments. */
1943        fmt = ipv6_en ? "%pI6\n" : "%pI4\n";
1944        ip = ipv6_en ? initiator->ipv6.addr.byte : initiator->ipv4.addr.byte;
1945        ip_len = ipv6_en ? IPV6_LEN : IPV4_LEN;
1946        sub = ipv6_en ? initiator->ipv6.subnet_mask.byte :
1947              initiator->ipv4.subnet_mask.byte;
1948        gw = ipv6_en ? initiator->ipv6.gateway.byte :
1949             initiator->ipv4.gateway.byte;
1950        /* DHCP IP adjustments. */
1951        fmt = dhcp_en ? "%s\n" : fmt;
1952        if (dhcp_en) {
1953                ip = ipv6_en ? "0::0" : "0.0.0.0";
1954                sub = ip;
1955                gw = ip;
1956                ip_len = ipv6_en ? 5 : 8;
1957        }
1958
1959        switch (type) {
1960        case ISCSI_BOOT_ETH_IP_ADDR:
1961                rc = snprintf(buf, ip_len, fmt, ip);
1962                break;
1963        case ISCSI_BOOT_ETH_SUBNET_MASK:
1964                rc = snprintf(buf, ip_len, fmt, sub);
1965                break;
1966        case ISCSI_BOOT_ETH_GATEWAY:
1967                rc = snprintf(buf, ip_len, fmt, gw);
1968                break;
1969        case ISCSI_BOOT_ETH_FLAGS:
1970                rc = snprintf(buf, 3, "%hhd\n",
1971                              SYSFS_FLAG_FW_SEL_BOOT);
1972                break;
1973        case ISCSI_BOOT_ETH_INDEX:
1974                rc = snprintf(buf, 3, "0\n");
1975                break;
1976        case ISCSI_BOOT_ETH_MAC:
1977                rc = sysfs_format_mac(buf, qedi->mac, ETH_ALEN);
1978                break;
1979        case ISCSI_BOOT_ETH_VLAN:
1980                rc = snprintf(buf, 12, "%d\n",
1981                              GET_FIELD2(initiator->generic_cont0,
1982                                         NVM_ISCSI_CFG_INITIATOR_VLAN));
1983                break;
1984        case ISCSI_BOOT_ETH_ORIGIN:
1985                if (dhcp_en)
1986                        rc = snprintf(buf, 3, "3\n");
1987                break;
1988        default:
1989                rc = 0;
1990                break;
1991        }
1992
1993        return rc;
1994}
1995
1996static umode_t qedi_eth_get_attr_visibility(void *data, int type)
1997{
1998        int rc = 1;
1999
2000        switch (type) {
2001        case ISCSI_BOOT_ETH_FLAGS:
2002        case ISCSI_BOOT_ETH_MAC:
2003        case ISCSI_BOOT_ETH_INDEX:
2004        case ISCSI_BOOT_ETH_IP_ADDR:
2005        case ISCSI_BOOT_ETH_SUBNET_MASK:
2006        case ISCSI_BOOT_ETH_GATEWAY:
2007        case ISCSI_BOOT_ETH_ORIGIN:
2008        case ISCSI_BOOT_ETH_VLAN:
2009                rc = 0444;
2010                break;
2011        default:
2012                rc = 0;
2013                break;
2014        }
2015        return rc;
2016}
2017
2018static ssize_t qedi_show_boot_ini_info(void *data, int type, char *buf)
2019{
2020        struct qedi_ctx *qedi = data;
2021        struct nvm_iscsi_initiator *initiator;
2022        int rc;
2023        struct nvm_iscsi_block *block;
2024
2025        block = qedi_get_nvram_block(qedi);
2026        if (!block)
2027                return 0;
2028
2029        initiator = &block->initiator;
2030
2031        switch (type) {
2032        case ISCSI_BOOT_INI_INITIATOR_NAME:
2033                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_ISCSI_NAME_MAX_LEN,
2034                             initiator->initiator_name.byte);
2035                break;
2036        default:
2037                rc = 0;
2038                break;
2039        }
2040        return rc;
2041}
2042
2043static umode_t qedi_ini_get_attr_visibility(void *data, int type)
2044{
2045        int rc;
2046
2047        switch (type) {
2048        case ISCSI_BOOT_INI_INITIATOR_NAME:
2049                rc = 0444;
2050                break;
2051        default:
2052                rc = 0;
2053                break;
2054        }
2055        return rc;
2056}
2057
2058static ssize_t
2059qedi_show_boot_tgt_info(struct qedi_ctx *qedi, int type,
2060                        char *buf, enum qedi_nvm_tgts idx)
2061{
2062        int rc = 1;
2063        u32 ctrl_flags, ipv6_en, chap_en, mchap_en, ip_len;
2064        struct nvm_iscsi_block *block;
2065        char *chap_name, *chap_secret;
2066        char *mchap_name, *mchap_secret;
2067
2068        block = qedi_get_nvram_block(qedi);
2069        if (!block)
2070                goto exit_show_tgt_info;
2071
2072        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_EVT,
2073                  "Port:%d, tgt_idx:%d\n",
2074                  GET_FIELD2(block->id, NVM_ISCSI_CFG_BLK_MAPPED_PF_ID), idx);
2075
2076        ctrl_flags = block->target[idx].ctrl_flags &
2077                     NVM_ISCSI_CFG_TARGET_ENABLED;
2078
2079        if (!ctrl_flags) {
2080                QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_EVT,
2081                          "Target disabled\n");
2082                goto exit_show_tgt_info;
2083        }
2084
2085        ipv6_en = block->generic.ctrl_flags &
2086                  NVM_ISCSI_CFG_GEN_IPV6_ENABLED;
2087        ip_len = ipv6_en ? IPV6_LEN : IPV4_LEN;
2088        chap_en = block->generic.ctrl_flags &
2089                  NVM_ISCSI_CFG_GEN_CHAP_ENABLED;
2090        chap_name = chap_en ? block->initiator.chap_name.byte : NULL;
2091        chap_secret = chap_en ? block->initiator.chap_password.byte : NULL;
2092
2093        mchap_en = block->generic.ctrl_flags &
2094                  NVM_ISCSI_CFG_GEN_CHAP_MUTUAL_ENABLED;
2095        mchap_name = mchap_en ? block->target[idx].chap_name.byte : NULL;
2096        mchap_secret = mchap_en ? block->target[idx].chap_password.byte : NULL;
2097
2098        switch (type) {
2099        case ISCSI_BOOT_TGT_NAME:
2100                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_ISCSI_NAME_MAX_LEN,
2101                             block->target[idx].target_name.byte);
2102                break;
2103        case ISCSI_BOOT_TGT_IP_ADDR:
2104                if (ipv6_en)
2105                        rc = snprintf(buf, ip_len, "%pI6\n",
2106                                      block->target[idx].ipv6_addr.byte);
2107                else
2108                        rc = snprintf(buf, ip_len, "%pI4\n",
2109                                      block->target[idx].ipv4_addr.byte);
2110                break;
2111        case ISCSI_BOOT_TGT_PORT:
2112                rc = snprintf(buf, 12, "%d\n",
2113                              GET_FIELD2(block->target[idx].generic_cont0,
2114                                         NVM_ISCSI_CFG_TARGET_TCP_PORT));
2115                break;
2116        case ISCSI_BOOT_TGT_LUN:
2117                rc = snprintf(buf, 22, "%.*d\n",
2118                              block->target[idx].lun.value[1],
2119                              block->target[idx].lun.value[0]);
2120                break;
2121        case ISCSI_BOOT_TGT_CHAP_NAME:
2122                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
2123                             chap_name);
2124                break;
2125        case ISCSI_BOOT_TGT_CHAP_SECRET:
2126                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
2127                             chap_secret);
2128                break;
2129        case ISCSI_BOOT_TGT_REV_CHAP_NAME:
2130                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
2131                             mchap_name);
2132                break;
2133        case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
2134                rc = sprintf(buf, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
2135                             mchap_secret);
2136                break;
2137        case ISCSI_BOOT_TGT_FLAGS:
2138                rc = snprintf(buf, 3, "%hhd\n", SYSFS_FLAG_FW_SEL_BOOT);
2139                break;
2140        case ISCSI_BOOT_TGT_NIC_ASSOC:
2141                rc = snprintf(buf, 3, "0\n");
2142                break;
2143        default:
2144                rc = 0;
2145                break;
2146        }
2147
2148exit_show_tgt_info:
2149        return rc;
2150}
2151
2152static ssize_t qedi_show_boot_tgt_pri_info(void *data, int type, char *buf)
2153{
2154        struct qedi_ctx *qedi = data;
2155
2156        return qedi_show_boot_tgt_info(qedi, type, buf, QEDI_NVM_TGT_PRI);
2157}
2158
2159static ssize_t qedi_show_boot_tgt_sec_info(void *data, int type, char *buf)
2160{
2161        struct qedi_ctx *qedi = data;
2162
2163        return qedi_show_boot_tgt_info(qedi, type, buf, QEDI_NVM_TGT_SEC);
2164}
2165
2166static umode_t qedi_tgt_get_attr_visibility(void *data, int type)
2167{
2168        int rc;
2169
2170        switch (type) {
2171        case ISCSI_BOOT_TGT_NAME:
2172        case ISCSI_BOOT_TGT_IP_ADDR:
2173        case ISCSI_BOOT_TGT_PORT:
2174        case ISCSI_BOOT_TGT_LUN:
2175        case ISCSI_BOOT_TGT_CHAP_NAME:
2176        case ISCSI_BOOT_TGT_CHAP_SECRET:
2177        case ISCSI_BOOT_TGT_REV_CHAP_NAME:
2178        case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
2179        case ISCSI_BOOT_TGT_NIC_ASSOC:
2180        case ISCSI_BOOT_TGT_FLAGS:
2181                rc = 0444;
2182                break;
2183        default:
2184                rc = 0;
2185                break;
2186        }
2187        return rc;
2188}
2189
2190static void qedi_boot_release(void *data)
2191{
2192        struct qedi_ctx *qedi = data;
2193
2194        scsi_host_put(qedi->shost);
2195}
2196
2197static int qedi_get_boot_info(struct qedi_ctx *qedi)
2198{
2199        int ret = 1;
2200        struct qedi_nvm_iscsi_image nvm_image;
2201
2202        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
2203                  "Get NVM iSCSI CFG image\n");
2204        ret = qedi_ops->common->nvm_get_image(qedi->cdev,
2205                                              QED_NVM_IMAGE_ISCSI_CFG,
2206                                              (char *)qedi->iscsi_image,
2207                                              sizeof(nvm_image));
2208        if (ret)
2209                QEDI_ERR(&qedi->dbg_ctx,
2210                         "Could not get NVM image. ret = %d\n", ret);
2211
2212        return ret;
2213}
2214
2215static int qedi_setup_boot_info(struct qedi_ctx *qedi)
2216{
2217        struct iscsi_boot_kobj *boot_kobj;
2218
2219        if (qedi_get_boot_info(qedi))
2220                return -EPERM;
2221
2222        qedi->boot_kset = iscsi_boot_create_host_kset(qedi->shost->host_no);
2223        if (!qedi->boot_kset)
2224                goto kset_free;
2225
2226        if (!scsi_host_get(qedi->shost))
2227                goto kset_free;
2228
2229        boot_kobj = iscsi_boot_create_target(qedi->boot_kset, 0, qedi,
2230                                             qedi_show_boot_tgt_pri_info,
2231                                             qedi_tgt_get_attr_visibility,
2232                                             qedi_boot_release);
2233        if (!boot_kobj)
2234                goto put_host;
2235
2236        if (!scsi_host_get(qedi->shost))
2237                goto kset_free;
2238
2239        boot_kobj = iscsi_boot_create_target(qedi->boot_kset, 1, qedi,
2240                                             qedi_show_boot_tgt_sec_info,
2241                                             qedi_tgt_get_attr_visibility,
2242                                             qedi_boot_release);
2243        if (!boot_kobj)
2244                goto put_host;
2245
2246        if (!scsi_host_get(qedi->shost))
2247                goto kset_free;
2248
2249        boot_kobj = iscsi_boot_create_initiator(qedi->boot_kset, 0, qedi,
2250                                                qedi_show_boot_ini_info,
2251                                                qedi_ini_get_attr_visibility,
2252                                                qedi_boot_release);
2253        if (!boot_kobj)
2254                goto put_host;
2255
2256        if (!scsi_host_get(qedi->shost))
2257                goto kset_free;
2258
2259        boot_kobj = iscsi_boot_create_ethernet(qedi->boot_kset, 0, qedi,
2260                                               qedi_show_boot_eth_info,
2261                                               qedi_eth_get_attr_visibility,
2262                                               qedi_boot_release);
2263        if (!boot_kobj)
2264                goto put_host;
2265
2266        return 0;
2267
2268put_host:
2269        scsi_host_put(qedi->shost);
2270kset_free:
2271        iscsi_boot_destroy_kset(qedi->boot_kset);
2272        return -ENOMEM;
2273}
2274
2275static void __qedi_remove(struct pci_dev *pdev, int mode)
2276{
2277        struct qedi_ctx *qedi = pci_get_drvdata(pdev);
2278        int rval;
2279
2280        if (qedi->tmf_thread) {
2281                flush_workqueue(qedi->tmf_thread);
2282                destroy_workqueue(qedi->tmf_thread);
2283                qedi->tmf_thread = NULL;
2284        }
2285
2286        if (qedi->offload_thread) {
2287                flush_workqueue(qedi->offload_thread);
2288                destroy_workqueue(qedi->offload_thread);
2289                qedi->offload_thread = NULL;
2290        }
2291
2292#ifdef CONFIG_DEBUG_FS
2293        qedi_dbg_host_exit(&qedi->dbg_ctx);
2294#endif
2295        if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags))
2296                qedi_ops->common->set_power_state(qedi->cdev, PCI_D0);
2297
2298        qedi_sync_free_irqs(qedi);
2299
2300        if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags)) {
2301                qedi_ops->stop(qedi->cdev);
2302                qedi_ops->ll2->stop(qedi->cdev);
2303        }
2304
2305        if (mode == QEDI_MODE_NORMAL)
2306                qedi_free_iscsi_pf_param(qedi);
2307
2308        rval = qedi_ops->common->update_drv_state(qedi->cdev, false);
2309        if (rval)
2310                QEDI_ERR(&qedi->dbg_ctx, "Failed to send drv state to MFW\n");
2311
2312        if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags)) {
2313                qedi_ops->common->slowpath_stop(qedi->cdev);
2314                qedi_ops->common->remove(qedi->cdev);
2315        }
2316
2317        qedi_destroy_fp(qedi);
2318
2319        if (mode == QEDI_MODE_NORMAL) {
2320                qedi_release_cid_que(qedi);
2321                qedi_cm_free_mem(qedi);
2322                qedi_free_uio(qedi->udev);
2323                qedi_free_itt(qedi);
2324
2325                iscsi_host_remove(qedi->shost);
2326                iscsi_host_free(qedi->shost);
2327
2328                if (qedi->ll2_recv_thread) {
2329                        kthread_stop(qedi->ll2_recv_thread);
2330                        qedi->ll2_recv_thread = NULL;
2331                }
2332                qedi_ll2_free_skbs(qedi);
2333
2334                if (qedi->boot_kset)
2335                        iscsi_boot_destroy_kset(qedi->boot_kset);
2336        }
2337}
2338
2339static int __qedi_probe(struct pci_dev *pdev, int mode)
2340{
2341        struct qedi_ctx *qedi;
2342        struct qed_ll2_params params;
2343        u32 dp_module = 0;
2344        u8 dp_level = 0;
2345        bool is_vf = false;
2346        char host_buf[16];
2347        struct qed_link_params link_params;
2348        struct qed_slowpath_params sp_params;
2349        struct qed_probe_params qed_params;
2350        void *task_start, *task_end;
2351        int rc;
2352        u16 tmp;
2353
2354        if (mode != QEDI_MODE_RECOVERY) {
2355                qedi = qedi_host_alloc(pdev);
2356                if (!qedi) {
2357                        rc = -ENOMEM;
2358                        goto exit_probe;
2359                }
2360        } else {
2361                qedi = pci_get_drvdata(pdev);
2362        }
2363
2364        memset(&qed_params, 0, sizeof(qed_params));
2365        qed_params.protocol = QED_PROTOCOL_ISCSI;
2366        qed_params.dp_module = dp_module;
2367        qed_params.dp_level = dp_level;
2368        qed_params.is_vf = is_vf;
2369        qedi->cdev = qedi_ops->common->probe(pdev, &qed_params);
2370        if (!qedi->cdev) {
2371                rc = -ENODEV;
2372                QEDI_ERR(&qedi->dbg_ctx, "Cannot initialize hardware\n");
2373                goto free_host;
2374        }
2375
2376        atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
2377
2378        rc = qedi_ops->fill_dev_info(qedi->cdev, &qedi->dev_info);
2379        if (rc)
2380                goto free_host;
2381
2382        if (mode != QEDI_MODE_RECOVERY) {
2383                rc = qedi_set_iscsi_pf_param(qedi);
2384                if (rc) {
2385                        rc = -ENOMEM;
2386                        QEDI_ERR(&qedi->dbg_ctx,
2387                                 "Set iSCSI pf param fail\n");
2388                        goto free_host;
2389                }
2390        }
2391
2392        qedi_ops->common->update_pf_params(qedi->cdev, &qedi->pf_params);
2393
2394        rc = qedi_prepare_fp(qedi);
2395        if (rc) {
2396                QEDI_ERR(&qedi->dbg_ctx, "Cannot start slowpath.\n");
2397                goto free_pf_params;
2398        }
2399
2400        /* Start the Slowpath-process */
2401        memset(&sp_params, 0, sizeof(struct qed_slowpath_params));
2402        sp_params.int_mode = QED_INT_MODE_MSIX;
2403        sp_params.drv_major = QEDI_DRIVER_MAJOR_VER;
2404        sp_params.drv_minor = QEDI_DRIVER_MINOR_VER;
2405        sp_params.drv_rev = QEDI_DRIVER_REV_VER;
2406        sp_params.drv_eng = QEDI_DRIVER_ENG_VER;
2407        strlcpy(sp_params.name, "qedi iSCSI", QED_DRV_VER_STR_SIZE);
2408        rc = qedi_ops->common->slowpath_start(qedi->cdev, &sp_params);
2409        if (rc) {
2410                QEDI_ERR(&qedi->dbg_ctx, "Cannot start slowpath\n");
2411                goto stop_hw;
2412        }
2413
2414        /* update_pf_params needs to be called before and after slowpath
2415         * start
2416         */
2417        qedi_ops->common->update_pf_params(qedi->cdev, &qedi->pf_params);
2418
2419        rc = qedi_setup_int(qedi);
2420        if (rc)
2421                goto stop_iscsi_func;
2422
2423        qedi_ops->common->set_power_state(qedi->cdev, PCI_D0);
2424
2425        /* Learn information crucial for qedi to progress */
2426        rc = qedi_ops->fill_dev_info(qedi->cdev, &qedi->dev_info);
2427        if (rc)
2428                goto stop_iscsi_func;
2429
2430        /* Record BDQ producer doorbell addresses */
2431        qedi->bdq_primary_prod = qedi->dev_info.primary_dbq_rq_addr;
2432        qedi->bdq_secondary_prod = qedi->dev_info.secondary_bdq_rq_addr;
2433        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2434                  "BDQ primary_prod=%p secondary_prod=%p.\n",
2435                  qedi->bdq_primary_prod,
2436                  qedi->bdq_secondary_prod);
2437
2438        /*
2439         * We need to write the number of BDs in the BDQ we've preallocated so
2440         * the f/w will do a prefetch and we'll get an unsolicited CQE when a
2441         * packet arrives.
2442         */
2443        qedi->bdq_prod_idx = QEDI_BDQ_NUM;
2444        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2445                  "Writing %d to primary and secondary BDQ doorbell registers.\n",
2446                  qedi->bdq_prod_idx);
2447        writew(qedi->bdq_prod_idx, qedi->bdq_primary_prod);
2448        tmp = readw(qedi->bdq_primary_prod);
2449        writew(qedi->bdq_prod_idx, qedi->bdq_secondary_prod);
2450        tmp = readw(qedi->bdq_secondary_prod);
2451
2452        ether_addr_copy(qedi->mac, qedi->dev_info.common.hw_mac);
2453        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC, "MAC address is %pM.\n",
2454                  qedi->mac);
2455
2456        sprintf(host_buf, "host_%d", qedi->shost->host_no);
2457        qedi_ops->common->set_name(qedi->cdev, host_buf);
2458
2459        qedi_ops->register_ops(qedi->cdev, &qedi_cb_ops, qedi);
2460
2461        memset(&params, 0, sizeof(params));
2462        params.mtu = DEF_PATH_MTU + IPV6_HDR_LEN + TCP_HDR_LEN;
2463        qedi->ll2_mtu = DEF_PATH_MTU;
2464        params.drop_ttl0_packets = 0;
2465        params.rx_vlan_stripping = 1;
2466        ether_addr_copy(params.ll2_mac_address, qedi->dev_info.common.hw_mac);
2467
2468        if (mode != QEDI_MODE_RECOVERY) {
2469                /* set up rx path */
2470                INIT_LIST_HEAD(&qedi->ll2_skb_list);
2471                spin_lock_init(&qedi->ll2_lock);
2472                /* start qedi context */
2473                spin_lock_init(&qedi->hba_lock);
2474                spin_lock_init(&qedi->task_idx_lock);
2475                mutex_init(&qedi->stats_lock);
2476        }
2477        qedi_ops->ll2->register_cb_ops(qedi->cdev, &qedi_ll2_cb_ops, qedi);
2478        qedi_ops->ll2->start(qedi->cdev, &params);
2479
2480        if (mode != QEDI_MODE_RECOVERY) {
2481                qedi->ll2_recv_thread = kthread_run(qedi_ll2_recv_thread,
2482                                                    (void *)qedi,
2483                                                    "qedi_ll2_thread");
2484        }
2485
2486        rc = qedi_ops->start(qedi->cdev, &qedi->tasks,
2487                             qedi, qedi_iscsi_event_cb);
2488        if (rc) {
2489                rc = -ENODEV;
2490                QEDI_ERR(&qedi->dbg_ctx, "Cannot start iSCSI function\n");
2491                goto stop_slowpath;
2492        }
2493
2494        task_start = qedi_get_task_mem(&qedi->tasks, 0);
2495        task_end = qedi_get_task_mem(&qedi->tasks, MAX_TID_BLOCKS_ISCSI - 1);
2496        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2497                  "Task context start=%p, end=%p block_size=%u.\n",
2498                   task_start, task_end, qedi->tasks.size);
2499
2500        memset(&link_params, 0, sizeof(link_params));
2501        link_params.link_up = true;
2502        rc = qedi_ops->common->set_link(qedi->cdev, &link_params);
2503        if (rc) {
2504                QEDI_WARN(&qedi->dbg_ctx, "Link set up failed.\n");
2505                atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
2506        }
2507
2508#ifdef CONFIG_DEBUG_FS
2509        qedi_dbg_host_init(&qedi->dbg_ctx, qedi_debugfs_ops,
2510                           qedi_dbg_fops);
2511#endif
2512        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
2513                  "QLogic FastLinQ iSCSI Module qedi %s, FW %d.%d.%d.%d\n",
2514                  QEDI_MODULE_VERSION, FW_MAJOR_VERSION, FW_MINOR_VERSION,
2515                  FW_REVISION_VERSION, FW_ENGINEERING_VERSION);
2516
2517        if (mode == QEDI_MODE_NORMAL) {
2518                if (iscsi_host_add(qedi->shost, &pdev->dev)) {
2519                        QEDI_ERR(&qedi->dbg_ctx,
2520                                 "Could not add iscsi host\n");
2521                        rc = -ENOMEM;
2522                        goto remove_host;
2523                }
2524
2525                /* Allocate uio buffers */
2526                rc = qedi_alloc_uio_rings(qedi);
2527                if (rc) {
2528                        QEDI_ERR(&qedi->dbg_ctx,
2529                                 "UIO alloc ring failed err=%d\n", rc);
2530                        goto remove_host;
2531                }
2532
2533                rc = qedi_init_uio(qedi);
2534                if (rc) {
2535                        QEDI_ERR(&qedi->dbg_ctx,
2536                                 "UIO init failed, err=%d\n", rc);
2537                        goto free_uio;
2538                }
2539
2540                /* host the array on iscsi_conn */
2541                rc = qedi_setup_cid_que(qedi);
2542                if (rc) {
2543                        QEDI_ERR(&qedi->dbg_ctx,
2544                                 "Could not setup cid que\n");
2545                        goto free_uio;
2546                }
2547
2548                rc = qedi_cm_alloc_mem(qedi);
2549                if (rc) {
2550                        QEDI_ERR(&qedi->dbg_ctx,
2551                                 "Could not alloc cm memory\n");
2552                        goto free_cid_que;
2553                }
2554
2555                rc = qedi_alloc_itt(qedi);
2556                if (rc) {
2557                        QEDI_ERR(&qedi->dbg_ctx,
2558                                 "Could not alloc itt memory\n");
2559                        goto free_cid_que;
2560                }
2561
2562                sprintf(host_buf, "host_%d", qedi->shost->host_no);
2563                qedi->tmf_thread = create_singlethread_workqueue(host_buf);
2564                if (!qedi->tmf_thread) {
2565                        QEDI_ERR(&qedi->dbg_ctx,
2566                                 "Unable to start tmf thread!\n");
2567                        rc = -ENODEV;
2568                        goto free_cid_que;
2569                }
2570
2571                sprintf(host_buf, "qedi_ofld%d", qedi->shost->host_no);
2572                qedi->offload_thread = create_workqueue(host_buf);
2573                if (!qedi->offload_thread) {
2574                        QEDI_ERR(&qedi->dbg_ctx,
2575                                 "Unable to start offload thread!\n");
2576                        rc = -ENODEV;
2577                        goto free_cid_que;
2578                }
2579
2580                /* F/w needs 1st task context memory entry for performance */
2581                set_bit(QEDI_RESERVE_TASK_ID, qedi->task_idx_map);
2582                atomic_set(&qedi->num_offloads, 0);
2583
2584                if (qedi_setup_boot_info(qedi))
2585                        QEDI_ERR(&qedi->dbg_ctx,
2586                                 "No iSCSI boot target configured\n");
2587
2588                rc = qedi_ops->common->update_drv_state(qedi->cdev, true);
2589                if (rc)
2590                        QEDI_ERR(&qedi->dbg_ctx,
2591                                 "Failed to send drv state to MFW\n");
2592
2593        }
2594
2595        return 0;
2596
2597free_cid_que:
2598        qedi_release_cid_que(qedi);
2599free_uio:
2600        qedi_free_uio(qedi->udev);
2601remove_host:
2602#ifdef CONFIG_DEBUG_FS
2603        qedi_dbg_host_exit(&qedi->dbg_ctx);
2604#endif
2605        iscsi_host_remove(qedi->shost);
2606stop_iscsi_func:
2607        qedi_ops->stop(qedi->cdev);
2608stop_slowpath:
2609        qedi_ops->common->slowpath_stop(qedi->cdev);
2610stop_hw:
2611        qedi_ops->common->remove(qedi->cdev);
2612free_pf_params:
2613        qedi_free_iscsi_pf_param(qedi);
2614free_host:
2615        iscsi_host_free(qedi->shost);
2616exit_probe:
2617        return rc;
2618}
2619
2620static int qedi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2621{
2622        return __qedi_probe(pdev, QEDI_MODE_NORMAL);
2623}
2624
2625static void qedi_remove(struct pci_dev *pdev)
2626{
2627        __qedi_remove(pdev, QEDI_MODE_NORMAL);
2628}
2629
2630static struct pci_device_id qedi_pci_tbl[] = {
2631        { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x165E) },
2632        { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x8084) },
2633        { 0 },
2634};
2635MODULE_DEVICE_TABLE(pci, qedi_pci_tbl);
2636
2637static enum cpuhp_state qedi_cpuhp_state;
2638
2639static struct pci_driver qedi_pci_driver = {
2640        .name = QEDI_MODULE_NAME,
2641        .id_table = qedi_pci_tbl,
2642        .probe = qedi_probe,
2643        .remove = qedi_remove,
2644};
2645
2646static int __init qedi_init(void)
2647{
2648        struct qedi_percpu_s *p;
2649        int cpu, rc = 0;
2650
2651        qedi_ops = qed_get_iscsi_ops();
2652        if (!qedi_ops) {
2653                QEDI_ERR(NULL, "Failed to get qed iSCSI operations\n");
2654                return -EINVAL;
2655        }
2656
2657#ifdef CONFIG_DEBUG_FS
2658        qedi_dbg_init("qedi");
2659#endif
2660
2661        qedi_scsi_transport = iscsi_register_transport(&qedi_iscsi_transport);
2662        if (!qedi_scsi_transport) {
2663                QEDI_ERR(NULL, "Could not register qedi transport");
2664                rc = -ENOMEM;
2665                goto exit_qedi_init_1;
2666        }
2667
2668        for_each_possible_cpu(cpu) {
2669                p = &per_cpu(qedi_percpu, cpu);
2670                INIT_LIST_HEAD(&p->work_list);
2671                spin_lock_init(&p->p_work_lock);
2672                p->iothread = NULL;
2673        }
2674
2675        rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "scsi/qedi:online",
2676                               qedi_cpu_online, qedi_cpu_offline);
2677        if (rc < 0)
2678                goto exit_qedi_init_2;
2679        qedi_cpuhp_state = rc;
2680
2681        rc = pci_register_driver(&qedi_pci_driver);
2682        if (rc) {
2683                QEDI_ERR(NULL, "Failed to register driver\n");
2684                goto exit_qedi_hp;
2685        }
2686
2687        return 0;
2688
2689exit_qedi_hp:
2690        cpuhp_remove_state(qedi_cpuhp_state);
2691exit_qedi_init_2:
2692        iscsi_unregister_transport(&qedi_iscsi_transport);
2693exit_qedi_init_1:
2694#ifdef CONFIG_DEBUG_FS
2695        qedi_dbg_exit();
2696#endif
2697        qed_put_iscsi_ops();
2698        return rc;
2699}
2700
2701static void __exit qedi_cleanup(void)
2702{
2703        pci_unregister_driver(&qedi_pci_driver);
2704        cpuhp_remove_state(qedi_cpuhp_state);
2705        iscsi_unregister_transport(&qedi_iscsi_transport);
2706
2707#ifdef CONFIG_DEBUG_FS
2708        qedi_dbg_exit();
2709#endif
2710        qed_put_iscsi_ops();
2711}
2712
2713MODULE_DESCRIPTION("QLogic FastLinQ 4xxxx iSCSI Module");
2714MODULE_LICENSE("GPL");
2715MODULE_AUTHOR("QLogic Corporation");
2716MODULE_VERSION(QEDI_MODULE_VERSION);
2717module_init(qedi_init);
2718module_exit(qedi_cleanup);
2719