]>
Commit | Line | Data |
---|---|---|
9a443537 | 1 | /* |
2 | * Copyright (c) 2016 Hisilicon Limited. | |
3 | * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. | |
4 | * | |
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: | |
10 | * | |
11 | * Redistribution and use in source and binary forms, with or | |
12 | * without modification, are permitted provided that the following | |
13 | * conditions are met: | |
14 | * | |
15 | * - Redistributions of source code must retain the above | |
16 | * copyright notice, this list of conditions and the following | |
17 | * disclaimer. | |
18 | * | |
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. | |
23 | * | |
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 | |
31 | * SOFTWARE. | |
32 | */ | |
528f1deb | 33 | #include <linux/acpi.h> |
9a443537 | 34 | #include <linux/of_platform.h> |
3ecc16c8 | 35 | #include <linux/module.h> |
32053e58 | 36 | #include <linux/pci.h> |
9a443537 | 37 | #include <rdma/ib_addr.h> |
38 | #include <rdma/ib_smi.h> | |
39 | #include <rdma/ib_user_verbs.h> | |
82547469 | 40 | #include <rdma/ib_cache.h> |
9a443537 | 41 | #include "hns_roce_common.h" |
42 | #include "hns_roce_device.h" | |
9a443537 | 43 | #include "hns_roce_hem.h" |
44 | ||
1fb7f897 | 45 | static int hns_roce_set_mac(struct hns_roce_dev *hr_dev, u32 port, u8 *addr) |
9a443537 | 46 | { |
47 | u8 phy_port; | |
32053e58 WL |
48 | u32 i; |
49 | ||
50 | if (hr_dev->pci_dev->revision >= PCI_REVISION_ID_HIP09) | |
51 | return 0; | |
9a443537 | 52 | |
2a3d923f | 53 | if (!memcmp(hr_dev->dev_addr[port], addr, ETH_ALEN)) |
a74dc41d | 54 | return 0; |
9a443537 | 55 | |
2a3d923f | 56 | for (i = 0; i < ETH_ALEN; i++) |
9a443537 | 57 | hr_dev->dev_addr[port][i] = addr[i]; |
58 | ||
59 | phy_port = hr_dev->iboe.phy_port[port]; | |
a74dc41d | 60 | return hr_dev->hw->set_mac(hr_dev, phy_port, addr); |
9a443537 | 61 | } |
62 | ||
f4df9a7c | 63 | static int hns_roce_add_gid(const struct ib_gid_attr *attr, void **context) |
9a443537 | 64 | { |
414448d2 | 65 | struct hns_roce_dev *hr_dev = to_hr_dev(attr->device); |
1fb7f897 | 66 | u32 port = attr->port_num - 1; |
b5ff0f61 | 67 | int ret; |
82547469 SX |
68 | |
69 | if (port >= hr_dev->caps.num_ports) | |
70 | return -EINVAL; | |
9a443537 | 71 | |
f4df9a7c | 72 | ret = hr_dev->hw->set_gid(hr_dev, port, attr->index, &attr->gid, attr); |
82547469 | 73 | |
b5ff0f61 | 74 | return ret; |
82547469 SX |
75 | } |
76 | ||
414448d2 | 77 | static int hns_roce_del_gid(const struct ib_gid_attr *attr, void **context) |
82547469 | 78 | { |
414448d2 | 79 | struct hns_roce_dev *hr_dev = to_hr_dev(attr->device); |
1fb7f897 | 80 | u32 port = attr->port_num - 1; |
b5ff0f61 | 81 | int ret; |
82547469 SX |
82 | |
83 | if (port >= hr_dev->caps.num_ports) | |
84 | return -EINVAL; | |
85 | ||
32053e58 | 86 | ret = hr_dev->hw->set_gid(hr_dev, port, attr->index, NULL, NULL); |
82547469 | 87 | |
b5ff0f61 | 88 | return ret; |
9a443537 | 89 | } |
90 | ||
1fb7f897 | 91 | static int handle_en_event(struct hns_roce_dev *hr_dev, u32 port, |
9a443537 | 92 | unsigned long event) |
93 | { | |
13ca970e | 94 | struct device *dev = hr_dev->dev; |
9a443537 | 95 | struct net_device *netdev; |
a74dc41d | 96 | int ret = 0; |
9a443537 | 97 | |
98 | netdev = hr_dev->iboe.netdevs[port]; | |
99 | if (!netdev) { | |
d11769fd | 100 | dev_err(dev, "Can't find netdev on port(%u)!\n", port); |
9a443537 | 101 | return -ENODEV; |
102 | } | |
103 | ||
9a443537 | 104 | switch (event) { |
105 | case NETDEV_UP: | |
106 | case NETDEV_CHANGE: | |
107 | case NETDEV_REGISTER: | |
108 | case NETDEV_CHANGEADDR: | |
a74dc41d | 109 | ret = hns_roce_set_mac(hr_dev, port, netdev->dev_addr); |
9a443537 | 110 | break; |
111 | case NETDEV_DOWN: | |
112 | /* | |
e84e40be S |
113 | * In v1 engine, only support all ports closed together. |
114 | */ | |
9a443537 | 115 | break; |
116 | default: | |
117 | dev_dbg(dev, "NETDEV event = 0x%x!\n", (u32)(event)); | |
118 | break; | |
119 | } | |
120 | ||
a74dc41d | 121 | return ret; |
9a443537 | 122 | } |
123 | ||
124 | static int hns_roce_netdev_event(struct notifier_block *self, | |
125 | unsigned long event, void *ptr) | |
126 | { | |
127 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); | |
128 | struct hns_roce_ib_iboe *iboe = NULL; | |
129 | struct hns_roce_dev *hr_dev = NULL; | |
a2f3d447 | 130 | int ret; |
1fb7f897 | 131 | u32 port; |
9a443537 | 132 | |
133 | hr_dev = container_of(self, struct hns_roce_dev, iboe.nb); | |
134 | iboe = &hr_dev->iboe; | |
135 | ||
136 | for (port = 0; port < hr_dev->caps.num_ports; port++) { | |
137 | if (dev == iboe->netdevs[port]) { | |
138 | ret = handle_en_event(hr_dev, port, event); | |
139 | if (ret) | |
140 | return NOTIFY_DONE; | |
141 | break; | |
142 | } | |
143 | } | |
144 | ||
145 | return NOTIFY_DONE; | |
146 | } | |
147 | ||
82547469 | 148 | static int hns_roce_setup_mtu_mac(struct hns_roce_dev *hr_dev) |
9a443537 | 149 | { |
a74dc41d | 150 | int ret; |
82547469 | 151 | u8 i; |
9a443537 | 152 | |
153 | for (i = 0; i < hr_dev->caps.num_ports; i++) { | |
08805fdb WHX |
154 | if (hr_dev->hw->set_mtu) |
155 | hr_dev->hw->set_mtu(hr_dev, hr_dev->iboe.phy_port[i], | |
156 | hr_dev->caps.max_mtu); | |
a74dc41d WHX |
157 | ret = hns_roce_set_mac(hr_dev, i, |
158 | hr_dev->iboe.netdevs[i]->dev_addr); | |
159 | if (ret) | |
160 | return ret; | |
9a443537 | 161 | } |
162 | ||
82547469 | 163 | return 0; |
9a443537 | 164 | } |
165 | ||
166 | static int hns_roce_query_device(struct ib_device *ib_dev, | |
167 | struct ib_device_attr *props, | |
168 | struct ib_udata *uhw) | |
169 | { | |
170 | struct hns_roce_dev *hr_dev = to_hr_dev(ib_dev); | |
171 | ||
172 | memset(props, 0, sizeof(*props)); | |
173 | ||
3a63c964 | 174 | props->fw_ver = hr_dev->caps.fw_ver; |
ad18e20b | 175 | props->sys_image_guid = cpu_to_be64(hr_dev->sys_image_guid); |
9a443537 | 176 | props->max_mr_size = (u64)(~(0ULL)); |
177 | props->page_size_cap = hr_dev->caps.page_size_cap; | |
178 | props->vendor_id = hr_dev->vendor_id; | |
179 | props->vendor_part_id = hr_dev->vendor_part_id; | |
180 | props->hw_ver = hr_dev->hw_rev; | |
181 | props->max_qp = hr_dev->caps.num_qps; | |
182 | props->max_qp_wr = hr_dev->caps.max_wqes; | |
183 | props->device_cap_flags = IB_DEVICE_PORT_ACTIVE_EVENT | | |
a74aab6c | 184 | IB_DEVICE_RC_RNR_NAK_GEN; |
33023fb8 SW |
185 | props->max_send_sge = hr_dev->caps.max_sq_sg; |
186 | props->max_recv_sge = hr_dev->caps.max_rq_sg; | |
9a443537 | 187 | props->max_sge_rd = 1; |
188 | props->max_cq = hr_dev->caps.num_cqs; | |
189 | props->max_cqe = hr_dev->caps.max_cqes; | |
190 | props->max_mr = hr_dev->caps.num_mtpts; | |
191 | props->max_pd = hr_dev->caps.num_pds; | |
192 | props->max_qp_rd_atom = hr_dev->caps.max_qp_dest_rdma; | |
193 | props->max_qp_init_rd_atom = hr_dev->caps.max_qp_init_rdma; | |
384f8818 LO |
194 | props->atomic_cap = hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_ATOMIC ? |
195 | IB_ATOMIC_HCA : IB_ATOMIC_NONE; | |
9a443537 | 196 | props->max_pkeys = 1; |
197 | props->local_ca_ack_delay = hr_dev->caps.local_ca_ack_delay; | |
d16da119 | 198 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) { |
a91e093c | 199 | props->max_srq = hr_dev->caps.num_srqs; |
d16da119 LO |
200 | props->max_srq_wr = hr_dev->caps.max_srq_wrs; |
201 | props->max_srq_sge = hr_dev->caps.max_srq_sges; | |
202 | } | |
9a443537 | 203 | |
bf656b02 YL |
204 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_FRMR && |
205 | hr_dev->pci_dev->revision >= PCI_REVISION_ID_HIP09) { | |
dad1f980 LO |
206 | props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS; |
207 | props->max_fast_reg_page_list_len = HNS_ROCE_FRMR_MAX_PA; | |
208 | } | |
209 | ||
32548870 WL |
210 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC) |
211 | props->device_cap_flags |= IB_DEVICE_XRC; | |
212 | ||
9a443537 | 213 | return 0; |
214 | } | |
215 | ||
1fb7f897 | 216 | static int hns_roce_query_port(struct ib_device *ib_dev, u32 port_num, |
9a443537 | 217 | struct ib_port_attr *props) |
218 | { | |
219 | struct hns_roce_dev *hr_dev = to_hr_dev(ib_dev); | |
13ca970e | 220 | struct device *dev = hr_dev->dev; |
9a443537 | 221 | struct net_device *net_dev; |
222 | unsigned long flags; | |
223 | enum ib_mtu mtu; | |
1fb7f897 | 224 | u32 port; |
9a443537 | 225 | |
9a443537 | 226 | port = port_num - 1; |
227 | ||
c4550c63 | 228 | /* props being zeroed by the caller, avoid zeroing it here */ |
9a443537 | 229 | |
230 | props->max_mtu = hr_dev->caps.max_mtu; | |
231 | props->gid_tbl_len = hr_dev->caps.gid_table_len[port]; | |
232 | props->port_cap_flags = IB_PORT_CM_SUP | IB_PORT_REINIT_SUP | | |
233 | IB_PORT_VENDOR_CLASS_SUP | | |
234 | IB_PORT_BOOT_MGMT_SUP; | |
235 | props->max_msg_sz = HNS_ROCE_MAX_MSG_LEN; | |
236 | props->pkey_tbl_len = 1; | |
237 | props->active_width = IB_WIDTH_4X; | |
238 | props->active_speed = 1; | |
239 | ||
240 | spin_lock_irqsave(&hr_dev->iboe.lock, flags); | |
241 | ||
242 | net_dev = hr_dev->iboe.netdevs[port]; | |
243 | if (!net_dev) { | |
244 | spin_unlock_irqrestore(&hr_dev->iboe.lock, flags); | |
d11769fd | 245 | dev_err(dev, "Find netdev %u failed!\n", port); |
9a443537 | 246 | return -EINVAL; |
247 | } | |
248 | ||
249 | mtu = iboe_get_mtu(net_dev->mtu); | |
250 | props->active_mtu = mtu ? min(props->max_mtu, mtu) : IB_MTU_256; | |
60262b10 LO |
251 | props->state = netif_running(net_dev) && netif_carrier_ok(net_dev) ? |
252 | IB_PORT_ACTIVE : | |
253 | IB_PORT_DOWN; | |
254 | props->phys_state = props->state == IB_PORT_ACTIVE ? | |
255 | IB_PORT_PHYS_STATE_LINK_UP : | |
256 | IB_PORT_PHYS_STATE_DISABLED; | |
9a443537 | 257 | |
258 | spin_unlock_irqrestore(&hr_dev->iboe.lock, flags); | |
259 | ||
260 | return 0; | |
261 | } | |
262 | ||
263 | static enum rdma_link_layer hns_roce_get_link_layer(struct ib_device *device, | |
1fb7f897 | 264 | u32 port_num) |
9a443537 | 265 | { |
266 | return IB_LINK_LAYER_ETHERNET; | |
267 | } | |
268 | ||
1fb7f897 | 269 | static int hns_roce_query_pkey(struct ib_device *ib_dev, u32 port, u16 index, |
9a443537 | 270 | u16 *pkey) |
271 | { | |
272 | *pkey = PKEY_ID; | |
273 | ||
274 | return 0; | |
275 | } | |
276 | ||
277 | static int hns_roce_modify_device(struct ib_device *ib_dev, int mask, | |
278 | struct ib_device_modify *props) | |
279 | { | |
280 | unsigned long flags; | |
281 | ||
282 | if (mask & ~IB_DEVICE_MODIFY_NODE_DESC) | |
283 | return -EOPNOTSUPP; | |
284 | ||
285 | if (mask & IB_DEVICE_MODIFY_NODE_DESC) { | |
286 | spin_lock_irqsave(&to_hr_dev(ib_dev)->sm_lock, flags); | |
287 | memcpy(ib_dev->node_desc, props->node_desc, NODE_DESC_SIZE); | |
288 | spin_unlock_irqrestore(&to_hr_dev(ib_dev)->sm_lock, flags); | |
289 | } | |
290 | ||
291 | return 0; | |
292 | } | |
293 | ||
a2a074ef LR |
294 | static int hns_roce_alloc_ucontext(struct ib_ucontext *uctx, |
295 | struct ib_udata *udata) | |
9a443537 | 296 | { |
617cf24f | 297 | int ret; |
a2a074ef | 298 | struct hns_roce_ucontext *context = to_hr_ucontext(uctx); |
df7e4042 | 299 | struct hns_roce_ib_alloc_ucontext_resp resp = {}; |
a2a074ef | 300 | struct hns_roce_dev *hr_dev = to_hr_dev(uctx->device); |
9a443537 | 301 | |
cb7a94c9 | 302 | if (!hr_dev->active) |
a2a074ef | 303 | return -EAGAIN; |
cb7a94c9 | 304 | |
9a443537 | 305 | resp.qp_tab_size = hr_dev->caps.num_qps; |
32548870 | 306 | resp.srq_tab_size = hr_dev->caps.num_srqs; |
9a443537 | 307 | |
9a443537 | 308 | ret = hns_roce_uar_alloc(hr_dev, &context->uar); |
309 | if (ret) | |
310 | goto error_fail_uar_alloc; | |
311 | ||
cf8cd4cc YL |
312 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_CQ_RECORD_DB || |
313 | hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_QP_RECORD_DB) { | |
e088a685 YL |
314 | INIT_LIST_HEAD(&context->page_list); |
315 | mutex_init(&context->page_mutex); | |
316 | } | |
317 | ||
09a5f210 WL |
318 | resp.cqe_size = hr_dev->caps.cqe_sz; |
319 | ||
1c0ca9cd WL |
320 | ret = ib_copy_to_udata(udata, &resp, |
321 | min(udata->outlen, sizeof(resp))); | |
9a443537 | 322 | if (ret) |
323 | goto error_fail_copy_to_udata; | |
324 | ||
a2a074ef | 325 | return 0; |
9a443537 | 326 | |
327 | error_fail_copy_to_udata: | |
328 | hns_roce_uar_free(hr_dev, &context->uar); | |
329 | ||
330 | error_fail_uar_alloc: | |
a2a074ef | 331 | return ret; |
9a443537 | 332 | } |
333 | ||
a2a074ef | 334 | static void hns_roce_dealloc_ucontext(struct ib_ucontext *ibcontext) |
9a443537 | 335 | { |
336 | struct hns_roce_ucontext *context = to_hr_ucontext(ibcontext); | |
337 | ||
338 | hns_roce_uar_free(to_hr_dev(ibcontext->device), &context->uar); | |
9a443537 | 339 | } |
340 | ||
341 | static int hns_roce_mmap(struct ib_ucontext *context, | |
342 | struct vm_area_struct *vma) | |
343 | { | |
8f3e9f3e WHX |
344 | struct hns_roce_dev *hr_dev = to_hr_dev(context->device); |
345 | ||
6745d356 JG |
346 | switch (vma->vm_pgoff) { |
347 | case 0: | |
348 | return rdma_user_mmap_io(context, vma, | |
349 | to_hr_ucontext(context)->uar.pfn, | |
350 | PAGE_SIZE, | |
c043ff2c MK |
351 | pgprot_noncached(vma->vm_page_prot), |
352 | NULL); | |
6745d356 JG |
353 | |
354 | /* vm_pgoff: 1 -- TPTR */ | |
355 | case 1: | |
356 | if (!hr_dev->tptr_dma_addr || !hr_dev->tptr_size) | |
357 | return -EINVAL; | |
358 | /* | |
359 | * FIXME: using io_remap_pfn_range on the dma address returned | |
360 | * by dma_alloc_coherent is totally wrong. | |
361 | */ | |
362 | return rdma_user_mmap_io(context, vma, | |
363 | hr_dev->tptr_dma_addr >> PAGE_SHIFT, | |
364 | hr_dev->tptr_size, | |
c043ff2c MK |
365 | vma->vm_page_prot, |
366 | NULL); | |
9a443537 | 367 | |
6745d356 | 368 | default: |
9a443537 | 369 | return -EINVAL; |
6745d356 | 370 | } |
9a443537 | 371 | } |
372 | ||
1fb7f897 | 373 | static int hns_roce_port_immutable(struct ib_device *ib_dev, u32 port_num, |
9a443537 | 374 | struct ib_port_immutable *immutable) |
375 | { | |
376 | struct ib_port_attr attr; | |
377 | int ret; | |
378 | ||
c4550c63 | 379 | ret = ib_query_port(ib_dev, port_num, &attr); |
9a443537 | 380 | if (ret) |
381 | return ret; | |
382 | ||
383 | immutable->pkey_tbl_len = attr.pkey_tbl_len; | |
384 | immutable->gid_tbl_len = attr.gid_tbl_len; | |
385 | ||
9a443537 | 386 | immutable->max_mad_size = IB_MGMT_MAD_SIZE; |
023c1477 WHX |
387 | immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE; |
388 | if (to_hr_dev(ib_dev)->caps.flags & HNS_ROCE_CAP_FLAG_ROCE_V1_V2) | |
389 | immutable->core_cap_flags |= RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP; | |
9a443537 | 390 | |
391 | return 0; | |
392 | } | |
393 | ||
fedc3abe WHX |
394 | static void hns_roce_disassociate_ucontext(struct ib_ucontext *ibcontext) |
395 | { | |
fedc3abe WHX |
396 | } |
397 | ||
847d19a4 LC |
398 | static void hns_roce_get_fw_ver(struct ib_device *device, char *str) |
399 | { | |
400 | u64 fw_ver = to_hr_dev(device)->caps.fw_ver; | |
401 | unsigned int major, minor, sub_minor; | |
402 | ||
403 | major = upper_32_bits(fw_ver); | |
404 | minor = high_16_bits(lower_32_bits(fw_ver)); | |
405 | sub_minor = low_16_bits(fw_ver); | |
406 | ||
407 | snprintf(str, IB_FW_VERSION_NAME_MAX, "%u.%u.%04u", major, minor, | |
408 | sub_minor); | |
409 | } | |
410 | ||
9a443537 | 411 | static void hns_roce_unregister_device(struct hns_roce_dev *hr_dev) |
412 | { | |
413 | struct hns_roce_ib_iboe *iboe = &hr_dev->iboe; | |
414 | ||
cb7a94c9 | 415 | hr_dev->active = false; |
9a443537 | 416 | unregister_netdevice_notifier(&iboe->nb); |
417 | ib_unregister_device(&hr_dev->ib_dev); | |
418 | } | |
419 | ||
7f645a58 | 420 | static const struct ib_device_ops hns_roce_dev_ops = { |
7a154142 | 421 | .owner = THIS_MODULE, |
b9560a41 | 422 | .driver_id = RDMA_DRIVER_HNS, |
72c6ec18 | 423 | .uverbs_abi_ver = 1, |
8f71bb00 | 424 | .uverbs_no_driver_id_binding = 1, |
b9560a41 | 425 | |
847d19a4 | 426 | .get_dev_fw_str = hns_roce_get_fw_ver, |
7f645a58 KH |
427 | .add_gid = hns_roce_add_gid, |
428 | .alloc_pd = hns_roce_alloc_pd, | |
429 | .alloc_ucontext = hns_roce_alloc_ucontext, | |
430 | .create_ah = hns_roce_create_ah, | |
66d86e52 | 431 | .create_user_ah = hns_roce_create_ah, |
707783ab | 432 | .create_cq = hns_roce_create_cq, |
7f645a58 KH |
433 | .create_qp = hns_roce_create_qp, |
434 | .dealloc_pd = hns_roce_dealloc_pd, | |
435 | .dealloc_ucontext = hns_roce_dealloc_ucontext, | |
436 | .del_gid = hns_roce_del_gid, | |
437 | .dereg_mr = hns_roce_dereg_mr, | |
438 | .destroy_ah = hns_roce_destroy_ah, | |
707783ab | 439 | .destroy_cq = hns_roce_destroy_cq, |
7f645a58 | 440 | .disassociate_ucontext = hns_roce_disassociate_ucontext, |
9e2a187a | 441 | .fill_res_cq_entry = hns_roce_fill_res_cq_entry, |
7f645a58 KH |
442 | .get_dma_mr = hns_roce_get_dma_mr, |
443 | .get_link_layer = hns_roce_get_link_layer, | |
7f645a58 KH |
444 | .get_port_immutable = hns_roce_port_immutable, |
445 | .mmap = hns_roce_mmap, | |
446 | .modify_device = hns_roce_modify_device, | |
7f645a58 KH |
447 | .modify_qp = hns_roce_modify_qp, |
448 | .query_ah = hns_roce_query_ah, | |
449 | .query_device = hns_roce_query_device, | |
450 | .query_pkey = hns_roce_query_pkey, | |
451 | .query_port = hns_roce_query_port, | |
452 | .reg_user_mr = hns_roce_reg_user_mr, | |
d3456914 LR |
453 | |
454 | INIT_RDMA_OBJ_SIZE(ib_ah, hns_roce_ah, ibah), | |
e39afe3d | 455 | INIT_RDMA_OBJ_SIZE(ib_cq, hns_roce_cq, ib_cq), |
21a428a0 | 456 | INIT_RDMA_OBJ_SIZE(ib_pd, hns_roce_pd, ibpd), |
a2a074ef | 457 | INIT_RDMA_OBJ_SIZE(ib_ucontext, hns_roce_ucontext, ibucontext), |
7f645a58 KH |
458 | }; |
459 | ||
460 | static const struct ib_device_ops hns_roce_dev_mr_ops = { | |
461 | .rereg_user_mr = hns_roce_rereg_user_mr, | |
462 | }; | |
463 | ||
464 | static const struct ib_device_ops hns_roce_dev_mw_ops = { | |
465 | .alloc_mw = hns_roce_alloc_mw, | |
466 | .dealloc_mw = hns_roce_dealloc_mw, | |
d18bb3e1 LR |
467 | |
468 | INIT_RDMA_OBJ_SIZE(ib_mw, hns_roce_mw, ibmw), | |
7f645a58 KH |
469 | }; |
470 | ||
471 | static const struct ib_device_ops hns_roce_dev_frmr_ops = { | |
472 | .alloc_mr = hns_roce_alloc_mr, | |
473 | .map_mr_sg = hns_roce_map_mr_sg, | |
474 | }; | |
475 | ||
476 | static const struct ib_device_ops hns_roce_dev_srq_ops = { | |
477 | .create_srq = hns_roce_create_srq, | |
478 | .destroy_srq = hns_roce_destroy_srq, | |
68e326de LR |
479 | |
480 | INIT_RDMA_OBJ_SIZE(ib_srq, hns_roce_srq, ibsrq), | |
7f645a58 KH |
481 | }; |
482 | ||
32548870 WL |
483 | static const struct ib_device_ops hns_roce_dev_xrcd_ops = { |
484 | .alloc_xrcd = hns_roce_alloc_xrcd, | |
485 | .dealloc_xrcd = hns_roce_dealloc_xrcd, | |
486 | ||
487 | INIT_RDMA_OBJ_SIZE(ib_xrcd, hns_roce_xrcd, ibxrcd), | |
488 | }; | |
489 | ||
9a443537 | 490 | static int hns_roce_register_device(struct hns_roce_dev *hr_dev) |
491 | { | |
492 | int ret; | |
493 | struct hns_roce_ib_iboe *iboe = NULL; | |
494 | struct ib_device *ib_dev = NULL; | |
13ca970e | 495 | struct device *dev = hr_dev->dev; |
4b38da75 | 496 | unsigned int i; |
9a443537 | 497 | |
498 | iboe = &hr_dev->iboe; | |
49fdf6bb | 499 | spin_lock_init(&iboe->lock); |
9a443537 | 500 | |
501 | ib_dev = &hr_dev->ib_dev; | |
9a443537 | 502 | |
60262b10 LO |
503 | ib_dev->node_type = RDMA_NODE_IB_CA; |
504 | ib_dev->dev.parent = dev; | |
9a443537 | 505 | |
60262b10 LO |
506 | ib_dev->phys_port_cnt = hr_dev->caps.num_ports; |
507 | ib_dev->local_dma_lkey = hr_dev->caps.reserved_lkey; | |
508 | ib_dev->num_comp_vectors = hr_dev->caps.num_comp_vectors; | |
9a443537 | 509 | |
44ce37bc | 510 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_REREG_MR) |
7f645a58 | 511 | ib_set_device_ops(ib_dev, &hns_roce_dev_mr_ops); |
9a443537 | 512 | |
44ce37bc | 513 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_MW) |
7f645a58 | 514 | ib_set_device_ops(ib_dev, &hns_roce_dev_mw_ops); |
c7c28191 | 515 | |
7f645a58 KH |
516 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_FRMR) |
517 | ib_set_device_ops(ib_dev, &hns_roce_dev_frmr_ops); | |
68a997c5 | 518 | |
c7bcb134 | 519 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) { |
7f645a58 KH |
520 | ib_set_device_ops(ib_dev, &hns_roce_dev_srq_ops); |
521 | ib_set_device_ops(ib_dev, hr_dev->hw->hns_roce_dev_srq_ops); | |
c7bcb134 LO |
522 | } |
523 | ||
32548870 WL |
524 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC) |
525 | ib_set_device_ops(ib_dev, &hns_roce_dev_xrcd_ops); | |
526 | ||
7f645a58 KH |
527 | ib_set_device_ops(ib_dev, hr_dev->hw->hns_roce_dev_ops); |
528 | ib_set_device_ops(ib_dev, &hns_roce_dev_ops); | |
4b38da75 JG |
529 | for (i = 0; i < hr_dev->caps.num_ports; i++) { |
530 | if (!hr_dev->iboe.netdevs[i]) | |
531 | continue; | |
532 | ||
533 | ret = ib_device_set_netdev(ib_dev, hr_dev->iboe.netdevs[i], | |
534 | i + 1); | |
535 | if (ret) | |
536 | return ret; | |
537 | } | |
e0477b34 JG |
538 | dma_set_max_seg_size(dev, UINT_MAX); |
539 | ret = ib_register_device(ib_dev, "hns_%d", dev); | |
9a443537 | 540 | if (ret) { |
541 | dev_err(dev, "ib_register_device failed!\n"); | |
542 | return ret; | |
543 | } | |
544 | ||
82547469 | 545 | ret = hns_roce_setup_mtu_mac(hr_dev); |
9a443537 | 546 | if (ret) { |
82547469 SX |
547 | dev_err(dev, "setup_mtu_mac failed!\n"); |
548 | goto error_failed_setup_mtu_mac; | |
9a443537 | 549 | } |
550 | ||
9a443537 | 551 | iboe->nb.notifier_call = hns_roce_netdev_event; |
552 | ret = register_netdevice_notifier(&iboe->nb); | |
553 | if (ret) { | |
554 | dev_err(dev, "register_netdevice_notifier failed!\n"); | |
82547469 | 555 | goto error_failed_setup_mtu_mac; |
9a443537 | 556 | } |
557 | ||
cb7a94c9 | 558 | hr_dev->active = true; |
9a443537 | 559 | return 0; |
560 | ||
82547469 | 561 | error_failed_setup_mtu_mac: |
9a443537 | 562 | ib_unregister_device(ib_dev); |
563 | ||
564 | return ret; | |
565 | } | |
566 | ||
9a443537 | 567 | static int hns_roce_init_hem(struct hns_roce_dev *hr_dev) |
568 | { | |
13ca970e | 569 | struct device *dev = hr_dev->dev; |
dc93a0d9 | 570 | int ret; |
9a443537 | 571 | |
9a443537 | 572 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->mr_table.mtpt_table, |
573 | HEM_TYPE_MTPT, hr_dev->caps.mtpt_entry_sz, | |
574 | hr_dev->caps.num_mtpts, 1); | |
575 | if (ret) { | |
576 | dev_err(dev, "Failed to init MTPT context memory, aborting.\n"); | |
2929c40f | 577 | return ret; |
9a443537 | 578 | } |
579 | ||
580 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qp_table.qp_table, | |
98912ee8 | 581 | HEM_TYPE_QPC, hr_dev->caps.qpc_sz, |
9a443537 | 582 | hr_dev->caps.num_qps, 1); |
583 | if (ret) { | |
584 | dev_err(dev, "Failed to init QP context memory, aborting.\n"); | |
585 | goto err_unmap_dmpt; | |
586 | } | |
587 | ||
588 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qp_table.irrl_table, | |
589 | HEM_TYPE_IRRL, | |
590 | hr_dev->caps.irrl_entry_sz * | |
591 | hr_dev->caps.max_qp_init_rdma, | |
592 | hr_dev->caps.num_qps, 1); | |
593 | if (ret) { | |
594 | dev_err(dev, "Failed to init irrl_table memory, aborting.\n"); | |
595 | goto err_unmap_qp; | |
596 | } | |
597 | ||
e92f2c18 | 598 | if (hr_dev->caps.trrl_entry_sz) { |
599 | ret = hns_roce_init_hem_table(hr_dev, | |
600 | &hr_dev->qp_table.trrl_table, | |
601 | HEM_TYPE_TRRL, | |
602 | hr_dev->caps.trrl_entry_sz * | |
603 | hr_dev->caps.max_qp_dest_rdma, | |
604 | hr_dev->caps.num_qps, 1); | |
605 | if (ret) { | |
606 | dev_err(dev, | |
60262b10 | 607 | "Failed to init trrl_table memory, aborting.\n"); |
e92f2c18 | 608 | goto err_unmap_irrl; |
609 | } | |
610 | } | |
611 | ||
9a443537 | 612 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->cq_table.table, |
613 | HEM_TYPE_CQC, hr_dev->caps.cqc_entry_sz, | |
614 | hr_dev->caps.num_cqs, 1); | |
615 | if (ret) { | |
616 | dev_err(dev, "Failed to init CQ context memory, aborting.\n"); | |
e92f2c18 | 617 | goto err_unmap_trrl; |
9a443537 | 618 | } |
619 | ||
4ddeacf6 | 620 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) { |
5c1f167a LO |
621 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->srq_table.table, |
622 | HEM_TYPE_SRQC, | |
623 | hr_dev->caps.srqc_entry_sz, | |
624 | hr_dev->caps.num_srqs, 1); | |
625 | if (ret) { | |
626 | dev_err(dev, | |
60262b10 | 627 | "Failed to init SRQ context memory, aborting.\n"); |
5c1f167a LO |
628 | goto err_unmap_cq; |
629 | } | |
630 | } | |
631 | ||
4ddeacf6 | 632 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_QP_FLOW_CTRL) { |
6a157f7d YL |
633 | ret = hns_roce_init_hem_table(hr_dev, |
634 | &hr_dev->qp_table.sccc_table, | |
635 | HEM_TYPE_SCCC, | |
3cb2c996 | 636 | hr_dev->caps.sccc_sz, |
6a157f7d YL |
637 | hr_dev->caps.num_qps, 1); |
638 | if (ret) { | |
639 | dev_err(dev, | |
60262b10 | 640 | "Failed to init SCC context memory, aborting.\n"); |
2929c40f | 641 | goto err_unmap_srq; |
6a157f7d YL |
642 | } |
643 | } | |
644 | ||
0e40dc2f | 645 | if (hr_dev->caps.qpc_timer_entry_sz) { |
60262b10 | 646 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->qpc_timer_table, |
0e40dc2f YL |
647 | HEM_TYPE_QPC_TIMER, |
648 | hr_dev->caps.qpc_timer_entry_sz, | |
649 | hr_dev->caps.num_qpc_timer, 1); | |
650 | if (ret) { | |
651 | dev_err(dev, | |
60262b10 | 652 | "Failed to init QPC timer memory, aborting.\n"); |
0e40dc2f YL |
653 | goto err_unmap_ctx; |
654 | } | |
655 | } | |
656 | ||
657 | if (hr_dev->caps.cqc_timer_entry_sz) { | |
60262b10 | 658 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->cqc_timer_table, |
0e40dc2f YL |
659 | HEM_TYPE_CQC_TIMER, |
660 | hr_dev->caps.cqc_timer_entry_sz, | |
661 | hr_dev->caps.num_cqc_timer, 1); | |
662 | if (ret) { | |
663 | dev_err(dev, | |
60262b10 | 664 | "Failed to init CQC timer memory, aborting.\n"); |
0e40dc2f YL |
665 | goto err_unmap_qpc_timer; |
666 | } | |
667 | } | |
668 | ||
d6d91e46 WL |
669 | if (hr_dev->caps.gmv_entry_sz) { |
670 | ret = hns_roce_init_hem_table(hr_dev, &hr_dev->gmv_table, | |
671 | HEM_TYPE_GMV, | |
672 | hr_dev->caps.gmv_entry_sz, | |
673 | hr_dev->caps.gmv_entry_num, 1); | |
674 | if (ret) { | |
675 | dev_err(dev, | |
676 | "failed to init gmv table memory, ret = %d\n", | |
677 | ret); | |
678 | goto err_unmap_cqc_timer; | |
679 | } | |
680 | } | |
681 | ||
9a443537 | 682 | return 0; |
683 | ||
d6d91e46 WL |
684 | err_unmap_cqc_timer: |
685 | if (hr_dev->caps.cqc_timer_entry_sz) | |
686 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->cqc_timer_table); | |
687 | ||
0e40dc2f YL |
688 | err_unmap_qpc_timer: |
689 | if (hr_dev->caps.qpc_timer_entry_sz) | |
60262b10 | 690 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qpc_timer_table); |
0e40dc2f YL |
691 | |
692 | err_unmap_ctx: | |
4ddeacf6 | 693 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_QP_FLOW_CTRL) |
0e40dc2f YL |
694 | hns_roce_cleanup_hem_table(hr_dev, |
695 | &hr_dev->qp_table.sccc_table); | |
5c1f167a | 696 | err_unmap_srq: |
4ddeacf6 | 697 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) |
5c1f167a LO |
698 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->srq_table.table); |
699 | ||
700 | err_unmap_cq: | |
701 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->cq_table.table); | |
702 | ||
e92f2c18 | 703 | err_unmap_trrl: |
704 | if (hr_dev->caps.trrl_entry_sz) | |
705 | hns_roce_cleanup_hem_table(hr_dev, | |
706 | &hr_dev->qp_table.trrl_table); | |
707 | ||
9a443537 | 708 | err_unmap_irrl: |
709 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qp_table.irrl_table); | |
710 | ||
711 | err_unmap_qp: | |
712 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->qp_table.qp_table); | |
713 | ||
714 | err_unmap_dmpt: | |
715 | hns_roce_cleanup_hem_table(hr_dev, &hr_dev->mr_table.mtpt_table); | |
716 | ||
9a443537 | 717 | return ret; |
718 | } | |
719 | ||
720 | /** | |
e84e40be S |
721 | * hns_roce_setup_hca - setup host channel adapter |
722 | * @hr_dev: pointer to hns roce device | |
723 | * Return : int | |
724 | */ | |
9a443537 | 725 | static int hns_roce_setup_hca(struct hns_roce_dev *hr_dev) |
726 | { | |
13ca970e | 727 | struct device *dev = hr_dev->dev; |
dc93a0d9 | 728 | int ret; |
9a443537 | 729 | |
730 | spin_lock_init(&hr_dev->sm_lock); | |
9a443537 | 731 | spin_lock_init(&hr_dev->bt_cmd_lock); |
732 | ||
cf8cd4cc YL |
733 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_CQ_RECORD_DB || |
734 | hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_QP_RECORD_DB) { | |
472bc0fb YL |
735 | INIT_LIST_HEAD(&hr_dev->pgdir_list); |
736 | mutex_init(&hr_dev->pgdir_mutex); | |
737 | } | |
738 | ||
9a443537 | 739 | ret = hns_roce_init_uar_table(hr_dev); |
740 | if (ret) { | |
741 | dev_err(dev, "Failed to initialize uar table. aborting\n"); | |
742 | return ret; | |
743 | } | |
744 | ||
745 | ret = hns_roce_uar_alloc(hr_dev, &hr_dev->priv_uar); | |
746 | if (ret) { | |
747 | dev_err(dev, "Failed to allocate priv_uar.\n"); | |
748 | goto err_uar_table_free; | |
749 | } | |
750 | ||
645f0593 | 751 | hns_roce_init_pd_table(hr_dev); |
9a443537 | 752 | |
da43b7be YL |
753 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC) |
754 | hns_roce_init_xrcd_table(hr_dev); | |
32548870 | 755 | |
d38936f0 | 756 | hns_roce_init_mr_table(hr_dev); |
9a443537 | 757 | |
1bbd4380 | 758 | hns_roce_init_cq_table(hr_dev); |
9a443537 | 759 | |
a33958ca | 760 | hns_roce_init_qp_table(hr_dev); |
9a443537 | 761 | |
5c1f167a LO |
762 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ) { |
763 | ret = hns_roce_init_srq_table(hr_dev); | |
764 | if (ret) { | |
765 | dev_err(dev, | |
766 | "Failed to init share receive queue table.\n"); | |
767 | goto err_qp_table_free; | |
768 | } | |
769 | } | |
770 | ||
9a443537 | 771 | return 0; |
772 | ||
5c1f167a | 773 | err_qp_table_free: |
bb74fe7e | 774 | hns_roce_cleanup_qp_table(hr_dev); |
9a443537 | 775 | hns_roce_cleanup_cq_table(hr_dev); |
d38936f0 | 776 | ida_destroy(&hr_dev->mr_table.mtpt_ida.ida); |
9a443537 | 777 | |
32548870 | 778 | if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC) |
da43b7be | 779 | ida_destroy(&hr_dev->xrcd_ida.ida); |
32548870 | 780 | |
645f0593 | 781 | ida_destroy(&hr_dev->pd_ida.ida); |
9a443537 | 782 | hns_roce_uar_free(hr_dev, &hr_dev->priv_uar); |
783 | ||
784 | err_uar_table_free: | |
785 | hns_roce_cleanup_uar_table(hr_dev); | |
786 | return ret; | |
787 | } | |
788 | ||
626903e9 XW |
789 | static void check_and_get_armed_cq(struct list_head *cq_list, struct ib_cq *cq) |
790 | { | |
791 | struct hns_roce_cq *hr_cq = to_hr_cq(cq); | |
792 | unsigned long flags; | |
793 | ||
794 | spin_lock_irqsave(&hr_cq->lock, flags); | |
795 | if (cq->comp_handler) { | |
796 | if (!hr_cq->is_armed) { | |
797 | hr_cq->is_armed = 1; | |
798 | list_add_tail(&hr_cq->node, cq_list); | |
799 | } | |
800 | } | |
801 | spin_unlock_irqrestore(&hr_cq->lock, flags); | |
802 | } | |
803 | ||
804 | void hns_roce_handle_device_err(struct hns_roce_dev *hr_dev) | |
805 | { | |
806 | struct hns_roce_qp *hr_qp; | |
807 | struct hns_roce_cq *hr_cq; | |
808 | struct list_head cq_list; | |
809 | unsigned long flags_qp; | |
810 | unsigned long flags; | |
811 | ||
812 | INIT_LIST_HEAD(&cq_list); | |
813 | ||
814 | spin_lock_irqsave(&hr_dev->qp_list_lock, flags); | |
815 | list_for_each_entry(hr_qp, &hr_dev->qp_list, node) { | |
816 | spin_lock_irqsave(&hr_qp->sq.lock, flags_qp); | |
817 | if (hr_qp->sq.tail != hr_qp->sq.head) | |
818 | check_and_get_armed_cq(&cq_list, hr_qp->ibqp.send_cq); | |
819 | spin_unlock_irqrestore(&hr_qp->sq.lock, flags_qp); | |
820 | ||
821 | spin_lock_irqsave(&hr_qp->rq.lock, flags_qp); | |
822 | if ((!hr_qp->ibqp.srq) && (hr_qp->rq.tail != hr_qp->rq.head)) | |
823 | check_and_get_armed_cq(&cq_list, hr_qp->ibqp.recv_cq); | |
824 | spin_unlock_irqrestore(&hr_qp->rq.lock, flags_qp); | |
825 | } | |
826 | ||
827 | list_for_each_entry(hr_cq, &cq_list, node) | |
828 | hns_roce_cq_completion(hr_dev, hr_cq->cqn); | |
829 | ||
830 | spin_unlock_irqrestore(&hr_dev->qp_list_lock, flags); | |
831 | } | |
832 | ||
08805fdb | 833 | int hns_roce_init(struct hns_roce_dev *hr_dev) |
9a443537 | 834 | { |
13ca970e | 835 | struct device *dev = hr_dev->dev; |
dc93a0d9 | 836 | int ret; |
9a443537 | 837 | |
08805fdb WHX |
838 | if (hr_dev->hw->reset) { |
839 | ret = hr_dev->hw->reset(hr_dev, true); | |
840 | if (ret) { | |
841 | dev_err(dev, "Reset RoCE engine failed!\n"); | |
842 | return ret; | |
843 | } | |
9a443537 | 844 | } |
cb7a94c9 | 845 | hr_dev->is_reset = false; |
9a443537 | 846 | |
a04ff739 WHX |
847 | if (hr_dev->hw->cmq_init) { |
848 | ret = hr_dev->hw->cmq_init(hr_dev); | |
849 | if (ret) { | |
850 | dev_err(dev, "Init RoCE Command Queue failed!\n"); | |
851 | goto error_failed_cmq_init; | |
852 | } | |
853 | } | |
854 | ||
cfc85f3e WHX |
855 | ret = hr_dev->hw->hw_profile(hr_dev); |
856 | if (ret) { | |
857 | dev_err(dev, "Get RoCE engine profile failed!\n"); | |
858 | goto error_failed_cmd_init; | |
859 | } | |
9a443537 | 860 | |
861 | ret = hns_roce_cmd_init(hr_dev); | |
862 | if (ret) { | |
863 | dev_err(dev, "cmd init failed!\n"); | |
864 | goto error_failed_cmd_init; | |
865 | } | |
866 | ||
3d50503b | 867 | /* EQ depends on poll mode, event mode depends on EQ */ |
b16f8188 YL |
868 | ret = hr_dev->hw->init_eq(hr_dev); |
869 | if (ret) { | |
870 | dev_err(dev, "eq init failed!\n"); | |
871 | goto error_failed_eq_table; | |
9a443537 | 872 | } |
873 | ||
874 | if (hr_dev->cmd_mod) { | |
875 | ret = hns_roce_cmd_use_events(hr_dev); | |
8b436a99 | 876 | if (ret) |
3d50503b YL |
877 | dev_warn(dev, |
878 | "Cmd event mode failed, set back to poll!\n"); | |
9a443537 | 879 | } |
880 | ||
881 | ret = hns_roce_init_hem(hr_dev); | |
882 | if (ret) { | |
883 | dev_err(dev, "init HEM(Hardware Entry Memory) failed!\n"); | |
884 | goto error_failed_init_hem; | |
885 | } | |
886 | ||
887 | ret = hns_roce_setup_hca(hr_dev); | |
888 | if (ret) { | |
889 | dev_err(dev, "setup hca failed!\n"); | |
890 | goto error_failed_setup_hca; | |
891 | } | |
892 | ||
08805fdb WHX |
893 | if (hr_dev->hw->hw_init) { |
894 | ret = hr_dev->hw->hw_init(hr_dev); | |
895 | if (ret) { | |
896 | dev_err(dev, "hw_init failed!\n"); | |
897 | goto error_failed_engine_init; | |
898 | } | |
9a443537 | 899 | } |
900 | ||
626903e9 XW |
901 | INIT_LIST_HEAD(&hr_dev->qp_list); |
902 | spin_lock_init(&hr_dev->qp_list_lock); | |
f91696f2 YL |
903 | INIT_LIST_HEAD(&hr_dev->dip_list); |
904 | spin_lock_init(&hr_dev->dip_list_lock); | |
626903e9 | 905 | |
9a443537 | 906 | ret = hns_roce_register_device(hr_dev); |
907 | if (ret) | |
908 | goto error_failed_register_device; | |
909 | ||
910 | return 0; | |
911 | ||
912 | error_failed_register_device: | |
08805fdb WHX |
913 | if (hr_dev->hw->hw_exit) |
914 | hr_dev->hw->hw_exit(hr_dev); | |
9a443537 | 915 | |
916 | error_failed_engine_init: | |
917 | hns_roce_cleanup_bitmap(hr_dev); | |
918 | ||
919 | error_failed_setup_hca: | |
920 | hns_roce_cleanup_hem(hr_dev); | |
921 | ||
922 | error_failed_init_hem: | |
923 | if (hr_dev->cmd_mod) | |
924 | hns_roce_cmd_use_polling(hr_dev); | |
b16f8188 | 925 | hr_dev->hw->cleanup_eq(hr_dev); |
9a443537 | 926 | |
927 | error_failed_eq_table: | |
928 | hns_roce_cmd_cleanup(hr_dev); | |
929 | ||
930 | error_failed_cmd_init: | |
a04ff739 WHX |
931 | if (hr_dev->hw->cmq_exit) |
932 | hr_dev->hw->cmq_exit(hr_dev); | |
933 | ||
934 | error_failed_cmq_init: | |
08805fdb | 935 | if (hr_dev->hw->reset) { |
3635ac02 | 936 | if (hr_dev->hw->reset(hr_dev, false)) |
08805fdb WHX |
937 | dev_err(dev, "Dereset RoCE engine failed!\n"); |
938 | } | |
9a443537 | 939 | |
940 | return ret; | |
941 | } | |
942 | ||
08805fdb | 943 | void hns_roce_exit(struct hns_roce_dev *hr_dev) |
9a443537 | 944 | { |
9a443537 | 945 | hns_roce_unregister_device(hr_dev); |
cb7a94c9 | 946 | |
08805fdb WHX |
947 | if (hr_dev->hw->hw_exit) |
948 | hr_dev->hw->hw_exit(hr_dev); | |
9a443537 | 949 | hns_roce_cleanup_bitmap(hr_dev); |
950 | hns_roce_cleanup_hem(hr_dev); | |
951 | ||
952 | if (hr_dev->cmd_mod) | |
953 | hns_roce_cmd_use_polling(hr_dev); | |
954 | ||
b16f8188 | 955 | hr_dev->hw->cleanup_eq(hr_dev); |
9a443537 | 956 | hns_roce_cmd_cleanup(hr_dev); |
a04ff739 WHX |
957 | if (hr_dev->hw->cmq_exit) |
958 | hr_dev->hw->cmq_exit(hr_dev); | |
08805fdb WHX |
959 | if (hr_dev->hw->reset) |
960 | hr_dev->hw->reset(hr_dev, false); | |
9a443537 | 961 | } |
9a443537 | 962 | |
963 | MODULE_LICENSE("Dual BSD/GPL"); | |
964 | MODULE_AUTHOR("Wei Hu <xavier.huwei@huawei.com>"); | |
965 | MODULE_AUTHOR("Nenglong Zhao <zhaonenglong@hisilicon.com>"); | |
966 | MODULE_AUTHOR("Lijun Ou <oulijun@huawei.com>"); | |
967 | MODULE_DESCRIPTION("HNS RoCE Driver"); |