blob: 677263ef2859d80c43c5c11de30be997dba91723 [file] [log] [blame]
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001/*
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"
Somnath Kotur225937d2017-08-02 01:46:19 -070067#include "hw_counters.h"
68
Selvin Xavier1ac5a402017-02-10 03:19:33 -080069static 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");
Selvin Xavier1ac5a402017-02-10 03:19:33 -080075
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;
Somnath Kotur5455e732017-10-25 09:12:30 +053081static void bnxt_re_ib_unreg(struct bnxt_re_dev *rdev, bool lock_wait);
Selvin Xavier1ac5a402017-02-10 03:19:33 -080082
Selvin Xavierccd9d0d2018-01-11 11:52:07 -050083/* 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
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800156/* 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{
Selvin Xavierccd9d0d2018-01-11 11:52:07 -0500167 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);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800176}
177
Somnath Kotur5455e732017-10-25 09:12:30 +0530178static 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
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800188static struct bnxt_ulp_ops bnxt_re_ulp_ops = {
189 .ulp_async_notifier = NULL,
190 .ulp_stop = bnxt_re_stop,
191 .ulp_start = bnxt_re_start,
Somnath Kotur5455e732017-10-25 09:12:30 +0530192 .ulp_sriov_config = bnxt_re_sriov_config,
193 .ulp_shutdown = bnxt_re_shutdown
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800194};
195
196/* RoCE -> Net driver */
197
198/* Driver registration routines used to let the networking driver (bnxt_en)
199 * to know that the RoCE driver is now installed
200 */
201static int bnxt_re_unregister_netdev(struct bnxt_re_dev *rdev, bool lock_wait)
202{
203 struct bnxt_en_dev *en_dev;
204 int rc;
205
206 if (!rdev)
207 return -EINVAL;
208
209 en_dev = rdev->en_dev;
210 /* Acquire rtnl lock if it is not invokded from netdev event */
211 if (lock_wait)
212 rtnl_lock();
213
214 rc = en_dev->en_ops->bnxt_unregister_device(rdev->en_dev,
215 BNXT_ROCE_ULP);
216 if (lock_wait)
217 rtnl_unlock();
218 return rc;
219}
220
221static int bnxt_re_register_netdev(struct bnxt_re_dev *rdev)
222{
223 struct bnxt_en_dev *en_dev;
224 int rc = 0;
225
226 if (!rdev)
227 return -EINVAL;
228
229 en_dev = rdev->en_dev;
230
231 rtnl_lock();
232 rc = en_dev->en_ops->bnxt_register_device(en_dev, BNXT_ROCE_ULP,
233 &bnxt_re_ulp_ops, rdev);
234 rtnl_unlock();
235 return rc;
236}
237
238static int bnxt_re_free_msix(struct bnxt_re_dev *rdev, bool lock_wait)
239{
240 struct bnxt_en_dev *en_dev;
241 int rc;
242
243 if (!rdev)
244 return -EINVAL;
245
246 en_dev = rdev->en_dev;
247
248 if (lock_wait)
249 rtnl_lock();
250
251 rc = en_dev->en_ops->bnxt_free_msix(rdev->en_dev, BNXT_ROCE_ULP);
252
253 if (lock_wait)
254 rtnl_unlock();
255 return rc;
256}
257
258static int bnxt_re_request_msix(struct bnxt_re_dev *rdev)
259{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700260 int rc = 0, num_msix_want = BNXT_RE_MAX_MSIX, num_msix_got;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800261 struct bnxt_en_dev *en_dev;
262
263 if (!rdev)
264 return -EINVAL;
265
266 en_dev = rdev->en_dev;
267
Selvin Xavier6a5df912017-08-02 01:46:18 -0700268 num_msix_want = min_t(u32, BNXT_RE_MAX_MSIX, num_online_cpus());
269
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800270 rtnl_lock();
271 num_msix_got = en_dev->en_ops->bnxt_request_msix(en_dev, BNXT_ROCE_ULP,
272 rdev->msix_entries,
273 num_msix_want);
274 if (num_msix_got < BNXT_RE_MIN_MSIX) {
275 rc = -EINVAL;
276 goto done;
277 }
278 if (num_msix_got != num_msix_want) {
279 dev_warn(rdev_to_dev(rdev),
280 "Requested %d MSI-X vectors, got %d\n",
281 num_msix_want, num_msix_got);
282 }
283 rdev->num_msix = num_msix_got;
284done:
285 rtnl_unlock();
286 return rc;
287}
288
289static void bnxt_re_init_hwrm_hdr(struct bnxt_re_dev *rdev, struct input *hdr,
290 u16 opcd, u16 crid, u16 trid)
291{
292 hdr->req_type = cpu_to_le16(opcd);
293 hdr->cmpl_ring = cpu_to_le16(crid);
294 hdr->target_id = cpu_to_le16(trid);
295}
296
297static void bnxt_re_fill_fw_msg(struct bnxt_fw_msg *fw_msg, void *msg,
298 int msg_len, void *resp, int resp_max_len,
299 int timeout)
300{
301 fw_msg->msg = msg;
302 fw_msg->msg_len = msg_len;
303 fw_msg->resp = resp;
304 fw_msg->resp_max_len = resp_max_len;
305 fw_msg->timeout = timeout;
306}
307
308static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev, u16 fw_ring_id,
309 bool lock_wait)
310{
311 struct bnxt_en_dev *en_dev = rdev->en_dev;
312 struct hwrm_ring_free_input req = {0};
313 struct hwrm_ring_free_output resp;
314 struct bnxt_fw_msg fw_msg;
315 bool do_unlock = false;
316 int rc = -EINVAL;
317
318 if (!en_dev)
319 return rc;
320
321 memset(&fw_msg, 0, sizeof(fw_msg));
322 if (lock_wait) {
323 rtnl_lock();
324 do_unlock = true;
325 }
326
327 bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_FREE, -1, -1);
Stephen Rothwelldb690322017-02-15 11:30:03 +1100328 req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800329 req.ring_id = cpu_to_le16(fw_ring_id);
330 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
331 sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
332 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
333 if (rc)
334 dev_err(rdev_to_dev(rdev),
335 "Failed to free HW ring:%d :%#x", req.ring_id, rc);
336 if (do_unlock)
337 rtnl_unlock();
338 return rc;
339}
340
341static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
342 int pages, int type, u32 ring_mask,
343 u32 map_index, u16 *fw_ring_id)
344{
345 struct bnxt_en_dev *en_dev = rdev->en_dev;
346 struct hwrm_ring_alloc_input req = {0};
347 struct hwrm_ring_alloc_output resp;
348 struct bnxt_fw_msg fw_msg;
349 int rc = -EINVAL;
350
351 if (!en_dev)
352 return rc;
353
354 memset(&fw_msg, 0, sizeof(fw_msg));
355 rtnl_lock();
356 bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
357 req.enables = 0;
358 req.page_tbl_addr = cpu_to_le64(dma_arr[0]);
359 if (pages > 1) {
360 /* Page size is in log2 units */
361 req.page_size = BNXT_PAGE_SHIFT;
362 req.page_tbl_depth = 1;
363 }
364 req.fbo = 0;
365 /* Association of ring index with doorbell index and MSIX number */
366 req.logical_id = cpu_to_le16(map_index);
367 req.length = cpu_to_le32(ring_mask + 1);
Stephen Rothwelldb690322017-02-15 11:30:03 +1100368 req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800369 req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
370 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
371 sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
372 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
373 if (!rc)
374 *fw_ring_id = le16_to_cpu(resp.ring_id);
375
376 rtnl_unlock();
377 return rc;
378}
379
380static int bnxt_re_net_stats_ctx_free(struct bnxt_re_dev *rdev,
381 u32 fw_stats_ctx_id, bool lock_wait)
382{
383 struct bnxt_en_dev *en_dev = rdev->en_dev;
384 struct hwrm_stat_ctx_free_input req = {0};
385 struct bnxt_fw_msg fw_msg;
386 bool do_unlock = false;
387 int rc = -EINVAL;
388
389 if (!en_dev)
390 return rc;
391
392 memset(&fw_msg, 0, sizeof(fw_msg));
393 if (lock_wait) {
394 rtnl_lock();
395 do_unlock = true;
396 }
397
398 bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_STAT_CTX_FREE, -1, -1);
399 req.stat_ctx_id = cpu_to_le32(fw_stats_ctx_id);
400 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&req,
401 sizeof(req), DFLT_HWRM_CMD_TIMEOUT);
402 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
403 if (rc)
404 dev_err(rdev_to_dev(rdev),
405 "Failed to free HW stats context %#x", rc);
406
407 if (do_unlock)
408 rtnl_unlock();
409 return rc;
410}
411
412static int bnxt_re_net_stats_ctx_alloc(struct bnxt_re_dev *rdev,
413 dma_addr_t dma_map,
414 u32 *fw_stats_ctx_id)
415{
416 struct hwrm_stat_ctx_alloc_output resp = {0};
417 struct hwrm_stat_ctx_alloc_input req = {0};
418 struct bnxt_en_dev *en_dev = rdev->en_dev;
419 struct bnxt_fw_msg fw_msg;
420 int rc = -EINVAL;
421
422 *fw_stats_ctx_id = INVALID_STATS_CTX_ID;
423
424 if (!en_dev)
425 return rc;
426
427 memset(&fw_msg, 0, sizeof(fw_msg));
428 rtnl_lock();
429
430 bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_STAT_CTX_ALLOC, -1, -1);
431 req.update_period_ms = cpu_to_le32(1000);
432 req.stats_dma_addr = cpu_to_le64(dma_map);
Somnath Kotur536f0922017-06-29 12:28:14 -0700433 req.stat_ctx_flags = STAT_CTX_ALLOC_REQ_STAT_CTX_FLAGS_ROCE;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800434 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
435 sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
436 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
437 if (!rc)
438 *fw_stats_ctx_id = le32_to_cpu(resp.stat_ctx_id);
439
440 rtnl_unlock();
441 return rc;
442}
443
444/* Device */
445
446static bool is_bnxt_re_dev(struct net_device *netdev)
447{
448 struct ethtool_drvinfo drvinfo;
449
450 if (netdev->ethtool_ops && netdev->ethtool_ops->get_drvinfo) {
451 memset(&drvinfo, 0, sizeof(drvinfo));
452 netdev->ethtool_ops->get_drvinfo(netdev, &drvinfo);
453
454 if (strcmp(drvinfo.driver, "bnxt_en"))
455 return false;
456 return true;
457 }
458 return false;
459}
460
461static struct bnxt_re_dev *bnxt_re_from_netdev(struct net_device *netdev)
462{
463 struct bnxt_re_dev *rdev;
464
465 rcu_read_lock();
466 list_for_each_entry_rcu(rdev, &bnxt_re_dev_list, list) {
467 if (rdev->netdev == netdev) {
468 rcu_read_unlock();
469 return rdev;
470 }
471 }
472 rcu_read_unlock();
473 return NULL;
474}
475
476static void bnxt_re_dev_unprobe(struct net_device *netdev,
477 struct bnxt_en_dev *en_dev)
478{
479 dev_put(netdev);
480 module_put(en_dev->pdev->driver->driver.owner);
481}
482
483static struct bnxt_en_dev *bnxt_re_dev_probe(struct net_device *netdev)
484{
485 struct bnxt *bp = netdev_priv(netdev);
486 struct bnxt_en_dev *en_dev;
487 struct pci_dev *pdev;
488
489 /* Call bnxt_en's RoCE probe via indirect API */
490 if (!bp->ulp_probe)
491 return ERR_PTR(-EINVAL);
492
493 en_dev = bp->ulp_probe(netdev);
494 if (IS_ERR(en_dev))
495 return en_dev;
496
497 pdev = en_dev->pdev;
498 if (!pdev)
499 return ERR_PTR(-EINVAL);
500
501 if (!(en_dev->flags & BNXT_EN_FLAG_ROCE_CAP)) {
Jonathan Toppins8fc12d92018-01-04 16:04:13 -0500502 dev_info(&pdev->dev,
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800503 "%s: probe error: RoCE is not supported on this device",
504 ROCE_DRV_MODULE_NAME);
505 return ERR_PTR(-ENODEV);
506 }
507
508 /* Bump net device reference count */
509 if (!try_module_get(pdev->driver->driver.owner))
510 return ERR_PTR(-ENODEV);
511
512 dev_hold(netdev);
513
514 return en_dev;
515}
516
517static void bnxt_re_unregister_ib(struct bnxt_re_dev *rdev)
518{
519 ib_unregister_device(&rdev->ibdev);
520}
521
522static int bnxt_re_register_ib(struct bnxt_re_dev *rdev)
523{
524 struct ib_device *ibdev = &rdev->ibdev;
525
526 /* ib device init */
527 ibdev->owner = THIS_MODULE;
528 ibdev->node_type = RDMA_NODE_IB_CA;
529 strlcpy(ibdev->name, "bnxt_re%d", IB_DEVICE_NAME_MAX);
530 strlcpy(ibdev->node_desc, BNXT_RE_DESC " HCA",
531 strlen(BNXT_RE_DESC) + 5);
532 ibdev->phys_port_cnt = 1;
533
534 bnxt_qplib_get_guid(rdev->netdev->dev_addr, (u8 *)&ibdev->node_guid);
535
536 ibdev->num_comp_vectors = 1;
Linus Torvaldsac1820f2017-02-25 13:45:43 -0800537 ibdev->dev.parent = &rdev->en_dev->pdev->dev;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800538 ibdev->local_dma_lkey = BNXT_QPLIB_RSVD_LKEY;
539
540 /* User space */
541 ibdev->uverbs_abi_ver = BNXT_RE_ABI_VERSION;
542 ibdev->uverbs_cmd_mask =
543 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
544 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
545 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
546 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
547 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
548 (1ull << IB_USER_VERBS_CMD_REG_MR) |
549 (1ull << IB_USER_VERBS_CMD_REREG_MR) |
550 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
551 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
552 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
553 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
554 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
555 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
556 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
557 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
558 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
559 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
560 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
561 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
562 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
563 (1ull << IB_USER_VERBS_CMD_CREATE_AH) |
564 (1ull << IB_USER_VERBS_CMD_MODIFY_AH) |
565 (1ull << IB_USER_VERBS_CMD_QUERY_AH) |
566 (1ull << IB_USER_VERBS_CMD_DESTROY_AH);
567 /* POLL_CQ and REQ_NOTIFY_CQ is directly handled in libbnxt_re */
568
569 /* Kernel verbs */
570 ibdev->query_device = bnxt_re_query_device;
571 ibdev->modify_device = bnxt_re_modify_device;
572
573 ibdev->query_port = bnxt_re_query_port;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800574 ibdev->get_port_immutable = bnxt_re_get_port_immutable;
575 ibdev->query_pkey = bnxt_re_query_pkey;
576 ibdev->query_gid = bnxt_re_query_gid;
577 ibdev->get_netdev = bnxt_re_get_netdev;
578 ibdev->add_gid = bnxt_re_add_gid;
579 ibdev->del_gid = bnxt_re_del_gid;
580 ibdev->get_link_layer = bnxt_re_get_link_layer;
581
582 ibdev->alloc_pd = bnxt_re_alloc_pd;
583 ibdev->dealloc_pd = bnxt_re_dealloc_pd;
584
585 ibdev->create_ah = bnxt_re_create_ah;
586 ibdev->modify_ah = bnxt_re_modify_ah;
587 ibdev->query_ah = bnxt_re_query_ah;
588 ibdev->destroy_ah = bnxt_re_destroy_ah;
589
590 ibdev->create_qp = bnxt_re_create_qp;
591 ibdev->modify_qp = bnxt_re_modify_qp;
592 ibdev->query_qp = bnxt_re_query_qp;
593 ibdev->destroy_qp = bnxt_re_destroy_qp;
594
595 ibdev->post_send = bnxt_re_post_send;
596 ibdev->post_recv = bnxt_re_post_recv;
597
598 ibdev->create_cq = bnxt_re_create_cq;
599 ibdev->destroy_cq = bnxt_re_destroy_cq;
600 ibdev->poll_cq = bnxt_re_poll_cq;
601 ibdev->req_notify_cq = bnxt_re_req_notify_cq;
602
603 ibdev->get_dma_mr = bnxt_re_get_dma_mr;
604 ibdev->dereg_mr = bnxt_re_dereg_mr;
605 ibdev->alloc_mr = bnxt_re_alloc_mr;
606 ibdev->map_mr_sg = bnxt_re_map_mr_sg;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800607
608 ibdev->reg_user_mr = bnxt_re_reg_user_mr;
609 ibdev->alloc_ucontext = bnxt_re_alloc_ucontext;
610 ibdev->dealloc_ucontext = bnxt_re_dealloc_ucontext;
611 ibdev->mmap = bnxt_re_mmap;
Somnath Kotur225937d2017-08-02 01:46:19 -0700612 ibdev->get_hw_stats = bnxt_re_ib_get_hw_stats;
613 ibdev->alloc_hw_stats = bnxt_re_ib_alloc_hw_stats;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800614
615 return ib_register_device(ibdev, NULL);
616}
617
618static ssize_t show_rev(struct device *device, struct device_attribute *attr,
619 char *buf)
620{
621 struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
622
623 return scnprintf(buf, PAGE_SIZE, "0x%x\n", rdev->en_dev->pdev->vendor);
624}
625
626static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
627 char *buf)
628{
629 struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
630
631 return scnprintf(buf, PAGE_SIZE, "%s\n", rdev->dev_attr.fw_ver);
632}
633
634static ssize_t show_hca(struct device *device, struct device_attribute *attr,
635 char *buf)
636{
637 struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
638
639 return scnprintf(buf, PAGE_SIZE, "%s\n", rdev->ibdev.node_desc);
640}
641
642static DEVICE_ATTR(hw_rev, 0444, show_rev, NULL);
643static DEVICE_ATTR(fw_rev, 0444, show_fw_ver, NULL);
644static DEVICE_ATTR(hca_type, 0444, show_hca, NULL);
645
646static struct device_attribute *bnxt_re_attributes[] = {
647 &dev_attr_hw_rev,
648 &dev_attr_fw_rev,
649 &dev_attr_hca_type
650};
651
652static void bnxt_re_dev_remove(struct bnxt_re_dev *rdev)
653{
654 dev_put(rdev->netdev);
655 rdev->netdev = NULL;
656
657 mutex_lock(&bnxt_re_dev_lock);
658 list_del_rcu(&rdev->list);
659 mutex_unlock(&bnxt_re_dev_lock);
660
661 synchronize_rcu();
662 flush_workqueue(bnxt_re_wq);
663
664 ib_dealloc_device(&rdev->ibdev);
665 /* rdev is gone */
666}
667
668static struct bnxt_re_dev *bnxt_re_dev_add(struct net_device *netdev,
669 struct bnxt_en_dev *en_dev)
670{
671 struct bnxt_re_dev *rdev;
672
673 /* Allocate bnxt_re_dev instance here */
674 rdev = (struct bnxt_re_dev *)ib_alloc_device(sizeof(*rdev));
675 if (!rdev) {
676 dev_err(NULL, "%s: bnxt_re_dev allocation failure!",
677 ROCE_DRV_MODULE_NAME);
678 return NULL;
679 }
680 /* Default values */
681 rdev->netdev = netdev;
682 dev_hold(rdev->netdev);
683 rdev->en_dev = en_dev;
684 rdev->id = rdev->en_dev->pdev->devfn;
685 INIT_LIST_HEAD(&rdev->qp_list);
686 mutex_init(&rdev->qp_lock);
687 atomic_set(&rdev->qp_count, 0);
688 atomic_set(&rdev->cq_count, 0);
689 atomic_set(&rdev->srq_count, 0);
690 atomic_set(&rdev->mr_count, 0);
691 atomic_set(&rdev->mw_count, 0);
692 rdev->cosq[0] = 0xFFFF;
693 rdev->cosq[1] = 0xFFFF;
694
695 mutex_lock(&bnxt_re_dev_lock);
696 list_add_tail_rcu(&rdev->list, &bnxt_re_dev_list);
697 mutex_unlock(&bnxt_re_dev_lock);
698 return rdev;
699}
700
701static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
702 struct creq_func_event *aeqe)
703{
704 switch (aeqe->event) {
705 case CREQ_FUNC_EVENT_EVENT_TX_WQE_ERROR:
706 break;
707 case CREQ_FUNC_EVENT_EVENT_TX_DATA_ERROR:
708 break;
709 case CREQ_FUNC_EVENT_EVENT_RX_WQE_ERROR:
710 break;
711 case CREQ_FUNC_EVENT_EVENT_RX_DATA_ERROR:
712 break;
713 case CREQ_FUNC_EVENT_EVENT_CQ_ERROR:
714 break;
715 case CREQ_FUNC_EVENT_EVENT_TQM_ERROR:
716 break;
717 case CREQ_FUNC_EVENT_EVENT_CFCQ_ERROR:
718 break;
719 case CREQ_FUNC_EVENT_EVENT_CFCS_ERROR:
720 break;
721 case CREQ_FUNC_EVENT_EVENT_CFCC_ERROR:
722 break;
723 case CREQ_FUNC_EVENT_EVENT_CFCM_ERROR:
724 break;
725 case CREQ_FUNC_EVENT_EVENT_TIM_ERROR:
726 break;
727 default:
728 return -EINVAL;
729 }
730 return 0;
731}
732
733static int bnxt_re_cqn_handler(struct bnxt_qplib_nq *nq,
734 struct bnxt_qplib_cq *handle)
735{
736 struct bnxt_re_cq *cq = container_of(handle, struct bnxt_re_cq,
737 qplib_cq);
738
739 if (!cq) {
740 dev_err(NULL, "%s: CQ is NULL, CQN not handled",
741 ROCE_DRV_MODULE_NAME);
742 return -EINVAL;
743 }
744 if (cq->ib_cq.comp_handler) {
745 /* Lock comp_handler? */
746 (*cq->ib_cq.comp_handler)(&cq->ib_cq, cq->ib_cq.cq_context);
747 }
748
749 return 0;
750}
751
752static void bnxt_re_cleanup_res(struct bnxt_re_dev *rdev)
753{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700754 int i;
755
756 if (rdev->nq[0].hwq.max_elements) {
757 for (i = 1; i < rdev->num_msix; i++)
758 bnxt_qplib_disable_nq(&rdev->nq[i - 1]);
759 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800760
761 if (rdev->qplib_res.rcfw)
762 bnxt_qplib_cleanup_res(&rdev->qplib_res);
763}
764
765static int bnxt_re_init_res(struct bnxt_re_dev *rdev)
766{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700767 int rc = 0, i;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800768
769 bnxt_qplib_init_res(&rdev->qplib_res);
770
Selvin Xavier6a5df912017-08-02 01:46:18 -0700771 for (i = 1; i < rdev->num_msix ; i++) {
772 rc = bnxt_qplib_enable_nq(rdev->en_dev->pdev, &rdev->nq[i - 1],
773 i - 1, rdev->msix_entries[i].vector,
774 rdev->msix_entries[i].db_offset,
775 &bnxt_re_cqn_handler, NULL);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800776
Selvin Xavier6a5df912017-08-02 01:46:18 -0700777 if (rc) {
778 dev_err(rdev_to_dev(rdev),
779 "Failed to enable NQ with rc = 0x%x", rc);
780 goto fail;
781 }
782 }
783 return 0;
784fail:
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800785 return rc;
786}
787
Selvin Xavier6a5df912017-08-02 01:46:18 -0700788static void bnxt_re_free_nq_res(struct bnxt_re_dev *rdev, bool lock_wait)
789{
790 int i;
791
792 for (i = 0; i < rdev->num_msix - 1; i++) {
793 bnxt_re_net_ring_free(rdev, rdev->nq[i].ring_id, lock_wait);
794 bnxt_qplib_free_nq(&rdev->nq[i]);
795 }
796}
797
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800798static void bnxt_re_free_res(struct bnxt_re_dev *rdev, bool lock_wait)
799{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700800 bnxt_re_free_nq_res(rdev, lock_wait);
801
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800802 if (rdev->qplib_res.dpi_tbl.max) {
803 bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
804 &rdev->qplib_res.dpi_tbl,
805 &rdev->dpi_privileged);
806 }
807 if (rdev->qplib_res.rcfw) {
808 bnxt_qplib_free_res(&rdev->qplib_res);
809 rdev->qplib_res.rcfw = NULL;
810 }
811}
812
813static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
814{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700815 int rc = 0, i;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800816
817 /* Configure and allocate resources for qplib */
818 rdev->qplib_res.rcfw = &rdev->rcfw;
Selvin Xavierccd9d0d2018-01-11 11:52:07 -0500819 rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
820 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800821 if (rc)
822 goto fail;
823
824 rc = bnxt_qplib_alloc_res(&rdev->qplib_res, rdev->en_dev->pdev,
825 rdev->netdev, &rdev->dev_attr);
826 if (rc)
827 goto fail;
828
829 rc = bnxt_qplib_alloc_dpi(&rdev->qplib_res.dpi_tbl,
830 &rdev->dpi_privileged,
831 rdev);
832 if (rc)
Selvin Xavier6a5df912017-08-02 01:46:18 -0700833 goto dealloc_res;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800834
Selvin Xavier6a5df912017-08-02 01:46:18 -0700835 for (i = 0; i < rdev->num_msix - 1; i++) {
836 rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
837 BNXT_RE_MAX_SRQC_COUNT + 2;
838 rc = bnxt_qplib_alloc_nq(rdev->en_dev->pdev, &rdev->nq[i]);
839 if (rc) {
840 dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
841 i, rc);
842 goto dealloc_dpi;
843 }
844 rc = bnxt_re_net_ring_alloc
845 (rdev, rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr,
846 rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count,
847 HWRM_RING_ALLOC_CMPL,
848 BNXT_QPLIB_NQE_MAX_CNT - 1,
849 rdev->msix_entries[i + 1].ring_idx,
850 &rdev->nq[i].ring_id);
851 if (rc) {
852 dev_err(rdev_to_dev(rdev),
853 "Failed to allocate NQ fw id with rc = 0x%x",
854 rc);
855 goto free_nq;
856 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800857 }
858 return 0;
859free_nq:
Selvin Xavier6a5df912017-08-02 01:46:18 -0700860 for (i = 0; i < rdev->num_msix - 1; i++)
861 bnxt_qplib_free_nq(&rdev->nq[i]);
862dealloc_dpi:
863 bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
864 &rdev->qplib_res.dpi_tbl,
865 &rdev->dpi_privileged);
866dealloc_res:
867 bnxt_qplib_free_res(&rdev->qplib_res);
868
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800869fail:
870 rdev->qplib_res.rcfw = NULL;
871 return rc;
872}
873
874static void bnxt_re_dispatch_event(struct ib_device *ibdev, struct ib_qp *qp,
875 u8 port_num, enum ib_event_type event)
876{
877 struct ib_event ib_event;
878
879 ib_event.device = ibdev;
880 if (qp)
881 ib_event.element.qp = qp;
882 else
883 ib_event.element.port_num = port_num;
884 ib_event.event = event;
885 ib_dispatch_event(&ib_event);
886}
887
888#define HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN 0x02
889static int bnxt_re_query_hwrm_pri2cos(struct bnxt_re_dev *rdev, u8 dir,
890 u64 *cid_map)
891{
892 struct hwrm_queue_pri2cos_qcfg_input req = {0};
893 struct bnxt *bp = netdev_priv(rdev->netdev);
894 struct hwrm_queue_pri2cos_qcfg_output resp;
895 struct bnxt_en_dev *en_dev = rdev->en_dev;
896 struct bnxt_fw_msg fw_msg;
897 u32 flags = 0;
898 u8 *qcfgmap, *tmp_map;
899 int rc = 0, i;
900
901 if (!cid_map)
902 return -EINVAL;
903
904 memset(&fw_msg, 0, sizeof(fw_msg));
905 bnxt_re_init_hwrm_hdr(rdev, (void *)&req,
906 HWRM_QUEUE_PRI2COS_QCFG, -1, -1);
907 flags |= (dir & 0x01);
908 flags |= HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN;
909 req.flags = cpu_to_le32(flags);
910 req.port_id = bp->pf.port_id;
911
912 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
913 sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
914 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
915 if (rc)
916 return rc;
917
918 if (resp.queue_cfg_info) {
919 dev_warn(rdev_to_dev(rdev),
920 "Asymmetric cos queue configuration detected");
921 dev_warn(rdev_to_dev(rdev),
922 " on device, QoS may not be fully functional\n");
923 }
924 qcfgmap = &resp.pri0_cos_queue_id;
925 tmp_map = (u8 *)cid_map;
926 for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++)
927 tmp_map[i] = qcfgmap[i];
928
929 return rc;
930}
931
932static bool bnxt_re_is_qp1_or_shadow_qp(struct bnxt_re_dev *rdev,
933 struct bnxt_re_qp *qp)
934{
935 return (qp->ib_qp.qp_type == IB_QPT_GSI) || (qp == rdev->qp1_sqp);
936}
937
938static void bnxt_re_dev_stop(struct bnxt_re_dev *rdev)
939{
940 int mask = IB_QP_STATE;
941 struct ib_qp_attr qp_attr;
942 struct bnxt_re_qp *qp;
943
944 qp_attr.qp_state = IB_QPS_ERR;
945 mutex_lock(&rdev->qp_lock);
946 list_for_each_entry(qp, &rdev->qp_list, list) {
947 /* Modify the state of all QPs except QP1/Shadow QP */
948 if (!bnxt_re_is_qp1_or_shadow_qp(rdev, qp)) {
949 if (qp->qplib_qp.state !=
950 CMDQ_MODIFY_QP_NEW_STATE_RESET &&
951 qp->qplib_qp.state !=
952 CMDQ_MODIFY_QP_NEW_STATE_ERR) {
953 bnxt_re_dispatch_event(&rdev->ibdev, &qp->ib_qp,
954 1, IB_EVENT_QP_FATAL);
955 bnxt_re_modify_qp(&qp->ib_qp, &qp_attr, mask,
956 NULL);
957 }
958 }
959 }
960 mutex_unlock(&rdev->qp_lock);
961}
962
Kalesh AP5fac5b12017-06-29 12:28:10 -0700963static int bnxt_re_update_gid(struct bnxt_re_dev *rdev)
964{
965 struct bnxt_qplib_sgid_tbl *sgid_tbl = &rdev->qplib_res.sgid_tbl;
966 struct bnxt_qplib_gid gid;
967 u16 gid_idx, index;
968 int rc = 0;
969
970 if (!test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
971 return 0;
972
973 if (!sgid_tbl) {
974 dev_err(rdev_to_dev(rdev), "QPLIB: SGID table not allocated");
975 return -EINVAL;
976 }
977
978 for (index = 0; index < sgid_tbl->active; index++) {
979 gid_idx = sgid_tbl->hw_id[index];
980
981 if (!memcmp(&sgid_tbl->tbl[index], &bnxt_qplib_gid_zero,
982 sizeof(bnxt_qplib_gid_zero)))
983 continue;
984 /* need to modify the VLAN enable setting of non VLAN GID only
985 * as setting is done for VLAN GID while adding GID
986 */
987 if (sgid_tbl->vlan[index])
988 continue;
989
990 memcpy(&gid, &sgid_tbl->tbl[index], sizeof(gid));
991
992 rc = bnxt_qplib_update_sgid(sgid_tbl, &gid, gid_idx,
993 rdev->qplib_res.netdev->dev_addr);
994 }
995
996 return rc;
997}
998
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800999static u32 bnxt_re_get_priority_mask(struct bnxt_re_dev *rdev)
1000{
1001 u32 prio_map = 0, tmp_map = 0;
1002 struct net_device *netdev;
1003 struct dcb_app app;
1004
1005 netdev = rdev->netdev;
1006
1007 memset(&app, 0, sizeof(app));
1008 app.selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE;
1009 app.protocol = ETH_P_IBOE;
1010 tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1011 prio_map = tmp_map;
1012
1013 app.selector = IEEE_8021QAZ_APP_SEL_DGRAM;
1014 app.protocol = ROCE_V2_UDP_DPORT;
1015 tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1016 prio_map |= tmp_map;
1017
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001018 return prio_map;
1019}
1020
1021static void bnxt_re_parse_cid_map(u8 prio_map, u8 *cid_map, u16 *cosq)
1022{
1023 u16 prio;
1024 u8 id;
1025
1026 for (prio = 0, id = 0; prio < 8; prio++) {
1027 if (prio_map & (1 << prio)) {
1028 cosq[id] = cid_map[prio];
1029 id++;
1030 if (id == 2) /* Max 2 tcs supported */
1031 break;
1032 }
1033 }
1034}
1035
1036static int bnxt_re_setup_qos(struct bnxt_re_dev *rdev)
1037{
1038 u8 prio_map = 0;
1039 u64 cid_map;
1040 int rc;
1041
1042 /* Get priority for roce */
Kalesh AP5fac5b12017-06-29 12:28:10 -07001043 prio_map = bnxt_re_get_priority_mask(rdev);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001044
1045 if (prio_map == rdev->cur_prio_map)
1046 return 0;
1047 rdev->cur_prio_map = prio_map;
1048 /* Get cosq id for this priority */
1049 rc = bnxt_re_query_hwrm_pri2cos(rdev, 0, &cid_map);
1050 if (rc) {
1051 dev_warn(rdev_to_dev(rdev), "no cos for p_mask %x\n", prio_map);
1052 return rc;
1053 }
1054 /* Parse CoS IDs for app priority */
1055 bnxt_re_parse_cid_map(prio_map, (u8 *)&cid_map, rdev->cosq);
1056
1057 /* Config BONO. */
1058 rc = bnxt_qplib_map_tc2cos(&rdev->qplib_res, rdev->cosq);
1059 if (rc) {
1060 dev_warn(rdev_to_dev(rdev), "no tc for cos{%x, %x}\n",
1061 rdev->cosq[0], rdev->cosq[1]);
1062 return rc;
1063 }
1064
Kalesh AP5fac5b12017-06-29 12:28:10 -07001065 /* Actual priorities are not programmed as they are already
1066 * done by L2 driver; just enable or disable priority vlan tagging
1067 */
1068 if ((prio_map == 0 && rdev->qplib_res.prio) ||
1069 (prio_map != 0 && !rdev->qplib_res.prio)) {
1070 rdev->qplib_res.prio = prio_map ? true : false;
1071
1072 bnxt_re_update_gid(rdev);
1073 }
1074
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001075 return 0;
1076}
1077
1078static void bnxt_re_ib_unreg(struct bnxt_re_dev *rdev, bool lock_wait)
1079{
1080 int i, rc;
1081
1082 if (test_and_clear_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags)) {
1083 for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++)
1084 device_remove_file(&rdev->ibdev.dev,
1085 bnxt_re_attributes[i]);
1086 /* Cleanup ib dev */
1087 bnxt_re_unregister_ib(rdev);
1088 }
1089 if (test_and_clear_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags))
1090 cancel_delayed_work(&rdev->worker);
1091
1092 bnxt_re_cleanup_res(rdev);
1093 bnxt_re_free_res(rdev, lock_wait);
1094
1095 if (test_and_clear_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags)) {
1096 rc = bnxt_qplib_deinit_rcfw(&rdev->rcfw);
1097 if (rc)
1098 dev_warn(rdev_to_dev(rdev),
1099 "Failed to deinitialize RCFW: %#x", rc);
1100 bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id,
1101 lock_wait);
1102 bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1103 bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1104 bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, lock_wait);
1105 bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1106 }
1107 if (test_and_clear_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags)) {
1108 rc = bnxt_re_free_msix(rdev, lock_wait);
1109 if (rc)
1110 dev_warn(rdev_to_dev(rdev),
1111 "Failed to free MSI-X vectors: %#x", rc);
1112 }
1113 if (test_and_clear_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags)) {
1114 rc = bnxt_re_unregister_netdev(rdev, lock_wait);
1115 if (rc)
1116 dev_warn(rdev_to_dev(rdev),
1117 "Failed to unregister with netdev: %#x", rc);
1118 }
1119}
1120
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001121/* worker thread for polling periodic events. Now used for QoS programming*/
1122static void bnxt_re_worker(struct work_struct *work)
1123{
1124 struct bnxt_re_dev *rdev = container_of(work, struct bnxt_re_dev,
1125 worker.work);
1126
1127 bnxt_re_setup_qos(rdev);
1128 schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1129}
1130
1131static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
1132{
1133 int i, j, rc;
1134
1135 /* Registered a new RoCE device instance to netdev */
1136 rc = bnxt_re_register_netdev(rdev);
1137 if (rc) {
1138 pr_err("Failed to register with netedev: %#x\n", rc);
1139 return -EINVAL;
1140 }
1141 set_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags);
1142
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001143 /* Check whether VF or PF */
1144 bnxt_re_get_sriov_func_type(rdev);
1145
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001146 rc = bnxt_re_request_msix(rdev);
1147 if (rc) {
1148 pr_err("Failed to get MSI-X vectors: %#x\n", rc);
1149 rc = -EINVAL;
1150 goto fail;
1151 }
1152 set_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags);
1153
1154 /* Establish RCFW Communication Channel to initialize the context
1155 * memory for the function and all child VFs
1156 */
Selvin Xavierf218d672017-06-29 12:28:15 -07001157 rc = bnxt_qplib_alloc_rcfw_channel(rdev->en_dev->pdev, &rdev->rcfw,
1158 BNXT_RE_MAX_QPC_COUNT);
Somnath Kotura0ddc2e2017-10-13 11:38:00 +05301159 if (rc) {
1160 pr_err("Failed to allocate RCFW Channel: %#x\n", rc);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001161 goto fail;
Somnath Kotura0ddc2e2017-10-13 11:38:00 +05301162 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001163 rc = bnxt_re_net_ring_alloc
1164 (rdev, rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr,
1165 rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count,
1166 HWRM_RING_ALLOC_CMPL, BNXT_QPLIB_CREQE_MAX_CNT - 1,
1167 rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx,
1168 &rdev->rcfw.creq_ring_id);
1169 if (rc) {
1170 pr_err("Failed to allocate CREQ: %#x\n", rc);
1171 goto free_rcfw;
1172 }
1173 rc = bnxt_qplib_enable_rcfw_channel
1174 (rdev->en_dev->pdev, &rdev->rcfw,
1175 rdev->msix_entries[BNXT_RE_AEQ_IDX].vector,
1176 rdev->msix_entries[BNXT_RE_AEQ_IDX].db_offset,
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001177 rdev->is_virtfn, &bnxt_re_aeq_handler);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001178 if (rc) {
1179 pr_err("Failed to enable RCFW channel: %#x\n", rc);
1180 goto free_ring;
1181 }
1182
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001183 rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
1184 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001185 if (rc)
1186 goto disable_rcfw;
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001187 if (!rdev->is_virtfn)
1188 bnxt_re_set_resource_limits(rdev);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001189
1190 rc = bnxt_qplib_alloc_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx, 0);
1191 if (rc) {
1192 pr_err("Failed to allocate QPLIB context: %#x\n", rc);
1193 goto disable_rcfw;
1194 }
1195 rc = bnxt_re_net_stats_ctx_alloc(rdev,
1196 rdev->qplib_ctx.stats.dma_map,
1197 &rdev->qplib_ctx.stats.fw_id);
1198 if (rc) {
1199 pr_err("Failed to allocate stats context: %#x\n", rc);
1200 goto free_ctx;
1201 }
1202
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001203 rc = bnxt_qplib_init_rcfw(&rdev->rcfw, &rdev->qplib_ctx,
1204 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001205 if (rc) {
1206 pr_err("Failed to initialize RCFW: %#x\n", rc);
1207 goto free_sctx;
1208 }
1209 set_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags);
1210
1211 /* Resources based on the 'new' device caps */
1212 rc = bnxt_re_alloc_res(rdev);
1213 if (rc) {
1214 pr_err("Failed to allocate resources: %#x\n", rc);
1215 goto fail;
1216 }
1217 rc = bnxt_re_init_res(rdev);
1218 if (rc) {
1219 pr_err("Failed to initialize resources: %#x\n", rc);
1220 goto fail;
1221 }
1222
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001223 if (!rdev->is_virtfn) {
1224 rc = bnxt_re_setup_qos(rdev);
1225 if (rc)
1226 pr_info("RoCE priority not yet configured\n");
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001227
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001228 INIT_DELAYED_WORK(&rdev->worker, bnxt_re_worker);
1229 set_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags);
1230 schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1231 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001232
1233 /* Register ib dev */
1234 rc = bnxt_re_register_ib(rdev);
1235 if (rc) {
1236 pr_err("Failed to register with IB: %#x\n", rc);
1237 goto fail;
1238 }
1239 dev_info(rdev_to_dev(rdev), "Device registered successfully");
1240 for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++) {
1241 rc = device_create_file(&rdev->ibdev.dev,
1242 bnxt_re_attributes[i]);
1243 if (rc) {
1244 dev_err(rdev_to_dev(rdev),
1245 "Failed to create IB sysfs: %#x", rc);
1246 /* Must clean up all created device files */
1247 for (j = 0; j < i; j++)
1248 device_remove_file(&rdev->ibdev.dev,
1249 bnxt_re_attributes[j]);
1250 bnxt_re_unregister_ib(rdev);
1251 goto fail;
1252 }
1253 }
1254 set_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags);
Somnath Kotur74828b12017-08-31 09:27:33 +05301255 ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1256 &rdev->active_width);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001257 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_PORT_ACTIVE);
1258 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_GID_CHANGE);
1259
1260 return 0;
1261free_sctx:
1262 bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id, true);
1263free_ctx:
1264 bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1265disable_rcfw:
1266 bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1267free_ring:
1268 bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, true);
1269free_rcfw:
1270 bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1271fail:
1272 bnxt_re_ib_unreg(rdev, true);
1273 return rc;
1274}
1275
1276static void bnxt_re_dev_unreg(struct bnxt_re_dev *rdev)
1277{
1278 struct bnxt_en_dev *en_dev = rdev->en_dev;
1279 struct net_device *netdev = rdev->netdev;
1280
1281 bnxt_re_dev_remove(rdev);
1282
1283 if (netdev)
1284 bnxt_re_dev_unprobe(netdev, en_dev);
1285}
1286
1287static int bnxt_re_dev_reg(struct bnxt_re_dev **rdev, struct net_device *netdev)
1288{
1289 struct bnxt_en_dev *en_dev;
1290 int rc = 0;
1291
1292 if (!is_bnxt_re_dev(netdev))
1293 return -ENODEV;
1294
1295 en_dev = bnxt_re_dev_probe(netdev);
1296 if (IS_ERR(en_dev)) {
1297 if (en_dev != ERR_PTR(-ENODEV))
1298 pr_err("%s: Failed to probe\n", ROCE_DRV_MODULE_NAME);
1299 rc = PTR_ERR(en_dev);
1300 goto exit;
1301 }
1302 *rdev = bnxt_re_dev_add(netdev, en_dev);
1303 if (!*rdev) {
1304 rc = -ENOMEM;
1305 bnxt_re_dev_unprobe(netdev, en_dev);
1306 goto exit;
1307 }
1308exit:
1309 return rc;
1310}
1311
1312static void bnxt_re_remove_one(struct bnxt_re_dev *rdev)
1313{
1314 pci_dev_put(rdev->en_dev->pdev);
1315}
1316
1317/* Handle all deferred netevents tasks */
1318static void bnxt_re_task(struct work_struct *work)
1319{
1320 struct bnxt_re_work *re_work;
1321 struct bnxt_re_dev *rdev;
1322 int rc = 0;
1323
1324 re_work = container_of(work, struct bnxt_re_work, work);
1325 rdev = re_work->rdev;
1326
1327 if (re_work->event != NETDEV_REGISTER &&
1328 !test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
1329 return;
1330
1331 switch (re_work->event) {
1332 case NETDEV_REGISTER:
1333 rc = bnxt_re_ib_reg(rdev);
1334 if (rc)
1335 dev_err(rdev_to_dev(rdev),
1336 "Failed to register with IB: %#x", rc);
1337 break;
1338 case NETDEV_UP:
1339 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1340 IB_EVENT_PORT_ACTIVE);
1341 break;
1342 case NETDEV_DOWN:
1343 bnxt_re_dev_stop(rdev);
1344 break;
1345 case NETDEV_CHANGE:
1346 if (!netif_carrier_ok(rdev->netdev))
1347 bnxt_re_dev_stop(rdev);
1348 else if (netif_carrier_ok(rdev->netdev))
1349 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1350 IB_EVENT_PORT_ACTIVE);
Somnath Kotur74828b12017-08-31 09:27:33 +05301351 ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1352 &rdev->active_width);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001353 break;
1354 default:
1355 break;
1356 }
Somnath Koturd5917302017-08-31 09:27:32 +05301357 smp_mb__before_atomic();
1358 clear_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001359 kfree(re_work);
1360}
1361
1362static void bnxt_re_init_one(struct bnxt_re_dev *rdev)
1363{
1364 pci_dev_get(rdev->en_dev->pdev);
1365}
1366
1367/*
1368 * "Notifier chain callback can be invoked for the same chain from
1369 * different CPUs at the same time".
1370 *
1371 * For cases when the netdev is already present, our call to the
1372 * register_netdevice_notifier() will actually get the rtnl_lock()
1373 * before sending NETDEV_REGISTER and (if up) NETDEV_UP
1374 * events.
1375 *
1376 * But for cases when the netdev is not already present, the notifier
1377 * chain is subjected to be invoked from different CPUs simultaneously.
1378 *
1379 * This is protected by the netdev_mutex.
1380 */
1381static int bnxt_re_netdev_event(struct notifier_block *notifier,
1382 unsigned long event, void *ptr)
1383{
1384 struct net_device *real_dev, *netdev = netdev_notifier_info_to_dev(ptr);
1385 struct bnxt_re_work *re_work;
1386 struct bnxt_re_dev *rdev;
1387 int rc = 0;
1388 bool sch_work = false;
1389
1390 real_dev = rdma_vlan_dev_real_dev(netdev);
1391 if (!real_dev)
1392 real_dev = netdev;
1393
1394 rdev = bnxt_re_from_netdev(real_dev);
1395 if (!rdev && event != NETDEV_REGISTER)
1396 goto exit;
1397 if (real_dev != netdev)
1398 goto exit;
1399
1400 switch (event) {
1401 case NETDEV_REGISTER:
1402 if (rdev)
1403 break;
1404 rc = bnxt_re_dev_reg(&rdev, real_dev);
1405 if (rc == -ENODEV)
1406 break;
1407 if (rc) {
1408 pr_err("Failed to register with the device %s: %#x\n",
1409 real_dev->name, rc);
1410 break;
1411 }
1412 bnxt_re_init_one(rdev);
1413 sch_work = true;
1414 break;
1415
1416 case NETDEV_UNREGISTER:
Somnath Koturd5917302017-08-31 09:27:32 +05301417 /* netdev notifier will call NETDEV_UNREGISTER again later since
1418 * we are still holding the reference to the netdev
1419 */
1420 if (test_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags))
1421 goto exit;
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001422 bnxt_re_ib_unreg(rdev, false);
1423 bnxt_re_remove_one(rdev);
1424 bnxt_re_dev_unreg(rdev);
1425 break;
1426
1427 default:
1428 sch_work = true;
1429 break;
1430 }
1431 if (sch_work) {
1432 /* Allocate for the deferred task */
1433 re_work = kzalloc(sizeof(*re_work), GFP_ATOMIC);
1434 if (re_work) {
1435 re_work->rdev = rdev;
1436 re_work->event = event;
1437 re_work->vlan_dev = (real_dev == netdev ?
1438 NULL : netdev);
1439 INIT_WORK(&re_work->work, bnxt_re_task);
Somnath Koturd5917302017-08-31 09:27:32 +05301440 set_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001441 queue_work(bnxt_re_wq, &re_work->work);
1442 }
1443 }
1444
1445exit:
1446 return NOTIFY_DONE;
1447}
1448
1449static struct notifier_block bnxt_re_netdev_notifier = {
1450 .notifier_call = bnxt_re_netdev_event
1451};
1452
1453static int __init bnxt_re_mod_init(void)
1454{
1455 int rc = 0;
1456
1457 pr_info("%s: %s", ROCE_DRV_MODULE_NAME, version);
1458
1459 bnxt_re_wq = create_singlethread_workqueue("bnxt_re");
1460 if (!bnxt_re_wq)
1461 return -ENOMEM;
1462
1463 INIT_LIST_HEAD(&bnxt_re_dev_list);
1464
1465 rc = register_netdevice_notifier(&bnxt_re_netdev_notifier);
1466 if (rc) {
1467 pr_err("%s: Cannot register to netdevice_notifier",
1468 ROCE_DRV_MODULE_NAME);
1469 goto err_netdev;
1470 }
1471 return 0;
1472
1473err_netdev:
1474 destroy_workqueue(bnxt_re_wq);
1475
1476 return rc;
1477}
1478
1479static void __exit bnxt_re_mod_exit(void)
1480{
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001481 struct bnxt_re_dev *rdev, *next;
Somnath Kotur027c8922017-08-31 09:27:31 +05301482 LIST_HEAD(to_be_deleted);
1483
1484 mutex_lock(&bnxt_re_dev_lock);
1485 /* Free all adapter allocated resources */
1486 if (!list_empty(&bnxt_re_dev_list))
1487 list_splice_init(&bnxt_re_dev_list, &to_be_deleted);
1488 mutex_unlock(&bnxt_re_dev_lock);
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001489 /*
1490 * Cleanup the devices in reverse order so that the VF device
1491 * cleanup is done before PF cleanup
1492 */
1493 list_for_each_entry_safe_reverse(rdev, next, &to_be_deleted, list) {
Somnath Kotur027c8922017-08-31 09:27:31 +05301494 dev_info(rdev_to_dev(rdev), "Unregistering Device");
1495 bnxt_re_dev_stop(rdev);
1496 bnxt_re_ib_unreg(rdev, true);
1497 bnxt_re_remove_one(rdev);
1498 bnxt_re_dev_unreg(rdev);
1499 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001500 unregister_netdevice_notifier(&bnxt_re_netdev_notifier);
1501 if (bnxt_re_wq)
1502 destroy_workqueue(bnxt_re_wq);
1503}
1504
1505module_init(bnxt_re_mod_init);
1506module_exit(bnxt_re_mod_exit);