Merge remote-tracking branches 'asoc/topic/ux500' and 'asoc/topic/wm8962' into asoc...
[deliverable/linux.git] / drivers / infiniband / hw / mlx5 / main.c
CommitLineData
e126ba97 1/*
6cf0a15f 2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
e126ba97
EC
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
adec640e 33#include <linux/highmem.h>
e126ba97
EC
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/errno.h>
37#include <linux/pci.h>
38#include <linux/dma-mapping.h>
39#include <linux/slab.h>
37aa5c36
GL
40#if defined(CONFIG_X86)
41#include <asm/pat.h>
42#endif
e126ba97 43#include <linux/sched.h>
7c2344c3 44#include <linux/delay.h>
e126ba97 45#include <rdma/ib_user_verbs.h>
3f89a643 46#include <rdma/ib_addr.h>
2811ba51 47#include <rdma/ib_cache.h>
ada68c31 48#include <linux/mlx5/port.h>
1b5daf11 49#include <linux/mlx5/vport.h>
7c2344c3 50#include <linux/list.h>
e126ba97
EC
51#include <rdma/ib_smi.h>
52#include <rdma/ib_umem.h>
038d2ef8
MG
53#include <linux/in.h>
54#include <linux/etherdevice.h>
55#include <linux/mlx5/fs.h>
e126ba97
EC
56#include "user.h"
57#include "mlx5_ib.h"
58
59#define DRIVER_NAME "mlx5_ib"
169a1d85
AV
60#define DRIVER_VERSION "2.2-1"
61#define DRIVER_RELDATE "Feb 2014"
e126ba97
EC
62
63MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
64MODULE_DESCRIPTION("Mellanox Connect-IB HCA IB driver");
65MODULE_LICENSE("Dual BSD/GPL");
66MODULE_VERSION(DRIVER_VERSION);
67
9603b61d
JM
68static int deprecated_prof_sel = 2;
69module_param_named(prof_sel, deprecated_prof_sel, int, 0444);
70MODULE_PARM_DESC(prof_sel, "profile selector. Deprecated here. Moved to module mlx5_core");
e126ba97
EC
71
72static char mlx5_version[] =
73 DRIVER_NAME ": Mellanox Connect-IB Infiniband driver v"
74 DRIVER_VERSION " (" DRIVER_RELDATE ")\n";
75
da7525d2
EBE
76enum {
77 MLX5_ATOMIC_SIZE_QP_8BYTES = 1 << 3,
78};
79
1b5daf11 80static enum rdma_link_layer
ebd61f68 81mlx5_port_type_cap_to_rdma_ll(int port_type_cap)
1b5daf11 82{
ebd61f68 83 switch (port_type_cap) {
1b5daf11
MD
84 case MLX5_CAP_PORT_TYPE_IB:
85 return IB_LINK_LAYER_INFINIBAND;
86 case MLX5_CAP_PORT_TYPE_ETH:
87 return IB_LINK_LAYER_ETHERNET;
88 default:
89 return IB_LINK_LAYER_UNSPECIFIED;
90 }
91}
92
ebd61f68
AS
93static enum rdma_link_layer
94mlx5_ib_port_link_layer(struct ib_device *device, u8 port_num)
95{
96 struct mlx5_ib_dev *dev = to_mdev(device);
97 int port_type_cap = MLX5_CAP_GEN(dev->mdev, port_type);
98
99 return mlx5_port_type_cap_to_rdma_ll(port_type_cap);
100}
101
fc24fc5e
AS
102static int mlx5_netdev_event(struct notifier_block *this,
103 unsigned long event, void *ptr)
104{
105 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
106 struct mlx5_ib_dev *ibdev = container_of(this, struct mlx5_ib_dev,
107 roce.nb);
108
109 if ((event != NETDEV_UNREGISTER) && (event != NETDEV_REGISTER))
110 return NOTIFY_DONE;
111
112 write_lock(&ibdev->roce.netdev_lock);
113 if (ndev->dev.parent == &ibdev->mdev->pdev->dev)
114 ibdev->roce.netdev = (event == NETDEV_UNREGISTER) ? NULL : ndev;
115 write_unlock(&ibdev->roce.netdev_lock);
116
117 return NOTIFY_DONE;
118}
119
120static struct net_device *mlx5_ib_get_netdev(struct ib_device *device,
121 u8 port_num)
122{
123 struct mlx5_ib_dev *ibdev = to_mdev(device);
124 struct net_device *ndev;
125
126 /* Ensure ndev does not disappear before we invoke dev_hold()
127 */
128 read_lock(&ibdev->roce.netdev_lock);
129 ndev = ibdev->roce.netdev;
130 if (ndev)
131 dev_hold(ndev);
132 read_unlock(&ibdev->roce.netdev_lock);
133
134 return ndev;
135}
136
3f89a643
AS
137static int mlx5_query_port_roce(struct ib_device *device, u8 port_num,
138 struct ib_port_attr *props)
139{
140 struct mlx5_ib_dev *dev = to_mdev(device);
141 struct net_device *ndev;
142 enum ib_mtu ndev_ib_mtu;
c876a1b7 143 u16 qkey_viol_cntr;
3f89a643
AS
144
145 memset(props, 0, sizeof(*props));
146
147 props->port_cap_flags |= IB_PORT_CM_SUP;
148 props->port_cap_flags |= IB_PORT_IP_BASED_GIDS;
149
150 props->gid_tbl_len = MLX5_CAP_ROCE(dev->mdev,
151 roce_address_table_size);
152 props->max_mtu = IB_MTU_4096;
153 props->max_msg_sz = 1 << MLX5_CAP_GEN(dev->mdev, log_max_msg);
154 props->pkey_tbl_len = 1;
155 props->state = IB_PORT_DOWN;
156 props->phys_state = 3;
157
c876a1b7
LR
158 mlx5_query_nic_vport_qkey_viol_cntr(dev->mdev, &qkey_viol_cntr);
159 props->qkey_viol_cntr = qkey_viol_cntr;
3f89a643
AS
160
161 ndev = mlx5_ib_get_netdev(device, port_num);
162 if (!ndev)
163 return 0;
164
165 if (netif_running(ndev) && netif_carrier_ok(ndev)) {
166 props->state = IB_PORT_ACTIVE;
167 props->phys_state = 5;
168 }
169
170 ndev_ib_mtu = iboe_get_mtu(ndev->mtu);
171
172 dev_put(ndev);
173
174 props->active_mtu = min(props->max_mtu, ndev_ib_mtu);
175
176 props->active_width = IB_WIDTH_4X; /* TODO */
177 props->active_speed = IB_SPEED_QDR; /* TODO */
178
179 return 0;
180}
181
3cca2606
AS
182static void ib_gid_to_mlx5_roce_addr(const union ib_gid *gid,
183 const struct ib_gid_attr *attr,
184 void *mlx5_addr)
185{
186#define MLX5_SET_RA(p, f, v) MLX5_SET(roce_addr_layout, p, f, v)
187 char *mlx5_addr_l3_addr = MLX5_ADDR_OF(roce_addr_layout, mlx5_addr,
188 source_l3_address);
189 void *mlx5_addr_mac = MLX5_ADDR_OF(roce_addr_layout, mlx5_addr,
190 source_mac_47_32);
191
192 if (!gid)
193 return;
194
195 ether_addr_copy(mlx5_addr_mac, attr->ndev->dev_addr);
196
197 if (is_vlan_dev(attr->ndev)) {
198 MLX5_SET_RA(mlx5_addr, vlan_valid, 1);
199 MLX5_SET_RA(mlx5_addr, vlan_id, vlan_dev_vlan_id(attr->ndev));
200 }
201
202 switch (attr->gid_type) {
203 case IB_GID_TYPE_IB:
204 MLX5_SET_RA(mlx5_addr, roce_version, MLX5_ROCE_VERSION_1);
205 break;
206 case IB_GID_TYPE_ROCE_UDP_ENCAP:
207 MLX5_SET_RA(mlx5_addr, roce_version, MLX5_ROCE_VERSION_2);
208 break;
209
210 default:
211 WARN_ON(true);
212 }
213
214 if (attr->gid_type != IB_GID_TYPE_IB) {
215 if (ipv6_addr_v4mapped((void *)gid))
216 MLX5_SET_RA(mlx5_addr, roce_l3_type,
217 MLX5_ROCE_L3_TYPE_IPV4);
218 else
219 MLX5_SET_RA(mlx5_addr, roce_l3_type,
220 MLX5_ROCE_L3_TYPE_IPV6);
221 }
222
223 if ((attr->gid_type == IB_GID_TYPE_IB) ||
224 !ipv6_addr_v4mapped((void *)gid))
225 memcpy(mlx5_addr_l3_addr, gid, sizeof(*gid));
226 else
227 memcpy(&mlx5_addr_l3_addr[12], &gid->raw[12], 4);
228}
229
230static int set_roce_addr(struct ib_device *device, u8 port_num,
231 unsigned int index,
232 const union ib_gid *gid,
233 const struct ib_gid_attr *attr)
234{
235 struct mlx5_ib_dev *dev = to_mdev(device);
236 u32 in[MLX5_ST_SZ_DW(set_roce_address_in)];
237 u32 out[MLX5_ST_SZ_DW(set_roce_address_out)];
238 void *in_addr = MLX5_ADDR_OF(set_roce_address_in, in, roce_address);
239 enum rdma_link_layer ll = mlx5_ib_port_link_layer(device, port_num);
240
241 if (ll != IB_LINK_LAYER_ETHERNET)
242 return -EINVAL;
243
244 memset(in, 0, sizeof(in));
245
246 ib_gid_to_mlx5_roce_addr(gid, attr, in_addr);
247
248 MLX5_SET(set_roce_address_in, in, roce_address_index, index);
249 MLX5_SET(set_roce_address_in, in, opcode, MLX5_CMD_OP_SET_ROCE_ADDRESS);
250
251 memset(out, 0, sizeof(out));
252 return mlx5_cmd_exec(dev->mdev, in, sizeof(in), out, sizeof(out));
253}
254
255static int mlx5_ib_add_gid(struct ib_device *device, u8 port_num,
256 unsigned int index, const union ib_gid *gid,
257 const struct ib_gid_attr *attr,
258 __always_unused void **context)
259{
260 return set_roce_addr(device, port_num, index, gid, attr);
261}
262
263static int mlx5_ib_del_gid(struct ib_device *device, u8 port_num,
264 unsigned int index, __always_unused void **context)
265{
266 return set_roce_addr(device, port_num, index, NULL, NULL);
267}
268
2811ba51
AS
269__be16 mlx5_get_roce_udp_sport(struct mlx5_ib_dev *dev, u8 port_num,
270 int index)
271{
272 struct ib_gid_attr attr;
273 union ib_gid gid;
274
275 if (ib_get_cached_gid(&dev->ib_dev, port_num, index, &gid, &attr))
276 return 0;
277
278 if (!attr.ndev)
279 return 0;
280
281 dev_put(attr.ndev);
282
283 if (attr.gid_type != IB_GID_TYPE_ROCE_UDP_ENCAP)
284 return 0;
285
286 return cpu_to_be16(MLX5_CAP_ROCE(dev->mdev, r_roce_min_src_udp_port));
287}
288
1b5daf11
MD
289static int mlx5_use_mad_ifc(struct mlx5_ib_dev *dev)
290{
d603c809 291 return !MLX5_CAP_GEN(dev->mdev, ib_virt);
1b5daf11
MD
292}
293
294enum {
295 MLX5_VPORT_ACCESS_METHOD_MAD,
296 MLX5_VPORT_ACCESS_METHOD_HCA,
297 MLX5_VPORT_ACCESS_METHOD_NIC,
298};
299
300static int mlx5_get_vport_access_method(struct ib_device *ibdev)
301{
302 if (mlx5_use_mad_ifc(to_mdev(ibdev)))
303 return MLX5_VPORT_ACCESS_METHOD_MAD;
304
ebd61f68 305 if (mlx5_ib_port_link_layer(ibdev, 1) ==
1b5daf11
MD
306 IB_LINK_LAYER_ETHERNET)
307 return MLX5_VPORT_ACCESS_METHOD_NIC;
308
309 return MLX5_VPORT_ACCESS_METHOD_HCA;
310}
311
da7525d2
EBE
312static void get_atomic_caps(struct mlx5_ib_dev *dev,
313 struct ib_device_attr *props)
314{
315 u8 tmp;
316 u8 atomic_operations = MLX5_CAP_ATOMIC(dev->mdev, atomic_operations);
317 u8 atomic_size_qp = MLX5_CAP_ATOMIC(dev->mdev, atomic_size_qp);
318 u8 atomic_req_8B_endianness_mode =
319 MLX5_CAP_ATOMIC(dev->mdev, atomic_req_8B_endianess_mode);
320
321 /* Check if HW supports 8 bytes standard atomic operations and capable
322 * of host endianness respond
323 */
324 tmp = MLX5_ATOMIC_OPS_CMP_SWAP | MLX5_ATOMIC_OPS_FETCH_ADD;
325 if (((atomic_operations & tmp) == tmp) &&
326 (atomic_size_qp & MLX5_ATOMIC_SIZE_QP_8BYTES) &&
327 (atomic_req_8B_endianness_mode)) {
328 props->atomic_cap = IB_ATOMIC_HCA;
329 } else {
330 props->atomic_cap = IB_ATOMIC_NONE;
331 }
332}
333
1b5daf11
MD
334static int mlx5_query_system_image_guid(struct ib_device *ibdev,
335 __be64 *sys_image_guid)
336{
337 struct mlx5_ib_dev *dev = to_mdev(ibdev);
338 struct mlx5_core_dev *mdev = dev->mdev;
339 u64 tmp;
340 int err;
341
342 switch (mlx5_get_vport_access_method(ibdev)) {
343 case MLX5_VPORT_ACCESS_METHOD_MAD:
344 return mlx5_query_mad_ifc_system_image_guid(ibdev,
345 sys_image_guid);
346
347 case MLX5_VPORT_ACCESS_METHOD_HCA:
348 err = mlx5_query_hca_vport_system_image_guid(mdev, &tmp);
3f89a643
AS
349 break;
350
351 case MLX5_VPORT_ACCESS_METHOD_NIC:
352 err = mlx5_query_nic_vport_system_image_guid(mdev, &tmp);
353 break;
1b5daf11
MD
354
355 default:
356 return -EINVAL;
357 }
3f89a643
AS
358
359 if (!err)
360 *sys_image_guid = cpu_to_be64(tmp);
361
362 return err;
363
1b5daf11
MD
364}
365
366static int mlx5_query_max_pkeys(struct ib_device *ibdev,
367 u16 *max_pkeys)
368{
369 struct mlx5_ib_dev *dev = to_mdev(ibdev);
370 struct mlx5_core_dev *mdev = dev->mdev;
371
372 switch (mlx5_get_vport_access_method(ibdev)) {
373 case MLX5_VPORT_ACCESS_METHOD_MAD:
374 return mlx5_query_mad_ifc_max_pkeys(ibdev, max_pkeys);
375
376 case MLX5_VPORT_ACCESS_METHOD_HCA:
377 case MLX5_VPORT_ACCESS_METHOD_NIC:
378 *max_pkeys = mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev,
379 pkey_table_size));
380 return 0;
381
382 default:
383 return -EINVAL;
384 }
385}
386
387static int mlx5_query_vendor_id(struct ib_device *ibdev,
388 u32 *vendor_id)
389{
390 struct mlx5_ib_dev *dev = to_mdev(ibdev);
391
392 switch (mlx5_get_vport_access_method(ibdev)) {
393 case MLX5_VPORT_ACCESS_METHOD_MAD:
394 return mlx5_query_mad_ifc_vendor_id(ibdev, vendor_id);
395
396 case MLX5_VPORT_ACCESS_METHOD_HCA:
397 case MLX5_VPORT_ACCESS_METHOD_NIC:
398 return mlx5_core_query_vendor_id(dev->mdev, vendor_id);
399
400 default:
401 return -EINVAL;
402 }
403}
404
405static int mlx5_query_node_guid(struct mlx5_ib_dev *dev,
406 __be64 *node_guid)
407{
408 u64 tmp;
409 int err;
410
411 switch (mlx5_get_vport_access_method(&dev->ib_dev)) {
412 case MLX5_VPORT_ACCESS_METHOD_MAD:
413 return mlx5_query_mad_ifc_node_guid(dev, node_guid);
414
415 case MLX5_VPORT_ACCESS_METHOD_HCA:
416 err = mlx5_query_hca_vport_node_guid(dev->mdev, &tmp);
3f89a643
AS
417 break;
418
419 case MLX5_VPORT_ACCESS_METHOD_NIC:
420 err = mlx5_query_nic_vport_node_guid(dev->mdev, &tmp);
421 break;
1b5daf11
MD
422
423 default:
424 return -EINVAL;
425 }
3f89a643
AS
426
427 if (!err)
428 *node_guid = cpu_to_be64(tmp);
429
430 return err;
1b5daf11
MD
431}
432
433struct mlx5_reg_node_desc {
434 u8 desc[64];
435};
436
437static int mlx5_query_node_desc(struct mlx5_ib_dev *dev, char *node_desc)
438{
439 struct mlx5_reg_node_desc in;
440
441 if (mlx5_use_mad_ifc(dev))
442 return mlx5_query_mad_ifc_node_desc(dev, node_desc);
443
444 memset(&in, 0, sizeof(in));
445
446 return mlx5_core_access_reg(dev->mdev, &in, sizeof(in), node_desc,
447 sizeof(struct mlx5_reg_node_desc),
448 MLX5_REG_NODE_DESC, 0, 0);
449}
450
e126ba97 451static int mlx5_ib_query_device(struct ib_device *ibdev,
2528e33e
MB
452 struct ib_device_attr *props,
453 struct ib_udata *uhw)
e126ba97
EC
454{
455 struct mlx5_ib_dev *dev = to_mdev(ibdev);
938fe83c 456 struct mlx5_core_dev *mdev = dev->mdev;
e126ba97
EC
457 int err = -ENOMEM;
458 int max_rq_sg;
459 int max_sq_sg;
e0238a6a 460 u64 min_page_size = 1ull << MLX5_CAP_GEN(mdev, log_pg_sz);
402ca536
BW
461 struct mlx5_ib_query_device_resp resp = {};
462 size_t resp_len;
463 u64 max_tso;
e126ba97 464
402ca536
BW
465 resp_len = sizeof(resp.comp_mask) + sizeof(resp.response_length);
466 if (uhw->outlen && uhw->outlen < resp_len)
467 return -EINVAL;
468 else
469 resp.response_length = resp_len;
470
471 if (uhw->inlen && !ib_is_udata_cleared(uhw, 0, uhw->inlen))
2528e33e
MB
472 return -EINVAL;
473
1b5daf11
MD
474 memset(props, 0, sizeof(*props));
475 err = mlx5_query_system_image_guid(ibdev,
476 &props->sys_image_guid);
477 if (err)
478 return err;
e126ba97 479
1b5daf11 480 err = mlx5_query_max_pkeys(ibdev, &props->max_pkeys);
e126ba97 481 if (err)
1b5daf11 482 return err;
e126ba97 483
1b5daf11
MD
484 err = mlx5_query_vendor_id(ibdev, &props->vendor_id);
485 if (err)
486 return err;
e126ba97 487
9603b61d
JM
488 props->fw_ver = ((u64)fw_rev_maj(dev->mdev) << 32) |
489 (fw_rev_min(dev->mdev) << 16) |
490 fw_rev_sub(dev->mdev);
e126ba97
EC
491 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
492 IB_DEVICE_PORT_ACTIVE_EVENT |
493 IB_DEVICE_SYS_IMAGE_GUID |
1a4c3a3d 494 IB_DEVICE_RC_RNR_NAK_GEN;
938fe83c
SM
495
496 if (MLX5_CAP_GEN(mdev, pkv))
e126ba97 497 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
938fe83c 498 if (MLX5_CAP_GEN(mdev, qkv))
e126ba97 499 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
938fe83c 500 if (MLX5_CAP_GEN(mdev, apm))
e126ba97 501 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
938fe83c 502 if (MLX5_CAP_GEN(mdev, xrc))
e126ba97 503 props->device_cap_flags |= IB_DEVICE_XRC;
d2370e0a
MB
504 if (MLX5_CAP_GEN(mdev, imaicl)) {
505 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW |
506 IB_DEVICE_MEM_WINDOW_TYPE_2B;
507 props->max_mw = 1 << MLX5_CAP_GEN(mdev, log_max_mkey);
b005d316
SG
508 /* We support 'Gappy' memory registration too */
509 props->device_cap_flags |= IB_DEVICE_SG_GAPS_REG;
d2370e0a 510 }
e126ba97 511 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
938fe83c 512 if (MLX5_CAP_GEN(mdev, sho)) {
2dea9094
SG
513 props->device_cap_flags |= IB_DEVICE_SIGNATURE_HANDOVER;
514 /* At this stage no support for signature handover */
515 props->sig_prot_cap = IB_PROT_T10DIF_TYPE_1 |
516 IB_PROT_T10DIF_TYPE_2 |
517 IB_PROT_T10DIF_TYPE_3;
518 props->sig_guard_cap = IB_GUARD_T10DIF_CRC |
519 IB_GUARD_T10DIF_CSUM;
520 }
938fe83c 521 if (MLX5_CAP_GEN(mdev, block_lb_mc))
f360d88a 522 props->device_cap_flags |= IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
e126ba97 523
402ca536
BW
524 if (MLX5_CAP_GEN(dev->mdev, eth_net_offloads)) {
525 if (MLX5_CAP_ETH(mdev, csum_cap))
88115fe7
BW
526 props->device_cap_flags |= IB_DEVICE_RAW_IP_CSUM;
527
402ca536
BW
528 if (field_avail(typeof(resp), tso_caps, uhw->outlen)) {
529 max_tso = MLX5_CAP_ETH(mdev, max_lso_cap);
530 if (max_tso) {
531 resp.tso_caps.max_tso = 1 << max_tso;
532 resp.tso_caps.supported_qpts |=
533 1 << IB_QPT_RAW_PACKET;
534 resp.response_length += sizeof(resp.tso_caps);
535 }
536 }
537 }
538
f0313965
ES
539 if (MLX5_CAP_GEN(mdev, ipoib_basic_offloads)) {
540 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
541 props->device_cap_flags |= IB_DEVICE_UD_TSO;
542 }
543
cff5a0f3
MD
544 if (MLX5_CAP_GEN(dev->mdev, eth_net_offloads) &&
545 MLX5_CAP_ETH(dev->mdev, scatter_fcs))
546 props->device_cap_flags |= IB_DEVICE_RAW_SCATTER_FCS;
547
da6d6ba3
MG
548 if (mlx5_get_flow_namespace(dev->mdev, MLX5_FLOW_NAMESPACE_BYPASS))
549 props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
550
1b5daf11
MD
551 props->vendor_part_id = mdev->pdev->device;
552 props->hw_ver = mdev->pdev->revision;
e126ba97
EC
553
554 props->max_mr_size = ~0ull;
e0238a6a 555 props->page_size_cap = ~(min_page_size - 1);
938fe83c
SM
556 props->max_qp = 1 << MLX5_CAP_GEN(mdev, log_max_qp);
557 props->max_qp_wr = 1 << MLX5_CAP_GEN(mdev, log_max_qp_sz);
558 max_rq_sg = MLX5_CAP_GEN(mdev, max_wqe_sz_rq) /
559 sizeof(struct mlx5_wqe_data_seg);
560 max_sq_sg = (MLX5_CAP_GEN(mdev, max_wqe_sz_sq) -
561 sizeof(struct mlx5_wqe_ctrl_seg)) /
562 sizeof(struct mlx5_wqe_data_seg);
e126ba97 563 props->max_sge = min(max_rq_sg, max_sq_sg);
986ef95e 564 props->max_sge_rd = MLX5_MAX_SGE_RD;
938fe83c 565 props->max_cq = 1 << MLX5_CAP_GEN(mdev, log_max_cq);
9f177686 566 props->max_cqe = (1 << MLX5_CAP_GEN(mdev, log_max_cq_sz)) - 1;
938fe83c
SM
567 props->max_mr = 1 << MLX5_CAP_GEN(mdev, log_max_mkey);
568 props->max_pd = 1 << MLX5_CAP_GEN(mdev, log_max_pd);
569 props->max_qp_rd_atom = 1 << MLX5_CAP_GEN(mdev, log_max_ra_req_qp);
570 props->max_qp_init_rd_atom = 1 << MLX5_CAP_GEN(mdev, log_max_ra_res_qp);
571 props->max_srq = 1 << MLX5_CAP_GEN(mdev, log_max_srq);
572 props->max_srq_wr = (1 << MLX5_CAP_GEN(mdev, log_max_srq_sz)) - 1;
573 props->local_ca_ack_delay = MLX5_CAP_GEN(mdev, local_ca_ack_delay);
e126ba97 574 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
e126ba97 575 props->max_srq_sge = max_rq_sg - 1;
911f4331
SG
576 props->max_fast_reg_page_list_len =
577 1 << MLX5_CAP_GEN(mdev, log_max_klm_list_size);
da7525d2 578 get_atomic_caps(dev, props);
81bea28f 579 props->masked_atomic_cap = IB_ATOMIC_NONE;
938fe83c
SM
580 props->max_mcast_grp = 1 << MLX5_CAP_GEN(mdev, log_max_mcg);
581 props->max_mcast_qp_attach = MLX5_CAP_GEN(mdev, max_qp_mcg);
e126ba97
EC
582 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
583 props->max_mcast_grp;
584 props->max_map_per_fmr = INT_MAX; /* no limit in ConnectIB */
7c60bcbb
MB
585 props->hca_core_clock = MLX5_CAP_GEN(mdev, device_frequency_khz);
586 props->timestamp_mask = 0x7FFFFFFFFFFFFFFFULL;
e126ba97 587
8cdd312c 588#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
938fe83c 589 if (MLX5_CAP_GEN(mdev, pg))
8cdd312c
HE
590 props->device_cap_flags |= IB_DEVICE_ON_DEMAND_PAGING;
591 props->odp_caps = dev->odp_caps;
592#endif
593
051f2630
LR
594 if (MLX5_CAP_GEN(mdev, cd))
595 props->device_cap_flags |= IB_DEVICE_CROSS_CHANNEL;
596
eff901d3
EC
597 if (!mlx5_core_is_pf(mdev))
598 props->device_cap_flags |= IB_DEVICE_VIRTUAL_FUNCTION;
599
402ca536
BW
600 if (uhw->outlen) {
601 err = ib_copy_to_udata(uhw, &resp, resp.response_length);
602
603 if (err)
604 return err;
605 }
606
1b5daf11 607 return 0;
e126ba97
EC
608}
609
1b5daf11
MD
610enum mlx5_ib_width {
611 MLX5_IB_WIDTH_1X = 1 << 0,
612 MLX5_IB_WIDTH_2X = 1 << 1,
613 MLX5_IB_WIDTH_4X = 1 << 2,
614 MLX5_IB_WIDTH_8X = 1 << 3,
615 MLX5_IB_WIDTH_12X = 1 << 4
616};
617
618static int translate_active_width(struct ib_device *ibdev, u8 active_width,
619 u8 *ib_width)
e126ba97
EC
620{
621 struct mlx5_ib_dev *dev = to_mdev(ibdev);
1b5daf11
MD
622 int err = 0;
623
624 if (active_width & MLX5_IB_WIDTH_1X) {
625 *ib_width = IB_WIDTH_1X;
626 } else if (active_width & MLX5_IB_WIDTH_2X) {
627 mlx5_ib_dbg(dev, "active_width %d is not supported by IB spec\n",
628 (int)active_width);
629 err = -EINVAL;
630 } else if (active_width & MLX5_IB_WIDTH_4X) {
631 *ib_width = IB_WIDTH_4X;
632 } else if (active_width & MLX5_IB_WIDTH_8X) {
633 *ib_width = IB_WIDTH_8X;
634 } else if (active_width & MLX5_IB_WIDTH_12X) {
635 *ib_width = IB_WIDTH_12X;
636 } else {
637 mlx5_ib_dbg(dev, "Invalid active_width %d\n",
638 (int)active_width);
639 err = -EINVAL;
e126ba97
EC
640 }
641
1b5daf11
MD
642 return err;
643}
e126ba97 644
1b5daf11
MD
645static int mlx5_mtu_to_ib_mtu(int mtu)
646{
647 switch (mtu) {
648 case 256: return 1;
649 case 512: return 2;
650 case 1024: return 3;
651 case 2048: return 4;
652 case 4096: return 5;
653 default:
654 pr_warn("invalid mtu\n");
655 return -1;
e126ba97 656 }
1b5daf11 657}
e126ba97 658
1b5daf11
MD
659enum ib_max_vl_num {
660 __IB_MAX_VL_0 = 1,
661 __IB_MAX_VL_0_1 = 2,
662 __IB_MAX_VL_0_3 = 3,
663 __IB_MAX_VL_0_7 = 4,
664 __IB_MAX_VL_0_14 = 5,
665};
e126ba97 666
1b5daf11
MD
667enum mlx5_vl_hw_cap {
668 MLX5_VL_HW_0 = 1,
669 MLX5_VL_HW_0_1 = 2,
670 MLX5_VL_HW_0_2 = 3,
671 MLX5_VL_HW_0_3 = 4,
672 MLX5_VL_HW_0_4 = 5,
673 MLX5_VL_HW_0_5 = 6,
674 MLX5_VL_HW_0_6 = 7,
675 MLX5_VL_HW_0_7 = 8,
676 MLX5_VL_HW_0_14 = 15
677};
e126ba97 678
1b5daf11
MD
679static int translate_max_vl_num(struct ib_device *ibdev, u8 vl_hw_cap,
680 u8 *max_vl_num)
681{
682 switch (vl_hw_cap) {
683 case MLX5_VL_HW_0:
684 *max_vl_num = __IB_MAX_VL_0;
685 break;
686 case MLX5_VL_HW_0_1:
687 *max_vl_num = __IB_MAX_VL_0_1;
688 break;
689 case MLX5_VL_HW_0_3:
690 *max_vl_num = __IB_MAX_VL_0_3;
691 break;
692 case MLX5_VL_HW_0_7:
693 *max_vl_num = __IB_MAX_VL_0_7;
694 break;
695 case MLX5_VL_HW_0_14:
696 *max_vl_num = __IB_MAX_VL_0_14;
697 break;
e126ba97 698
1b5daf11
MD
699 default:
700 return -EINVAL;
e126ba97 701 }
e126ba97 702
1b5daf11 703 return 0;
e126ba97
EC
704}
705
1b5daf11
MD
706static int mlx5_query_hca_port(struct ib_device *ibdev, u8 port,
707 struct ib_port_attr *props)
e126ba97 708{
1b5daf11
MD
709 struct mlx5_ib_dev *dev = to_mdev(ibdev);
710 struct mlx5_core_dev *mdev = dev->mdev;
711 struct mlx5_hca_vport_context *rep;
046339ea
SM
712 u16 max_mtu;
713 u16 oper_mtu;
1b5daf11
MD
714 int err;
715 u8 ib_link_width_oper;
716 u8 vl_hw_cap;
e126ba97 717
1b5daf11
MD
718 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
719 if (!rep) {
720 err = -ENOMEM;
e126ba97 721 goto out;
e126ba97 722 }
e126ba97 723
1b5daf11 724 memset(props, 0, sizeof(*props));
e126ba97 725
1b5daf11 726 err = mlx5_query_hca_vport_context(mdev, 0, port, 0, rep);
e126ba97
EC
727 if (err)
728 goto out;
729
1b5daf11
MD
730 props->lid = rep->lid;
731 props->lmc = rep->lmc;
732 props->sm_lid = rep->sm_lid;
733 props->sm_sl = rep->sm_sl;
734 props->state = rep->vport_state;
735 props->phys_state = rep->port_physical_state;
736 props->port_cap_flags = rep->cap_mask1;
737 props->gid_tbl_len = mlx5_get_gid_table_len(MLX5_CAP_GEN(mdev, gid_table_size));
738 props->max_msg_sz = 1 << MLX5_CAP_GEN(mdev, log_max_msg);
739 props->pkey_tbl_len = mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev, pkey_table_size));
740 props->bad_pkey_cntr = rep->pkey_violation_counter;
741 props->qkey_viol_cntr = rep->qkey_violation_counter;
742 props->subnet_timeout = rep->subnet_timeout;
743 props->init_type_reply = rep->init_type_reply;
eff901d3 744 props->grh_required = rep->grh_required;
e126ba97 745
1b5daf11
MD
746 err = mlx5_query_port_link_width_oper(mdev, &ib_link_width_oper, port);
747 if (err)
e126ba97 748 goto out;
e126ba97 749
1b5daf11
MD
750 err = translate_active_width(ibdev, ib_link_width_oper,
751 &props->active_width);
752 if (err)
753 goto out;
754 err = mlx5_query_port_proto_oper(mdev, &props->active_speed, MLX5_PTYS_IB,
755 port);
e126ba97
EC
756 if (err)
757 goto out;
758
facc9699 759 mlx5_query_port_max_mtu(mdev, &max_mtu, port);
e126ba97 760
1b5daf11 761 props->max_mtu = mlx5_mtu_to_ib_mtu(max_mtu);
e126ba97 762
facc9699 763 mlx5_query_port_oper_mtu(mdev, &oper_mtu, port);
e126ba97 764
1b5daf11 765 props->active_mtu = mlx5_mtu_to_ib_mtu(oper_mtu);
e126ba97 766
1b5daf11
MD
767 err = mlx5_query_port_vl_hw_cap(mdev, &vl_hw_cap, port);
768 if (err)
769 goto out;
e126ba97 770
1b5daf11
MD
771 err = translate_max_vl_num(ibdev, vl_hw_cap,
772 &props->max_vl_num);
e126ba97 773out:
1b5daf11 774 kfree(rep);
e126ba97
EC
775 return err;
776}
777
1b5daf11
MD
778int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
779 struct ib_port_attr *props)
e126ba97 780{
1b5daf11
MD
781 switch (mlx5_get_vport_access_method(ibdev)) {
782 case MLX5_VPORT_ACCESS_METHOD_MAD:
783 return mlx5_query_mad_ifc_port(ibdev, port, props);
e126ba97 784
1b5daf11
MD
785 case MLX5_VPORT_ACCESS_METHOD_HCA:
786 return mlx5_query_hca_port(ibdev, port, props);
e126ba97 787
3f89a643
AS
788 case MLX5_VPORT_ACCESS_METHOD_NIC:
789 return mlx5_query_port_roce(ibdev, port, props);
790
1b5daf11
MD
791 default:
792 return -EINVAL;
793 }
794}
e126ba97 795
1b5daf11
MD
796static int mlx5_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
797 union ib_gid *gid)
798{
799 struct mlx5_ib_dev *dev = to_mdev(ibdev);
800 struct mlx5_core_dev *mdev = dev->mdev;
e126ba97 801
1b5daf11
MD
802 switch (mlx5_get_vport_access_method(ibdev)) {
803 case MLX5_VPORT_ACCESS_METHOD_MAD:
804 return mlx5_query_mad_ifc_gids(ibdev, port, index, gid);
e126ba97 805
1b5daf11
MD
806 case MLX5_VPORT_ACCESS_METHOD_HCA:
807 return mlx5_query_hca_vport_gid(mdev, 0, port, 0, index, gid);
808
809 default:
810 return -EINVAL;
811 }
e126ba97 812
e126ba97
EC
813}
814
1b5daf11
MD
815static int mlx5_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
816 u16 *pkey)
817{
818 struct mlx5_ib_dev *dev = to_mdev(ibdev);
819 struct mlx5_core_dev *mdev = dev->mdev;
820
821 switch (mlx5_get_vport_access_method(ibdev)) {
822 case MLX5_VPORT_ACCESS_METHOD_MAD:
823 return mlx5_query_mad_ifc_pkey(ibdev, port, index, pkey);
824
825 case MLX5_VPORT_ACCESS_METHOD_HCA:
826 case MLX5_VPORT_ACCESS_METHOD_NIC:
827 return mlx5_query_hca_vport_pkey(mdev, 0, port, 0, index,
828 pkey);
829 default:
830 return -EINVAL;
831 }
832}
e126ba97
EC
833
834static int mlx5_ib_modify_device(struct ib_device *ibdev, int mask,
835 struct ib_device_modify *props)
836{
837 struct mlx5_ib_dev *dev = to_mdev(ibdev);
838 struct mlx5_reg_node_desc in;
839 struct mlx5_reg_node_desc out;
840 int err;
841
842 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
843 return -EOPNOTSUPP;
844
845 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
846 return 0;
847
848 /*
849 * If possible, pass node desc to FW, so it can generate
850 * a 144 trap. If cmd fails, just ignore.
851 */
852 memcpy(&in, props->node_desc, 64);
9603b61d 853 err = mlx5_core_access_reg(dev->mdev, &in, sizeof(in), &out,
e126ba97
EC
854 sizeof(out), MLX5_REG_NODE_DESC, 0, 1);
855 if (err)
856 return err;
857
858 memcpy(ibdev->node_desc, props->node_desc, 64);
859
860 return err;
861}
862
863static int mlx5_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
864 struct ib_port_modify *props)
865{
866 struct mlx5_ib_dev *dev = to_mdev(ibdev);
867 struct ib_port_attr attr;
868 u32 tmp;
869 int err;
870
871 mutex_lock(&dev->cap_mask_mutex);
872
873 err = mlx5_ib_query_port(ibdev, port, &attr);
874 if (err)
875 goto out;
876
877 tmp = (attr.port_cap_flags | props->set_port_cap_mask) &
878 ~props->clr_port_cap_mask;
879
9603b61d 880 err = mlx5_set_port_caps(dev->mdev, port, tmp);
e126ba97
EC
881
882out:
883 mutex_unlock(&dev->cap_mask_mutex);
884 return err;
885}
886
887static struct ib_ucontext *mlx5_ib_alloc_ucontext(struct ib_device *ibdev,
888 struct ib_udata *udata)
889{
890 struct mlx5_ib_dev *dev = to_mdev(ibdev);
b368d7cb
MB
891 struct mlx5_ib_alloc_ucontext_req_v2 req = {};
892 struct mlx5_ib_alloc_ucontext_resp resp = {};
e126ba97
EC
893 struct mlx5_ib_ucontext *context;
894 struct mlx5_uuar_info *uuari;
895 struct mlx5_uar *uars;
c1be5232 896 int gross_uuars;
e126ba97 897 int num_uars;
78c0f98c 898 int ver;
e126ba97
EC
899 int uuarn;
900 int err;
901 int i;
f241e749 902 size_t reqlen;
a168a41c
MD
903 size_t min_req_v2 = offsetof(struct mlx5_ib_alloc_ucontext_req_v2,
904 max_cqe_version);
e126ba97
EC
905
906 if (!dev->ib_active)
907 return ERR_PTR(-EAGAIN);
908
dfbee859
HA
909 if (udata->inlen < sizeof(struct ib_uverbs_cmd_hdr))
910 return ERR_PTR(-EINVAL);
911
78c0f98c
EC
912 reqlen = udata->inlen - sizeof(struct ib_uverbs_cmd_hdr);
913 if (reqlen == sizeof(struct mlx5_ib_alloc_ucontext_req))
914 ver = 0;
a168a41c 915 else if (reqlen >= min_req_v2)
78c0f98c
EC
916 ver = 2;
917 else
918 return ERR_PTR(-EINVAL);
919
b368d7cb 920 err = ib_copy_from_udata(&req, udata, min(reqlen, sizeof(req)));
e126ba97
EC
921 if (err)
922 return ERR_PTR(err);
923
b368d7cb 924 if (req.flags)
78c0f98c
EC
925 return ERR_PTR(-EINVAL);
926
e126ba97
EC
927 if (req.total_num_uuars > MLX5_MAX_UUARS)
928 return ERR_PTR(-ENOMEM);
929
930 if (req.total_num_uuars == 0)
931 return ERR_PTR(-EINVAL);
932
f72300c5 933 if (req.comp_mask || req.reserved0 || req.reserved1 || req.reserved2)
b368d7cb
MB
934 return ERR_PTR(-EOPNOTSUPP);
935
936 if (reqlen > sizeof(req) &&
937 !ib_is_udata_cleared(udata, sizeof(req),
dfbee859 938 reqlen - sizeof(req)))
b368d7cb
MB
939 return ERR_PTR(-EOPNOTSUPP);
940
c1be5232
EC
941 req.total_num_uuars = ALIGN(req.total_num_uuars,
942 MLX5_NON_FP_BF_REGS_PER_PAGE);
e126ba97
EC
943 if (req.num_low_latency_uuars > req.total_num_uuars - 1)
944 return ERR_PTR(-EINVAL);
945
c1be5232
EC
946 num_uars = req.total_num_uuars / MLX5_NON_FP_BF_REGS_PER_PAGE;
947 gross_uuars = num_uars * MLX5_BF_REGS_PER_PAGE;
938fe83c 948 resp.qp_tab_size = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp);
2cc6ad5f
NO
949 if (mlx5_core_is_pf(dev->mdev) && MLX5_CAP_GEN(dev->mdev, bf))
950 resp.bf_reg_size = 1 << MLX5_CAP_GEN(dev->mdev, log_bf_reg_size);
938fe83c
SM
951 resp.cache_line_size = L1_CACHE_BYTES;
952 resp.max_sq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_sq);
953 resp.max_rq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_rq);
954 resp.max_send_wqebb = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
955 resp.max_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
956 resp.max_srq_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_srq_sz);
f72300c5
HA
957 resp.cqe_version = min_t(__u8,
958 (__u8)MLX5_CAP_GEN(dev->mdev, cqe_version),
959 req.max_cqe_version);
b368d7cb
MB
960 resp.response_length = min(offsetof(typeof(resp), response_length) +
961 sizeof(resp.response_length), udata->outlen);
e126ba97
EC
962
963 context = kzalloc(sizeof(*context), GFP_KERNEL);
964 if (!context)
965 return ERR_PTR(-ENOMEM);
966
967 uuari = &context->uuari;
968 mutex_init(&uuari->lock);
969 uars = kcalloc(num_uars, sizeof(*uars), GFP_KERNEL);
970 if (!uars) {
971 err = -ENOMEM;
972 goto out_ctx;
973 }
974
c1be5232 975 uuari->bitmap = kcalloc(BITS_TO_LONGS(gross_uuars),
e126ba97
EC
976 sizeof(*uuari->bitmap),
977 GFP_KERNEL);
978 if (!uuari->bitmap) {
979 err = -ENOMEM;
980 goto out_uar_ctx;
981 }
982 /*
983 * clear all fast path uuars
984 */
c1be5232 985 for (i = 0; i < gross_uuars; i++) {
e126ba97
EC
986 uuarn = i & 3;
987 if (uuarn == 2 || uuarn == 3)
988 set_bit(i, uuari->bitmap);
989 }
990
c1be5232 991 uuari->count = kcalloc(gross_uuars, sizeof(*uuari->count), GFP_KERNEL);
e126ba97
EC
992 if (!uuari->count) {
993 err = -ENOMEM;
994 goto out_bitmap;
995 }
996
997 for (i = 0; i < num_uars; i++) {
9603b61d 998 err = mlx5_cmd_alloc_uar(dev->mdev, &uars[i].index);
e126ba97
EC
999 if (err)
1000 goto out_count;
1001 }
1002
b4cfe447
HE
1003#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1004 context->ibucontext.invalidate_range = &mlx5_ib_invalidate_range;
1005#endif
1006
146d2f1a 1007 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain)) {
1008 err = mlx5_core_alloc_transport_domain(dev->mdev,
1009 &context->tdn);
1010 if (err)
1011 goto out_uars;
1012 }
1013
7c2344c3 1014 INIT_LIST_HEAD(&context->vma_private_list);
e126ba97
EC
1015 INIT_LIST_HEAD(&context->db_page_list);
1016 mutex_init(&context->db_page_mutex);
1017
1018 resp.tot_uuars = req.total_num_uuars;
938fe83c 1019 resp.num_ports = MLX5_CAP_GEN(dev->mdev, num_ports);
b368d7cb 1020
f72300c5
HA
1021 if (field_avail(typeof(resp), cqe_version, udata->outlen))
1022 resp.response_length += sizeof(resp.cqe_version);
b368d7cb 1023
402ca536
BW
1024 if (field_avail(typeof(resp), cmds_supp_uhw, udata->outlen)) {
1025 resp.cmds_supp_uhw |= MLX5_USER_CMDS_SUPP_UHW_QUERY_DEVICE;
1026 resp.response_length += sizeof(resp.cmds_supp_uhw);
1027 }
1028
bc5c6eed
NO
1029 /*
1030 * We don't want to expose information from the PCI bar that is located
1031 * after 4096 bytes, so if the arch only supports larger pages, let's
1032 * pretend we don't support reading the HCA's core clock. This is also
1033 * forced by mmap function.
1034 */
1035 if (PAGE_SIZE <= 4096 &&
1036 field_avail(typeof(resp), hca_core_clock_offset, udata->outlen)) {
b368d7cb
MB
1037 resp.comp_mask |=
1038 MLX5_IB_ALLOC_UCONTEXT_RESP_MASK_CORE_CLOCK_OFFSET;
1039 resp.hca_core_clock_offset =
1040 offsetof(struct mlx5_init_seg, internal_timer_h) %
1041 PAGE_SIZE;
f72300c5 1042 resp.response_length += sizeof(resp.hca_core_clock_offset) +
402ca536 1043 sizeof(resp.reserved2);
b368d7cb
MB
1044 }
1045
1046 err = ib_copy_to_udata(udata, &resp, resp.response_length);
e126ba97 1047 if (err)
146d2f1a 1048 goto out_td;
e126ba97 1049
78c0f98c 1050 uuari->ver = ver;
e126ba97
EC
1051 uuari->num_low_latency_uuars = req.num_low_latency_uuars;
1052 uuari->uars = uars;
1053 uuari->num_uars = num_uars;
f72300c5
HA
1054 context->cqe_version = resp.cqe_version;
1055
e126ba97
EC
1056 return &context->ibucontext;
1057
146d2f1a 1058out_td:
1059 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain))
1060 mlx5_core_dealloc_transport_domain(dev->mdev, context->tdn);
1061
e126ba97
EC
1062out_uars:
1063 for (i--; i >= 0; i--)
9603b61d 1064 mlx5_cmd_free_uar(dev->mdev, uars[i].index);
e126ba97
EC
1065out_count:
1066 kfree(uuari->count);
1067
1068out_bitmap:
1069 kfree(uuari->bitmap);
1070
1071out_uar_ctx:
1072 kfree(uars);
1073
1074out_ctx:
1075 kfree(context);
1076 return ERR_PTR(err);
1077}
1078
1079static int mlx5_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
1080{
1081 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1082 struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
1083 struct mlx5_uuar_info *uuari = &context->uuari;
1084 int i;
1085
146d2f1a 1086 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain))
1087 mlx5_core_dealloc_transport_domain(dev->mdev, context->tdn);
1088
e126ba97 1089 for (i = 0; i < uuari->num_uars; i++) {
9603b61d 1090 if (mlx5_cmd_free_uar(dev->mdev, uuari->uars[i].index))
e126ba97
EC
1091 mlx5_ib_warn(dev, "failed to free UAR 0x%x\n", uuari->uars[i].index);
1092 }
1093
1094 kfree(uuari->count);
1095 kfree(uuari->bitmap);
1096 kfree(uuari->uars);
1097 kfree(context);
1098
1099 return 0;
1100}
1101
1102static phys_addr_t uar_index2pfn(struct mlx5_ib_dev *dev, int index)
1103{
9603b61d 1104 return (pci_resource_start(dev->mdev->pdev, 0) >> PAGE_SHIFT) + index;
e126ba97
EC
1105}
1106
1107static int get_command(unsigned long offset)
1108{
1109 return (offset >> MLX5_IB_MMAP_CMD_SHIFT) & MLX5_IB_MMAP_CMD_MASK;
1110}
1111
1112static int get_arg(unsigned long offset)
1113{
1114 return offset & ((1 << MLX5_IB_MMAP_CMD_SHIFT) - 1);
1115}
1116
1117static int get_index(unsigned long offset)
1118{
1119 return get_arg(offset);
1120}
1121
7c2344c3
MG
1122static void mlx5_ib_vma_open(struct vm_area_struct *area)
1123{
1124 /* vma_open is called when a new VMA is created on top of our VMA. This
1125 * is done through either mremap flow or split_vma (usually due to
1126 * mlock, madvise, munmap, etc.) We do not support a clone of the VMA,
1127 * as this VMA is strongly hardware related. Therefore we set the
1128 * vm_ops of the newly created/cloned VMA to NULL, to prevent it from
1129 * calling us again and trying to do incorrect actions. We assume that
1130 * the original VMA size is exactly a single page, and therefore all
1131 * "splitting" operation will not happen to it.
1132 */
1133 area->vm_ops = NULL;
1134}
1135
1136static void mlx5_ib_vma_close(struct vm_area_struct *area)
1137{
1138 struct mlx5_ib_vma_private_data *mlx5_ib_vma_priv_data;
1139
1140 /* It's guaranteed that all VMAs opened on a FD are closed before the
1141 * file itself is closed, therefore no sync is needed with the regular
1142 * closing flow. (e.g. mlx5 ib_dealloc_ucontext)
1143 * However need a sync with accessing the vma as part of
1144 * mlx5_ib_disassociate_ucontext.
1145 * The close operation is usually called under mm->mmap_sem except when
1146 * process is exiting.
1147 * The exiting case is handled explicitly as part of
1148 * mlx5_ib_disassociate_ucontext.
1149 */
1150 mlx5_ib_vma_priv_data = (struct mlx5_ib_vma_private_data *)area->vm_private_data;
1151
1152 /* setting the vma context pointer to null in the mlx5_ib driver's
1153 * private data, to protect a race condition in
1154 * mlx5_ib_disassociate_ucontext().
1155 */
1156 mlx5_ib_vma_priv_data->vma = NULL;
1157 list_del(&mlx5_ib_vma_priv_data->list);
1158 kfree(mlx5_ib_vma_priv_data);
1159}
1160
1161static const struct vm_operations_struct mlx5_ib_vm_ops = {
1162 .open = mlx5_ib_vma_open,
1163 .close = mlx5_ib_vma_close
1164};
1165
1166static int mlx5_ib_set_vma_data(struct vm_area_struct *vma,
1167 struct mlx5_ib_ucontext *ctx)
1168{
1169 struct mlx5_ib_vma_private_data *vma_prv;
1170 struct list_head *vma_head = &ctx->vma_private_list;
1171
1172 vma_prv = kzalloc(sizeof(*vma_prv), GFP_KERNEL);
1173 if (!vma_prv)
1174 return -ENOMEM;
1175
1176 vma_prv->vma = vma;
1177 vma->vm_private_data = vma_prv;
1178 vma->vm_ops = &mlx5_ib_vm_ops;
1179
1180 list_add(&vma_prv->list, vma_head);
1181
1182 return 0;
1183}
1184
1185static void mlx5_ib_disassociate_ucontext(struct ib_ucontext *ibcontext)
1186{
1187 int ret;
1188 struct vm_area_struct *vma;
1189 struct mlx5_ib_vma_private_data *vma_private, *n;
1190 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1191 struct task_struct *owning_process = NULL;
1192 struct mm_struct *owning_mm = NULL;
1193
1194 owning_process = get_pid_task(ibcontext->tgid, PIDTYPE_PID);
1195 if (!owning_process)
1196 return;
1197
1198 owning_mm = get_task_mm(owning_process);
1199 if (!owning_mm) {
1200 pr_info("no mm, disassociate ucontext is pending task termination\n");
1201 while (1) {
1202 put_task_struct(owning_process);
1203 usleep_range(1000, 2000);
1204 owning_process = get_pid_task(ibcontext->tgid,
1205 PIDTYPE_PID);
1206 if (!owning_process ||
1207 owning_process->state == TASK_DEAD) {
1208 pr_info("disassociate ucontext done, task was terminated\n");
1209 /* in case task was dead need to release the
1210 * task struct.
1211 */
1212 if (owning_process)
1213 put_task_struct(owning_process);
1214 return;
1215 }
1216 }
1217 }
1218
1219 /* need to protect from a race on closing the vma as part of
1220 * mlx5_ib_vma_close.
1221 */
1222 down_read(&owning_mm->mmap_sem);
1223 list_for_each_entry_safe(vma_private, n, &context->vma_private_list,
1224 list) {
1225 vma = vma_private->vma;
1226 ret = zap_vma_ptes(vma, vma->vm_start,
1227 PAGE_SIZE);
1228 WARN_ONCE(ret, "%s: zap_vma_ptes failed", __func__);
1229 /* context going to be destroyed, should
1230 * not access ops any more.
1231 */
1232 vma->vm_ops = NULL;
1233 list_del(&vma_private->list);
1234 kfree(vma_private);
1235 }
1236 up_read(&owning_mm->mmap_sem);
1237 mmput(owning_mm);
1238 put_task_struct(owning_process);
1239}
1240
37aa5c36
GL
1241static inline char *mmap_cmd2str(enum mlx5_ib_mmap_cmd cmd)
1242{
1243 switch (cmd) {
1244 case MLX5_IB_MMAP_WC_PAGE:
1245 return "WC";
1246 case MLX5_IB_MMAP_REGULAR_PAGE:
1247 return "best effort WC";
1248 case MLX5_IB_MMAP_NC_PAGE:
1249 return "NC";
1250 default:
1251 return NULL;
1252 }
1253}
1254
1255static int uar_mmap(struct mlx5_ib_dev *dev, enum mlx5_ib_mmap_cmd cmd,
7c2344c3
MG
1256 struct vm_area_struct *vma,
1257 struct mlx5_ib_ucontext *context)
37aa5c36 1258{
7c2344c3 1259 struct mlx5_uuar_info *uuari = &context->uuari;
37aa5c36
GL
1260 int err;
1261 unsigned long idx;
1262 phys_addr_t pfn, pa;
1263 pgprot_t prot;
1264
1265 switch (cmd) {
1266 case MLX5_IB_MMAP_WC_PAGE:
1267/* Some architectures don't support WC memory */
1268#if defined(CONFIG_X86)
1269 if (!pat_enabled())
1270 return -EPERM;
1271#elif !(defined(CONFIG_PPC) || (defined(CONFIG_ARM) && defined(CONFIG_MMU)))
1272 return -EPERM;
1273#endif
1274 /* fall through */
1275 case MLX5_IB_MMAP_REGULAR_PAGE:
1276 /* For MLX5_IB_MMAP_REGULAR_PAGE do the best effort to get WC */
1277 prot = pgprot_writecombine(vma->vm_page_prot);
1278 break;
1279 case MLX5_IB_MMAP_NC_PAGE:
1280 prot = pgprot_noncached(vma->vm_page_prot);
1281 break;
1282 default:
1283 return -EINVAL;
1284 }
1285
1286 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
1287 return -EINVAL;
1288
1289 idx = get_index(vma->vm_pgoff);
1290 if (idx >= uuari->num_uars)
1291 return -EINVAL;
1292
1293 pfn = uar_index2pfn(dev, uuari->uars[idx].index);
1294 mlx5_ib_dbg(dev, "uar idx 0x%lx, pfn %pa\n", idx, &pfn);
1295
1296 vma->vm_page_prot = prot;
1297 err = io_remap_pfn_range(vma, vma->vm_start, pfn,
1298 PAGE_SIZE, vma->vm_page_prot);
1299 if (err) {
1300 mlx5_ib_err(dev, "io_remap_pfn_range failed with error=%d, vm_start=0x%lx, pfn=%pa, mmap_cmd=%s\n",
1301 err, vma->vm_start, &pfn, mmap_cmd2str(cmd));
1302 return -EAGAIN;
1303 }
1304
1305 pa = pfn << PAGE_SHIFT;
1306 mlx5_ib_dbg(dev, "mapped %s at 0x%lx, PA %pa\n", mmap_cmd2str(cmd),
1307 vma->vm_start, &pa);
1308
7c2344c3 1309 return mlx5_ib_set_vma_data(vma, context);
37aa5c36
GL
1310}
1311
e126ba97
EC
1312static int mlx5_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma)
1313{
1314 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1315 struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
e126ba97 1316 unsigned long command;
e126ba97
EC
1317 phys_addr_t pfn;
1318
1319 command = get_command(vma->vm_pgoff);
1320 switch (command) {
37aa5c36
GL
1321 case MLX5_IB_MMAP_WC_PAGE:
1322 case MLX5_IB_MMAP_NC_PAGE:
e126ba97 1323 case MLX5_IB_MMAP_REGULAR_PAGE:
7c2344c3 1324 return uar_mmap(dev, command, vma, context);
e126ba97
EC
1325
1326 case MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES:
1327 return -ENOSYS;
1328
d69e3bcf 1329 case MLX5_IB_MMAP_CORE_CLOCK:
d69e3bcf
MB
1330 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
1331 return -EINVAL;
1332
6cbac1e4 1333 if (vma->vm_flags & VM_WRITE)
d69e3bcf
MB
1334 return -EPERM;
1335
1336 /* Don't expose to user-space information it shouldn't have */
1337 if (PAGE_SIZE > 4096)
1338 return -EOPNOTSUPP;
1339
1340 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1341 pfn = (dev->mdev->iseg_base +
1342 offsetof(struct mlx5_init_seg, internal_timer_h)) >>
1343 PAGE_SHIFT;
1344 if (io_remap_pfn_range(vma, vma->vm_start, pfn,
1345 PAGE_SIZE, vma->vm_page_prot))
1346 return -EAGAIN;
1347
1348 mlx5_ib_dbg(dev, "mapped internal timer at 0x%lx, PA 0x%llx\n",
1349 vma->vm_start,
1350 (unsigned long long)pfn << PAGE_SHIFT);
1351 break;
d69e3bcf 1352
e126ba97
EC
1353 default:
1354 return -EINVAL;
1355 }
1356
1357 return 0;
1358}
1359
e126ba97
EC
1360static struct ib_pd *mlx5_ib_alloc_pd(struct ib_device *ibdev,
1361 struct ib_ucontext *context,
1362 struct ib_udata *udata)
1363{
1364 struct mlx5_ib_alloc_pd_resp resp;
1365 struct mlx5_ib_pd *pd;
1366 int err;
1367
1368 pd = kmalloc(sizeof(*pd), GFP_KERNEL);
1369 if (!pd)
1370 return ERR_PTR(-ENOMEM);
1371
9603b61d 1372 err = mlx5_core_alloc_pd(to_mdev(ibdev)->mdev, &pd->pdn);
e126ba97
EC
1373 if (err) {
1374 kfree(pd);
1375 return ERR_PTR(err);
1376 }
1377
1378 if (context) {
1379 resp.pdn = pd->pdn;
1380 if (ib_copy_to_udata(udata, &resp, sizeof(resp))) {
9603b61d 1381 mlx5_core_dealloc_pd(to_mdev(ibdev)->mdev, pd->pdn);
e126ba97
EC
1382 kfree(pd);
1383 return ERR_PTR(-EFAULT);
1384 }
e126ba97
EC
1385 }
1386
1387 return &pd->ibpd;
1388}
1389
1390static int mlx5_ib_dealloc_pd(struct ib_pd *pd)
1391{
1392 struct mlx5_ib_dev *mdev = to_mdev(pd->device);
1393 struct mlx5_ib_pd *mpd = to_mpd(pd);
1394
9603b61d 1395 mlx5_core_dealloc_pd(mdev->mdev, mpd->pdn);
e126ba97
EC
1396 kfree(mpd);
1397
1398 return 0;
1399}
1400
038d2ef8
MG
1401static bool outer_header_zero(u32 *match_criteria)
1402{
1403 int size = MLX5_ST_SZ_BYTES(fte_match_param);
1404 char *outer_headers_c = MLX5_ADDR_OF(fte_match_param, match_criteria,
1405 outer_headers);
1406
1407 return outer_headers_c[0] == 0 && !memcmp(outer_headers_c,
1408 outer_headers_c + 1,
1409 size - 1);
1410}
1411
1412static int parse_flow_attr(u32 *match_c, u32 *match_v,
1413 union ib_flow_spec *ib_spec)
1414{
1415 void *outer_headers_c = MLX5_ADDR_OF(fte_match_param, match_c,
1416 outer_headers);
1417 void *outer_headers_v = MLX5_ADDR_OF(fte_match_param, match_v,
1418 outer_headers);
1419 switch (ib_spec->type) {
1420 case IB_FLOW_SPEC_ETH:
1421 if (ib_spec->size != sizeof(ib_spec->eth))
1422 return -EINVAL;
1423
1424 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1425 dmac_47_16),
1426 ib_spec->eth.mask.dst_mac);
1427 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1428 dmac_47_16),
1429 ib_spec->eth.val.dst_mac);
1430
1431 if (ib_spec->eth.mask.vlan_tag) {
1432 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1433 vlan_tag, 1);
1434 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1435 vlan_tag, 1);
1436
1437 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1438 first_vid, ntohs(ib_spec->eth.mask.vlan_tag));
1439 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1440 first_vid, ntohs(ib_spec->eth.val.vlan_tag));
1441
1442 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1443 first_cfi,
1444 ntohs(ib_spec->eth.mask.vlan_tag) >> 12);
1445 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1446 first_cfi,
1447 ntohs(ib_spec->eth.val.vlan_tag) >> 12);
1448
1449 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1450 first_prio,
1451 ntohs(ib_spec->eth.mask.vlan_tag) >> 13);
1452 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1453 first_prio,
1454 ntohs(ib_spec->eth.val.vlan_tag) >> 13);
1455 }
1456 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1457 ethertype, ntohs(ib_spec->eth.mask.ether_type));
1458 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1459 ethertype, ntohs(ib_spec->eth.val.ether_type));
1460 break;
1461 case IB_FLOW_SPEC_IPV4:
1462 if (ib_spec->size != sizeof(ib_spec->ipv4))
1463 return -EINVAL;
1464
1465 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1466 ethertype, 0xffff);
1467 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1468 ethertype, ETH_P_IP);
1469
1470 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1471 src_ipv4_src_ipv6.ipv4_layout.ipv4),
1472 &ib_spec->ipv4.mask.src_ip,
1473 sizeof(ib_spec->ipv4.mask.src_ip));
1474 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1475 src_ipv4_src_ipv6.ipv4_layout.ipv4),
1476 &ib_spec->ipv4.val.src_ip,
1477 sizeof(ib_spec->ipv4.val.src_ip));
1478 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1479 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
1480 &ib_spec->ipv4.mask.dst_ip,
1481 sizeof(ib_spec->ipv4.mask.dst_ip));
1482 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1483 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
1484 &ib_spec->ipv4.val.dst_ip,
1485 sizeof(ib_spec->ipv4.val.dst_ip));
1486 break;
026bae0c
MG
1487 case IB_FLOW_SPEC_IPV6:
1488 if (ib_spec->size != sizeof(ib_spec->ipv6))
1489 return -EINVAL;
1490
1491 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1492 ethertype, 0xffff);
1493 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1494 ethertype, ETH_P_IPV6);
1495
1496 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1497 src_ipv4_src_ipv6.ipv6_layout.ipv6),
1498 &ib_spec->ipv6.mask.src_ip,
1499 sizeof(ib_spec->ipv6.mask.src_ip));
1500 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1501 src_ipv4_src_ipv6.ipv6_layout.ipv6),
1502 &ib_spec->ipv6.val.src_ip,
1503 sizeof(ib_spec->ipv6.val.src_ip));
1504 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1505 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
1506 &ib_spec->ipv6.mask.dst_ip,
1507 sizeof(ib_spec->ipv6.mask.dst_ip));
1508 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1509 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
1510 &ib_spec->ipv6.val.dst_ip,
1511 sizeof(ib_spec->ipv6.val.dst_ip));
1512 break;
038d2ef8
MG
1513 case IB_FLOW_SPEC_TCP:
1514 if (ib_spec->size != sizeof(ib_spec->tcp_udp))
1515 return -EINVAL;
1516
1517 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, ip_protocol,
1518 0xff);
1519 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, ip_protocol,
1520 IPPROTO_TCP);
1521
1522 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, tcp_sport,
1523 ntohs(ib_spec->tcp_udp.mask.src_port));
1524 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, tcp_sport,
1525 ntohs(ib_spec->tcp_udp.val.src_port));
1526
1527 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, tcp_dport,
1528 ntohs(ib_spec->tcp_udp.mask.dst_port));
1529 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, tcp_dport,
1530 ntohs(ib_spec->tcp_udp.val.dst_port));
1531 break;
1532 case IB_FLOW_SPEC_UDP:
1533 if (ib_spec->size != sizeof(ib_spec->tcp_udp))
1534 return -EINVAL;
1535
1536 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, ip_protocol,
1537 0xff);
1538 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, ip_protocol,
1539 IPPROTO_UDP);
1540
1541 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, udp_sport,
1542 ntohs(ib_spec->tcp_udp.mask.src_port));
1543 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, udp_sport,
1544 ntohs(ib_spec->tcp_udp.val.src_port));
1545
1546 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, udp_dport,
1547 ntohs(ib_spec->tcp_udp.mask.dst_port));
1548 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, udp_dport,
1549 ntohs(ib_spec->tcp_udp.val.dst_port));
1550 break;
1551 default:
1552 return -EINVAL;
1553 }
1554
1555 return 0;
1556}
1557
1558/* If a flow could catch both multicast and unicast packets,
1559 * it won't fall into the multicast flow steering table and this rule
1560 * could steal other multicast packets.
1561 */
1562static bool flow_is_multicast_only(struct ib_flow_attr *ib_attr)
1563{
1564 struct ib_flow_spec_eth *eth_spec;
1565
1566 if (ib_attr->type != IB_FLOW_ATTR_NORMAL ||
1567 ib_attr->size < sizeof(struct ib_flow_attr) +
1568 sizeof(struct ib_flow_spec_eth) ||
1569 ib_attr->num_of_specs < 1)
1570 return false;
1571
1572 eth_spec = (struct ib_flow_spec_eth *)(ib_attr + 1);
1573 if (eth_spec->type != IB_FLOW_SPEC_ETH ||
1574 eth_spec->size != sizeof(*eth_spec))
1575 return false;
1576
1577 return is_multicast_ether_addr(eth_spec->mask.dst_mac) &&
1578 is_multicast_ether_addr(eth_spec->val.dst_mac);
1579}
1580
1581static bool is_valid_attr(struct ib_flow_attr *flow_attr)
1582{
1583 union ib_flow_spec *ib_spec = (union ib_flow_spec *)(flow_attr + 1);
1584 bool has_ipv4_spec = false;
1585 bool eth_type_ipv4 = true;
1586 unsigned int spec_index;
1587
1588 /* Validate that ethertype is correct */
1589 for (spec_index = 0; spec_index < flow_attr->num_of_specs; spec_index++) {
1590 if (ib_spec->type == IB_FLOW_SPEC_ETH &&
1591 ib_spec->eth.mask.ether_type) {
1592 if (!((ib_spec->eth.mask.ether_type == htons(0xffff)) &&
1593 ib_spec->eth.val.ether_type == htons(ETH_P_IP)))
1594 eth_type_ipv4 = false;
1595 } else if (ib_spec->type == IB_FLOW_SPEC_IPV4) {
1596 has_ipv4_spec = true;
1597 }
1598 ib_spec = (void *)ib_spec + ib_spec->size;
1599 }
1600 return !has_ipv4_spec || eth_type_ipv4;
1601}
1602
1603static void put_flow_table(struct mlx5_ib_dev *dev,
1604 struct mlx5_ib_flow_prio *prio, bool ft_added)
1605{
1606 prio->refcount -= !!ft_added;
1607 if (!prio->refcount) {
1608 mlx5_destroy_flow_table(prio->flow_table);
1609 prio->flow_table = NULL;
1610 }
1611}
1612
1613static int mlx5_ib_destroy_flow(struct ib_flow *flow_id)
1614{
1615 struct mlx5_ib_dev *dev = to_mdev(flow_id->qp->device);
1616 struct mlx5_ib_flow_handler *handler = container_of(flow_id,
1617 struct mlx5_ib_flow_handler,
1618 ibflow);
1619 struct mlx5_ib_flow_handler *iter, *tmp;
1620
1621 mutex_lock(&dev->flow_db.lock);
1622
1623 list_for_each_entry_safe(iter, tmp, &handler->list, list) {
1624 mlx5_del_flow_rule(iter->rule);
1625 list_del(&iter->list);
1626 kfree(iter);
1627 }
1628
1629 mlx5_del_flow_rule(handler->rule);
1630 put_flow_table(dev, &dev->flow_db.prios[handler->prio], true);
1631 mutex_unlock(&dev->flow_db.lock);
1632
1633 kfree(handler);
1634
1635 return 0;
1636}
1637
35d19011
MG
1638static int ib_prio_to_core_prio(unsigned int priority, bool dont_trap)
1639{
1640 priority *= 2;
1641 if (!dont_trap)
1642 priority++;
1643 return priority;
1644}
1645
038d2ef8
MG
1646#define MLX5_FS_MAX_TYPES 10
1647#define MLX5_FS_MAX_ENTRIES 32000UL
1648static struct mlx5_ib_flow_prio *get_flow_table(struct mlx5_ib_dev *dev,
1649 struct ib_flow_attr *flow_attr)
1650{
35d19011 1651 bool dont_trap = flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP;
038d2ef8
MG
1652 struct mlx5_flow_namespace *ns = NULL;
1653 struct mlx5_ib_flow_prio *prio;
1654 struct mlx5_flow_table *ft;
1655 int num_entries;
1656 int num_groups;
1657 int priority;
1658 int err = 0;
1659
1660 if (flow_attr->type == IB_FLOW_ATTR_NORMAL) {
35d19011
MG
1661 if (flow_is_multicast_only(flow_attr) &&
1662 !dont_trap)
038d2ef8
MG
1663 priority = MLX5_IB_FLOW_MCAST_PRIO;
1664 else
35d19011
MG
1665 priority = ib_prio_to_core_prio(flow_attr->priority,
1666 dont_trap);
038d2ef8
MG
1667 ns = mlx5_get_flow_namespace(dev->mdev,
1668 MLX5_FLOW_NAMESPACE_BYPASS);
1669 num_entries = MLX5_FS_MAX_ENTRIES;
1670 num_groups = MLX5_FS_MAX_TYPES;
1671 prio = &dev->flow_db.prios[priority];
1672 } else if (flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT ||
1673 flow_attr->type == IB_FLOW_ATTR_MC_DEFAULT) {
1674 ns = mlx5_get_flow_namespace(dev->mdev,
1675 MLX5_FLOW_NAMESPACE_LEFTOVERS);
1676 build_leftovers_ft_param(&priority,
1677 &num_entries,
1678 &num_groups);
1679 prio = &dev->flow_db.prios[MLX5_IB_FLOW_LEFTOVERS_PRIO];
1680 }
1681
1682 if (!ns)
1683 return ERR_PTR(-ENOTSUPP);
1684
1685 ft = prio->flow_table;
1686 if (!ft) {
1687 ft = mlx5_create_auto_grouped_flow_table(ns, priority,
1688 num_entries,
d63cd286
MG
1689 num_groups,
1690 0);
038d2ef8
MG
1691
1692 if (!IS_ERR(ft)) {
1693 prio->refcount = 0;
1694 prio->flow_table = ft;
1695 } else {
1696 err = PTR_ERR(ft);
1697 }
1698 }
1699
1700 return err ? ERR_PTR(err) : prio;
1701}
1702
1703static struct mlx5_ib_flow_handler *create_flow_rule(struct mlx5_ib_dev *dev,
1704 struct mlx5_ib_flow_prio *ft_prio,
1705 struct ib_flow_attr *flow_attr,
1706 struct mlx5_flow_destination *dst)
1707{
1708 struct mlx5_flow_table *ft = ft_prio->flow_table;
1709 struct mlx5_ib_flow_handler *handler;
c5bb1730 1710 struct mlx5_flow_spec *spec;
038d2ef8 1711 void *ib_flow = flow_attr + 1;
038d2ef8 1712 unsigned int spec_index;
35d19011 1713 u32 action;
038d2ef8
MG
1714 int err = 0;
1715
1716 if (!is_valid_attr(flow_attr))
1717 return ERR_PTR(-EINVAL);
1718
c5bb1730 1719 spec = mlx5_vzalloc(sizeof(*spec));
038d2ef8 1720 handler = kzalloc(sizeof(*handler), GFP_KERNEL);
c5bb1730 1721 if (!handler || !spec) {
038d2ef8
MG
1722 err = -ENOMEM;
1723 goto free;
1724 }
1725
1726 INIT_LIST_HEAD(&handler->list);
1727
1728 for (spec_index = 0; spec_index < flow_attr->num_of_specs; spec_index++) {
c5bb1730
MG
1729 err = parse_flow_attr(spec->match_criteria,
1730 spec->match_value, ib_flow);
038d2ef8
MG
1731 if (err < 0)
1732 goto free;
1733
1734 ib_flow += ((union ib_flow_spec *)ib_flow)->size;
1735 }
1736
1737 /* Outer header support only */
c5bb1730
MG
1738 spec->match_criteria_enable = (!outer_header_zero(spec->match_criteria))
1739 << 0;
35d19011
MG
1740 action = dst ? MLX5_FLOW_CONTEXT_ACTION_FWD_DEST :
1741 MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO;
c5bb1730 1742 handler->rule = mlx5_add_flow_rule(ft, spec,
35d19011 1743 action,
038d2ef8
MG
1744 MLX5_FS_DEFAULT_FLOW_TAG,
1745 dst);
1746
1747 if (IS_ERR(handler->rule)) {
1748 err = PTR_ERR(handler->rule);
1749 goto free;
1750 }
1751
1752 handler->prio = ft_prio - dev->flow_db.prios;
1753
1754 ft_prio->flow_table = ft;
1755free:
1756 if (err)
1757 kfree(handler);
c5bb1730 1758 kvfree(spec);
038d2ef8
MG
1759 return err ? ERR_PTR(err) : handler;
1760}
1761
35d19011
MG
1762static struct mlx5_ib_flow_handler *create_dont_trap_rule(struct mlx5_ib_dev *dev,
1763 struct mlx5_ib_flow_prio *ft_prio,
1764 struct ib_flow_attr *flow_attr,
1765 struct mlx5_flow_destination *dst)
1766{
1767 struct mlx5_ib_flow_handler *handler_dst = NULL;
1768 struct mlx5_ib_flow_handler *handler = NULL;
1769
1770 handler = create_flow_rule(dev, ft_prio, flow_attr, NULL);
1771 if (!IS_ERR(handler)) {
1772 handler_dst = create_flow_rule(dev, ft_prio,
1773 flow_attr, dst);
1774 if (IS_ERR(handler_dst)) {
1775 mlx5_del_flow_rule(handler->rule);
1776 kfree(handler);
1777 handler = handler_dst;
1778 } else {
1779 list_add(&handler_dst->list, &handler->list);
1780 }
1781 }
1782
1783 return handler;
1784}
038d2ef8
MG
1785enum {
1786 LEFTOVERS_MC,
1787 LEFTOVERS_UC,
1788};
1789
1790static struct mlx5_ib_flow_handler *create_leftovers_rule(struct mlx5_ib_dev *dev,
1791 struct mlx5_ib_flow_prio *ft_prio,
1792 struct ib_flow_attr *flow_attr,
1793 struct mlx5_flow_destination *dst)
1794{
1795 struct mlx5_ib_flow_handler *handler_ucast = NULL;
1796 struct mlx5_ib_flow_handler *handler = NULL;
1797
1798 static struct {
1799 struct ib_flow_attr flow_attr;
1800 struct ib_flow_spec_eth eth_flow;
1801 } leftovers_specs[] = {
1802 [LEFTOVERS_MC] = {
1803 .flow_attr = {
1804 .num_of_specs = 1,
1805 .size = sizeof(leftovers_specs[0])
1806 },
1807 .eth_flow = {
1808 .type = IB_FLOW_SPEC_ETH,
1809 .size = sizeof(struct ib_flow_spec_eth),
1810 .mask = {.dst_mac = {0x1} },
1811 .val = {.dst_mac = {0x1} }
1812 }
1813 },
1814 [LEFTOVERS_UC] = {
1815 .flow_attr = {
1816 .num_of_specs = 1,
1817 .size = sizeof(leftovers_specs[0])
1818 },
1819 .eth_flow = {
1820 .type = IB_FLOW_SPEC_ETH,
1821 .size = sizeof(struct ib_flow_spec_eth),
1822 .mask = {.dst_mac = {0x1} },
1823 .val = {.dst_mac = {} }
1824 }
1825 }
1826 };
1827
1828 handler = create_flow_rule(dev, ft_prio,
1829 &leftovers_specs[LEFTOVERS_MC].flow_attr,
1830 dst);
1831 if (!IS_ERR(handler) &&
1832 flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT) {
1833 handler_ucast = create_flow_rule(dev, ft_prio,
1834 &leftovers_specs[LEFTOVERS_UC].flow_attr,
1835 dst);
1836 if (IS_ERR(handler_ucast)) {
1837 kfree(handler);
1838 handler = handler_ucast;
1839 } else {
1840 list_add(&handler_ucast->list, &handler->list);
1841 }
1842 }
1843
1844 return handler;
1845}
1846
1847static struct ib_flow *mlx5_ib_create_flow(struct ib_qp *qp,
1848 struct ib_flow_attr *flow_attr,
1849 int domain)
1850{
1851 struct mlx5_ib_dev *dev = to_mdev(qp->device);
d9f88e5a 1852 struct mlx5_ib_qp *mqp = to_mqp(qp);
038d2ef8
MG
1853 struct mlx5_ib_flow_handler *handler = NULL;
1854 struct mlx5_flow_destination *dst = NULL;
1855 struct mlx5_ib_flow_prio *ft_prio;
1856 int err;
1857
1858 if (flow_attr->priority > MLX5_IB_FLOW_LAST_PRIO)
1859 return ERR_PTR(-ENOSPC);
1860
1861 if (domain != IB_FLOW_DOMAIN_USER ||
1862 flow_attr->port > MLX5_CAP_GEN(dev->mdev, num_ports) ||
35d19011 1863 (flow_attr->flags & ~IB_FLOW_ATTR_FLAGS_DONT_TRAP))
038d2ef8
MG
1864 return ERR_PTR(-EINVAL);
1865
1866 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
1867 if (!dst)
1868 return ERR_PTR(-ENOMEM);
1869
1870 mutex_lock(&dev->flow_db.lock);
1871
1872 ft_prio = get_flow_table(dev, flow_attr);
1873 if (IS_ERR(ft_prio)) {
1874 err = PTR_ERR(ft_prio);
1875 goto unlock;
1876 }
1877
1878 dst->type = MLX5_FLOW_DESTINATION_TYPE_TIR;
d9f88e5a
YH
1879 if (mqp->flags & MLX5_IB_QP_RSS)
1880 dst->tir_num = mqp->rss_qp.tirn;
1881 else
1882 dst->tir_num = mqp->raw_packet_qp.rq.tirn;
038d2ef8
MG
1883
1884 if (flow_attr->type == IB_FLOW_ATTR_NORMAL) {
35d19011
MG
1885 if (flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP) {
1886 handler = create_dont_trap_rule(dev, ft_prio,
1887 flow_attr, dst);
1888 } else {
1889 handler = create_flow_rule(dev, ft_prio, flow_attr,
1890 dst);
1891 }
038d2ef8
MG
1892 } else if (flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT ||
1893 flow_attr->type == IB_FLOW_ATTR_MC_DEFAULT) {
1894 handler = create_leftovers_rule(dev, ft_prio, flow_attr,
1895 dst);
1896 } else {
1897 err = -EINVAL;
1898 goto destroy_ft;
1899 }
1900
1901 if (IS_ERR(handler)) {
1902 err = PTR_ERR(handler);
1903 handler = NULL;
1904 goto destroy_ft;
1905 }
1906
1907 ft_prio->refcount++;
1908 mutex_unlock(&dev->flow_db.lock);
1909 kfree(dst);
1910
1911 return &handler->ibflow;
1912
1913destroy_ft:
1914 put_flow_table(dev, ft_prio, false);
1915unlock:
1916 mutex_unlock(&dev->flow_db.lock);
1917 kfree(dst);
1918 kfree(handler);
1919 return ERR_PTR(err);
1920}
1921
e126ba97
EC
1922static int mlx5_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1923{
1924 struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
1925 int err;
1926
9603b61d 1927 err = mlx5_core_attach_mcg(dev->mdev, gid, ibqp->qp_num);
e126ba97
EC
1928 if (err)
1929 mlx5_ib_warn(dev, "failed attaching QPN 0x%x, MGID %pI6\n",
1930 ibqp->qp_num, gid->raw);
1931
1932 return err;
1933}
1934
1935static int mlx5_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1936{
1937 struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
1938 int err;
1939
9603b61d 1940 err = mlx5_core_detach_mcg(dev->mdev, gid, ibqp->qp_num);
e126ba97
EC
1941 if (err)
1942 mlx5_ib_warn(dev, "failed detaching QPN 0x%x, MGID %pI6\n",
1943 ibqp->qp_num, gid->raw);
1944
1945 return err;
1946}
1947
1948static int init_node_data(struct mlx5_ib_dev *dev)
1949{
1b5daf11 1950 int err;
e126ba97 1951
1b5daf11 1952 err = mlx5_query_node_desc(dev, dev->ib_dev.node_desc);
e126ba97 1953 if (err)
1b5daf11 1954 return err;
e126ba97 1955
1b5daf11 1956 dev->mdev->rev_id = dev->mdev->pdev->revision;
e126ba97 1957
1b5daf11 1958 return mlx5_query_node_guid(dev, &dev->ib_dev.node_guid);
e126ba97
EC
1959}
1960
1961static ssize_t show_fw_pages(struct device *device, struct device_attribute *attr,
1962 char *buf)
1963{
1964 struct mlx5_ib_dev *dev =
1965 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
1966
9603b61d 1967 return sprintf(buf, "%d\n", dev->mdev->priv.fw_pages);
e126ba97
EC
1968}
1969
1970static ssize_t show_reg_pages(struct device *device,
1971 struct device_attribute *attr, char *buf)
1972{
1973 struct mlx5_ib_dev *dev =
1974 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
1975
6aec21f6 1976 return sprintf(buf, "%d\n", atomic_read(&dev->mdev->priv.reg_pages));
e126ba97
EC
1977}
1978
1979static ssize_t show_hca(struct device *device, struct device_attribute *attr,
1980 char *buf)
1981{
1982 struct mlx5_ib_dev *dev =
1983 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
9603b61d 1984 return sprintf(buf, "MT%d\n", dev->mdev->pdev->device);
e126ba97
EC
1985}
1986
e126ba97
EC
1987static ssize_t show_rev(struct device *device, struct device_attribute *attr,
1988 char *buf)
1989{
1990 struct mlx5_ib_dev *dev =
1991 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
9603b61d 1992 return sprintf(buf, "%x\n", dev->mdev->rev_id);
e126ba97
EC
1993}
1994
1995static ssize_t show_board(struct device *device, struct device_attribute *attr,
1996 char *buf)
1997{
1998 struct mlx5_ib_dev *dev =
1999 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
2000 return sprintf(buf, "%.*s\n", MLX5_BOARD_ID_LEN,
9603b61d 2001 dev->mdev->board_id);
e126ba97
EC
2002}
2003
2004static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
e126ba97
EC
2005static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
2006static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
2007static DEVICE_ATTR(fw_pages, S_IRUGO, show_fw_pages, NULL);
2008static DEVICE_ATTR(reg_pages, S_IRUGO, show_reg_pages, NULL);
2009
2010static struct device_attribute *mlx5_class_attributes[] = {
2011 &dev_attr_hw_rev,
e126ba97
EC
2012 &dev_attr_hca_type,
2013 &dev_attr_board_id,
2014 &dev_attr_fw_pages,
2015 &dev_attr_reg_pages,
2016};
2017
7722f47e
HE
2018static void pkey_change_handler(struct work_struct *work)
2019{
2020 struct mlx5_ib_port_resources *ports =
2021 container_of(work, struct mlx5_ib_port_resources,
2022 pkey_change_work);
2023
2024 mutex_lock(&ports->devr->mutex);
2025 mlx5_ib_gsi_pkey_change(ports->gsi);
2026 mutex_unlock(&ports->devr->mutex);
2027}
2028
89ea94a7
MG
2029static void mlx5_ib_handle_internal_error(struct mlx5_ib_dev *ibdev)
2030{
2031 struct mlx5_ib_qp *mqp;
2032 struct mlx5_ib_cq *send_mcq, *recv_mcq;
2033 struct mlx5_core_cq *mcq;
2034 struct list_head cq_armed_list;
2035 unsigned long flags_qp;
2036 unsigned long flags_cq;
2037 unsigned long flags;
2038
2039 INIT_LIST_HEAD(&cq_armed_list);
2040
2041 /* Go over qp list reside on that ibdev, sync with create/destroy qp.*/
2042 spin_lock_irqsave(&ibdev->reset_flow_resource_lock, flags);
2043 list_for_each_entry(mqp, &ibdev->qp_list, qps_list) {
2044 spin_lock_irqsave(&mqp->sq.lock, flags_qp);
2045 if (mqp->sq.tail != mqp->sq.head) {
2046 send_mcq = to_mcq(mqp->ibqp.send_cq);
2047 spin_lock_irqsave(&send_mcq->lock, flags_cq);
2048 if (send_mcq->mcq.comp &&
2049 mqp->ibqp.send_cq->comp_handler) {
2050 if (!send_mcq->mcq.reset_notify_added) {
2051 send_mcq->mcq.reset_notify_added = 1;
2052 list_add_tail(&send_mcq->mcq.reset_notify,
2053 &cq_armed_list);
2054 }
2055 }
2056 spin_unlock_irqrestore(&send_mcq->lock, flags_cq);
2057 }
2058 spin_unlock_irqrestore(&mqp->sq.lock, flags_qp);
2059 spin_lock_irqsave(&mqp->rq.lock, flags_qp);
2060 /* no handling is needed for SRQ */
2061 if (!mqp->ibqp.srq) {
2062 if (mqp->rq.tail != mqp->rq.head) {
2063 recv_mcq = to_mcq(mqp->ibqp.recv_cq);
2064 spin_lock_irqsave(&recv_mcq->lock, flags_cq);
2065 if (recv_mcq->mcq.comp &&
2066 mqp->ibqp.recv_cq->comp_handler) {
2067 if (!recv_mcq->mcq.reset_notify_added) {
2068 recv_mcq->mcq.reset_notify_added = 1;
2069 list_add_tail(&recv_mcq->mcq.reset_notify,
2070 &cq_armed_list);
2071 }
2072 }
2073 spin_unlock_irqrestore(&recv_mcq->lock,
2074 flags_cq);
2075 }
2076 }
2077 spin_unlock_irqrestore(&mqp->rq.lock, flags_qp);
2078 }
2079 /*At that point all inflight post send were put to be executed as of we
2080 * lock/unlock above locks Now need to arm all involved CQs.
2081 */
2082 list_for_each_entry(mcq, &cq_armed_list, reset_notify) {
2083 mcq->comp(mcq);
2084 }
2085 spin_unlock_irqrestore(&ibdev->reset_flow_resource_lock, flags);
2086}
2087
9603b61d 2088static void mlx5_ib_event(struct mlx5_core_dev *dev, void *context,
4d2f9bbb 2089 enum mlx5_dev_event event, unsigned long param)
e126ba97 2090{
9603b61d 2091 struct mlx5_ib_dev *ibdev = (struct mlx5_ib_dev *)context;
e126ba97 2092 struct ib_event ibev;
9603b61d 2093
e126ba97
EC
2094 u8 port = 0;
2095
2096 switch (event) {
2097 case MLX5_DEV_EVENT_SYS_ERROR:
2098 ibdev->ib_active = false;
2099 ibev.event = IB_EVENT_DEVICE_FATAL;
89ea94a7 2100 mlx5_ib_handle_internal_error(ibdev);
e126ba97
EC
2101 break;
2102
2103 case MLX5_DEV_EVENT_PORT_UP:
2104 ibev.event = IB_EVENT_PORT_ACTIVE;
4d2f9bbb 2105 port = (u8)param;
e126ba97
EC
2106 break;
2107
2108 case MLX5_DEV_EVENT_PORT_DOWN:
2788cf3b 2109 case MLX5_DEV_EVENT_PORT_INITIALIZED:
e126ba97 2110 ibev.event = IB_EVENT_PORT_ERR;
4d2f9bbb 2111 port = (u8)param;
e126ba97
EC
2112 break;
2113
e126ba97
EC
2114 case MLX5_DEV_EVENT_LID_CHANGE:
2115 ibev.event = IB_EVENT_LID_CHANGE;
4d2f9bbb 2116 port = (u8)param;
e126ba97
EC
2117 break;
2118
2119 case MLX5_DEV_EVENT_PKEY_CHANGE:
2120 ibev.event = IB_EVENT_PKEY_CHANGE;
4d2f9bbb 2121 port = (u8)param;
7722f47e
HE
2122
2123 schedule_work(&ibdev->devr.ports[port - 1].pkey_change_work);
e126ba97
EC
2124 break;
2125
2126 case MLX5_DEV_EVENT_GUID_CHANGE:
2127 ibev.event = IB_EVENT_GID_CHANGE;
4d2f9bbb 2128 port = (u8)param;
e126ba97
EC
2129 break;
2130
2131 case MLX5_DEV_EVENT_CLIENT_REREG:
2132 ibev.event = IB_EVENT_CLIENT_REREGISTER;
4d2f9bbb 2133 port = (u8)param;
e126ba97
EC
2134 break;
2135 }
2136
2137 ibev.device = &ibdev->ib_dev;
2138 ibev.element.port_num = port;
2139
a0c84c32
EC
2140 if (port < 1 || port > ibdev->num_ports) {
2141 mlx5_ib_warn(ibdev, "warning: event on port %d\n", port);
2142 return;
2143 }
2144
e126ba97
EC
2145 if (ibdev->ib_active)
2146 ib_dispatch_event(&ibev);
2147}
2148
2149static void get_ext_port_caps(struct mlx5_ib_dev *dev)
2150{
2151 int port;
2152
938fe83c 2153 for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++)
e126ba97
EC
2154 mlx5_query_ext_port_caps(dev, port);
2155}
2156
2157static int get_port_caps(struct mlx5_ib_dev *dev)
2158{
2159 struct ib_device_attr *dprops = NULL;
2160 struct ib_port_attr *pprops = NULL;
f614fc15 2161 int err = -ENOMEM;
e126ba97 2162 int port;
2528e33e 2163 struct ib_udata uhw = {.inlen = 0, .outlen = 0};
e126ba97
EC
2164
2165 pprops = kmalloc(sizeof(*pprops), GFP_KERNEL);
2166 if (!pprops)
2167 goto out;
2168
2169 dprops = kmalloc(sizeof(*dprops), GFP_KERNEL);
2170 if (!dprops)
2171 goto out;
2172
2528e33e 2173 err = mlx5_ib_query_device(&dev->ib_dev, dprops, &uhw);
e126ba97
EC
2174 if (err) {
2175 mlx5_ib_warn(dev, "query_device failed %d\n", err);
2176 goto out;
2177 }
2178
938fe83c 2179 for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++) {
e126ba97
EC
2180 err = mlx5_ib_query_port(&dev->ib_dev, port, pprops);
2181 if (err) {
938fe83c
SM
2182 mlx5_ib_warn(dev, "query_port %d failed %d\n",
2183 port, err);
e126ba97
EC
2184 break;
2185 }
938fe83c
SM
2186 dev->mdev->port_caps[port - 1].pkey_table_len =
2187 dprops->max_pkeys;
2188 dev->mdev->port_caps[port - 1].gid_table_len =
2189 pprops->gid_tbl_len;
e126ba97
EC
2190 mlx5_ib_dbg(dev, "pkey_table_len %d, gid_table_len %d\n",
2191 dprops->max_pkeys, pprops->gid_tbl_len);
2192 }
2193
2194out:
2195 kfree(pprops);
2196 kfree(dprops);
2197
2198 return err;
2199}
2200
2201static void destroy_umrc_res(struct mlx5_ib_dev *dev)
2202{
2203 int err;
2204
2205 err = mlx5_mr_cache_cleanup(dev);
2206 if (err)
2207 mlx5_ib_warn(dev, "mr cache cleanup failed\n");
2208
2209 mlx5_ib_destroy_qp(dev->umrc.qp);
add08d76 2210 ib_free_cq(dev->umrc.cq);
e126ba97
EC
2211 ib_dealloc_pd(dev->umrc.pd);
2212}
2213
2214enum {
2215 MAX_UMR_WR = 128,
2216};
2217
2218static int create_umr_res(struct mlx5_ib_dev *dev)
2219{
2220 struct ib_qp_init_attr *init_attr = NULL;
2221 struct ib_qp_attr *attr = NULL;
2222 struct ib_pd *pd;
2223 struct ib_cq *cq;
2224 struct ib_qp *qp;
e126ba97
EC
2225 int ret;
2226
2227 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
2228 init_attr = kzalloc(sizeof(*init_attr), GFP_KERNEL);
2229 if (!attr || !init_attr) {
2230 ret = -ENOMEM;
2231 goto error_0;
2232 }
2233
2234 pd = ib_alloc_pd(&dev->ib_dev);
2235 if (IS_ERR(pd)) {
2236 mlx5_ib_dbg(dev, "Couldn't create PD for sync UMR QP\n");
2237 ret = PTR_ERR(pd);
2238 goto error_0;
2239 }
2240
add08d76 2241 cq = ib_alloc_cq(&dev->ib_dev, NULL, 128, 0, IB_POLL_SOFTIRQ);
e126ba97
EC
2242 if (IS_ERR(cq)) {
2243 mlx5_ib_dbg(dev, "Couldn't create CQ for sync UMR QP\n");
2244 ret = PTR_ERR(cq);
2245 goto error_2;
2246 }
e126ba97
EC
2247
2248 init_attr->send_cq = cq;
2249 init_attr->recv_cq = cq;
2250 init_attr->sq_sig_type = IB_SIGNAL_ALL_WR;
2251 init_attr->cap.max_send_wr = MAX_UMR_WR;
2252 init_attr->cap.max_send_sge = 1;
2253 init_attr->qp_type = MLX5_IB_QPT_REG_UMR;
2254 init_attr->port_num = 1;
2255 qp = mlx5_ib_create_qp(pd, init_attr, NULL);
2256 if (IS_ERR(qp)) {
2257 mlx5_ib_dbg(dev, "Couldn't create sync UMR QP\n");
2258 ret = PTR_ERR(qp);
2259 goto error_3;
2260 }
2261 qp->device = &dev->ib_dev;
2262 qp->real_qp = qp;
2263 qp->uobject = NULL;
2264 qp->qp_type = MLX5_IB_QPT_REG_UMR;
2265
2266 attr->qp_state = IB_QPS_INIT;
2267 attr->port_num = 1;
2268 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE | IB_QP_PKEY_INDEX |
2269 IB_QP_PORT, NULL);
2270 if (ret) {
2271 mlx5_ib_dbg(dev, "Couldn't modify UMR QP\n");
2272 goto error_4;
2273 }
2274
2275 memset(attr, 0, sizeof(*attr));
2276 attr->qp_state = IB_QPS_RTR;
2277 attr->path_mtu = IB_MTU_256;
2278
2279 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
2280 if (ret) {
2281 mlx5_ib_dbg(dev, "Couldn't modify umr QP to rtr\n");
2282 goto error_4;
2283 }
2284
2285 memset(attr, 0, sizeof(*attr));
2286 attr->qp_state = IB_QPS_RTS;
2287 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
2288 if (ret) {
2289 mlx5_ib_dbg(dev, "Couldn't modify umr QP to rts\n");
2290 goto error_4;
2291 }
2292
2293 dev->umrc.qp = qp;
2294 dev->umrc.cq = cq;
e126ba97
EC
2295 dev->umrc.pd = pd;
2296
2297 sema_init(&dev->umrc.sem, MAX_UMR_WR);
2298 ret = mlx5_mr_cache_init(dev);
2299 if (ret) {
2300 mlx5_ib_warn(dev, "mr cache init failed %d\n", ret);
2301 goto error_4;
2302 }
2303
2304 kfree(attr);
2305 kfree(init_attr);
2306
2307 return 0;
2308
2309error_4:
2310 mlx5_ib_destroy_qp(qp);
2311
2312error_3:
add08d76 2313 ib_free_cq(cq);
e126ba97
EC
2314
2315error_2:
e126ba97
EC
2316 ib_dealloc_pd(pd);
2317
2318error_0:
2319 kfree(attr);
2320 kfree(init_attr);
2321 return ret;
2322}
2323
2324static int create_dev_resources(struct mlx5_ib_resources *devr)
2325{
2326 struct ib_srq_init_attr attr;
2327 struct mlx5_ib_dev *dev;
bcf4c1ea 2328 struct ib_cq_init_attr cq_attr = {.cqe = 1};
7722f47e 2329 int port;
e126ba97
EC
2330 int ret = 0;
2331
2332 dev = container_of(devr, struct mlx5_ib_dev, devr);
2333
d16e91da
HE
2334 mutex_init(&devr->mutex);
2335
e126ba97
EC
2336 devr->p0 = mlx5_ib_alloc_pd(&dev->ib_dev, NULL, NULL);
2337 if (IS_ERR(devr->p0)) {
2338 ret = PTR_ERR(devr->p0);
2339 goto error0;
2340 }
2341 devr->p0->device = &dev->ib_dev;
2342 devr->p0->uobject = NULL;
2343 atomic_set(&devr->p0->usecnt, 0);
2344
bcf4c1ea 2345 devr->c0 = mlx5_ib_create_cq(&dev->ib_dev, &cq_attr, NULL, NULL);
e126ba97
EC
2346 if (IS_ERR(devr->c0)) {
2347 ret = PTR_ERR(devr->c0);
2348 goto error1;
2349 }
2350 devr->c0->device = &dev->ib_dev;
2351 devr->c0->uobject = NULL;
2352 devr->c0->comp_handler = NULL;
2353 devr->c0->event_handler = NULL;
2354 devr->c0->cq_context = NULL;
2355 atomic_set(&devr->c0->usecnt, 0);
2356
2357 devr->x0 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
2358 if (IS_ERR(devr->x0)) {
2359 ret = PTR_ERR(devr->x0);
2360 goto error2;
2361 }
2362 devr->x0->device = &dev->ib_dev;
2363 devr->x0->inode = NULL;
2364 atomic_set(&devr->x0->usecnt, 0);
2365 mutex_init(&devr->x0->tgt_qp_mutex);
2366 INIT_LIST_HEAD(&devr->x0->tgt_qp_list);
2367
2368 devr->x1 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
2369 if (IS_ERR(devr->x1)) {
2370 ret = PTR_ERR(devr->x1);
2371 goto error3;
2372 }
2373 devr->x1->device = &dev->ib_dev;
2374 devr->x1->inode = NULL;
2375 atomic_set(&devr->x1->usecnt, 0);
2376 mutex_init(&devr->x1->tgt_qp_mutex);
2377 INIT_LIST_HEAD(&devr->x1->tgt_qp_list);
2378
2379 memset(&attr, 0, sizeof(attr));
2380 attr.attr.max_sge = 1;
2381 attr.attr.max_wr = 1;
2382 attr.srq_type = IB_SRQT_XRC;
2383 attr.ext.xrc.cq = devr->c0;
2384 attr.ext.xrc.xrcd = devr->x0;
2385
2386 devr->s0 = mlx5_ib_create_srq(devr->p0, &attr, NULL);
2387 if (IS_ERR(devr->s0)) {
2388 ret = PTR_ERR(devr->s0);
2389 goto error4;
2390 }
2391 devr->s0->device = &dev->ib_dev;
2392 devr->s0->pd = devr->p0;
2393 devr->s0->uobject = NULL;
2394 devr->s0->event_handler = NULL;
2395 devr->s0->srq_context = NULL;
2396 devr->s0->srq_type = IB_SRQT_XRC;
2397 devr->s0->ext.xrc.xrcd = devr->x0;
2398 devr->s0->ext.xrc.cq = devr->c0;
2399 atomic_inc(&devr->s0->ext.xrc.xrcd->usecnt);
2400 atomic_inc(&devr->s0->ext.xrc.cq->usecnt);
2401 atomic_inc(&devr->p0->usecnt);
2402 atomic_set(&devr->s0->usecnt, 0);
2403
4aa17b28
HA
2404 memset(&attr, 0, sizeof(attr));
2405 attr.attr.max_sge = 1;
2406 attr.attr.max_wr = 1;
2407 attr.srq_type = IB_SRQT_BASIC;
2408 devr->s1 = mlx5_ib_create_srq(devr->p0, &attr, NULL);
2409 if (IS_ERR(devr->s1)) {
2410 ret = PTR_ERR(devr->s1);
2411 goto error5;
2412 }
2413 devr->s1->device = &dev->ib_dev;
2414 devr->s1->pd = devr->p0;
2415 devr->s1->uobject = NULL;
2416 devr->s1->event_handler = NULL;
2417 devr->s1->srq_context = NULL;
2418 devr->s1->srq_type = IB_SRQT_BASIC;
2419 devr->s1->ext.xrc.cq = devr->c0;
2420 atomic_inc(&devr->p0->usecnt);
2421 atomic_set(&devr->s0->usecnt, 0);
2422
7722f47e
HE
2423 for (port = 0; port < ARRAY_SIZE(devr->ports); ++port) {
2424 INIT_WORK(&devr->ports[port].pkey_change_work,
2425 pkey_change_handler);
2426 devr->ports[port].devr = devr;
2427 }
2428
e126ba97
EC
2429 return 0;
2430
4aa17b28
HA
2431error5:
2432 mlx5_ib_destroy_srq(devr->s0);
e126ba97
EC
2433error4:
2434 mlx5_ib_dealloc_xrcd(devr->x1);
2435error3:
2436 mlx5_ib_dealloc_xrcd(devr->x0);
2437error2:
2438 mlx5_ib_destroy_cq(devr->c0);
2439error1:
2440 mlx5_ib_dealloc_pd(devr->p0);
2441error0:
2442 return ret;
2443}
2444
2445static void destroy_dev_resources(struct mlx5_ib_resources *devr)
2446{
7722f47e
HE
2447 struct mlx5_ib_dev *dev =
2448 container_of(devr, struct mlx5_ib_dev, devr);
2449 int port;
2450
4aa17b28 2451 mlx5_ib_destroy_srq(devr->s1);
e126ba97
EC
2452 mlx5_ib_destroy_srq(devr->s0);
2453 mlx5_ib_dealloc_xrcd(devr->x0);
2454 mlx5_ib_dealloc_xrcd(devr->x1);
2455 mlx5_ib_destroy_cq(devr->c0);
2456 mlx5_ib_dealloc_pd(devr->p0);
7722f47e
HE
2457
2458 /* Make sure no change P_Key work items are still executing */
2459 for (port = 0; port < dev->num_ports; ++port)
2460 cancel_work_sync(&devr->ports[port].pkey_change_work);
e126ba97
EC
2461}
2462
e53505a8
AS
2463static u32 get_core_cap_flags(struct ib_device *ibdev)
2464{
2465 struct mlx5_ib_dev *dev = to_mdev(ibdev);
2466 enum rdma_link_layer ll = mlx5_ib_port_link_layer(ibdev, 1);
2467 u8 l3_type_cap = MLX5_CAP_ROCE(dev->mdev, l3_type);
2468 u8 roce_version_cap = MLX5_CAP_ROCE(dev->mdev, roce_version);
2469 u32 ret = 0;
2470
2471 if (ll == IB_LINK_LAYER_INFINIBAND)
2472 return RDMA_CORE_PORT_IBA_IB;
2473
2474 if (!(l3_type_cap & MLX5_ROCE_L3_TYPE_IPV4_CAP))
2475 return 0;
2476
2477 if (!(l3_type_cap & MLX5_ROCE_L3_TYPE_IPV6_CAP))
2478 return 0;
2479
2480 if (roce_version_cap & MLX5_ROCE_VERSION_1_CAP)
2481 ret |= RDMA_CORE_PORT_IBA_ROCE;
2482
2483 if (roce_version_cap & MLX5_ROCE_VERSION_2_CAP)
2484 ret |= RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP;
2485
2486 return ret;
2487}
2488
7738613e
IW
2489static int mlx5_port_immutable(struct ib_device *ibdev, u8 port_num,
2490 struct ib_port_immutable *immutable)
2491{
2492 struct ib_port_attr attr;
2493 int err;
2494
2495 err = mlx5_ib_query_port(ibdev, port_num, &attr);
2496 if (err)
2497 return err;
2498
2499 immutable->pkey_tbl_len = attr.pkey_tbl_len;
2500 immutable->gid_tbl_len = attr.gid_tbl_len;
e53505a8 2501 immutable->core_cap_flags = get_core_cap_flags(ibdev);
337877a4 2502 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
7738613e
IW
2503
2504 return 0;
2505}
2506
c7342823
IW
2507static void get_dev_fw_str(struct ib_device *ibdev, char *str,
2508 size_t str_len)
2509{
2510 struct mlx5_ib_dev *dev =
2511 container_of(ibdev, struct mlx5_ib_dev, ib_dev);
2512 snprintf(str, str_len, "%d.%d.%04d", fw_rev_maj(dev->mdev),
2513 fw_rev_min(dev->mdev), fw_rev_sub(dev->mdev));
2514}
2515
fc24fc5e
AS
2516static int mlx5_enable_roce(struct mlx5_ib_dev *dev)
2517{
e53505a8
AS
2518 int err;
2519
fc24fc5e 2520 dev->roce.nb.notifier_call = mlx5_netdev_event;
e53505a8
AS
2521 err = register_netdevice_notifier(&dev->roce.nb);
2522 if (err)
2523 return err;
2524
2525 err = mlx5_nic_vport_enable_roce(dev->mdev);
2526 if (err)
2527 goto err_unregister_netdevice_notifier;
2528
2529 return 0;
2530
2531err_unregister_netdevice_notifier:
2532 unregister_netdevice_notifier(&dev->roce.nb);
2533 return err;
fc24fc5e
AS
2534}
2535
2536static void mlx5_disable_roce(struct mlx5_ib_dev *dev)
2537{
e53505a8 2538 mlx5_nic_vport_disable_roce(dev->mdev);
fc24fc5e
AS
2539 unregister_netdevice_notifier(&dev->roce.nb);
2540}
2541
0837e86a
MB
2542static void mlx5_ib_dealloc_q_counters(struct mlx5_ib_dev *dev)
2543{
2544 unsigned int i;
2545
2546 for (i = 0; i < dev->num_ports; i++)
2547 mlx5_core_dealloc_q_counter(dev->mdev,
2548 dev->port[i].q_cnt_id);
2549}
2550
2551static int mlx5_ib_alloc_q_counters(struct mlx5_ib_dev *dev)
2552{
2553 int i;
2554 int ret;
2555
2556 for (i = 0; i < dev->num_ports; i++) {
2557 ret = mlx5_core_alloc_q_counter(dev->mdev,
2558 &dev->port[i].q_cnt_id);
2559 if (ret) {
2560 mlx5_ib_warn(dev,
2561 "couldn't allocate queue counter for port %d, err %d\n",
2562 i + 1, ret);
2563 goto dealloc_counters;
2564 }
2565 }
2566
2567 return 0;
2568
2569dealloc_counters:
2570 while (--i >= 0)
2571 mlx5_core_dealloc_q_counter(dev->mdev,
2572 dev->port[i].q_cnt_id);
2573
2574 return ret;
2575}
2576
61961500 2577static const char * const names[] = {
0ad17a8f
MB
2578 "rx_write_requests",
2579 "rx_read_requests",
2580 "rx_atomic_requests",
2581 "out_of_buffer",
2582 "out_of_sequence",
2583 "duplicate_request",
2584 "rnr_nak_retry_err",
2585 "packet_seq_err",
2586 "implied_nak_seq_err",
2587 "local_ack_timeout_err",
2588};
2589
2590static const size_t stats_offsets[] = {
2591 MLX5_BYTE_OFF(query_q_counter_out, rx_write_requests),
2592 MLX5_BYTE_OFF(query_q_counter_out, rx_read_requests),
2593 MLX5_BYTE_OFF(query_q_counter_out, rx_atomic_requests),
2594 MLX5_BYTE_OFF(query_q_counter_out, out_of_buffer),
2595 MLX5_BYTE_OFF(query_q_counter_out, out_of_sequence),
2596 MLX5_BYTE_OFF(query_q_counter_out, duplicate_request),
2597 MLX5_BYTE_OFF(query_q_counter_out, rnr_nak_retry_err),
2598 MLX5_BYTE_OFF(query_q_counter_out, packet_seq_err),
2599 MLX5_BYTE_OFF(query_q_counter_out, implied_nak_seq_err),
2600 MLX5_BYTE_OFF(query_q_counter_out, local_ack_timeout_err),
2601};
2602
2603static struct rdma_hw_stats *mlx5_ib_alloc_hw_stats(struct ib_device *ibdev,
2604 u8 port_num)
2605{
2606 BUILD_BUG_ON(ARRAY_SIZE(names) != ARRAY_SIZE(stats_offsets));
2607
2608 /* We support only per port stats */
2609 if (port_num == 0)
2610 return NULL;
2611
2612 return rdma_alloc_hw_stats_struct(names, ARRAY_SIZE(names),
2613 RDMA_HW_STATS_DEFAULT_LIFESPAN);
2614}
2615
2616static int mlx5_ib_get_hw_stats(struct ib_device *ibdev,
2617 struct rdma_hw_stats *stats,
2618 u8 port, int index)
2619{
2620 struct mlx5_ib_dev *dev = to_mdev(ibdev);
2621 int outlen = MLX5_ST_SZ_BYTES(query_q_counter_out);
2622 void *out;
2623 __be32 val;
2624 int ret;
2625 int i;
2626
2627 if (!port || !stats)
2628 return -ENOSYS;
2629
2630 out = mlx5_vzalloc(outlen);
2631 if (!out)
2632 return -ENOMEM;
2633
2634 ret = mlx5_core_query_q_counter(dev->mdev,
2635 dev->port[port - 1].q_cnt_id, 0,
2636 out, outlen);
2637 if (ret)
2638 goto free;
2639
2640 for (i = 0; i < ARRAY_SIZE(names); i++) {
2641 val = *(__be32 *)(out + stats_offsets[i]);
2642 stats->value[i] = (u64)be32_to_cpu(val);
2643 }
2644free:
2645 kvfree(out);
2646 return ARRAY_SIZE(names);
2647}
2648
9603b61d 2649static void *mlx5_ib_add(struct mlx5_core_dev *mdev)
e126ba97 2650{
e126ba97 2651 struct mlx5_ib_dev *dev;
ebd61f68
AS
2652 enum rdma_link_layer ll;
2653 int port_type_cap;
e126ba97
EC
2654 int err;
2655 int i;
2656
ebd61f68
AS
2657 port_type_cap = MLX5_CAP_GEN(mdev, port_type);
2658 ll = mlx5_port_type_cap_to_rdma_ll(port_type_cap);
2659
e53505a8 2660 if ((ll == IB_LINK_LAYER_ETHERNET) && !MLX5_CAP_GEN(mdev, roce))
647241ea
MD
2661 return NULL;
2662
e126ba97
EC
2663 printk_once(KERN_INFO "%s", mlx5_version);
2664
2665 dev = (struct mlx5_ib_dev *)ib_alloc_device(sizeof(*dev));
2666 if (!dev)
9603b61d 2667 return NULL;
e126ba97 2668
9603b61d 2669 dev->mdev = mdev;
e126ba97 2670
0837e86a
MB
2671 dev->port = kcalloc(MLX5_CAP_GEN(mdev, num_ports), sizeof(*dev->port),
2672 GFP_KERNEL);
2673 if (!dev->port)
2674 goto err_dealloc;
2675
fc24fc5e 2676 rwlock_init(&dev->roce.netdev_lock);
e126ba97
EC
2677 err = get_port_caps(dev);
2678 if (err)
0837e86a 2679 goto err_free_port;
e126ba97 2680
1b5daf11
MD
2681 if (mlx5_use_mad_ifc(dev))
2682 get_ext_port_caps(dev);
e126ba97 2683
e126ba97
EC
2684 MLX5_INIT_DOORBELL_LOCK(&dev->uar_lock);
2685
2686 strlcpy(dev->ib_dev.name, "mlx5_%d", IB_DEVICE_NAME_MAX);
2687 dev->ib_dev.owner = THIS_MODULE;
2688 dev->ib_dev.node_type = RDMA_NODE_IB_CA;
c6790aa9 2689 dev->ib_dev.local_dma_lkey = 0 /* not supported for now */;
938fe83c 2690 dev->num_ports = MLX5_CAP_GEN(mdev, num_ports);
e126ba97 2691 dev->ib_dev.phys_port_cnt = dev->num_ports;
233d05d2
SM
2692 dev->ib_dev.num_comp_vectors =
2693 dev->mdev->priv.eq_table.num_comp_vectors;
e126ba97
EC
2694 dev->ib_dev.dma_device = &mdev->pdev->dev;
2695
2696 dev->ib_dev.uverbs_abi_ver = MLX5_IB_UVERBS_ABI_VERSION;
2697 dev->ib_dev.uverbs_cmd_mask =
2698 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2699 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2700 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2701 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2702 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2703 (1ull << IB_USER_VERBS_CMD_REG_MR) |
56e11d62 2704 (1ull << IB_USER_VERBS_CMD_REREG_MR) |
e126ba97
EC
2705 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2706 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2707 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
2708 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
2709 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2710 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2711 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
2712 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
2713 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2714 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2715 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2716 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2717 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
2718 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
2719 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
2720 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
2721 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
1707cb4a 2722 dev->ib_dev.uverbs_ex_cmd_mask =
d4584ddf
MB
2723 (1ull << IB_USER_VERBS_EX_CMD_QUERY_DEVICE) |
2724 (1ull << IB_USER_VERBS_EX_CMD_CREATE_CQ) |
2725 (1ull << IB_USER_VERBS_EX_CMD_CREATE_QP);
e126ba97
EC
2726
2727 dev->ib_dev.query_device = mlx5_ib_query_device;
2728 dev->ib_dev.query_port = mlx5_ib_query_port;
ebd61f68 2729 dev->ib_dev.get_link_layer = mlx5_ib_port_link_layer;
fc24fc5e
AS
2730 if (ll == IB_LINK_LAYER_ETHERNET)
2731 dev->ib_dev.get_netdev = mlx5_ib_get_netdev;
e126ba97 2732 dev->ib_dev.query_gid = mlx5_ib_query_gid;
3cca2606
AS
2733 dev->ib_dev.add_gid = mlx5_ib_add_gid;
2734 dev->ib_dev.del_gid = mlx5_ib_del_gid;
e126ba97
EC
2735 dev->ib_dev.query_pkey = mlx5_ib_query_pkey;
2736 dev->ib_dev.modify_device = mlx5_ib_modify_device;
2737 dev->ib_dev.modify_port = mlx5_ib_modify_port;
2738 dev->ib_dev.alloc_ucontext = mlx5_ib_alloc_ucontext;
2739 dev->ib_dev.dealloc_ucontext = mlx5_ib_dealloc_ucontext;
2740 dev->ib_dev.mmap = mlx5_ib_mmap;
2741 dev->ib_dev.alloc_pd = mlx5_ib_alloc_pd;
2742 dev->ib_dev.dealloc_pd = mlx5_ib_dealloc_pd;
2743 dev->ib_dev.create_ah = mlx5_ib_create_ah;
2744 dev->ib_dev.query_ah = mlx5_ib_query_ah;
2745 dev->ib_dev.destroy_ah = mlx5_ib_destroy_ah;
2746 dev->ib_dev.create_srq = mlx5_ib_create_srq;
2747 dev->ib_dev.modify_srq = mlx5_ib_modify_srq;
2748 dev->ib_dev.query_srq = mlx5_ib_query_srq;
2749 dev->ib_dev.destroy_srq = mlx5_ib_destroy_srq;
2750 dev->ib_dev.post_srq_recv = mlx5_ib_post_srq_recv;
2751 dev->ib_dev.create_qp = mlx5_ib_create_qp;
2752 dev->ib_dev.modify_qp = mlx5_ib_modify_qp;
2753 dev->ib_dev.query_qp = mlx5_ib_query_qp;
2754 dev->ib_dev.destroy_qp = mlx5_ib_destroy_qp;
2755 dev->ib_dev.post_send = mlx5_ib_post_send;
2756 dev->ib_dev.post_recv = mlx5_ib_post_recv;
2757 dev->ib_dev.create_cq = mlx5_ib_create_cq;
2758 dev->ib_dev.modify_cq = mlx5_ib_modify_cq;
2759 dev->ib_dev.resize_cq = mlx5_ib_resize_cq;
2760 dev->ib_dev.destroy_cq = mlx5_ib_destroy_cq;
2761 dev->ib_dev.poll_cq = mlx5_ib_poll_cq;
2762 dev->ib_dev.req_notify_cq = mlx5_ib_arm_cq;
2763 dev->ib_dev.get_dma_mr = mlx5_ib_get_dma_mr;
2764 dev->ib_dev.reg_user_mr = mlx5_ib_reg_user_mr;
56e11d62 2765 dev->ib_dev.rereg_user_mr = mlx5_ib_rereg_user_mr;
e126ba97
EC
2766 dev->ib_dev.dereg_mr = mlx5_ib_dereg_mr;
2767 dev->ib_dev.attach_mcast = mlx5_ib_mcg_attach;
2768 dev->ib_dev.detach_mcast = mlx5_ib_mcg_detach;
2769 dev->ib_dev.process_mad = mlx5_ib_process_mad;
9bee178b 2770 dev->ib_dev.alloc_mr = mlx5_ib_alloc_mr;
8a187ee5 2771 dev->ib_dev.map_mr_sg = mlx5_ib_map_mr_sg;
d5436ba0 2772 dev->ib_dev.check_mr_status = mlx5_ib_check_mr_status;
7738613e 2773 dev->ib_dev.get_port_immutable = mlx5_port_immutable;
c7342823 2774 dev->ib_dev.get_dev_fw_str = get_dev_fw_str;
eff901d3
EC
2775 if (mlx5_core_is_pf(mdev)) {
2776 dev->ib_dev.get_vf_config = mlx5_ib_get_vf_config;
2777 dev->ib_dev.set_vf_link_state = mlx5_ib_set_vf_link_state;
2778 dev->ib_dev.get_vf_stats = mlx5_ib_get_vf_stats;
2779 dev->ib_dev.set_vf_guid = mlx5_ib_set_vf_guid;
2780 }
e126ba97 2781
7c2344c3
MG
2782 dev->ib_dev.disassociate_ucontext = mlx5_ib_disassociate_ucontext;
2783
938fe83c 2784 mlx5_ib_internal_fill_odp_caps(dev);
8cdd312c 2785
d2370e0a
MB
2786 if (MLX5_CAP_GEN(mdev, imaicl)) {
2787 dev->ib_dev.alloc_mw = mlx5_ib_alloc_mw;
2788 dev->ib_dev.dealloc_mw = mlx5_ib_dealloc_mw;
2789 dev->ib_dev.uverbs_cmd_mask |=
2790 (1ull << IB_USER_VERBS_CMD_ALLOC_MW) |
2791 (1ull << IB_USER_VERBS_CMD_DEALLOC_MW);
2792 }
2793
0ad17a8f
MB
2794 if (MLX5_CAP_GEN(dev->mdev, out_of_seq_cnt) &&
2795 MLX5_CAP_GEN(dev->mdev, retransmission_q_counters)) {
2796 dev->ib_dev.get_hw_stats = mlx5_ib_get_hw_stats;
2797 dev->ib_dev.alloc_hw_stats = mlx5_ib_alloc_hw_stats;
2798 }
2799
938fe83c 2800 if (MLX5_CAP_GEN(mdev, xrc)) {
e126ba97
EC
2801 dev->ib_dev.alloc_xrcd = mlx5_ib_alloc_xrcd;
2802 dev->ib_dev.dealloc_xrcd = mlx5_ib_dealloc_xrcd;
2803 dev->ib_dev.uverbs_cmd_mask |=
2804 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
2805 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
2806 }
2807
048ccca8 2808 if (mlx5_ib_port_link_layer(&dev->ib_dev, 1) ==
038d2ef8
MG
2809 IB_LINK_LAYER_ETHERNET) {
2810 dev->ib_dev.create_flow = mlx5_ib_create_flow;
2811 dev->ib_dev.destroy_flow = mlx5_ib_destroy_flow;
79b20a6c
YH
2812 dev->ib_dev.create_wq = mlx5_ib_create_wq;
2813 dev->ib_dev.modify_wq = mlx5_ib_modify_wq;
2814 dev->ib_dev.destroy_wq = mlx5_ib_destroy_wq;
c5f90929
YH
2815 dev->ib_dev.create_rwq_ind_table = mlx5_ib_create_rwq_ind_table;
2816 dev->ib_dev.destroy_rwq_ind_table = mlx5_ib_destroy_rwq_ind_table;
038d2ef8
MG
2817 dev->ib_dev.uverbs_ex_cmd_mask |=
2818 (1ull << IB_USER_VERBS_EX_CMD_CREATE_FLOW) |
79b20a6c
YH
2819 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_FLOW) |
2820 (1ull << IB_USER_VERBS_EX_CMD_CREATE_WQ) |
2821 (1ull << IB_USER_VERBS_EX_CMD_MODIFY_WQ) |
c5f90929
YH
2822 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_WQ) |
2823 (1ull << IB_USER_VERBS_EX_CMD_CREATE_RWQ_IND_TBL) |
2824 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_RWQ_IND_TBL);
038d2ef8 2825 }
e126ba97
EC
2826 err = init_node_data(dev);
2827 if (err)
233d05d2 2828 goto err_dealloc;
e126ba97 2829
038d2ef8 2830 mutex_init(&dev->flow_db.lock);
e126ba97 2831 mutex_init(&dev->cap_mask_mutex);
89ea94a7
MG
2832 INIT_LIST_HEAD(&dev->qp_list);
2833 spin_lock_init(&dev->reset_flow_resource_lock);
e126ba97 2834
fc24fc5e
AS
2835 if (ll == IB_LINK_LAYER_ETHERNET) {
2836 err = mlx5_enable_roce(dev);
2837 if (err)
2838 goto err_dealloc;
2839 }
2840
e126ba97
EC
2841 err = create_dev_resources(&dev->devr);
2842 if (err)
fc24fc5e 2843 goto err_disable_roce;
e126ba97 2844
6aec21f6 2845 err = mlx5_ib_odp_init_one(dev);
281d1a92 2846 if (err)
e126ba97
EC
2847 goto err_rsrc;
2848
0837e86a 2849 err = mlx5_ib_alloc_q_counters(dev);
6aec21f6
HE
2850 if (err)
2851 goto err_odp;
2852
0837e86a
MB
2853 err = ib_register_device(&dev->ib_dev, NULL);
2854 if (err)
2855 goto err_q_cnt;
2856
e126ba97
EC
2857 err = create_umr_res(dev);
2858 if (err)
2859 goto err_dev;
2860
2861 for (i = 0; i < ARRAY_SIZE(mlx5_class_attributes); i++) {
281d1a92
WY
2862 err = device_create_file(&dev->ib_dev.dev,
2863 mlx5_class_attributes[i]);
2864 if (err)
e126ba97
EC
2865 goto err_umrc;
2866 }
2867
2868 dev->ib_active = true;
2869
9603b61d 2870 return dev;
e126ba97
EC
2871
2872err_umrc:
2873 destroy_umrc_res(dev);
2874
2875err_dev:
2876 ib_unregister_device(&dev->ib_dev);
2877
0837e86a
MB
2878err_q_cnt:
2879 mlx5_ib_dealloc_q_counters(dev);
2880
6aec21f6
HE
2881err_odp:
2882 mlx5_ib_odp_remove_one(dev);
2883
e126ba97
EC
2884err_rsrc:
2885 destroy_dev_resources(&dev->devr);
2886
fc24fc5e
AS
2887err_disable_roce:
2888 if (ll == IB_LINK_LAYER_ETHERNET)
2889 mlx5_disable_roce(dev);
2890
0837e86a
MB
2891err_free_port:
2892 kfree(dev->port);
2893
9603b61d 2894err_dealloc:
e126ba97
EC
2895 ib_dealloc_device((struct ib_device *)dev);
2896
9603b61d 2897 return NULL;
e126ba97
EC
2898}
2899
9603b61d 2900static void mlx5_ib_remove(struct mlx5_core_dev *mdev, void *context)
e126ba97 2901{
9603b61d 2902 struct mlx5_ib_dev *dev = context;
fc24fc5e 2903 enum rdma_link_layer ll = mlx5_ib_port_link_layer(&dev->ib_dev, 1);
6aec21f6 2904
e126ba97 2905 ib_unregister_device(&dev->ib_dev);
0837e86a 2906 mlx5_ib_dealloc_q_counters(dev);
eefd56e5 2907 destroy_umrc_res(dev);
6aec21f6 2908 mlx5_ib_odp_remove_one(dev);
e126ba97 2909 destroy_dev_resources(&dev->devr);
fc24fc5e
AS
2910 if (ll == IB_LINK_LAYER_ETHERNET)
2911 mlx5_disable_roce(dev);
0837e86a 2912 kfree(dev->port);
e126ba97
EC
2913 ib_dealloc_device(&dev->ib_dev);
2914}
2915
9603b61d
JM
2916static struct mlx5_interface mlx5_ib_interface = {
2917 .add = mlx5_ib_add,
2918 .remove = mlx5_ib_remove,
2919 .event = mlx5_ib_event,
64613d94 2920 .protocol = MLX5_INTERFACE_PROTOCOL_IB,
e126ba97
EC
2921};
2922
2923static int __init mlx5_ib_init(void)
2924{
6aec21f6
HE
2925 int err;
2926
9603b61d
JM
2927 if (deprecated_prof_sel != 2)
2928 pr_warn("prof_sel is deprecated for mlx5_ib, set it for mlx5_core\n");
2929
6aec21f6
HE
2930 err = mlx5_ib_odp_init();
2931 if (err)
2932 return err;
2933
2934 err = mlx5_register_interface(&mlx5_ib_interface);
2935 if (err)
2936 goto clean_odp;
2937
2938 return err;
2939
2940clean_odp:
2941 mlx5_ib_odp_cleanup();
2942 return err;
e126ba97
EC
2943}
2944
2945static void __exit mlx5_ib_cleanup(void)
2946{
9603b61d 2947 mlx5_unregister_interface(&mlx5_ib_interface);
6aec21f6 2948 mlx5_ib_odp_cleanup();
e126ba97
EC
2949}
2950
2951module_init(mlx5_ib_init);
2952module_exit(mlx5_ib_cleanup);
This page took 0.546025 seconds and 5 git commands to generate.