blob: 3caf70a103e693eb521d5d1610fa97e54147e273 [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;
Selvin Xavier2fc68542018-01-11 11:52:08 -0500575 ibdev->get_dev_fw_str = bnxt_re_query_fw_str;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800576 ibdev->query_pkey = bnxt_re_query_pkey;
577 ibdev->query_gid = bnxt_re_query_gid;
578 ibdev->get_netdev = bnxt_re_get_netdev;
579 ibdev->add_gid = bnxt_re_add_gid;
580 ibdev->del_gid = bnxt_re_del_gid;
581 ibdev->get_link_layer = bnxt_re_get_link_layer;
582
583 ibdev->alloc_pd = bnxt_re_alloc_pd;
584 ibdev->dealloc_pd = bnxt_re_dealloc_pd;
585
586 ibdev->create_ah = bnxt_re_create_ah;
587 ibdev->modify_ah = bnxt_re_modify_ah;
588 ibdev->query_ah = bnxt_re_query_ah;
589 ibdev->destroy_ah = bnxt_re_destroy_ah;
590
591 ibdev->create_qp = bnxt_re_create_qp;
592 ibdev->modify_qp = bnxt_re_modify_qp;
593 ibdev->query_qp = bnxt_re_query_qp;
594 ibdev->destroy_qp = bnxt_re_destroy_qp;
595
596 ibdev->post_send = bnxt_re_post_send;
597 ibdev->post_recv = bnxt_re_post_recv;
598
599 ibdev->create_cq = bnxt_re_create_cq;
600 ibdev->destroy_cq = bnxt_re_destroy_cq;
601 ibdev->poll_cq = bnxt_re_poll_cq;
602 ibdev->req_notify_cq = bnxt_re_req_notify_cq;
603
604 ibdev->get_dma_mr = bnxt_re_get_dma_mr;
605 ibdev->dereg_mr = bnxt_re_dereg_mr;
606 ibdev->alloc_mr = bnxt_re_alloc_mr;
607 ibdev->map_mr_sg = bnxt_re_map_mr_sg;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800608
609 ibdev->reg_user_mr = bnxt_re_reg_user_mr;
610 ibdev->alloc_ucontext = bnxt_re_alloc_ucontext;
611 ibdev->dealloc_ucontext = bnxt_re_dealloc_ucontext;
612 ibdev->mmap = bnxt_re_mmap;
Somnath Kotur225937d2017-08-02 01:46:19 -0700613 ibdev->get_hw_stats = bnxt_re_ib_get_hw_stats;
614 ibdev->alloc_hw_stats = bnxt_re_ib_alloc_hw_stats;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800615
616 return ib_register_device(ibdev, NULL);
617}
618
619static ssize_t show_rev(struct device *device, struct device_attribute *attr,
620 char *buf)
621{
622 struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
623
624 return scnprintf(buf, PAGE_SIZE, "0x%x\n", rdev->en_dev->pdev->vendor);
625}
626
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800627static ssize_t show_hca(struct device *device, struct device_attribute *attr,
628 char *buf)
629{
630 struct bnxt_re_dev *rdev = to_bnxt_re_dev(device, ibdev.dev);
631
632 return scnprintf(buf, PAGE_SIZE, "%s\n", rdev->ibdev.node_desc);
633}
634
635static DEVICE_ATTR(hw_rev, 0444, show_rev, NULL);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800636static DEVICE_ATTR(hca_type, 0444, show_hca, NULL);
637
638static struct device_attribute *bnxt_re_attributes[] = {
639 &dev_attr_hw_rev,
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800640 &dev_attr_hca_type
641};
642
643static void bnxt_re_dev_remove(struct bnxt_re_dev *rdev)
644{
645 dev_put(rdev->netdev);
646 rdev->netdev = NULL;
647
648 mutex_lock(&bnxt_re_dev_lock);
649 list_del_rcu(&rdev->list);
650 mutex_unlock(&bnxt_re_dev_lock);
651
652 synchronize_rcu();
653 flush_workqueue(bnxt_re_wq);
654
655 ib_dealloc_device(&rdev->ibdev);
656 /* rdev is gone */
657}
658
659static struct bnxt_re_dev *bnxt_re_dev_add(struct net_device *netdev,
660 struct bnxt_en_dev *en_dev)
661{
662 struct bnxt_re_dev *rdev;
663
664 /* Allocate bnxt_re_dev instance here */
665 rdev = (struct bnxt_re_dev *)ib_alloc_device(sizeof(*rdev));
666 if (!rdev) {
667 dev_err(NULL, "%s: bnxt_re_dev allocation failure!",
668 ROCE_DRV_MODULE_NAME);
669 return NULL;
670 }
671 /* Default values */
672 rdev->netdev = netdev;
673 dev_hold(rdev->netdev);
674 rdev->en_dev = en_dev;
675 rdev->id = rdev->en_dev->pdev->devfn;
676 INIT_LIST_HEAD(&rdev->qp_list);
677 mutex_init(&rdev->qp_lock);
678 atomic_set(&rdev->qp_count, 0);
679 atomic_set(&rdev->cq_count, 0);
680 atomic_set(&rdev->srq_count, 0);
681 atomic_set(&rdev->mr_count, 0);
682 atomic_set(&rdev->mw_count, 0);
683 rdev->cosq[0] = 0xFFFF;
684 rdev->cosq[1] = 0xFFFF;
685
686 mutex_lock(&bnxt_re_dev_lock);
687 list_add_tail_rcu(&rdev->list, &bnxt_re_dev_list);
688 mutex_unlock(&bnxt_re_dev_lock);
689 return rdev;
690}
691
692static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
693 struct creq_func_event *aeqe)
694{
695 switch (aeqe->event) {
696 case CREQ_FUNC_EVENT_EVENT_TX_WQE_ERROR:
697 break;
698 case CREQ_FUNC_EVENT_EVENT_TX_DATA_ERROR:
699 break;
700 case CREQ_FUNC_EVENT_EVENT_RX_WQE_ERROR:
701 break;
702 case CREQ_FUNC_EVENT_EVENT_RX_DATA_ERROR:
703 break;
704 case CREQ_FUNC_EVENT_EVENT_CQ_ERROR:
705 break;
706 case CREQ_FUNC_EVENT_EVENT_TQM_ERROR:
707 break;
708 case CREQ_FUNC_EVENT_EVENT_CFCQ_ERROR:
709 break;
710 case CREQ_FUNC_EVENT_EVENT_CFCS_ERROR:
711 break;
712 case CREQ_FUNC_EVENT_EVENT_CFCC_ERROR:
713 break;
714 case CREQ_FUNC_EVENT_EVENT_CFCM_ERROR:
715 break;
716 case CREQ_FUNC_EVENT_EVENT_TIM_ERROR:
717 break;
718 default:
719 return -EINVAL;
720 }
721 return 0;
722}
723
724static int bnxt_re_cqn_handler(struct bnxt_qplib_nq *nq,
725 struct bnxt_qplib_cq *handle)
726{
727 struct bnxt_re_cq *cq = container_of(handle, struct bnxt_re_cq,
728 qplib_cq);
729
730 if (!cq) {
731 dev_err(NULL, "%s: CQ is NULL, CQN not handled",
732 ROCE_DRV_MODULE_NAME);
733 return -EINVAL;
734 }
735 if (cq->ib_cq.comp_handler) {
736 /* Lock comp_handler? */
737 (*cq->ib_cq.comp_handler)(&cq->ib_cq, cq->ib_cq.cq_context);
738 }
739
740 return 0;
741}
742
743static void bnxt_re_cleanup_res(struct bnxt_re_dev *rdev)
744{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700745 int i;
746
747 if (rdev->nq[0].hwq.max_elements) {
748 for (i = 1; i < rdev->num_msix; i++)
749 bnxt_qplib_disable_nq(&rdev->nq[i - 1]);
750 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800751
752 if (rdev->qplib_res.rcfw)
753 bnxt_qplib_cleanup_res(&rdev->qplib_res);
754}
755
756static int bnxt_re_init_res(struct bnxt_re_dev *rdev)
757{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700758 int rc = 0, i;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800759
760 bnxt_qplib_init_res(&rdev->qplib_res);
761
Selvin Xavier6a5df912017-08-02 01:46:18 -0700762 for (i = 1; i < rdev->num_msix ; i++) {
763 rc = bnxt_qplib_enable_nq(rdev->en_dev->pdev, &rdev->nq[i - 1],
764 i - 1, rdev->msix_entries[i].vector,
765 rdev->msix_entries[i].db_offset,
766 &bnxt_re_cqn_handler, NULL);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800767
Selvin Xavier6a5df912017-08-02 01:46:18 -0700768 if (rc) {
769 dev_err(rdev_to_dev(rdev),
770 "Failed to enable NQ with rc = 0x%x", rc);
771 goto fail;
772 }
773 }
774 return 0;
775fail:
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800776 return rc;
777}
778
Selvin Xavier6a5df912017-08-02 01:46:18 -0700779static void bnxt_re_free_nq_res(struct bnxt_re_dev *rdev, bool lock_wait)
780{
781 int i;
782
783 for (i = 0; i < rdev->num_msix - 1; i++) {
784 bnxt_re_net_ring_free(rdev, rdev->nq[i].ring_id, lock_wait);
785 bnxt_qplib_free_nq(&rdev->nq[i]);
786 }
787}
788
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800789static void bnxt_re_free_res(struct bnxt_re_dev *rdev, bool lock_wait)
790{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700791 bnxt_re_free_nq_res(rdev, lock_wait);
792
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800793 if (rdev->qplib_res.dpi_tbl.max) {
794 bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
795 &rdev->qplib_res.dpi_tbl,
796 &rdev->dpi_privileged);
797 }
798 if (rdev->qplib_res.rcfw) {
799 bnxt_qplib_free_res(&rdev->qplib_res);
800 rdev->qplib_res.rcfw = NULL;
801 }
802}
803
804static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
805{
Selvin Xavier6a5df912017-08-02 01:46:18 -0700806 int rc = 0, i;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800807
808 /* Configure and allocate resources for qplib */
809 rdev->qplib_res.rcfw = &rdev->rcfw;
Selvin Xavierccd9d0d2018-01-11 11:52:07 -0500810 rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
811 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800812 if (rc)
813 goto fail;
814
815 rc = bnxt_qplib_alloc_res(&rdev->qplib_res, rdev->en_dev->pdev,
816 rdev->netdev, &rdev->dev_attr);
817 if (rc)
818 goto fail;
819
820 rc = bnxt_qplib_alloc_dpi(&rdev->qplib_res.dpi_tbl,
821 &rdev->dpi_privileged,
822 rdev);
823 if (rc)
Selvin Xavier6a5df912017-08-02 01:46:18 -0700824 goto dealloc_res;
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800825
Selvin Xavier6a5df912017-08-02 01:46:18 -0700826 for (i = 0; i < rdev->num_msix - 1; i++) {
827 rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
828 BNXT_RE_MAX_SRQC_COUNT + 2;
829 rc = bnxt_qplib_alloc_nq(rdev->en_dev->pdev, &rdev->nq[i]);
830 if (rc) {
831 dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
832 i, rc);
833 goto dealloc_dpi;
834 }
835 rc = bnxt_re_net_ring_alloc
836 (rdev, rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr,
837 rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count,
838 HWRM_RING_ALLOC_CMPL,
839 BNXT_QPLIB_NQE_MAX_CNT - 1,
840 rdev->msix_entries[i + 1].ring_idx,
841 &rdev->nq[i].ring_id);
842 if (rc) {
843 dev_err(rdev_to_dev(rdev),
844 "Failed to allocate NQ fw id with rc = 0x%x",
845 rc);
846 goto free_nq;
847 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800848 }
849 return 0;
850free_nq:
Selvin Xavier6a5df912017-08-02 01:46:18 -0700851 for (i = 0; i < rdev->num_msix - 1; i++)
852 bnxt_qplib_free_nq(&rdev->nq[i]);
853dealloc_dpi:
854 bnxt_qplib_dealloc_dpi(&rdev->qplib_res,
855 &rdev->qplib_res.dpi_tbl,
856 &rdev->dpi_privileged);
857dealloc_res:
858 bnxt_qplib_free_res(&rdev->qplib_res);
859
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800860fail:
861 rdev->qplib_res.rcfw = NULL;
862 return rc;
863}
864
865static void bnxt_re_dispatch_event(struct ib_device *ibdev, struct ib_qp *qp,
866 u8 port_num, enum ib_event_type event)
867{
868 struct ib_event ib_event;
869
870 ib_event.device = ibdev;
871 if (qp)
872 ib_event.element.qp = qp;
873 else
874 ib_event.element.port_num = port_num;
875 ib_event.event = event;
876 ib_dispatch_event(&ib_event);
877}
878
879#define HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN 0x02
880static int bnxt_re_query_hwrm_pri2cos(struct bnxt_re_dev *rdev, u8 dir,
881 u64 *cid_map)
882{
883 struct hwrm_queue_pri2cos_qcfg_input req = {0};
884 struct bnxt *bp = netdev_priv(rdev->netdev);
885 struct hwrm_queue_pri2cos_qcfg_output resp;
886 struct bnxt_en_dev *en_dev = rdev->en_dev;
887 struct bnxt_fw_msg fw_msg;
888 u32 flags = 0;
889 u8 *qcfgmap, *tmp_map;
890 int rc = 0, i;
891
892 if (!cid_map)
893 return -EINVAL;
894
895 memset(&fw_msg, 0, sizeof(fw_msg));
896 bnxt_re_init_hwrm_hdr(rdev, (void *)&req,
897 HWRM_QUEUE_PRI2COS_QCFG, -1, -1);
898 flags |= (dir & 0x01);
899 flags |= HWRM_QUEUE_PRI2COS_QCFG_INPUT_FLAGS_IVLAN;
900 req.flags = cpu_to_le32(flags);
901 req.port_id = bp->pf.port_id;
902
903 bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
904 sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
905 rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
906 if (rc)
907 return rc;
908
909 if (resp.queue_cfg_info) {
910 dev_warn(rdev_to_dev(rdev),
911 "Asymmetric cos queue configuration detected");
912 dev_warn(rdev_to_dev(rdev),
913 " on device, QoS may not be fully functional\n");
914 }
915 qcfgmap = &resp.pri0_cos_queue_id;
916 tmp_map = (u8 *)cid_map;
917 for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++)
918 tmp_map[i] = qcfgmap[i];
919
920 return rc;
921}
922
923static bool bnxt_re_is_qp1_or_shadow_qp(struct bnxt_re_dev *rdev,
924 struct bnxt_re_qp *qp)
925{
926 return (qp->ib_qp.qp_type == IB_QPT_GSI) || (qp == rdev->qp1_sqp);
927}
928
929static void bnxt_re_dev_stop(struct bnxt_re_dev *rdev)
930{
931 int mask = IB_QP_STATE;
932 struct ib_qp_attr qp_attr;
933 struct bnxt_re_qp *qp;
934
935 qp_attr.qp_state = IB_QPS_ERR;
936 mutex_lock(&rdev->qp_lock);
937 list_for_each_entry(qp, &rdev->qp_list, list) {
938 /* Modify the state of all QPs except QP1/Shadow QP */
939 if (!bnxt_re_is_qp1_or_shadow_qp(rdev, qp)) {
940 if (qp->qplib_qp.state !=
941 CMDQ_MODIFY_QP_NEW_STATE_RESET &&
942 qp->qplib_qp.state !=
943 CMDQ_MODIFY_QP_NEW_STATE_ERR) {
944 bnxt_re_dispatch_event(&rdev->ibdev, &qp->ib_qp,
945 1, IB_EVENT_QP_FATAL);
946 bnxt_re_modify_qp(&qp->ib_qp, &qp_attr, mask,
947 NULL);
948 }
949 }
950 }
951 mutex_unlock(&rdev->qp_lock);
952}
953
Kalesh AP5fac5b12017-06-29 12:28:10 -0700954static int bnxt_re_update_gid(struct bnxt_re_dev *rdev)
955{
956 struct bnxt_qplib_sgid_tbl *sgid_tbl = &rdev->qplib_res.sgid_tbl;
957 struct bnxt_qplib_gid gid;
958 u16 gid_idx, index;
959 int rc = 0;
960
961 if (!test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
962 return 0;
963
964 if (!sgid_tbl) {
965 dev_err(rdev_to_dev(rdev), "QPLIB: SGID table not allocated");
966 return -EINVAL;
967 }
968
969 for (index = 0; index < sgid_tbl->active; index++) {
970 gid_idx = sgid_tbl->hw_id[index];
971
972 if (!memcmp(&sgid_tbl->tbl[index], &bnxt_qplib_gid_zero,
973 sizeof(bnxt_qplib_gid_zero)))
974 continue;
975 /* need to modify the VLAN enable setting of non VLAN GID only
976 * as setting is done for VLAN GID while adding GID
977 */
978 if (sgid_tbl->vlan[index])
979 continue;
980
981 memcpy(&gid, &sgid_tbl->tbl[index], sizeof(gid));
982
983 rc = bnxt_qplib_update_sgid(sgid_tbl, &gid, gid_idx,
984 rdev->qplib_res.netdev->dev_addr);
985 }
986
987 return rc;
988}
989
Selvin Xavier1ac5a402017-02-10 03:19:33 -0800990static u32 bnxt_re_get_priority_mask(struct bnxt_re_dev *rdev)
991{
992 u32 prio_map = 0, tmp_map = 0;
993 struct net_device *netdev;
994 struct dcb_app app;
995
996 netdev = rdev->netdev;
997
998 memset(&app, 0, sizeof(app));
999 app.selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE;
1000 app.protocol = ETH_P_IBOE;
1001 tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1002 prio_map = tmp_map;
1003
1004 app.selector = IEEE_8021QAZ_APP_SEL_DGRAM;
1005 app.protocol = ROCE_V2_UDP_DPORT;
1006 tmp_map = dcb_ieee_getapp_mask(netdev, &app);
1007 prio_map |= tmp_map;
1008
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001009 return prio_map;
1010}
1011
1012static void bnxt_re_parse_cid_map(u8 prio_map, u8 *cid_map, u16 *cosq)
1013{
1014 u16 prio;
1015 u8 id;
1016
1017 for (prio = 0, id = 0; prio < 8; prio++) {
1018 if (prio_map & (1 << prio)) {
1019 cosq[id] = cid_map[prio];
1020 id++;
1021 if (id == 2) /* Max 2 tcs supported */
1022 break;
1023 }
1024 }
1025}
1026
1027static int bnxt_re_setup_qos(struct bnxt_re_dev *rdev)
1028{
1029 u8 prio_map = 0;
1030 u64 cid_map;
1031 int rc;
1032
1033 /* Get priority for roce */
Kalesh AP5fac5b12017-06-29 12:28:10 -07001034 prio_map = bnxt_re_get_priority_mask(rdev);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001035
1036 if (prio_map == rdev->cur_prio_map)
1037 return 0;
1038 rdev->cur_prio_map = prio_map;
1039 /* Get cosq id for this priority */
1040 rc = bnxt_re_query_hwrm_pri2cos(rdev, 0, &cid_map);
1041 if (rc) {
1042 dev_warn(rdev_to_dev(rdev), "no cos for p_mask %x\n", prio_map);
1043 return rc;
1044 }
1045 /* Parse CoS IDs for app priority */
1046 bnxt_re_parse_cid_map(prio_map, (u8 *)&cid_map, rdev->cosq);
1047
1048 /* Config BONO. */
1049 rc = bnxt_qplib_map_tc2cos(&rdev->qplib_res, rdev->cosq);
1050 if (rc) {
1051 dev_warn(rdev_to_dev(rdev), "no tc for cos{%x, %x}\n",
1052 rdev->cosq[0], rdev->cosq[1]);
1053 return rc;
1054 }
1055
Kalesh AP5fac5b12017-06-29 12:28:10 -07001056 /* Actual priorities are not programmed as they are already
1057 * done by L2 driver; just enable or disable priority vlan tagging
1058 */
1059 if ((prio_map == 0 && rdev->qplib_res.prio) ||
1060 (prio_map != 0 && !rdev->qplib_res.prio)) {
1061 rdev->qplib_res.prio = prio_map ? true : false;
1062
1063 bnxt_re_update_gid(rdev);
1064 }
1065
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001066 return 0;
1067}
1068
1069static void bnxt_re_ib_unreg(struct bnxt_re_dev *rdev, bool lock_wait)
1070{
1071 int i, rc;
1072
1073 if (test_and_clear_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags)) {
1074 for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++)
1075 device_remove_file(&rdev->ibdev.dev,
1076 bnxt_re_attributes[i]);
1077 /* Cleanup ib dev */
1078 bnxt_re_unregister_ib(rdev);
1079 }
1080 if (test_and_clear_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags))
1081 cancel_delayed_work(&rdev->worker);
1082
1083 bnxt_re_cleanup_res(rdev);
1084 bnxt_re_free_res(rdev, lock_wait);
1085
1086 if (test_and_clear_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags)) {
1087 rc = bnxt_qplib_deinit_rcfw(&rdev->rcfw);
1088 if (rc)
1089 dev_warn(rdev_to_dev(rdev),
1090 "Failed to deinitialize RCFW: %#x", rc);
1091 bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id,
1092 lock_wait);
1093 bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1094 bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1095 bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, lock_wait);
1096 bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1097 }
1098 if (test_and_clear_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags)) {
1099 rc = bnxt_re_free_msix(rdev, lock_wait);
1100 if (rc)
1101 dev_warn(rdev_to_dev(rdev),
1102 "Failed to free MSI-X vectors: %#x", rc);
1103 }
1104 if (test_and_clear_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags)) {
1105 rc = bnxt_re_unregister_netdev(rdev, lock_wait);
1106 if (rc)
1107 dev_warn(rdev_to_dev(rdev),
1108 "Failed to unregister with netdev: %#x", rc);
1109 }
1110}
1111
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001112/* worker thread for polling periodic events. Now used for QoS programming*/
1113static void bnxt_re_worker(struct work_struct *work)
1114{
1115 struct bnxt_re_dev *rdev = container_of(work, struct bnxt_re_dev,
1116 worker.work);
1117
1118 bnxt_re_setup_qos(rdev);
1119 schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1120}
1121
1122static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
1123{
1124 int i, j, rc;
1125
1126 /* Registered a new RoCE device instance to netdev */
1127 rc = bnxt_re_register_netdev(rdev);
1128 if (rc) {
1129 pr_err("Failed to register with netedev: %#x\n", rc);
1130 return -EINVAL;
1131 }
1132 set_bit(BNXT_RE_FLAG_NETDEV_REGISTERED, &rdev->flags);
1133
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001134 /* Check whether VF or PF */
1135 bnxt_re_get_sriov_func_type(rdev);
1136
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001137 rc = bnxt_re_request_msix(rdev);
1138 if (rc) {
1139 pr_err("Failed to get MSI-X vectors: %#x\n", rc);
1140 rc = -EINVAL;
1141 goto fail;
1142 }
1143 set_bit(BNXT_RE_FLAG_GOT_MSIX, &rdev->flags);
1144
1145 /* Establish RCFW Communication Channel to initialize the context
1146 * memory for the function and all child VFs
1147 */
Selvin Xavierf218d672017-06-29 12:28:15 -07001148 rc = bnxt_qplib_alloc_rcfw_channel(rdev->en_dev->pdev, &rdev->rcfw,
1149 BNXT_RE_MAX_QPC_COUNT);
Somnath Kotura0ddc2e2017-10-13 11:38:00 +05301150 if (rc) {
1151 pr_err("Failed to allocate RCFW Channel: %#x\n", rc);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001152 goto fail;
Somnath Kotura0ddc2e2017-10-13 11:38:00 +05301153 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001154 rc = bnxt_re_net_ring_alloc
1155 (rdev, rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr,
1156 rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count,
1157 HWRM_RING_ALLOC_CMPL, BNXT_QPLIB_CREQE_MAX_CNT - 1,
1158 rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx,
1159 &rdev->rcfw.creq_ring_id);
1160 if (rc) {
1161 pr_err("Failed to allocate CREQ: %#x\n", rc);
1162 goto free_rcfw;
1163 }
1164 rc = bnxt_qplib_enable_rcfw_channel
1165 (rdev->en_dev->pdev, &rdev->rcfw,
1166 rdev->msix_entries[BNXT_RE_AEQ_IDX].vector,
1167 rdev->msix_entries[BNXT_RE_AEQ_IDX].db_offset,
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001168 rdev->is_virtfn, &bnxt_re_aeq_handler);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001169 if (rc) {
1170 pr_err("Failed to enable RCFW channel: %#x\n", rc);
1171 goto free_ring;
1172 }
1173
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001174 rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
1175 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001176 if (rc)
1177 goto disable_rcfw;
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001178 if (!rdev->is_virtfn)
1179 bnxt_re_set_resource_limits(rdev);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001180
1181 rc = bnxt_qplib_alloc_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx, 0);
1182 if (rc) {
1183 pr_err("Failed to allocate QPLIB context: %#x\n", rc);
1184 goto disable_rcfw;
1185 }
1186 rc = bnxt_re_net_stats_ctx_alloc(rdev,
1187 rdev->qplib_ctx.stats.dma_map,
1188 &rdev->qplib_ctx.stats.fw_id);
1189 if (rc) {
1190 pr_err("Failed to allocate stats context: %#x\n", rc);
1191 goto free_ctx;
1192 }
1193
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001194 rc = bnxt_qplib_init_rcfw(&rdev->rcfw, &rdev->qplib_ctx,
1195 rdev->is_virtfn);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001196 if (rc) {
1197 pr_err("Failed to initialize RCFW: %#x\n", rc);
1198 goto free_sctx;
1199 }
1200 set_bit(BNXT_RE_FLAG_RCFW_CHANNEL_EN, &rdev->flags);
1201
1202 /* Resources based on the 'new' device caps */
1203 rc = bnxt_re_alloc_res(rdev);
1204 if (rc) {
1205 pr_err("Failed to allocate resources: %#x\n", rc);
1206 goto fail;
1207 }
1208 rc = bnxt_re_init_res(rdev);
1209 if (rc) {
1210 pr_err("Failed to initialize resources: %#x\n", rc);
1211 goto fail;
1212 }
1213
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001214 if (!rdev->is_virtfn) {
1215 rc = bnxt_re_setup_qos(rdev);
1216 if (rc)
1217 pr_info("RoCE priority not yet configured\n");
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001218
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001219 INIT_DELAYED_WORK(&rdev->worker, bnxt_re_worker);
1220 set_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags);
1221 schedule_delayed_work(&rdev->worker, msecs_to_jiffies(30000));
1222 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001223
1224 /* Register ib dev */
1225 rc = bnxt_re_register_ib(rdev);
1226 if (rc) {
1227 pr_err("Failed to register with IB: %#x\n", rc);
1228 goto fail;
1229 }
1230 dev_info(rdev_to_dev(rdev), "Device registered successfully");
1231 for (i = 0; i < ARRAY_SIZE(bnxt_re_attributes); i++) {
1232 rc = device_create_file(&rdev->ibdev.dev,
1233 bnxt_re_attributes[i]);
1234 if (rc) {
1235 dev_err(rdev_to_dev(rdev),
1236 "Failed to create IB sysfs: %#x", rc);
1237 /* Must clean up all created device files */
1238 for (j = 0; j < i; j++)
1239 device_remove_file(&rdev->ibdev.dev,
1240 bnxt_re_attributes[j]);
1241 bnxt_re_unregister_ib(rdev);
1242 goto fail;
1243 }
1244 }
1245 set_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags);
Somnath Kotur74828b12017-08-31 09:27:33 +05301246 ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1247 &rdev->active_width);
Selvin Xavier89f81002018-01-11 11:52:10 -05001248 set_bit(BNXT_RE_FLAG_ISSUE_ROCE_STATS, &rdev->flags);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001249 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_PORT_ACTIVE);
1250 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1, IB_EVENT_GID_CHANGE);
1251
1252 return 0;
1253free_sctx:
1254 bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id, true);
1255free_ctx:
1256 bnxt_qplib_free_ctx(rdev->en_dev->pdev, &rdev->qplib_ctx);
1257disable_rcfw:
1258 bnxt_qplib_disable_rcfw_channel(&rdev->rcfw);
1259free_ring:
1260 bnxt_re_net_ring_free(rdev, rdev->rcfw.creq_ring_id, true);
1261free_rcfw:
1262 bnxt_qplib_free_rcfw_channel(&rdev->rcfw);
1263fail:
1264 bnxt_re_ib_unreg(rdev, true);
1265 return rc;
1266}
1267
1268static void bnxt_re_dev_unreg(struct bnxt_re_dev *rdev)
1269{
1270 struct bnxt_en_dev *en_dev = rdev->en_dev;
1271 struct net_device *netdev = rdev->netdev;
1272
1273 bnxt_re_dev_remove(rdev);
1274
1275 if (netdev)
1276 bnxt_re_dev_unprobe(netdev, en_dev);
1277}
1278
1279static int bnxt_re_dev_reg(struct bnxt_re_dev **rdev, struct net_device *netdev)
1280{
1281 struct bnxt_en_dev *en_dev;
1282 int rc = 0;
1283
1284 if (!is_bnxt_re_dev(netdev))
1285 return -ENODEV;
1286
1287 en_dev = bnxt_re_dev_probe(netdev);
1288 if (IS_ERR(en_dev)) {
1289 if (en_dev != ERR_PTR(-ENODEV))
1290 pr_err("%s: Failed to probe\n", ROCE_DRV_MODULE_NAME);
1291 rc = PTR_ERR(en_dev);
1292 goto exit;
1293 }
1294 *rdev = bnxt_re_dev_add(netdev, en_dev);
1295 if (!*rdev) {
1296 rc = -ENOMEM;
1297 bnxt_re_dev_unprobe(netdev, en_dev);
1298 goto exit;
1299 }
1300exit:
1301 return rc;
1302}
1303
1304static void bnxt_re_remove_one(struct bnxt_re_dev *rdev)
1305{
1306 pci_dev_put(rdev->en_dev->pdev);
1307}
1308
1309/* Handle all deferred netevents tasks */
1310static void bnxt_re_task(struct work_struct *work)
1311{
1312 struct bnxt_re_work *re_work;
1313 struct bnxt_re_dev *rdev;
1314 int rc = 0;
1315
1316 re_work = container_of(work, struct bnxt_re_work, work);
1317 rdev = re_work->rdev;
1318
1319 if (re_work->event != NETDEV_REGISTER &&
1320 !test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
1321 return;
1322
1323 switch (re_work->event) {
1324 case NETDEV_REGISTER:
1325 rc = bnxt_re_ib_reg(rdev);
1326 if (rc)
1327 dev_err(rdev_to_dev(rdev),
1328 "Failed to register with IB: %#x", rc);
1329 break;
1330 case NETDEV_UP:
1331 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1332 IB_EVENT_PORT_ACTIVE);
1333 break;
1334 case NETDEV_DOWN:
1335 bnxt_re_dev_stop(rdev);
1336 break;
1337 case NETDEV_CHANGE:
1338 if (!netif_carrier_ok(rdev->netdev))
1339 bnxt_re_dev_stop(rdev);
1340 else if (netif_carrier_ok(rdev->netdev))
1341 bnxt_re_dispatch_event(&rdev->ibdev, NULL, 1,
1342 IB_EVENT_PORT_ACTIVE);
Somnath Kotur74828b12017-08-31 09:27:33 +05301343 ib_get_eth_speed(&rdev->ibdev, 1, &rdev->active_speed,
1344 &rdev->active_width);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001345 break;
1346 default:
1347 break;
1348 }
Somnath Koturd5917302017-08-31 09:27:32 +05301349 smp_mb__before_atomic();
1350 clear_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001351 kfree(re_work);
1352}
1353
1354static void bnxt_re_init_one(struct bnxt_re_dev *rdev)
1355{
1356 pci_dev_get(rdev->en_dev->pdev);
1357}
1358
1359/*
1360 * "Notifier chain callback can be invoked for the same chain from
1361 * different CPUs at the same time".
1362 *
1363 * For cases when the netdev is already present, our call to the
1364 * register_netdevice_notifier() will actually get the rtnl_lock()
1365 * before sending NETDEV_REGISTER and (if up) NETDEV_UP
1366 * events.
1367 *
1368 * But for cases when the netdev is not already present, the notifier
1369 * chain is subjected to be invoked from different CPUs simultaneously.
1370 *
1371 * This is protected by the netdev_mutex.
1372 */
1373static int bnxt_re_netdev_event(struct notifier_block *notifier,
1374 unsigned long event, void *ptr)
1375{
1376 struct net_device *real_dev, *netdev = netdev_notifier_info_to_dev(ptr);
1377 struct bnxt_re_work *re_work;
1378 struct bnxt_re_dev *rdev;
1379 int rc = 0;
1380 bool sch_work = false;
1381
1382 real_dev = rdma_vlan_dev_real_dev(netdev);
1383 if (!real_dev)
1384 real_dev = netdev;
1385
1386 rdev = bnxt_re_from_netdev(real_dev);
1387 if (!rdev && event != NETDEV_REGISTER)
1388 goto exit;
1389 if (real_dev != netdev)
1390 goto exit;
1391
1392 switch (event) {
1393 case NETDEV_REGISTER:
1394 if (rdev)
1395 break;
1396 rc = bnxt_re_dev_reg(&rdev, real_dev);
1397 if (rc == -ENODEV)
1398 break;
1399 if (rc) {
1400 pr_err("Failed to register with the device %s: %#x\n",
1401 real_dev->name, rc);
1402 break;
1403 }
1404 bnxt_re_init_one(rdev);
1405 sch_work = true;
1406 break;
1407
1408 case NETDEV_UNREGISTER:
Somnath Koturd5917302017-08-31 09:27:32 +05301409 /* netdev notifier will call NETDEV_UNREGISTER again later since
1410 * we are still holding the reference to the netdev
1411 */
1412 if (test_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags))
1413 goto exit;
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001414 bnxt_re_ib_unreg(rdev, false);
1415 bnxt_re_remove_one(rdev);
1416 bnxt_re_dev_unreg(rdev);
1417 break;
1418
1419 default:
1420 sch_work = true;
1421 break;
1422 }
1423 if (sch_work) {
1424 /* Allocate for the deferred task */
1425 re_work = kzalloc(sizeof(*re_work), GFP_ATOMIC);
1426 if (re_work) {
1427 re_work->rdev = rdev;
1428 re_work->event = event;
1429 re_work->vlan_dev = (real_dev == netdev ?
1430 NULL : netdev);
1431 INIT_WORK(&re_work->work, bnxt_re_task);
Somnath Koturd5917302017-08-31 09:27:32 +05301432 set_bit(BNXT_RE_FLAG_TASK_IN_PROG, &rdev->flags);
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001433 queue_work(bnxt_re_wq, &re_work->work);
1434 }
1435 }
1436
1437exit:
1438 return NOTIFY_DONE;
1439}
1440
1441static struct notifier_block bnxt_re_netdev_notifier = {
1442 .notifier_call = bnxt_re_netdev_event
1443};
1444
1445static int __init bnxt_re_mod_init(void)
1446{
1447 int rc = 0;
1448
1449 pr_info("%s: %s", ROCE_DRV_MODULE_NAME, version);
1450
1451 bnxt_re_wq = create_singlethread_workqueue("bnxt_re");
1452 if (!bnxt_re_wq)
1453 return -ENOMEM;
1454
1455 INIT_LIST_HEAD(&bnxt_re_dev_list);
1456
1457 rc = register_netdevice_notifier(&bnxt_re_netdev_notifier);
1458 if (rc) {
1459 pr_err("%s: Cannot register to netdevice_notifier",
1460 ROCE_DRV_MODULE_NAME);
1461 goto err_netdev;
1462 }
1463 return 0;
1464
1465err_netdev:
1466 destroy_workqueue(bnxt_re_wq);
1467
1468 return rc;
1469}
1470
1471static void __exit bnxt_re_mod_exit(void)
1472{
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001473 struct bnxt_re_dev *rdev, *next;
Somnath Kotur027c8922017-08-31 09:27:31 +05301474 LIST_HEAD(to_be_deleted);
1475
1476 mutex_lock(&bnxt_re_dev_lock);
1477 /* Free all adapter allocated resources */
1478 if (!list_empty(&bnxt_re_dev_list))
1479 list_splice_init(&bnxt_re_dev_list, &to_be_deleted);
1480 mutex_unlock(&bnxt_re_dev_lock);
Selvin Xavierccd9d0d2018-01-11 11:52:07 -05001481 /*
1482 * Cleanup the devices in reverse order so that the VF device
1483 * cleanup is done before PF cleanup
1484 */
1485 list_for_each_entry_safe_reverse(rdev, next, &to_be_deleted, list) {
Somnath Kotur027c8922017-08-31 09:27:31 +05301486 dev_info(rdev_to_dev(rdev), "Unregistering Device");
1487 bnxt_re_dev_stop(rdev);
1488 bnxt_re_ib_unreg(rdev, true);
1489 bnxt_re_remove_one(rdev);
1490 bnxt_re_dev_unreg(rdev);
1491 }
Selvin Xavier1ac5a402017-02-10 03:19:33 -08001492 unregister_netdevice_notifier(&bnxt_re_netdev_notifier);
1493 if (bnxt_re_wq)
1494 destroy_workqueue(bnxt_re_wq);
1495}
1496
1497module_init(bnxt_re_mod_init);
1498module_exit(bnxt_re_mod_exit);