2 * Copyright (c) 2016 Hisilicon Limited.
3 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/acpi.h>
34 #include <linux/of_platform.h>
35 #include <linux/module.h>
36 #include <rdma/ib_addr.h>
37 #include <rdma/ib_smi.h>
38 #include <rdma/ib_user_verbs.h>
39 #include <rdma/ib_cache.h>
40 #include "hns_roce_common.h"
41 #include "hns_roce_device.h"
42 #include <rdma/hns-abi.h>
43 #include "hns_roce_hem.h"
46 * hns_get_gid_index - Get gid index.
47 * @hr_dev: pointer to structure hns_roce_dev.
48 * @port: port, value range: 0 ~ MAX
49 * @gid_index: gid_index, value range: 0 ~ MAX
51 * N ports shared gids, allocation method as follow:
52 * GID[0][0], GID[1][0],.....GID[N - 1][0],
53 * GID[0][0], GID[1][0],.....GID[N - 1][0],
56 int hns_get_gid_index(struct hns_roce_dev *hr_dev, u8 port, int gid_index)
58 return gid_index * hr_dev->caps.num_ports + port;
61 static int hns_roce_set_mac(struct hns_roce_dev *hr_dev, u8 port, u8 *addr)
66 if (!memcmp(hr_dev->dev_addr[port], addr, ETH_ALEN))
69 for (i = 0; i < ETH_ALEN; i++)
70 hr_dev->dev_addr[port][i] = addr[i];
72 phy_port = hr_dev->iboe.phy_port[port];
73 return hr_dev->hw->set_mac(hr_dev, phy_port, addr);
76 static int hns_roce_add_gid(const struct ib_gid_attr *attr, void **context)
78 struct hns_roce_dev *hr_dev = to_hr_dev(attr->device);
79 u8 port = attr->port_num - 1;
82 if (port >= hr_dev->caps.num_ports)
85 ret = hr_dev->hw->set_gid(hr_dev, port, attr->index, &attr->gid, attr);
90 static int hns_roce_del_gid(const struct ib_gid_attr *attr, void **context)
92 struct hns_roce_dev *hr_dev = to_hr_dev(attr->device);
93 struct ib_gid_attr zattr = {};
94 u8 port = attr->port_num - 1;
97 if (port >= hr_dev->caps.num_ports)
100 ret = hr_dev->hw->set_gid(hr_dev, port, attr->index, &zgid, &zattr);
105 static int handle_en_event(struct hns_roce_dev *hr_dev, u8 port,
108 struct device *dev = hr_dev->dev;
109 struct net_device *netdev;
112 netdev = hr_dev->iboe.netdevs[port];
114 dev_err(dev, "Can't find netdev on port(%u)!\n", port);
121 case NETDEV_REGISTER:
122 case NETDEV_CHANGEADDR:
123 ret = hns_roce_set_mac(hr_dev, port, netdev->dev_addr);
127 * In v1 engine, only support all ports closed together.
131 dev_dbg(dev, "NETDEV event = 0x%x!\n", (u32)(event));
138 static int hns_roce_netdev_event(struct notifier_block *self,
139 unsigned long event, void *ptr)
141 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
142 struct hns_roce_ib_iboe *iboe = NULL;
143 struct hns_roce_dev *hr_dev = NULL;
147 hr_dev = container_of(self, struct hns_roce_dev, iboe.nb);
148 iboe = &hr_dev->iboe;
150 for (port = 0; port < hr_dev->caps.num_ports; port++) {
151 if (dev == iboe->netdevs[port]) {
152 ret = handle_en_event(hr_dev, port, event);
162 static int hns_roce_setup_mtu_mac(struct hns_roce_dev *hr_dev)
167 for (i = 0; i < hr_dev->caps.num_ports; i++) {
168 if (hr_dev->hw->set_mtu)
169 hr_dev->hw->set_mtu(hr_dev, hr_dev->iboe.phy_port[i],
170 hr_dev->caps.max_mtu);
171 ret = hns_roce_set_mac(hr_dev, i,
172 hr_dev->iboe.netdevs[i]->dev_addr);
180 static int hns_roce_query_device(struct ib_device *ib_dev,
181 struct ib_device_attr *props,
182 struct ib_udata *uhw)
184 struct hns_roce_dev *hr_dev = to_hr_dev(ib_dev);
186 memset(props, 0, sizeof(*props));
188 props->fw_ver = hr_dev->caps.fw_ver;
189 props->sys_image_guid = cpu_to_be64(hr_dev->sys_image_guid);
190 props->max_mr_size = (u64)(~(0ULL));
191 props->page_size_cap = hr_dev->caps.page_size_cap;
192 props->vendor_id = hr_dev->vendor_id;
193 props->vendor_part_id = hr_dev->vendor_part_id;
194 props->hw_ver = hr_dev->hw_rev;
195 props->max_qp = hr_dev->caps.num_qps;
196 props->max_qp_wr = hr_dev->caps.max_wqes;
197 props->device_cap_flags = IB_DEVICE_PORT_ACTIVE_EVENT |
198 IB_DEVICE_RC_RNR_NAK_GEN;
199 props->max_send_sge = hr_dev->caps.max_sq_sg;
200 props->max_recv_sge = hr_dev->caps.max_rq_sg;
201 props->max_sge_rd = 1;
202 props->max_cq = hr_dev->caps.num_cqs;
203 props->max_cqe = hr_dev->caps.max_cqes;
204 props->max_mr = hr_dev->caps.num_mtpts;
205 props->max_pd = hr_dev->caps.num_pds;
206 props->max_qp_rd_atom = hr_dev->caps.max_qp_dest_rdma;
207 props->max_qp_init_rd_atom = hr_dev->caps.max_qp_init_rdma;
208 props->atomic_cap = hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_ATOMIC ?
209 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
210 props->max_pkeys = 1;
211 props->local_ca_ack_delay = hr_dev->caps.local_ca_ack_delay;
212 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) {
213 props->max_srq = hr_dev->caps.num_srqs;
214 props->max_srq_wr = hr_dev->caps.max_srq_wrs;
215 props->max_srq_sge = hr_dev->caps.max_srq_sges;
218 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_FRMR) {
219 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
220 props->max_fast_reg_page_list_len = HNS_ROCE_FRMR_MAX_PA;
226 static int hns_roce_query_port(struct ib_device *ib_dev, u8 port_num,
227 struct ib_port_attr *props)
229 struct hns_roce_dev *hr_dev = to_hr_dev(ib_dev);
230 struct device *dev = hr_dev->dev;
231 struct net_device *net_dev;
238 /* props being zeroed by the caller, avoid zeroing it here */
240 props->max_mtu = hr_dev->caps.max_mtu;
241 props->gid_tbl_len = hr_dev->caps.gid_table_len[port];
242 props->port_cap_flags = IB_PORT_CM_SUP | IB_PORT_REINIT_SUP |
243 IB_PORT_VENDOR_CLASS_SUP |
244 IB_PORT_BOOT_MGMT_SUP;
245 props->max_msg_sz = HNS_ROCE_MAX_MSG_LEN;
246 props->pkey_tbl_len = 1;
247 props->active_width = IB_WIDTH_4X;
248 props->active_speed = 1;
250 spin_lock_irqsave(&hr_dev->iboe.lock, flags);
252 net_dev = hr_dev->iboe.netdevs[port];
254 spin_unlock_irqrestore(&hr_dev->iboe.lock, flags);
255 dev_err(dev, "Find netdev %u failed!\n", port);
259 mtu = iboe_get_mtu(net_dev->mtu);
260 props->active_mtu = mtu ? min(props->max_mtu, mtu) : IB_MTU_256;
261 props->state = netif_running(net_dev) && netif_carrier_ok(net_dev) ?
264 props->phys_state = props->state == IB_PORT_ACTIVE ?
265 IB_PORT_PHYS_STATE_LINK_UP :
266 IB_PORT_PHYS_STATE_DISABLED;
268 spin_unlock_irqrestore(&hr_dev->iboe.lock, flags);
273 static enum rdma_link_layer hns_roce_get_link_layer(struct ib_device *device,
276 return IB_LINK_LAYER_ETHERNET;
279 static int hns_roce_query_pkey(struct ib_device *ib_dev, u8 port, u16 index,
287 static int hns_roce_modify_device(struct ib_device *ib_dev, int mask,
288 struct ib_device_modify *props)
292 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
295 if (mask & IB_DEVICE_MODIFY_NODE_DESC) {
296 spin_lock_irqsave(&to_hr_dev(ib_dev)->sm_lock, flags);
297 memcpy(ib_dev->node_desc, props->node_desc, NODE_DESC_SIZE);
298 spin_unlock_irqrestore(&to_hr_dev(ib_dev)->sm_lock, flags);
304 static int hns_roce_alloc_ucontext(struct ib_ucontext *uctx,
305 struct ib_udata *udata)
308 struct hns_roce_ucontext *context = to_hr_ucontext(uctx);
309 struct hns_roce_ib_alloc_ucontext_resp resp = {};
310 struct hns_roce_dev *hr_dev = to_hr_dev(uctx->device);
315 resp.qp_tab_size = hr_dev->caps.num_qps;
317 ret = hns_roce_uar_alloc(hr_dev, &context->uar);
319 goto error_fail_uar_alloc;
321 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_RECORD_DB) {
322 INIT_LIST_HEAD(&context->page_list);
323 mutex_init(&context->page_mutex);
326 ret = ib_copy_to_udata(udata, &resp, sizeof(resp));
328 goto error_fail_copy_to_udata;
332 error_fail_copy_to_udata:
333 hns_roce_uar_free(hr_dev, &context->uar);
335 error_fail_uar_alloc:
339 static void hns_roce_dealloc_ucontext(struct ib_ucontext *ibcontext)
341 struct hns_roce_ucontext *context = to_hr_ucontext(ibcontext);
343 hns_roce_uar_free(to_hr_dev(ibcontext->device), &context->uar);
346 static int hns_roce_mmap(struct ib_ucontext *context,
347 struct vm_area_struct *vma)
349 struct hns_roce_dev *hr_dev = to_hr_dev(context->device);
351 switch (vma->vm_pgoff) {
353 return rdma_user_mmap_io(context, vma,
354 to_hr_ucontext(context)->uar.pfn,
356 pgprot_noncached(vma->vm_page_prot),
359 /* vm_pgoff: 1 -- TPTR */
361 if (!hr_dev->tptr_dma_addr || !hr_dev->tptr_size)
364 * FIXME: using io_remap_pfn_range on the dma address returned
365 * by dma_alloc_coherent is totally wrong.
367 return rdma_user_mmap_io(context, vma,
368 hr_dev->tptr_dma_addr >> PAGE_SHIFT,
378 static int hns_roce_port_immutable(struct ib_device *ib_dev, u8 port_num,
379 struct ib_port_immutable *immutable)
381 struct ib_port_attr attr;
384 ret = ib_query_port(ib_dev, port_num, &attr);
388 immutable->pkey_tbl_len = attr.pkey_tbl_len;
389 immutable->gid_tbl_len = attr.gid_tbl_len;
391 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
392 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE;
393 if (to_hr_dev(ib_dev)->caps.flags & HNS_ROCE_CAP_FLAG_ROCE_V1_V2)
394 immutable->core_cap_flags |= RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP;
399 static void hns_roce_disassociate_ucontext(struct ib_ucontext *ibcontext)
403 static void hns_roce_unregister_device(struct hns_roce_dev *hr_dev)
405 struct hns_roce_ib_iboe *iboe = &hr_dev->iboe;
407 hr_dev->active = false;
408 unregister_netdevice_notifier(&iboe->nb);
409 ib_unregister_device(&hr_dev->ib_dev);
412 static const struct ib_device_ops hns_roce_dev_ops = {
413 .owner = THIS_MODULE,
414 .driver_id = RDMA_DRIVER_HNS,
416 .uverbs_no_driver_id_binding = 1,
418 .add_gid = hns_roce_add_gid,
419 .alloc_pd = hns_roce_alloc_pd,
420 .alloc_ucontext = hns_roce_alloc_ucontext,
421 .create_ah = hns_roce_create_ah,
422 .create_cq = hns_roce_create_cq,
423 .create_qp = hns_roce_create_qp,
424 .dealloc_pd = hns_roce_dealloc_pd,
425 .dealloc_ucontext = hns_roce_dealloc_ucontext,
426 .del_gid = hns_roce_del_gid,
427 .dereg_mr = hns_roce_dereg_mr,
428 .destroy_ah = hns_roce_destroy_ah,
429 .destroy_cq = hns_roce_destroy_cq,
430 .disassociate_ucontext = hns_roce_disassociate_ucontext,
431 .fill_res_cq_entry = hns_roce_fill_res_cq_entry,
432 .get_dma_mr = hns_roce_get_dma_mr,
433 .get_link_layer = hns_roce_get_link_layer,
434 .get_port_immutable = hns_roce_port_immutable,
435 .mmap = hns_roce_mmap,
436 .modify_device = hns_roce_modify_device,
437 .modify_qp = hns_roce_modify_qp,
438 .query_ah = hns_roce_query_ah,
439 .query_device = hns_roce_query_device,
440 .query_pkey = hns_roce_query_pkey,
441 .query_port = hns_roce_query_port,
442 .reg_user_mr = hns_roce_reg_user_mr,
444 INIT_RDMA_OBJ_SIZE(ib_ah, hns_roce_ah, ibah),
445 INIT_RDMA_OBJ_SIZE(ib_cq, hns_roce_cq, ib_cq),
446 INIT_RDMA_OBJ_SIZE(ib_pd, hns_roce_pd, ibpd),
447 INIT_RDMA_OBJ_SIZE(ib_ucontext, hns_roce_ucontext, ibucontext),
450 static const struct ib_device_ops hns_roce_dev_mr_ops = {
451 .rereg_user_mr = hns_roce_rereg_user_mr,
454 static const struct ib_device_ops hns_roce_dev_mw_ops = {
455 .alloc_mw = hns_roce_alloc_mw,
456 .dealloc_mw = hns_roce_dealloc_mw,
459 static const struct ib_device_ops hns_roce_dev_frmr_ops = {
460 .alloc_mr = hns_roce_alloc_mr,
461 .map_mr_sg = hns_roce_map_mr_sg,
464 static const struct ib_device_ops hns_roce_dev_srq_ops = {
465 .create_srq = hns_roce_create_srq,
466 .destroy_srq = hns_roce_destroy_srq,
468 INIT_RDMA_OBJ_SIZE(ib_srq, hns_roce_srq, ibsrq),
471 static int hns_roce_register_device(struct hns_roce_dev *hr_dev)
474 struct hns_roce_ib_iboe *iboe = NULL;
475 struct ib_device *ib_dev = NULL;
476 struct device *dev = hr_dev->dev;
479 iboe = &hr_dev->iboe;
480 spin_lock_init(&iboe->lock);
482 ib_dev = &hr_dev->ib_dev;
484 ib_dev->node_type = RDMA_NODE_IB_CA;
485 ib_dev->dev.parent = dev;
487 ib_dev->phys_port_cnt = hr_dev->caps.num_ports;
488 ib_dev->local_dma_lkey = hr_dev->caps.reserved_lkey;
489 ib_dev->num_comp_vectors = hr_dev->caps.num_comp_vectors;
490 ib_dev->uverbs_cmd_mask =
491 (1ULL << IB_USER_VERBS_CMD_GET_CONTEXT) |
492 (1ULL << IB_USER_VERBS_CMD_QUERY_DEVICE) |
493 (1ULL << IB_USER_VERBS_CMD_QUERY_PORT) |
494 (1ULL << IB_USER_VERBS_CMD_ALLOC_PD) |
495 (1ULL << IB_USER_VERBS_CMD_DEALLOC_PD) |
496 (1ULL << IB_USER_VERBS_CMD_REG_MR) |
497 (1ULL << IB_USER_VERBS_CMD_DEREG_MR) |
498 (1ULL << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
499 (1ULL << IB_USER_VERBS_CMD_CREATE_CQ) |
500 (1ULL << IB_USER_VERBS_CMD_DESTROY_CQ) |
501 (1ULL << IB_USER_VERBS_CMD_CREATE_QP) |
502 (1ULL << IB_USER_VERBS_CMD_MODIFY_QP) |
503 (1ULL << IB_USER_VERBS_CMD_QUERY_QP) |
504 (1ULL << IB_USER_VERBS_CMD_DESTROY_QP);
506 ib_dev->uverbs_ex_cmd_mask |= (1ULL << IB_USER_VERBS_EX_CMD_MODIFY_CQ);
508 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_REREG_MR) {
509 ib_dev->uverbs_cmd_mask |= (1ULL << IB_USER_VERBS_CMD_REREG_MR);
510 ib_set_device_ops(ib_dev, &hns_roce_dev_mr_ops);
514 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_MW) {
515 ib_dev->uverbs_cmd_mask |=
516 (1ULL << IB_USER_VERBS_CMD_ALLOC_MW) |
517 (1ULL << IB_USER_VERBS_CMD_DEALLOC_MW);
518 ib_set_device_ops(ib_dev, &hns_roce_dev_mw_ops);
522 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_FRMR)
523 ib_set_device_ops(ib_dev, &hns_roce_dev_frmr_ops);
526 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) {
527 ib_dev->uverbs_cmd_mask |=
528 (1ULL << IB_USER_VERBS_CMD_CREATE_SRQ) |
529 (1ULL << IB_USER_VERBS_CMD_MODIFY_SRQ) |
530 (1ULL << IB_USER_VERBS_CMD_QUERY_SRQ) |
531 (1ULL << IB_USER_VERBS_CMD_DESTROY_SRQ) |
532 (1ULL << IB_USER_VERBS_CMD_POST_SRQ_RECV);
533 ib_set_device_ops(ib_dev, &hns_roce_dev_srq_ops);
534 ib_set_device_ops(ib_dev, hr_dev->hw->hns_roce_dev_srq_ops);
537 ib_set_device_ops(ib_dev, hr_dev->hw->hns_roce_dev_ops);
538 ib_set_device_ops(ib_dev, &hns_roce_dev_ops);
539 for (i = 0; i < hr_dev->caps.num_ports; i++) {
540 if (!hr_dev->iboe.netdevs[i])
543 ret = ib_device_set_netdev(ib_dev, hr_dev->iboe.netdevs[i],
548 ret = ib_register_device(ib_dev, "hns_%d");
550 dev_err(dev, "ib_register_device failed!\n");
554 ret = hns_roce_setup_mtu_mac(hr_dev);
556 dev_err(dev, "setup_mtu_mac failed!\n");
557 goto error_failed_setup_mtu_mac;
560 iboe->nb.notifier_call = hns_roce_netdev_event;
561 ret = register_netdevice_notifier(&iboe->nb);
563 dev_err(dev, "register_netdevice_notifier failed!\n");
564 goto error_failed_setup_mtu_mac;
567 hr_dev->active = true;
570 error_failed_setup_mtu_mac:
571 ib_unregister_device(ib_dev);
576 static int hns_roce_init_hem(struct hns_roce_dev *hr_dev)
579 struct device *dev = hr_dev->dev;
581 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->mr_table.mtpt_table,
582 HEM_TYPE_MTPT, hr_dev->caps.mtpt_entry_sz,
583 hr_dev->caps.num_mtpts, 1);
585 dev_err(dev, "Failed to init MTPT context memory, aborting.\n");
589 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qp_table.qp_table,
590 HEM_TYPE_QPC, hr_dev->caps.qpc_entry_sz,
591 hr_dev->caps.num_qps, 1);
593 dev_err(dev, "Failed to init QP context memory, aborting.\n");
597 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qp_table.irrl_table,
599 hr_dev->caps.irrl_entry_sz *
600 hr_dev->caps.max_qp_init_rdma,
601 hr_dev->caps.num_qps, 1);
603 dev_err(dev, "Failed to init irrl_table memory, aborting.\n");
607 if (hr_dev->caps.trrl_entry_sz) {
608 ret = hns_roce_init_hem_table(hr_dev,
609 &hr_dev->qp_table.trrl_table,
611 hr_dev->caps.trrl_entry_sz *
612 hr_dev->caps.max_qp_dest_rdma,
613 hr_dev->caps.num_qps, 1);
616 "Failed to init trrl_table memory, aborting.\n");
621 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->cq_table.table,
622 HEM_TYPE_CQC, hr_dev->caps.cqc_entry_sz,
623 hr_dev->caps.num_cqs, 1);
625 dev_err(dev, "Failed to init CQ context memory, aborting.\n");
629 if (hr_dev->caps.srqc_entry_sz) {
630 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->srq_table.table,
632 hr_dev->caps.srqc_entry_sz,
633 hr_dev->caps.num_srqs, 1);
636 "Failed to init SRQ context memory, aborting.\n");
641 if (hr_dev->caps.sccc_entry_sz) {
642 ret = hns_roce_init_hem_table(hr_dev,
643 &hr_dev->qp_table.sccc_table,
645 hr_dev->caps.sccc_entry_sz,
646 hr_dev->caps.num_qps, 1);
649 "Failed to init SCC context memory, aborting.\n");
654 if (hr_dev->caps.qpc_timer_entry_sz) {
655 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qpc_timer_table,
657 hr_dev->caps.qpc_timer_entry_sz,
658 hr_dev->caps.num_qpc_timer, 1);
661 "Failed to init QPC timer memory, aborting.\n");
666 if (hr_dev->caps.cqc_timer_entry_sz) {
667 ret = hns_roce_init_hem_table(hr_dev, &hr_dev->cqc_timer_table,
669 hr_dev->caps.cqc_timer_entry_sz,
670 hr_dev->caps.num_cqc_timer, 1);
673 "Failed to init CQC timer memory, aborting.\n");
674 goto err_unmap_qpc_timer;
681 if (hr_dev->caps.qpc_timer_entry_sz)
682 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qpc_timer_table);
685 if (hr_dev->caps.sccc_entry_sz)
686 hns_roce_cleanup_hem_table(hr_dev,
687 &hr_dev->qp_table.sccc_table);
689 if (hr_dev->caps.srqc_entry_sz)
690 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->srq_table.table);
693 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->cq_table.table);
696 if (hr_dev->caps.trrl_entry_sz)
697 hns_roce_cleanup_hem_table(hr_dev,
698 &hr_dev->qp_table.trrl_table);
701 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qp_table.irrl_table);
704 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qp_table.qp_table);
707 hns_roce_cleanup_hem_table(hr_dev, &hr_dev->mr_table.mtpt_table);
713 * hns_roce_setup_hca - setup host channel adapter
714 * @hr_dev: pointer to hns roce device
717 static int hns_roce_setup_hca(struct hns_roce_dev *hr_dev)
720 struct device *dev = hr_dev->dev;
722 spin_lock_init(&hr_dev->sm_lock);
723 spin_lock_init(&hr_dev->bt_cmd_lock);
725 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_RECORD_DB) {
726 INIT_LIST_HEAD(&hr_dev->pgdir_list);
727 mutex_init(&hr_dev->pgdir_mutex);
730 ret = hns_roce_init_uar_table(hr_dev);
732 dev_err(dev, "Failed to initialize uar table. aborting\n");
736 ret = hns_roce_uar_alloc(hr_dev, &hr_dev->priv_uar);
738 dev_err(dev, "Failed to allocate priv_uar.\n");
739 goto err_uar_table_free;
742 ret = hns_roce_init_pd_table(hr_dev);
744 dev_err(dev, "Failed to init protected domain table.\n");
745 goto err_uar_alloc_free;
748 ret = hns_roce_init_mr_table(hr_dev);
750 dev_err(dev, "Failed to init memory region table.\n");
751 goto err_pd_table_free;
754 ret = hns_roce_init_cq_table(hr_dev);
756 dev_err(dev, "Failed to init completion queue table.\n");
757 goto err_mr_table_free;
760 ret = hns_roce_init_qp_table(hr_dev);
762 dev_err(dev, "Failed to init queue pair table.\n");
763 goto err_cq_table_free;
766 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) {
767 ret = hns_roce_init_srq_table(hr_dev);
770 "Failed to init share receive queue table.\n");
771 goto err_qp_table_free;
778 if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ)
779 hns_roce_cleanup_qp_table(hr_dev);
782 hns_roce_cleanup_cq_table(hr_dev);
785 hns_roce_cleanup_mr_table(hr_dev);
788 hns_roce_cleanup_pd_table(hr_dev);
791 hns_roce_uar_free(hr_dev, &hr_dev->priv_uar);
794 hns_roce_cleanup_uar_table(hr_dev);
798 static void check_and_get_armed_cq(struct list_head *cq_list, struct ib_cq *cq)
800 struct hns_roce_cq *hr_cq = to_hr_cq(cq);
803 spin_lock_irqsave(&hr_cq->lock, flags);
804 if (cq->comp_handler) {
805 if (!hr_cq->is_armed) {
807 list_add_tail(&hr_cq->node, cq_list);
810 spin_unlock_irqrestore(&hr_cq->lock, flags);
813 void hns_roce_handle_device_err(struct hns_roce_dev *hr_dev)
815 struct hns_roce_qp *hr_qp;
816 struct hns_roce_cq *hr_cq;
817 struct list_head cq_list;
818 unsigned long flags_qp;
821 INIT_LIST_HEAD(&cq_list);
823 spin_lock_irqsave(&hr_dev->qp_list_lock, flags);
824 list_for_each_entry(hr_qp, &hr_dev->qp_list, node) {
825 spin_lock_irqsave(&hr_qp->sq.lock, flags_qp);
826 if (hr_qp->sq.tail != hr_qp->sq.head)
827 check_and_get_armed_cq(&cq_list, hr_qp->ibqp.send_cq);
828 spin_unlock_irqrestore(&hr_qp->sq.lock, flags_qp);
830 spin_lock_irqsave(&hr_qp->rq.lock, flags_qp);
831 if ((!hr_qp->ibqp.srq) && (hr_qp->rq.tail != hr_qp->rq.head))
832 check_and_get_armed_cq(&cq_list, hr_qp->ibqp.recv_cq);
833 spin_unlock_irqrestore(&hr_qp->rq.lock, flags_qp);
836 list_for_each_entry(hr_cq, &cq_list, node)
837 hns_roce_cq_completion(hr_dev, hr_cq->cqn);
839 spin_unlock_irqrestore(&hr_dev->qp_list_lock, flags);
842 int hns_roce_init(struct hns_roce_dev *hr_dev)
845 struct device *dev = hr_dev->dev;
847 if (hr_dev->hw->reset) {
848 ret = hr_dev->hw->reset(hr_dev, true);
850 dev_err(dev, "Reset RoCE engine failed!\n");
854 hr_dev->is_reset = false;
856 if (hr_dev->hw->cmq_init) {
857 ret = hr_dev->hw->cmq_init(hr_dev);
859 dev_err(dev, "Init RoCE Command Queue failed!\n");
860 goto error_failed_cmq_init;
864 ret = hr_dev->hw->hw_profile(hr_dev);
866 dev_err(dev, "Get RoCE engine profile failed!\n");
867 goto error_failed_cmd_init;
870 ret = hns_roce_cmd_init(hr_dev);
872 dev_err(dev, "cmd init failed!\n");
873 goto error_failed_cmd_init;
876 /* EQ depends on poll mode, event mode depends on EQ */
877 ret = hr_dev->hw->init_eq(hr_dev);
879 dev_err(dev, "eq init failed!\n");
880 goto error_failed_eq_table;
883 if (hr_dev->cmd_mod) {
884 ret = hns_roce_cmd_use_events(hr_dev);
887 "Cmd event mode failed, set back to poll!\n");
888 hns_roce_cmd_use_polling(hr_dev);
892 ret = hns_roce_init_hem(hr_dev);
894 dev_err(dev, "init HEM(Hardware Entry Memory) failed!\n");
895 goto error_failed_init_hem;
898 ret = hns_roce_setup_hca(hr_dev);
900 dev_err(dev, "setup hca failed!\n");
901 goto error_failed_setup_hca;
904 if (hr_dev->hw->hw_init) {
905 ret = hr_dev->hw->hw_init(hr_dev);
907 dev_err(dev, "hw_init failed!\n");
908 goto error_failed_engine_init;
912 INIT_LIST_HEAD(&hr_dev->qp_list);
913 spin_lock_init(&hr_dev->qp_list_lock);
915 ret = hns_roce_register_device(hr_dev);
917 goto error_failed_register_device;
921 error_failed_register_device:
922 if (hr_dev->hw->hw_exit)
923 hr_dev->hw->hw_exit(hr_dev);
925 error_failed_engine_init:
926 hns_roce_cleanup_bitmap(hr_dev);
928 error_failed_setup_hca:
929 hns_roce_cleanup_hem(hr_dev);
931 error_failed_init_hem:
933 hns_roce_cmd_use_polling(hr_dev);
934 hr_dev->hw->cleanup_eq(hr_dev);
936 error_failed_eq_table:
937 hns_roce_cmd_cleanup(hr_dev);
939 error_failed_cmd_init:
940 if (hr_dev->hw->cmq_exit)
941 hr_dev->hw->cmq_exit(hr_dev);
943 error_failed_cmq_init:
944 if (hr_dev->hw->reset) {
945 if (hr_dev->hw->reset(hr_dev, false))
946 dev_err(dev, "Dereset RoCE engine failed!\n");
952 void hns_roce_exit(struct hns_roce_dev *hr_dev)
954 hns_roce_unregister_device(hr_dev);
956 if (hr_dev->hw->hw_exit)
957 hr_dev->hw->hw_exit(hr_dev);
958 hns_roce_cleanup_bitmap(hr_dev);
959 hns_roce_cleanup_hem(hr_dev);
962 hns_roce_cmd_use_polling(hr_dev);
964 hr_dev->hw->cleanup_eq(hr_dev);
965 hns_roce_cmd_cleanup(hr_dev);
966 if (hr_dev->hw->cmq_exit)
967 hr_dev->hw->cmq_exit(hr_dev);
968 if (hr_dev->hw->reset)
969 hr_dev->hw->reset(hr_dev, false);
972 MODULE_LICENSE("Dual BSD/GPL");
976 MODULE_DESCRIPTION("HNS RoCE Driver");