linux/drivers/infiniband/hw/bnxt_re/main.c
<<
>>
Prefs
   1/*
   2 * Broadcom NetXtreme-E RoCE driver.
   3 *
   4 * Copyright (c) 2016 - 2017, Broadcom. All rights reserved.  The term
   5 * Broadcom refers to Broadcom Limited and/or its subsidiaries.
   6 *
   7 * This software is available to you under a choice of one of two
   8 * licenses.  You may choose to be licensed under the terms of the GNU
   9 * General Public License (GPL) Version 2, available from the file
  10 * COPYING in the main directory of this source tree, or the
  11 * BSD license below:
  12 *
  13 * Redistribution and use in source and binary forms, with or without
  14 * modification, are permitted provided that the following conditions
  15 * are met:
  16 *
  17 * 1. Redistributions of source code must retain the above copyright
  18 *    notice, this list of conditions and the following disclaimer.
  19 * 2. Redistributions in binary form must reproduce the above copyright
  20 *    notice, this list of conditions and the following disclaimer in
  21 *    the documentation and/or other materials provided with the
  22 *    distribution.
  23 *
  24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
  25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
  28 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  33 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  34 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35 *
  36 * Description: Main component of the bnxt_re driver
  37 */
  38
  39#include <linux/module.h>
  40#include <linux/netdevice.h>
  41#include <linux/ethtool.h>
  42#include <linux/mutex.h>
  43#include <linux/list.h>
  44#include <linux/rculist.h>
  45#include <linux/spinlock.h>
  46#include <linux/pci.h>
  47#include <net/dcbnl.h>
  48#include <net/ipv6.h>
  49#include <net/addrconf.h>
  50#include <linux/if_ether.h>
  51
  52#include <rdma/ib_verbs.h>
  53#include <rdma/ib_user_verbs.h>
  54#include <rdma/ib_umem.h>
  55#include <rdma/ib_addr.h>
  56
  57#include "bnxt_ulp.h"
  58#include "roce_hsi.h"
  59#include "qplib_res.h"
  60#include "qplib_sp.h"
  61#include "qplib_fp.h"
  62#include "qplib_rcfw.h"
  63#include "bnxt_re.h"
  64#include "ib_verbs.h"
  65#include <rdma/bnxt_re-abi.h>
  66#include "bnxt.h"
  67#include "hw_counters.h"
  68
  69static char version[] =
  70                BNXT_RE_DESC " v" ROCE_DRV_MODULE_VERSION "\n";
  71
  72MODULE_AUTHOR("Eddie Wai <eddie.wai@broadcom.com>");
  73MODULE_DESCRIPTION(BNXT_RE_DESC " Driver");
  74MODULE_LICENSE("Dual BSD/GPL");
  75
  76/* globals */
  77static struct list_head bnxt_re_dev_list = LIST_HEAD_INIT(bnxt_re_dev_list);
  78/* Mutex to protect the list of bnxt_re devices added */
  79static DEFINE_MUTEX(bnxt_re_dev_lock);
  80static struct workqueue_struct *bnxt_re_wq;
  81static void bnxt_re_ib_unreg(struct bnxt_re_dev *rdev, bool lock_wait);
  82
  83/* SR-IOV helper functions */
  84
  85static void bnxt_re_get_sriov_func_type(struct bnxt_re_dev *rdev)
  86{
  87        struct bnxt *bp;
  88
  89        bp = netdev_priv(rdev->en_dev->net);
  90        if (BNXT_VF(bp))
  91                rdev->is_virtfn = 1;
  92}
  93
  94/* Set the maximum number of each resource that the driver actually wants
  95 * to allocate. This may be up to the maximum number the firmware has
  96 * reserved for the function. The driver may choose to allocate fewer
  97 * resources than the firmware maximum.
  98 */
  99static void bnxt_re_set_resource_limits(struct bnxt_re_dev *rdev)
 100{
 101        u32 vf_qps = 0, vf_srqs = 0, vf_cqs = 0, vf_mrws = 0, vf_gids = 0;
 102        u32 i;
 103        u32 vf_pct;
 104        u32 num_vfs;
 105        struct bnxt_qplib_dev_attr *dev_attr = &rdev->dev_attr;
 106
 107        rdev->qplib_ctx.qpc_count = min_t(u32, BNXT_RE_MAX_QPC_COUNT,
 108                                          dev_attr->max_qp);
 109
 110        rdev->qplib_ctx.mrw_count = BNXT_RE_MAX_MRW_COUNT_256K;
 111        /* Use max_mr from fw since max_mrw does not get set */
 112        rdev->qplib_ctx.mrw_count = min_t(u32, rdev->qplib_ctx.mrw_count,
 113                                          dev_attr->max_mr);
 114        rdev->qplib_ctx.srqc_count = min_t(u32, BNXT_RE_MAX_SRQC_COUNT,
 115                                           dev_attr->max_srq);
 116        rdev->qplib_ctx.cq_count = min_t(u32, BNXT_RE_MAX_CQ_COUNT,
 117                                         dev_attr->max_cq);
 118
 119        for (i = 0; i < MAX_TQM_ALLOC_REQ; i++)
 120                rdev->qplib_ctx.tqm_count[i] =
 121                rdev->dev_attr.tqm_alloc_reqs[i];
 122
 123        if (rdev->num_vfs) {
 124                /*
 125                 * Reserve a set of resources for the PF. Divide the remaining
 126                 * resources among the VFs
 127                 */
 128                vf_pct = 100 - BNXT_RE_PCT_RSVD_FOR_PF;
 129                num_vfs = 100 * rdev->num_vfs;
 130                vf_qps = (rdev->qplib_ctx.qpc_count * vf_pct) / num_vfs;
 131                vf_srqs = (rdev->qplib_ctx.srqc_count * vf_pct) / num_vfs;
 132                vf_cqs = (rdev->qplib_ctx.cq_count * vf_pct) / num_vfs;
 133                /*
 134                 * The driver allows many more MRs than other resources. If the
 135                 * firmware does also, then reserve a fixed amount for the PF
 136                 * and divide the rest among VFs. VFs may use many MRs for NFS
 137                 * mounts, ISER, NVME applications, etc. If the firmware
 138                 * severely restricts the number of MRs, then let PF have
 139                 * half and divide the rest among VFs, as for the other
 140                 * resource types.
 141                 */
 142                if (rdev->qplib_ctx.mrw_count < BNXT_RE_MAX_MRW_COUNT_64K)
 143                        vf_mrws = rdev->qplib_ctx.mrw_count * vf_pct / num_vfs;
 144                else
 145                        vf_mrws = (rdev->qplib_ctx.mrw_count -
 146                                   BNXT_RE_RESVD_MR_FOR_PF) / rdev->num_vfs;
 147                vf_gids = BNXT_RE_MAX_GID_PER_VF;
 148        }
 149        rdev->qplib_ctx.vf_res.max_mrw_per_vf = vf_mrws;
 150        rdev->qplib_ctx.vf_res.max_gid_per_vf = vf_gids;
 151        rdev->qplib_ctx.vf_res.max_qp_per_vf = vf_qps;
 152        rdev->qplib_ctx.vf_res.max_srq_per_vf = vf_srqs;
 153        rdev->qplib_ctx.vf_res.max_cq_per_vf = vf_cqs;
 154}
 155
 156/* for handling bnxt_en callbacks later */
 157static void bnxt_re_stop(void *p)
 158{
 159}
 160
 161static void bnxt_re_start(void *p)
 162{
 163}
 164
 165static void bnxt_re_sriov_config(void *p, int num_vfs)
 166{
 167        struct bnxt_re_dev *rdev = p;
 168
 169        if (!rdev)
 170                return;
 171
 172        rdev->num_vfs = num_vfs;
 173        bnxt_re_set_resource_limits(rdev);
 174        bnxt_qplib_set_func_resources(&rdev->qplib_res, &rdev->rcfw,
 175                                      &rdev->qplib_ctx);
 176}
 177
 178static void bnxt_re_shutdown(void *p)
 179{
 180        struct bnxt_re_dev *rdev = p;
 181
 182        if (!rdev)
 183                return;
 184
 185        bnxt_re_ib_unreg(rdev, false);
 186}
 187
 188static void bnxt_re_stop_irq(void *handle)
 189{
 190        struct bnxt_re_dev *rdev = (struct bnxt_re_dev *)handle;
 191        struct bnxt_qplib_rcfw *rcfw = &rdev->rcfw;
 192        struct bnxt_qplib_nq *nq;
 193        int indx;
 194
 195        for (indx = BNXT_RE_NQ_IDX; indx < rdev->num_msix; indx++) {
 196                nq = &rdev->nq[indx - 1];
 197                bnxt_qplib_nq_stop_irq(nq, false);
 198        }
 199
 200        bnxt_qplib_rcfw_stop_irq(rcfw, false);
 201}
 202
 203static void bnxt_re_start_irq(void *handle, struct bnxt_msix_entry *ent)
 204{
 205        struct bnxt_re_dev *rdev = (struct bnxt_re_dev *)handle;
 206        struct bnxt_msix_entry *msix_ent = rdev->msix_entries;
 207        struct bnxt_qplib_rcfw *rcfw = &rdev->rcfw;
 208        struct bnxt_qplib_nq *nq;
 209        int indx, rc;
 210
 211        if (!ent) {
 212                /* Not setting the f/w timeout bit in rcfw.
 213                 * During the driver unload the first command
 214                 * to f/w will timeout and that will set the
 215                 * timeout bit.
 216                 */
 217                dev_err(rdev_to_dev(rdev), "Failed to re-start IRQs\n");
 218                return;
 219        }
 220
 221        /* Vectors may change after restart, so update with new vectors
 222         * in device sctructure.
 223         */
 224        for (indx = 0; indx < rdev->num_msix; indx++)
 225                rdev->msix_entries[indx].vector = ent[indx].vector;
 226
 227        bnxt_qplib_rcfw_start_irq(rcfw, msix_ent[BNXT_RE_AEQ_IDX].vector,
 228                                  false);
 229        for (indx = BNXT_RE_NQ_IDX ; indx < rdev->num_msix; indx++) {
 230                nq = &rdev->nq[indx - 1];
 231                rc = bnxt_qplib_nq_start_irq(nq, indx - 1,
 232                                             msix_ent[indx].vector, false);
 233                if (rc)
 234                        dev_warn(rdev_to_dev(rdev),
 235                                 "Failed to reinit NQ index %d\n", indx - 1);
 236        }
 237}
 238
 239static struct bnxt_ulp_ops bnxt_re_ulp_ops = {
 240        .ulp_async_notifier = NULL,
 241        .ulp_stop = bnxt_re_stop,
 242        .ulp_start = bnxt_re_start,
 243        .ulp_sriov_config = bnxt_re_sriov_config,
 244        .ulp_shutdown = bnxt_re_shutdown,
 245        .ulp_irq_stop = bnxt_re_stop_irq,
 246        .ulp_irq_restart = bnxt_re_start_irq
 247};
 248
 249/* RoCE -> Net driver */
 250
 251/* Driver registration routines used to let the networking driver (bnxt_en)
 252 * to know that the RoCE driver is now installed
 253 */
 254static int bnxt_re_unregister_netdev(struct bnxt_re_dev *rdev, bool lock_wait)
 255{
 256        struct bnxt_en_dev *en_dev;
 257        int rc;
 258
 259        if (!rdev)
 260                return -EINVAL;
 261
 262        en_dev = rdev->en_dev;
 263        /* Acquire rtnl lock if it is not invokded from netdev event */
 264        if (lock_wait)
 265                rtnl_lock();
 266
 267        rc = en_dev->en_ops->bnxt_unregister_device(rdev->en_dev,
 268                                                    BNXT_ROCE_ULP);
 269        if (lock_wait)
 270                rtnl_unlock();
 271        return rc;
 272}
 273
 274static int bnxt_re_register_netdev(struct bnxt_re_dev *rdev)
 275{
 276        struct bnxt_en_dev *en_dev;
 277        int rc = 0;
 278
 279        if (!rdev)
 280                return -EINVAL;
 281
 282        en_dev = rdev->en_dev;
 283
 284        rtnl_lock();
 285        rc = en_dev->en_ops->bnxt_register_device(en_dev, BNXT_ROCE_ULP,
 286                                                  &bnxt_re_ulp_ops, rdev);
 287        rtnl_unlock();
 288        return rc;
 289}
 290
 291static int bnxt_re_free_msix(struct bnxt_re_dev *rdev, bool lock_wait)
 292{
 293        struct bnxt_en_dev *en_dev;
 294        int rc;
 295
 296        if (!rdev)
 297                return -EINVAL;
 298
 299        en_dev = rdev->en_dev;
 300
 301        if (lock_wait)
 302                rtnl_lock();
 303
 304        rc = en_dev->en_ops->bnxt_free_msix(rdev->en_dev, BNXT_ROCE_ULP);
 305
 306        if (lock_wait)
 307                rtnl_unlock();
 308        return rc;
 309}
 310
 311static int bnxt_re_request_msix(struct bnxt_re_dev *rdev)
 312{
 313        int rc = 0, num_msix_want = BNXT_RE_MAX_MSIX, num_msix_got;
 314        struct bnxt_en_dev *en_dev;
 315
 316        if (!rdev)
 317                return -EINVAL;
 318
 319        en_dev = rdev->en_dev;
 320
 321        num_msix_want = min_t(u32, BNXT_RE_MAX_MSIX, num_online_cpus());
 322
 323        rtnl_lock();
 324        num_msix_got = en_dev->en_ops->bnxt_request_msix(en_dev, BNXT_ROCE_ULP,
 325                                                         rdev->msix_entries,
 326                                                         num_msix_want);
 327        if (num_msix_got < BNXT_RE_MIN_MSIX) {
 328                rc = -EINVAL;
 329                goto done;
 330        }
 331        if (num_msix_got != num_msix_want) {
 332                dev_warn(rdev_to_dev(rdev),
 333                         "Requested %d MSI-X vectors, got %d\n",
 334                         num_msix_want, num_msix_got);
 335        }
 336        rdev->num_msix = num_msix_got;
 337done:
 338        rtnl_unlock();
 339        return rc;
 340}
 341
 342static void bnxt_re_init_hwrm_hdr(struct bnxt_re_dev *rdev, struct input *hdr,
 343                                  u16 opcd, u16 crid, u16 trid)
 344{
 345        hdr->req_type = cpu_to_le16(opcd);
 346        hdr->cmpl_ring = cpu_to_le16(crid);
 347        hdr->target_id = cpu_to_le16(trid);
 348}
 349
 350static void bnxt_re_fill_fw_msg(struct bnxt_fw_msg *fw_msg, void *msg,
 351                                int msg_len, void *resp, int resp_max_len,
 352                                int timeout)
 353{
 354        fw_msg->msg = msg;
 355        fw_msg->msg_len = msg_len;
 356        fw_msg->resp = resp;
 357        fw_msg->resp_max_len = resp_max_len;
 358        fw_msg->timeout = timeout;
 359}
 360
 361static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev, u16 fw_ring_id,
 362                                 bool lock_wait)
 363{
 364        struct bnxt_en_dev *en_dev = rdev->en_dev;
 365        struct hwrm_ring_free_input req = {0};
 366        struct hwrm_ring_free_output resp;
 367        struct bnxt_fw_msg fw_msg;
 368        bool do_unlock = false;
 369        int rc = -EINVAL;
 370
 371        if (!en_dev)
 372                return rc;
 373
 374        memset(&fw_msg, 0, sizeof(fw_msg));
 375        if (lock_wait) {
 376                rtnl_lock();
 377                do_unlock = true;
 378        }
 379
 380        bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_FREE, -1, -1);
 381        req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
 382        req.ring_id = cpu_to_le16(fw_ring_id);
 383        bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
 384                            sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
 385        rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
 386        if (rc)
 387                dev_err(rdev_to_dev(rdev),
 388                        "Failed to free HW ring:%d :%#x", req.ring_id, rc);
 389        if (do_unlock)
 390                rtnl_unlock();
 391        return rc;
 392}
 393
 394static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
 395                                  int pages, int type, u32 ring_mask,
 396                                  u32 map_index, u16 *fw_ring_id)
 397{
 398        struct bnxt_en_dev *en_dev = rdev->en_dev;
 399        struct hwrm_ring_alloc_input req = {0};
 400        struct hwrm_ring_alloc_output resp;
 401        struct bnxt_fw_msg fw_msg;
 402        int rc = -EINVAL;
 403
 404        if (!en_dev)
 405                return rc;
 406
 407        memset(&fw_msg, 0, sizeof(fw_msg));
 408        rtnl_lock();
 409        bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
 410        req.enables = 0;
 411        req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
 412        if (pages > 1) {
 413                /* Page size is in log2 units */
 414                req.page_size = BNXT_PAGE_SHIFT;
 415                req.page_tbl_depth = 1;
 416        }
 417        req.fbo = 0;
 418        /* Association of ring index with doorbell index and MSIX number */
 419        req.logical_id = cpu_to_le16(map_index);
 420        req.length = cpu_to_le32(ring_mask + 1);
 421        req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
 422        req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
 423        bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
 424                            sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
 425        rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
 426        if (!rc)
 427                *fw_ring_id = le16_to_cpu(resp.ring_id);
 428
 429        rtnl_unlock();
 430        return rc;
 431}
 432
 433static int bnxt_re_net_stats_ctx_free(struct bnxt_re_dev *rdev,
 434                                      u32 fw_stats_ctx_id, bool lock_wait)
 435{
 436        struct bnxt_en_dev *en_dev = rdev->en_dev;
 437        struct hwrm_stat_ctx_free_input req = {0};
 438        struct bnxt_fw_msg fw_msg;
 439        bool do_unlock = false;
 440        int rc = -EINVAL;
 441
 442        if (!en_dev)
 443                return rc;
 444
 445        memset(&fw_msg, 0, sizeof(fw_msg));
 446        if (lock_wait) {
 447                rtnl_lock();
 448                do_unlock = true;
 449        }
 450
 451        bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_STAT_CTX_FREE, -1, -1);
 452        req.stat_ctx_id = cpu_to_le32(fw_stats_ctx_id);
 453        bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&req,
 454                            sizeof(req), DFLT_HWRM_CMD_TIMEOUT);
 455        rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
 456        if (rc)
 457                dev_err(rdev_to_dev(rdev),
 458                        "Failed to free HW stats context %#x", rc);
 459
 460        if (do_unlock)
 461                rtnl_unlock();
 462        return rc;
 463}
 464
 465static int bnxt_re_net_stats_ctx_alloc(struct bnxt_re_dev *rdev,
 466                                       dma_addr_t dma_map,
 467                                       u32 *fw_stats_ctx_id)
 468{
 469        struct hwrm_stat_ctx_alloc_output resp = {0};
 470        struct hwrm_stat_ctx_alloc_input req = {0};
 471        struct bnxt_en_dev *en_dev = rdev->en_dev;
 472        struct bnxt_fw_msg fw_msg;
 473        int rc = -EINVAL;
 474
 475        *fw_stats_ctx_id = INVALID_STATS_CTX_ID;
 476
 477        if (!en_dev)
 478                return rc;
 479
 480        memset(&fw_msg, 0, sizeof(fw_msg));
 481        rtnl_lock();
 482
 483        bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_STAT_CTX_ALLOC, -1, -1);
 484        req.update_period_ms = cpu_to_le32(1000);
 485        req.stats_dma_addr = cpu_to_le64(dma_map);
 486        req.stat_ctx_flags = STAT_CTX_ALLOC_REQ_STAT_CTX_FLAGS_ROCE;
 487        bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
 488                            sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
 489        rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
 490        if (!rc)
 491                *fw_stats_ctx_id = le32_to_cpu(resp.stat_ctx_id);
 492
 493        rtnl_unlock();
 494        return rc;
 495}
 496
 497/* Device */
 498
 499static bool is_bnxt_re_dev(struct net_device *netdev)
 500{
 501        struct ethtool_drvinfo drvinfo;
 502
 503        if (netdev->ethtool_ops && netdev->ethtool_ops->get_drvinfo) {
 504                memset(&drvinfo, 0, sizeof(drvinfo));
 505                netdev->ethtool_ops->get_drvinfo(netdev, &drvinfo);
 506
 507                if (strcmp(drvinfo.driver, "bnxt_en"))
 508                        return false;
 509                return true;
 510        }
 511        return false;
 512}
 513
 514static struct bnxt_re_dev *bnxt_re_from_netdev(struct net_device *netdev)
 515{
 516        struct bnxt_re_dev *rdev;
 517
 518        rcu_read_lock();
 519        list_for_each_entry_rcu(rdev, &bnxt_re_dev_list, list) {
 520                if (rdev->netdev == netdev) {
 521                        rcu_read_unlock();
 522                        return rdev;
 523                }
 524        }
 525        rcu_read_unlock();
 526        return NULL;
 527}
 528
 529static void bnxt_re_dev_unprobe(struct net_device *netdev,
 530                                struct bnxt_en_dev *en_dev)
 531{
 532        dev_put(netdev);
 533        module_put(en_dev->pdev->driver->driver.owner);
 534}
 535
 536static struct bnxt_en_dev *bnxt_re_dev_probe(struct net_device *netdev)
 537{
 538        struct bnxt *bp = netdev_priv(netdev);
 539        struct bnxt_en_dev *en_dev;
 540        struct pci_dev *pdev;
 541
 542        /* Call bnxt_en's RoCE probe via indirect API */
 543        if (!bp->ulp_probe)
 544                return ERR_PTR(-EINVAL);
 545
 546        en_dev = bp->ulp_probe(netdev);
 547        if (IS_ERR(en_dev))
 548                return en_dev;
 549
 550        pdev = en_dev->pdev;
 551        if (!pdev)
 552                return ERR_PTR(-EINVAL);
 553
 554        if (!(en_dev->flags & BNXT_EN_FLAG_ROCE_CAP)) {
 555                dev_info(&pdev->dev,
 556                        "%s: probe error: RoCE is not supported on this device",
 557                        ROCE_DRV_MODULE_NAME);
 558                return ERR_PTR(-ENODEV);
 559        }
 560
 561        /* Bump net device reference count */
 562        if (!try_module_get(pdev->driver->driver.owner))
 563                return ERR_PTR(-ENODEV);
 564
 565        dev_hold(netdev);
 566
 567        return en_dev;
 568}
 569
 570static void bnxt_re_unregister_ib(struct bnxt_re_dev *rdev)
 571{
 572        ib_unregister_device(&rdev->ibdev);
 573}
 574
 575static int bnxt_re_register_ib(struct bnxt_re_dev *rdev)
 576{
 577        struct ib_device *ibdev = &rdev->ibdev;
 578
 579        /* ib device init */
 580        ibdev->owner = THIS_MODULE;
 581        ibdev->node_type = RDMA_NODE_IB_CA;
 582        strlcpy(ibdev->name, "bnxt_re%d", IB_DEVICE_NAME_MAX);
 583        strlcpy(ibdev->node_desc, BNXT_RE_DESC " HCA",
 584                strlen(BNXT_RE_DESC) + 5);
 585        ibdev->phys_port_cnt = 1;
 586
 587        bnxt_qplib_get_guid(rdev->netdev->dev_addr, (u8 *)&ibdev->node_guid);
 588
 589        ibdev->num_comp_vectors = 1;
 590        ibdev->dev.parent = &rdev->en_dev->pdev->dev;
 591        ibdev->local_dma_lkey = BNXT_QPLIB_RSVD_LKEY;
 592
 593        /* User space */
 594        ibdev->uverbs_abi_ver = BNXT_RE_ABI_VERSION;
 595        ibdev->uverbs_cmd_mask =
 596                        (1ull << IB_USER_VERBS_CMD_GET_CONTEXT)         |
 597                        (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE)        |
 598                        (1ull << IB_USER_VERBS_CMD_QUERY_PORT)          |
 599                        (1ull << IB_USER_VERBS_CMD_ALLOC_PD)            |
 600                        (1ull << IB_USER_VERBS_CMD_DEALLOC_PD)          |
 601                        (1ull << IB_USER_VERBS_CMD_REG_MR)              |
 602                        (1ull << IB_USER_VERBS_CMD_REREG_MR)            |
 603                        (1ull << IB_USER_VERBS_CMD_DEREG_MR)            |
 604                        (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
 605                        (1ull << IB_USER_VERBS_CMD_CREATE_CQ)           |
 606                        (1ull << IB_USER_VERBS_CMD_RESIZE_CQ)           |
 607                        (1ull << IB_USER_VERBS_CMD_DESTROY_CQ)          |
 608                        (1ull << IB_USER_VERBS_CMD_CREATE_QP)           |
 609                        (1ull << IB_USER_VERBS_CMD_MODIFY_QP)           |
 610                        (1ull << IB_USER_VERBS_CMD_QUERY_QP)            |
 611                        (1ull << IB_USER_VERBS_CMD_DESTROY_QP)          |
 612                        (1ull << IB_USER_VERBS_CMD_CREATE_SRQ)          |
 613                        (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ)          |
 614                        (1ull << IB_USER_VERBS_CMD_QUERY_SRQ)           |
 615                        (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ)         |
 616                        (1ull << IB_USER_VERBS_CMD_CREATE_AH)           |
 617                        (1ull << IB_USER_VERBS_CMD_MODIFY_AH)           |
 618                        (1ull << IB_USER_VERBS_CMD_QUERY_AH)            |
 619                        (1ull << IB_USER_VERBS_CMD_DESTROY_AH);
 620        /* POLL_CQ and REQ_NOTIFY_CQ is directly handled in libbnxt_re */
 621
 622        /* Kernel verbs */
 623        ibdev->query_device             = bnxt_re_query_device;
 624        ibdev->modify_device            = bnxt_re_modify_device;
 625
 626        ibdev->query_port               = bnxt_re_query_port;
 627        ibdev->get_port_immutable       = bnxt_re_get_port_immutable;
 628        ibdev->get_dev_fw_str           = bnxt_re_query_fw_str;
 629        ibdev->query_pkey               = bnxt_re_query_pkey;
 630        ibdev->query_gid                = bnxt_re_query_gid;
 631        ibdev->get_netdev               = bnxt_re_get_netdev;
 632        ibdev->add_gid                  = bnxt_re_add_gid;
 633        ibdev->del_gid                  = bnxt_re_del_gid;
 634        ibdev->get_link_layer           = bnxt_re_get_link_layer;
 635
 636        ibdev->alloc_pd                 = bnxt_re_alloc_pd;
 637        ibdev->dealloc_pd               = bnxt_re_dealloc_pd;
 638
 639        ibdev->create_ah                = bnxt_re_create_ah;
 640        ibdev->modify_ah                = bnxt_re_modify_ah;
 641        ibdev->query_ah                 = bnxt_re_query_ah;
 642        ibdev->destroy_ah               = bnxt_re_destroy_ah;
 643
 644        ibdev->create_srq               = bnxt_re_create_srq;
 645        ibdev->modify_srq               = bnxt_re_modify_srq;
 646        ibdev->query_srq                = bnxt_re_query_srq;
 647        ibdev->destroy_srq              = bnxt_re_destroy_srq;
 648        ibdev->post_srq_recv            = bnxt_re_post_srq_recv;
 649
 650        ibdev->create_qp                = bnxt_re_create_qp;
 651        ibdev->modify_qp                = bnxt_re_modify_qp;
 652        ibdev->query_qp                 = bnxt_re_query_qp;
 653        ibdev->destroy_qp               = bnxt_re_destroy_qp;
 654
 655        ibdev->post_send                = bnxt_re_post_send;
 656        ibdev->post_recv                = bnxt_re_post_recv;
 657
 658        ibdev->create_cq                = bnxt_re_create_cq;
 659        ibdev->destroy_cq               = bnxt_re_destroy_cq;
 660        ibdev->poll_cq                  = bnxt_re_poll_cq;
 661        ibdev->req_notify_cq            = bnxt_re_req_notify_cq;
 662
 663        ibdev->get_dma_mr               = bnxt_re_get_dma_mr;
 664        ibdev->dereg_mr                 = bnxt_re_dereg_mr;
 665        ibdev->alloc_mr                 = bnxt_re_alloc_mr;
 666        ibdev->map_mr_sg                = bnxt_re_map_mr_sg;
 667
 668        ibdev->reg_user_mr              = bnxt_re_reg_user_mr;
 669        ibdev->alloc_ucontext           = bnxt_re_alloc_ucontext;
 670        ibdev->dealloc_ucontext         = bnxt_re_dealloc_ucontext;
 671        ibdev->mmap                     = bnxt_re_mmap;
 672        ibdev->get_hw_stats             = bnxt_re_ib_get_hw_stats;
 673        ibdev->alloc_hw_stats           = bnxt_re_ib_alloc_hw_stats;
 674
 675        return ib_register_device(ibdev, NULL);
 676}
 677
 678static ssize_t show_rev(struct device *device, struct device_attribute *attr,
 679                        char *buf)
 680{
 681        struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
 682
 683        return scnprintf(buf, PAGE_SIZE, "0x%x\n", rdev->en_dev->pdev->vendor);
 684}
 685
 686static ssize_t show_hca(struct device *device, struct device_attribute *attr,
 687                        char *buf)
 688{
 689        struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
 690
 691        return scnprintf(buf, PAGE_SIZE, "%s\n", rdev->ibdev.node_desc);
 692}
 693
 694static DEVICE_ATTR(hw_rev, 0444, show_rev, NULL);
 695static DEVICE_ATTR(hca_type, 0444, show_hca, NULL);
 696
 697static struct device_attribute *bnxt_re_attributes[] = {
 698        &dev_attr_hw_rev,
 699        &dev_attr_hca_type
 700};
 701
 702static void bnxt_re_dev_remove(struct bnxt_re_dev *rdev)
 703{
 704        dev_put(rdev->netdev);
 705        rdev->netdev = NULL;
 706
 707        mutex_lock(&bnxt_re_dev_lock);
 708        list_del_rcu(&rdev->list);
 709        mutex_unlock(&bnxt_re_dev_lock);
 710
 711        synchronize_rcu();
 712
 713        ib_dealloc_device(&rdev->ibdev);
 714        /* rdev is gone */
 715}
 716
 717static struct bnxt_re_dev *bnxt_re_dev_add(struct net_device *netdev,
 718                                           struct bnxt_en_dev *en_dev)
 719{
 720        struct bnxt_re_dev *rdev;
 721
 722        /* Allocate bnxt_re_dev instance here */
 723        rdev = (struct bnxt_re_dev *)ib_alloc_device(sizeof(*rdev));
 724        if (!rdev) {
 725                dev_err(NULL, "%s: bnxt_re_dev allocation failure!",
 726                        ROCE_DRV_MODULE_NAME);
 727                return NULL;
 728        }
 729        /* Default values */
 730        rdev->netdev = netdev;
 731        dev_hold(rdev->netdev);
 732        rdev->en_dev = en_dev;
 733        rdev->id = rdev->en_dev->pdev->devfn;
 734        INIT_LIST_HEAD(&rdev->qp_list);
 735        mutex_init(&rdev->qp_lock);
 736        atomic_set(&rdev->qp_count, 0);
 737        atomic_set(&rdev->cq_count, 0);
 738        atomic_set(&rdev->srq_count, 0);
 739        atomic_set(&rdev->mr_count, 0);
 740        atomic_set(&rdev->mw_count, 0);
 741        rdev->cosq[0] = 0xFFFF;
 742        rdev->cosq[1] = 0xFFFF;
 743
 744        mutex_lock(&bnxt_re_dev_lock);
 745        list_add_tail_rcu(&rdev->list, &bnxt_re_dev_list);
 746        mutex_unlock(&bnxt_re_dev_lock);
 747        return rdev;
 748}
 749
 750
 751static int bnxt_re_handle_unaffi_async_event(struct creq_func_event
 752                                             *unaffi_async)
 753{
 754        switch (unaffi_async->event) {
 755        case CREQ_FUNC_EVENT_EVENT_TX_WQE_ERROR:
 756                break;
 757        case CREQ_FUNC_EVENT_EVENT_TX_DATA_ERROR:
 758                break;
 759        case CREQ_FUNC_EVENT_EVENT_RX_WQE_ERROR:
 760                break;
 761        case CREQ_FUNC_EVENT_EVENT_RX_DATA_ERROR:
 762                break;
 763        case CREQ_FUNC_EVENT_EVENT_CQ_ERROR:
 764                break;
 765        case CREQ_FUNC_EVENT_EVENT_TQM_ERROR:
 766                break;
 767        case CREQ_FUNC_EVENT_EVENT_CFCQ_ERROR:
 768                break;
 769        case CREQ_FUNC_EVENT_EVENT_CFCS_ERROR:
 770                break;
 771        case CREQ_FUNC_EVENT_EVENT_CFCC_ERROR:
 772                break;
 773        case CREQ_FUNC_EVENT_EVENT_CFCM_ERROR:
 774                break;
 775        case CREQ_FUNC_EVENT_EVENT_TIM_ERROR:
 776                break;
 777        default:
 778                return -EINVAL;
 779        }
 780        return 0;
 781}
 782
 783
 784static int bnxt_re_handle_qp_async_event(struct creq_qp_event *qp_event,
 785                                         struct bnxt_re_qp *qp)
 786{
 787        struct ib_event event;
 788        unsigned int flags;
 789
 790        if (qp->qplib_qp.state == CMDQ_MODIFY_QP_NEW_STATE_ERR) {
 791                flags = bnxt_re_lock_cqs(qp);
 792                bnxt_qplib_add_flush_qp(&qp->qplib_qp);
 793                bnxt_re_unlock_cqs(qp, flags);
 794        }
 795
 796        memset(&event, 0, sizeof(event));
 797        if (qp->qplib_qp.srq) {
 798                event.device = &qp->rdev->ibdev;
 799                event.element.qp = &qp->ib_qp;
 800                event.event = IB_EVENT_QP_LAST_WQE_REACHED;
 801        }
 802
 803        if (event.device && qp->ib_qp.event_handler)
 804                qp->ib_qp.event_handler(&event, qp->ib_qp.qp_context);
 805
 806        return 0;
 807}
 808
 809static int bnxt_re_handle_affi_async_event(struct creq_qp_event *affi_async,
 810                                           void *obj)
 811{
 812        int rc = 0;
 813        u8 event;
 814
 815        if (!obj)
 816                return rc; /* QP was already dead, still return success */
 817
 818        event = affi_async->event;
 819        if (event == CREQ_QP_EVENT_EVENT_QP_ERROR_NOTIFICATION) {
 820                struct bnxt_qplib_qp *lib_qp = obj;
 821                struct bnxt_re_qp *qp = container_of(lib_qp, struct bnxt_re_qp,
 822                                qplib_qp);
 823                rc = bnxt_re_handle_qp_async_event(affi_async, qp);
 824        }
 825        return rc;
 826}
 827
 828
 829static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
 830                               void *aeqe, void *obj)
 831{
 832        struct creq_qp_event *affi_async;
 833        struct creq_func_event *unaffi_async;
 834        u8 type;
 835        int rc;
 836
 837        type = ((struct creq_base *)aeqe)->type;
 838        if (type == CREQ_BASE_TYPE_FUNC_EVENT) {
 839                unaffi_async = aeqe;
 840                rc = bnxt_re_handle_unaffi_async_event(unaffi_async);
 841        } else {
 842                affi_async = aeqe;
 843                rc = bnxt_re_handle_affi_async_event(affi_async, obj);
 844        }
 845
 846        return rc;
 847}
 848
 849static int bnxt_re_srqn_handler(struct bnxt_qplib_nq *nq,
 850                                struct bnxt_qplib_srq *handle, u8 event)
 851{
 852        struct bnxt_re_srq *srq = container_of(handle, struct bnxt_re_srq,
 853                                               qplib_srq);
 854        struct ib_event ib_event;
 855        int rc = 0;
 856
 857        if (!srq) {
 858                dev_err(NULL, "%s: SRQ is NULL, SRQN not handled",
 859                        ROCE_DRV_MODULE_NAME);
 860                rc = -EINVAL;
 861                goto done;
 862        }
 863        ib_event.device = &srq->rdev->ibdev;
 864        ib_event.element.srq = &srq->ib_srq;
 865        if (event == NQ_SRQ_EVENT_EVENT_SRQ_THRESHOLD_EVENT)
 866                ib_event.event = IB_EVENT_SRQ_LIMIT_REACHED;
 867        else
 868                ib_event.event = IB_EVENT_SRQ_ERR;
 869
 870        if (srq->ib_srq.event_handler) {
 871                /* Lock event_handler? */
 872                (*srq->ib_srq.event_handler)(&ib_event,
 873                                             srq->ib_srq.srq_context);
 874        }
 875done:
 876        return rc;
 877}
 878
 879static int bnxt_re_cqn_handler(struct bnxt_qplib_nq *nq,
 880                               struct bnxt_qplib_cq *handle)
 881{
 882        struct bnxt_re_cq *cq = container_of(handle, struct bnxt_re_cq,
 883                                             qplib_cq);
 884
 885        if (!cq) {
 886                dev_err(NULL, "%s: CQ is NULL, CQN not handled",
 887                        ROCE_DRV_MODULE_NAME);
 888                return -EINVAL;
 889        }
 890        if (cq->ib_cq.comp_handler) {
 891                /* Lock comp_handler? */
 892                (*cq->ib_cq.comp_handler)(&cq->ib_cq, cq->ib_cq.cq_context);
 893        }
 894
 895        return 0;
 896}
 897
 898static void bnxt_re_cleanup_res(struct bnxt_re_dev *rdev)
 899{
 900        int i;
 901
 902        if (rdev->nq[0].hwq.max_elements) {
 903                for (i = 1; i < rdev->num_msix; i++)
 904                        bnxt_qplib_disable_nq(&rdev->nq[i - 1]);
 905        }
 906
 907        if (rdev->qplib_res.rcfw)
 908                bnxt_qplib_cleanup_res(&rdev->qplib_res);
 909}
 910
 911static int bnxt_re_init_res(struct bnxt_re_dev *rdev)
 912{
 913        int rc = 0, i;
 914
 915        bnxt_qplib_init_res(&rdev->qplib_res);
 916
 917        for (i = 1; i < rdev->num_msix ; i++) {
 918                rc = bnxt_qplib_enable_nq(rdev->en_dev->pdev, &rdev->nq[i - 1],
 919                                          i - 1, rdev->msix_entries[i].vector,
 920                                          rdev->msix_entries[i].db_offset,
 921                                          &bnxt_re_cqn_handler,
 922                                          &bnxt_re_srqn_handler);
 923
 924                if (rc) {
 925                        dev_err(rdev_to_dev(rdev),
 926                                "Failed to enable NQ with rc = 0x%x", rc);
 927                        goto fail;
 928                }
 929        }
 930        return 0;
 931fail:
 932        return rc;
 933}
 934
 935static void bnxt_re_free_nq_res(struct bnxt_re_dev *rdev, bool lock_wait)
 936{
 937        int i;
 938
 939        for (i = 0; i < rdev->num_msix - 1; i++) {
 940                bnxt_re_net_ring_free(rdev, rdev->nq[i].ring_id, lock_wait);
 941                bnxt_qplib_free_nq(&rdev->nq[i]);
 942        }
 943}
 944
 945static void bnxt_re_free_res(struct bnxt_re_dev *rdev, bool lock_wait)
 946{
 947        bnxt_re_free_nq_res(rdev, lock_wait);
 948
 949        if (rdev->qplib_res.dpi_tbl.max) {
 950                bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
 951                                       &rdev->qplib_res.dpi_tbl,
 952                                       &rdev->dpi_privileged);
 953        }
 954        if (rdev->qplib_res.rcfw) {
 955                bnxt_qplib_free_res(&rdev->qplib_res);
 956                rdev->qplib_res.rcfw = NULL;
 957        }
 958}
 959
 960static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
 961{
 962        int rc = 0, i;
 963
 964        /* Configure and allocate resources for qplib */
 965        rdev->qplib_res.rcfw = &rdev->rcfw;
 966        rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
 967                                     rdev->is_virtfn);
 968        if (rc)
 969                goto fail;
 970
 971        rc = bnxt_qplib_alloc_res(&rdev->qplib_res, rdev->en_dev->pdev,
 972                                  rdev->netdev, &rdev->dev_attr);
 973        if (rc)
 974                goto fail;
 975
 976        rc = bnxt_qplib_alloc_dpi(&rdev->qplib_res.dpi_tbl,
 977                                  &rdev->dpi_privileged,
 978                                  rdev);
 979        if (rc)
 980                goto dealloc_res;
 981
 982        for (i = 0; i < rdev->num_msix - 1; i++) {
 983                rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
 984                        BNXT_RE_MAX_SRQC_COUNT + 2;
 985                rc = bnxt_qplib_alloc_nq(rdev->en_dev->pdev, &rdev->nq[i]);
 986                if (rc) {
 987                        dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
 988                                i, rc);
 989                        goto dealloc_dpi;
 990                }
 991                rc = bnxt_re_net_ring_alloc
 992                        (rdev, rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr,
 993                         rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count,
 994                         HWRM_RING_ALLOC_CMPL,
 995                         BNXT_QPLIB_NQE_MAX_CNT - 1,
 996                         rdev->msix_entries[i + 1].ring_idx,
 997                         &rdev->nq[i].ring_id);
 998                if (rc) {
 999                        dev_err(rdev_to_dev(rdev),
1000                                "Failed to allocate NQ fw id with rc = 0x%x",
1001                                rc);
1002                        goto free_nq;
1003                }
1004        }
1005        return 0;
1006free_nq:
1007        for (i = 0; i < rdev->num_msix - 1; i++)
1008                bnxt_qplib_free_nq(&rdev->nq[i]);
1009dealloc_dpi:
1010        bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
1011                               &rdev->qplib_res.dpi_tbl,
1012                               &rdev->dpi_privileged);
1013dealloc_res:
1014        bnxt_qplib_free_res(&rdev->qplib_res);
1015
1016fail:
1017        rdev->qplib_res.rcfw = NULL;
1018        return rc;
1019}
1020
1021static void bnxt_re_dispatch_event(struct ib_device *ibdev, struct ib_qp *qp,
1022                                   u8 port_num, enum ib_event_type event)
1023{
1024        struct ib_event ib_event;
1025
1026        ib_event.device = ibdev;
1027        if (qp)
1028                ib_event.element.qp = qp;
1029        else
1030                ib_event.element.port_num = port_num;
1031        ib_event.event = event;
1032        ib_dispatch_event(&ib_event);
1033}
1034
1035#define HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN      0x02
1036static int bnxt_re_query_hwrm_pri2cos(struct bnxt_re_dev *rdev, u8 dir,
1037                                      u64 *cid_map)
1038{
1039        struct hwrm_queue_pri2cos_qcfg_input req = {0};
1040        struct bnxt *bp = netdev_priv(rdev->netdev);
1041        struct hwrm_queue_pri2cos_qcfg_output resp;
1042        struct bnxt_en_dev *en_dev = rdev->en_dev;
1043        struct bnxt_fw_msg fw_msg;
1044        u32 flags = 0;
1045        u8 *qcfgmap, *tmp_map;
1046        int rc = 0, i;
1047
1048        if (!cid_map)
1049                return -EINVAL;
1050
1051        memset(&fw_msg, 0, sizeof(fw_msg));
1052        bnxt_re_init_hwrm_hdr(rdev, (void *)&req,
1053                              HWRM_QUEUE_PRI2COS_QCFG, -1, -1);
1054        flags |= (dir & 0x01);
1055        flags |= HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN;
1056        req.flags = cpu_to_le32(flags);
1057        req.port_id = bp->pf.port_id;
1058
1059        bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
1060                            sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
1061        rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
1062        if (rc)
1063                return rc;
1064
1065        if (resp.queue_cfg_info) {
1066                dev_warn(rdev_to_dev(rdev),
1067                         "Asymmetric cos queue configuration detected");
1068                dev_warn(rdev_to_dev(rdev),
1069                         " on device, QoS may not be fully functional\n");
1070        }
1071        qcfgmap = &resp.pri0_cos_queue_id;
1072        tmp_map = (u8 *)cid_map;
1073        for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++)
1074                tmp_map[i] = qcfgmap[i];
1075
1076        return rc;
1077}
1078
1079static bool bnxt_re_is_qp1_or_shadow_qp(struct bnxt_re_dev *rdev,
1080                                        struct bnxt_re_qp *qp)
1081{
1082        return (qp->ib_qp.qp_type == IB_QPT_GSI) || (qp == rdev->qp1_sqp);
1083}
1084
1085static void bnxt_re_dev_stop(struct bnxt_re_dev *rdev)
1086{
1087        int mask = IB_QP_STATE;
1088        struct ib_qp_attr qp_attr;
1089        struct bnxt_re_qp *qp;
1090
1091        qp_attr.qp_state = IB_QPS_ERR;
1092        mutex_lock(&rdev->qp_lock);
1093        list_for_each_entry(qp, &rdev->qp_list, list) {
1094                /* Modify the state of all QPs except QP1/Shadow QP */
1095                if (!bnxt_re_is_qp1_or_shadow_qp(rdev, qp)) {
1096                        if (qp->qplib_qp.state !=
1097                            CMDQ_MODIFY_QP_NEW_STATE_RESET &&
1098                            qp->qplib_qp.state !=
1099                            CMDQ_MODIFY_QP_NEW_STATE_ERR) {
1100                                bnxt_re_dispatch_event(&rdev->ibdev, &qp->ib_qp,
1101                                                       1, IB_EVENT_QP_FATAL);
1102                                bnxt_re_modify_qp(&qp->ib_qp, &qp_attr, mask,
1103                                                  NULL);
1104                        }
1105                }
1106        }
1107        mutex_unlock(&rdev->qp_lock);
1108}
1109
1110static int bnxt_re_update_gid(struct bnxt_re_dev *rdev)
1111{
1112        struct bnxt_qplib_sgid_tbl *sgid_tbl = &rdev->qplib_res.sgid_tbl;
1113        struct bnxt_qplib_gid gid;
1114        u16 gid_idx, index;
1115        int rc = 0;
1116
1117        if (!test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
1118                return 0;
1119
1120        if (!sgid_tbl) {
1121                dev_err(rdev_to_dev(rdev), "QPLIB: SGID table not allocated");
1122                return -EINVAL;
1123        }
1124
1125        for (index = 0; index < sgid_tbl->active; index++) {
1126                gid_idx = sgid_tbl->hw_id[index];
1127
1128                if (!memcmp(&sgid_tbl->tbl[index], &bnxt_qplib_gid_zero,
1129                            sizeof(bnxt_qplib_gid_zero)))
1130                        continue;
1131                /* need to modify the VLAN enable setting of non VLAN GID only
1132                 * as setting is done for VLAN GID while adding GID
1133                 */
1134                if (sgid_tbl->vlan[index])
1135                        continue;
1136
1137                memcpy(&gid, &sgid_tbl->tbl[index], sizeof(gid));
1138
1139                rc = bnxt_qplib_update_sgid(sgid_tbl, &gid, gid_idx,
1140                                            rdev->qplib_res.netdev->dev_addr);
1141        }
1142
1143        return rc;
1144}
1145
1146static u32 bnxt_re_get_priority_mask(struct bnxt_re_dev *rdev)
1147{
1148        u32 prio_map = 0, tmp_map = 0;
1149        struct net_device *netdev;
1150        struct dcb_app app;
1151
1152        netdev = rdev->netdev;
1153
1154        memset(&app, 0, sizeof(app));
1155        app.selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE;
1156        app.protocol = ETH_P_IBOE;
1157        tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1158        prio_map = tmp_map;
1159
1160        app.selector = IEEE_8021QAZ_APP_SEL_DGRAM;
1161        app.protocol = ROCE_V2_UDP_DPORT;
1162        tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1163        prio_map |= tmp_map;
1164
1165        return prio_map;
1166}
1167
1168static void bnxt_re_parse_cid_map(u8 prio_map, u8 *cid_map, u16 *cosq)
1169{
1170        u16 prio;
1171        u8 id;
1172
1173        for (prio = 0, id = 0; prio < 8; prio++) {
1174                if (prio_map & (1 << prio)) {
1175                        cosq[id] = cid_map[prio];
1176                        id++;
1177                        if (id == 2) /* Max 2 tcs supported */
1178                                break;
1179                }
1180        }
1181}
1182
1183static int bnxt_re_setup_qos(struct bnxt_re_dev *rdev)
1184{
1185        u8 prio_map = 0;
1186        u64 cid_map;
1187        int rc;
1188
1189        /* Get priority for roce */
1190        prio_map = bnxt_re_get_priority_mask(rdev);
1191
1192        if (prio_map == rdev->cur_prio_map)
1193                return 0;
1194        rdev->cur_prio_map = prio_map;
1195        /* Get cosq id for this priority */
1196        rc = bnxt_re_query_hwrm_pri2cos(rdev, 0, &cid_map);
1197        if (rc) {
1198                dev_warn(rdev_to_dev(rdev), "no cos for p_mask %x\n", prio_map);
1199                return rc;
1200        }
1201        /* Parse CoS IDs for app priority */
1202        bnxt_re_parse_cid_map(prio_map, (u8 *)&cid_map, rdev->cosq);
1203
1204        /* Config BONO. */
1205        rc = bnxt_qplib_map_tc2cos(&rdev->qplib_res, rdev->cosq);
1206        if (rc) {
1207                dev_warn(rdev_to_dev(rdev), "no tc for cos{%x, %x}\n",
1208                         rdev->cosq[0], rdev->cosq[1]);
1209                return rc;
1210        }
1211
1212        /* Actual priorities are not programmed as they are already
1213         * done by L2 driver; just enable or disable priority vlan tagging
1214         */
1215        if ((prio_map == 0 && rdev->qplib_res.prio) ||
1216            (prio_map != 0 && !rdev->qplib_res.prio)) {
1217                rdev->qplib_res.prio = prio_map ? true : false;
1218
1219                bnxt_re_update_gid(rdev);
1220        }
1221
1222        return 0;
1223}
1224
1225static void bnxt_re_ib_unreg(struct bnxt_re_dev *rdev, bool lock_wait)
1226{
1227        int i, rc;
1228
1229        if (test_and_clear_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags)) {
1230                for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++)
1231                        device_remove_file(&rdev->ibdev.dev,
1232                                           bnxt_re_attributes[i]);
1233                /* Cleanup ib dev */
1234                bnxt_re_unregister_ib(rdev);
1235        }
1236        if (test_and_clear_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags))
1237                cancel_delayed_work(&rdev->worker);
1238
1239        bnxt_re_cleanup_res(rdev);
1240        bnxt_re_free_res(rdev, lock_wait);
1241
1242        if (test_and_clear_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags)) {
1243                rc = bnxt_qplib_deinit_rcfw(&rdev->rcfw);
1244                if (rc)
1245                        dev_warn(rdev_to_dev(rdev),
1246                                 "Failed to deinitialize RCFW: %#x", rc);
1247                bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id,
1248                                           lock_wait);
1249                bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1250                bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1251                bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, lock_wait);
1252                bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1253        }
1254        if (test_and_clear_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags)) {
1255                rc = bnxt_re_free_msix(rdev, lock_wait);
1256                if (rc)
1257                        dev_warn(rdev_to_dev(rdev),
1258                                 "Failed to free MSI-X vectors: %#x", rc);
1259        }
1260        if (test_and_clear_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags)) {
1261                rc = bnxt_re_unregister_netdev(rdev, lock_wait);
1262                if (rc)
1263                        dev_warn(rdev_to_dev(rdev),
1264                                 "Failed to unregister with netdev: %#x", rc);
1265        }
1266}
1267
1268/* worker thread for polling periodic events. Now used for QoS programming*/
1269static void bnxt_re_worker(struct work_struct *work)
1270{
1271        struct bnxt_re_dev *rdev = container_of(work, struct bnxt_re_dev,
1272                                                worker.work);
1273
1274        bnxt_re_setup_qos(rdev);
1275        schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1276}
1277
1278static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
1279{
1280        int i, j, rc;
1281
1282        /* Registered a new RoCE device instance to netdev */
1283        rc = bnxt_re_register_netdev(rdev);
1284        if (rc) {
1285                pr_err("Failed to register with netedev: %#x\n", rc);
1286                return -EINVAL;
1287        }
1288        set_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags);
1289
1290        /* Check whether VF or PF */
1291        bnxt_re_get_sriov_func_type(rdev);
1292
1293        rc = bnxt_re_request_msix(rdev);
1294        if (rc) {
1295                pr_err("Failed to get MSI-X vectors: %#x\n", rc);
1296                rc = -EINVAL;
1297                goto fail;
1298        }
1299        set_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags);
1300
1301        /* Establish RCFW Communication Channel to initialize the context
1302         * memory for the function and all child VFs
1303         */
1304        rc = bnxt_qplib_alloc_rcfw_channel(rdev->en_dev->pdev, &rdev->rcfw,
1305                                           BNXT_RE_MAX_QPC_COUNT);
1306        if (rc) {
1307                pr_err("Failed to allocate RCFW Channel: %#x\n", rc);
1308                goto fail;
1309        }
1310        rc = bnxt_re_net_ring_alloc
1311                        (rdev, rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr,
1312                         rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count,
1313                         HWRM_RING_ALLOC_CMPL, BNXT_QPLIB_CREQE_MAX_CNT - 1,
1314                         rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx,
1315                         &rdev->rcfw.creq_ring_id);
1316        if (rc) {
1317                pr_err("Failed to allocate CREQ: %#x\n", rc);
1318                goto free_rcfw;
1319        }
1320        rc = bnxt_qplib_enable_rcfw_channel
1321                                (rdev->en_dev->pdev, &rdev->rcfw,
1322                                 rdev->msix_entries[BNXT_RE_AEQ_IDX].vector,
1323                                 rdev->msix_entries[BNXT_RE_AEQ_IDX].db_offset,
1324                                 rdev->is_virtfn, &bnxt_re_aeq_handler);
1325        if (rc) {
1326                pr_err("Failed to enable RCFW channel: %#x\n", rc);
1327                goto free_ring;
1328        }
1329
1330        rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
1331                                     rdev->is_virtfn);
1332        if (rc)
1333                goto disable_rcfw;
1334        if (!rdev->is_virtfn)
1335                bnxt_re_set_resource_limits(rdev);
1336
1337        rc = bnxt_qplib_alloc_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx, 0);
1338        if (rc) {
1339                pr_err("Failed to allocate QPLIB context: %#x\n", rc);
1340                goto disable_rcfw;
1341        }
1342        rc = bnxt_re_net_stats_ctx_alloc(rdev,
1343                                         rdev->qplib_ctx.stats.dma_map,
1344                                         &rdev->qplib_ctx.stats.fw_id);
1345        if (rc) {
1346                pr_err("Failed to allocate stats context: %#x\n", rc);
1347                goto free_ctx;
1348        }
1349
1350        rc = bnxt_qplib_init_rcfw(&rdev->rcfw, &rdev->qplib_ctx,
1351                                  rdev->is_virtfn);
1352        if (rc) {
1353                pr_err("Failed to initialize RCFW: %#x\n", rc);
1354                goto free_sctx;
1355        }
1356        set_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags);
1357
1358        /* Resources based on the 'new' device caps */
1359        rc = bnxt_re_alloc_res(rdev);
1360        if (rc) {
1361                pr_err("Failed to allocate resources: %#x\n", rc);
1362                goto fail;
1363        }
1364        rc = bnxt_re_init_res(rdev);
1365        if (rc) {
1366                pr_err("Failed to initialize resources: %#x\n", rc);
1367                goto fail;
1368        }
1369
1370        if (!rdev->is_virtfn) {
1371                rc = bnxt_re_setup_qos(rdev);
1372                if (rc)
1373                        pr_info("RoCE priority not yet configured\n");
1374
1375                INIT_DELAYED_WORK(&rdev->worker, bnxt_re_worker);
1376                set_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags);
1377                schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1378        }
1379
1380        /* Register ib dev */
1381        rc = bnxt_re_register_ib(rdev);
1382        if (rc) {
1383                pr_err("Failed to register with IB: %#x\n", rc);
1384                goto fail;
1385        }
1386        dev_info(rdev_to_dev(rdev), "Device registered successfully");
1387        for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++) {
1388                rc = device_create_file(&rdev->ibdev.dev,
1389                                        bnxt_re_attributes[i]);
1390                if (rc) {
1391                        dev_err(rdev_to_dev(rdev),
1392                                "Failed to create IB sysfs: %#x", rc);
1393                        /* Must clean up all created device files */
1394                        for (j = 0; j < i; j++)
1395                                device_remove_file(&rdev->ibdev.dev,
1396                                                   bnxt_re_attributes[j]);
1397                        bnxt_re_unregister_ib(rdev);
1398                        goto fail;
1399                }
1400        }
1401        set_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags);
1402        ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1403                         &rdev->active_width);
1404        set_bit(BNXT_RE_FLAG_ISSUE_ROCE_STATS, &rdev->flags);
1405        bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_PORT_ACTIVE);
1406        bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_GID_CHANGE);
1407
1408        return 0;
1409free_sctx:
1410        bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id, true);
1411free_ctx:
1412        bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1413disable_rcfw:
1414        bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1415free_ring:
1416        bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, true);
1417free_rcfw:
1418        bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1419fail:
1420        bnxt_re_ib_unreg(rdev, true);
1421        return rc;
1422}
1423
1424static void bnxt_re_dev_unreg(struct bnxt_re_dev *rdev)
1425{
1426        struct bnxt_en_dev *en_dev = rdev->en_dev;
1427        struct net_device *netdev = rdev->netdev;
1428
1429        bnxt_re_dev_remove(rdev);
1430
1431        if (netdev)
1432                bnxt_re_dev_unprobe(netdev, en_dev);
1433}
1434
1435static int bnxt_re_dev_reg(struct bnxt_re_dev **rdev, struct net_device *netdev)
1436{
1437        struct bnxt_en_dev *en_dev;
1438        int rc = 0;
1439
1440        if (!is_bnxt_re_dev(netdev))
1441                return -ENODEV;
1442
1443        en_dev = bnxt_re_dev_probe(netdev);
1444        if (IS_ERR(en_dev)) {
1445                if (en_dev != ERR_PTR(-ENODEV))
1446                        pr_err("%s: Failed to probe\n", ROCE_DRV_MODULE_NAME);
1447                rc = PTR_ERR(en_dev);
1448                goto exit;
1449        }
1450        *rdev = bnxt_re_dev_add(netdev, en_dev);
1451        if (!*rdev) {
1452                rc = -ENOMEM;
1453                bnxt_re_dev_unprobe(netdev, en_dev);
1454                goto exit;
1455        }
1456exit:
1457        return rc;
1458}
1459
1460static void bnxt_re_remove_one(struct bnxt_re_dev *rdev)
1461{
1462        pci_dev_put(rdev->en_dev->pdev);
1463}
1464
1465/* Handle all deferred netevents tasks */
1466static void bnxt_re_task(struct work_struct *work)
1467{
1468        struct bnxt_re_work *re_work;
1469        struct bnxt_re_dev *rdev;
1470        int rc = 0;
1471
1472        re_work = container_of(work, struct bnxt_re_work, work);
1473        rdev = re_work->rdev;
1474
1475        if (re_work->event != NETDEV_REGISTER &&
1476            !test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
1477                return;
1478
1479        switch (re_work->event) {
1480        case NETDEV_REGISTER:
1481                rc = bnxt_re_ib_reg(rdev);
1482                if (rc) {
1483                        dev_err(rdev_to_dev(rdev),
1484                                "Failed to register with IB: %#x", rc);
1485                        bnxt_re_remove_one(rdev);
1486                        bnxt_re_dev_unreg(rdev);
1487                }
1488                break;
1489        case NETDEV_UP:
1490                bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1491                                       IB_EVENT_PORT_ACTIVE);
1492                break;
1493        case NETDEV_DOWN:
1494                bnxt_re_dev_stop(rdev);
1495                break;
1496        case NETDEV_CHANGE:
1497                if (!netif_carrier_ok(rdev->netdev))
1498                        bnxt_re_dev_stop(rdev);
1499                else if (netif_carrier_ok(rdev->netdev))
1500                        bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1501                                               IB_EVENT_PORT_ACTIVE);
1502                ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1503                                 &rdev->active_width);
1504                break;
1505        default:
1506                break;
1507        }
1508        smp_mb__before_atomic();
1509        atomic_dec(&rdev->sched_count);
1510        kfree(re_work);
1511}
1512
1513static void bnxt_re_init_one(struct bnxt_re_dev *rdev)
1514{
1515        pci_dev_get(rdev->en_dev->pdev);
1516}
1517
1518/*
1519 * "Notifier chain callback can be invoked for the same chain from
1520 * different CPUs at the same time".
1521 *
1522 * For cases when the netdev is already present, our call to the
1523 * register_netdevice_notifier() will actually get the rtnl_lock()
1524 * before sending NETDEV_REGISTER and (if up) NETDEV_UP
1525 * events.
1526 *
1527 * But for cases when the netdev is not already present, the notifier
1528 * chain is subjected to be invoked from different CPUs simultaneously.
1529 *
1530 * This is protected by the netdev_mutex.
1531 */
1532static int bnxt_re_netdev_event(struct notifier_block *notifier,
1533                                unsigned long event, void *ptr)
1534{
1535        struct net_device *real_dev, *netdev = netdev_notifier_info_to_dev(ptr);
1536        struct bnxt_re_work *re_work;
1537        struct bnxt_re_dev *rdev;
1538        int rc = 0;
1539        bool sch_work = false;
1540
1541        real_dev = rdma_vlan_dev_real_dev(netdev);
1542        if (!real_dev)
1543                real_dev = netdev;
1544
1545        rdev = bnxt_re_from_netdev(real_dev);
1546        if (!rdev && event != NETDEV_REGISTER)
1547                goto exit;
1548        if (real_dev != netdev)
1549                goto exit;
1550
1551        switch (event) {
1552        case NETDEV_REGISTER:
1553                if (rdev)
1554                        break;
1555                rc = bnxt_re_dev_reg(&rdev, real_dev);
1556                if (rc == -ENODEV)
1557                        break;
1558                if (rc) {
1559                        pr_err("Failed to register with the device %s: %#x\n",
1560                               real_dev->name, rc);
1561                        break;
1562                }
1563                bnxt_re_init_one(rdev);
1564                sch_work = true;
1565                break;
1566
1567        case NETDEV_UNREGISTER:
1568                /* netdev notifier will call NETDEV_UNREGISTER again later since
1569                 * we are still holding the reference to the netdev
1570                 */
1571                if (atomic_read(&rdev->sched_count) > 0)
1572                        goto exit;
1573                bnxt_re_ib_unreg(rdev, false);
1574                bnxt_re_remove_one(rdev);
1575                bnxt_re_dev_unreg(rdev);
1576                break;
1577
1578        default:
1579                sch_work = true;
1580                break;
1581        }
1582        if (sch_work) {
1583                /* Allocate for the deferred task */
1584                re_work = kzalloc(sizeof(*re_work), GFP_ATOMIC);
1585                if (re_work) {
1586                        re_work->rdev = rdev;
1587                        re_work->event = event;
1588                        re_work->vlan_dev = (real_dev == netdev ?
1589                                             NULL : netdev);
1590                        INIT_WORK(&re_work->work, bnxt_re_task);
1591                        atomic_inc(&rdev->sched_count);
1592                        queue_work(bnxt_re_wq, &re_work->work);
1593                }
1594        }
1595
1596exit:
1597        return NOTIFY_DONE;
1598}
1599
1600static struct notifier_block bnxt_re_netdev_notifier = {
1601        .notifier_call = bnxt_re_netdev_event
1602};
1603
1604static int __init bnxt_re_mod_init(void)
1605{
1606        int rc = 0;
1607
1608        pr_info("%s: %s", ROCE_DRV_MODULE_NAME, version);
1609
1610        bnxt_re_wq = create_singlethread_workqueue("bnxt_re");
1611        if (!bnxt_re_wq)
1612                return -ENOMEM;
1613
1614        INIT_LIST_HEAD(&bnxt_re_dev_list);
1615
1616        rc = register_netdevice_notifier_rh(&bnxt_re_netdev_notifier);
1617        if (rc) {
1618                pr_err("%s: Cannot register to netdevice_notifier",
1619                       ROCE_DRV_MODULE_NAME);
1620                goto err_netdev;
1621        }
1622        return 0;
1623
1624err_netdev:
1625        destroy_workqueue(bnxt_re_wq);
1626
1627        return rc;
1628}
1629
1630static void __exit bnxt_re_mod_exit(void)
1631{
1632        struct bnxt_re_dev *rdev, *next;
1633        LIST_HEAD(to_be_deleted);
1634
1635        mutex_lock(&bnxt_re_dev_lock);
1636        /* Free all adapter allocated resources */
1637        if (!list_empty(&bnxt_re_dev_list))
1638                list_splice_init(&bnxt_re_dev_list, &to_be_deleted);
1639        mutex_unlock(&bnxt_re_dev_lock);
1640
1641       /*
1642        * Cleanup the devices in reverse order so that the VF device
1643        * cleanup is done before PF cleanup
1644        */
1645        list_for_each_entry_safe_reverse(rdev, next, &to_be_deleted, list) {
1646                dev_info(rdev_to_dev(rdev), "Unregistering Device");
1647                /*
1648                 * Flush out any scheduled tasks before destroying the
1649                 * resources
1650                 */
1651                flush_workqueue(bnxt_re_wq);
1652                bnxt_re_dev_stop(rdev);
1653                bnxt_re_ib_unreg(rdev, true);
1654                bnxt_re_remove_one(rdev);
1655                bnxt_re_dev_unreg(rdev);
1656        }
1657        unregister_netdevice_notifier_rh(&bnxt_re_netdev_notifier);
1658        if (bnxt_re_wq)
1659                destroy_workqueue(bnxt_re_wq);
1660}
1661
1662module_init(bnxt_re_mod_init);
1663module_exit(bnxt_re_mod_exit);
1664