blob: 0480b643fb9c42a200c654258b6401394be173c9 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed6cf0a152015-04-02 17:07:30 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
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
Christoph Hellwigadec6402015-08-28 09:27:19 +020033#include <linux/highmem.h>
Eli Cohene126ba92013-07-07 17:25:49 +030034#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>
Guy Levi37aa5c32016-04-27 16:49:50 +030040#if defined(CONFIG_X86)
41#include <asm/pat.h>
42#endif
Eli Cohene126ba92013-07-07 17:25:49 +030043#include <linux/sched.h>
Maor Gottlieb7c2344c2016-06-17 14:56:44 +030044#include <linux/delay.h>
Eli Cohene126ba92013-07-07 17:25:49 +030045#include <rdma/ib_user_verbs.h>
Achiad Shochat3f89a642015-12-23 18:47:21 +020046#include <rdma/ib_addr.h>
Achiad Shochat2811ba52015-12-23 18:47:24 +020047#include <rdma/ib_cache.h>
Achiad Shochatada68c32016-02-22 18:17:23 +020048#include <linux/mlx5/port.h>
Majd Dibbiny1b5daf12015-06-04 19:30:46 +030049#include <linux/mlx5/vport.h>
Maor Gottlieb7c2344c2016-06-17 14:56:44 +030050#include <linux/list.h>
Eli Cohene126ba92013-07-07 17:25:49 +030051#include <rdma/ib_smi.h>
52#include <rdma/ib_umem.h>
Maor Gottlieb038d2ef2016-01-11 10:26:07 +020053#include <linux/in.h>
54#include <linux/etherdevice.h>
55#include <linux/mlx5/fs.h>
Eli Cohene126ba92013-07-07 17:25:49 +030056#include "user.h"
57#include "mlx5_ib.h"
58
59#define DRIVER_NAME "mlx5_ib"
Amir Vadai169a1d82014-02-19 17:47:31 +020060#define DRIVER_VERSION "2.2-1"
61#define DRIVER_RELDATE "Feb 2014"
Eli Cohene126ba92013-07-07 17:25:49 +030062
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
Jack Morgenstein9603b612014-07-28 23:30:22 +030068static 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");
Eli Cohene126ba92013-07-07 17:25:49 +030071
72static char mlx5_version[] =
73 DRIVER_NAME ": Mellanox Connect-IB Infiniband driver v"
74 DRIVER_VERSION " (" DRIVER_RELDATE ")\n";
75
Eran Ben Elishada7525d2015-12-14 16:34:10 +020076enum {
77 MLX5_ATOMIC_SIZE_QP_8BYTES = 1 << 3,
78};
Majd Dibbiny1b5daf12015-06-04 19:30:46 +030079
Majd Dibbiny1b5daf12015-06-04 19:30:46 +030080static enum rdma_link_layer
Achiad Shochatebd61f62015-12-23 18:47:16 +020081mlx5_port_type_cap_to_rdma_ll(int port_type_cap)
Majd Dibbiny1b5daf12015-06-04 19:30:46 +030082{
Achiad Shochatebd61f62015-12-23 18:47:16 +020083 switch (port_type_cap) {
Majd Dibbiny1b5daf12015-06-04 19:30:46 +030084 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
Achiad Shochatebd61f62015-12-23 18:47:16 +020093static 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
Achiad Shochatfc24fc52015-12-23 18:47:17 +0200102static 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
Achiad Shochat3f89a642015-12-23 18:47:21 +0200137static 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;
Leon Romanovskyc876a1b2016-01-09 13:06:25 +0200143 u16 qkey_viol_cntr;
Achiad Shochat3f89a642015-12-23 18:47:21 +0200144
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
Leon Romanovskyc876a1b2016-01-09 13:06:25 +0200158 mlx5_query_nic_vport_qkey_viol_cntr(dev->mdev, &qkey_viol_cntr);
159 props->qkey_viol_cntr = qkey_viol_cntr;
Achiad Shochat3f89a642015-12-23 18:47:21 +0200160
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
Achiad Shochat3cca2602015-12-23 18:47:23 +0200182static 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
Achiad Shochat2811ba52015-12-23 18:47:24 +0200269__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
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300289static int mlx5_use_mad_ifc(struct mlx5_ib_dev *dev)
290{
Noa Osherovich7fae6652016-09-12 19:16:23 +0300291 if (MLX5_CAP_GEN(dev->mdev, port_type) == MLX5_CAP_PORT_TYPE_IB)
292 return !MLX5_CAP_GEN(dev->mdev, ib_virt);
293 return 0;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300294}
295
296enum {
297 MLX5_VPORT_ACCESS_METHOD_MAD,
298 MLX5_VPORT_ACCESS_METHOD_HCA,
299 MLX5_VPORT_ACCESS_METHOD_NIC,
300};
301
302static int mlx5_get_vport_access_method(struct ib_device *ibdev)
303{
304 if (mlx5_use_mad_ifc(to_mdev(ibdev)))
305 return MLX5_VPORT_ACCESS_METHOD_MAD;
306
Achiad Shochatebd61f62015-12-23 18:47:16 +0200307 if (mlx5_ib_port_link_layer(ibdev, 1) ==
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300308 IB_LINK_LAYER_ETHERNET)
309 return MLX5_VPORT_ACCESS_METHOD_NIC;
310
311 return MLX5_VPORT_ACCESS_METHOD_HCA;
312}
313
Eran Ben Elishada7525d2015-12-14 16:34:10 +0200314static void get_atomic_caps(struct mlx5_ib_dev *dev,
315 struct ib_device_attr *props)
316{
317 u8 tmp;
318 u8 atomic_operations = MLX5_CAP_ATOMIC(dev->mdev, atomic_operations);
319 u8 atomic_size_qp = MLX5_CAP_ATOMIC(dev->mdev, atomic_size_qp);
320 u8 atomic_req_8B_endianness_mode =
321 MLX5_CAP_ATOMIC(dev->mdev, atomic_req_8B_endianess_mode);
322
323 /* Check if HW supports 8 bytes standard atomic operations and capable
324 * of host endianness respond
325 */
326 tmp = MLX5_ATOMIC_OPS_CMP_SWAP | MLX5_ATOMIC_OPS_FETCH_ADD;
327 if (((atomic_operations & tmp) == tmp) &&
328 (atomic_size_qp & MLX5_ATOMIC_SIZE_QP_8BYTES) &&
329 (atomic_req_8B_endianness_mode)) {
330 props->atomic_cap = IB_ATOMIC_HCA;
331 } else {
332 props->atomic_cap = IB_ATOMIC_NONE;
333 }
334}
335
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300336static int mlx5_query_system_image_guid(struct ib_device *ibdev,
337 __be64 *sys_image_guid)
338{
339 struct mlx5_ib_dev *dev = to_mdev(ibdev);
340 struct mlx5_core_dev *mdev = dev->mdev;
341 u64 tmp;
342 int err;
343
344 switch (mlx5_get_vport_access_method(ibdev)) {
345 case MLX5_VPORT_ACCESS_METHOD_MAD:
346 return mlx5_query_mad_ifc_system_image_guid(ibdev,
347 sys_image_guid);
348
349 case MLX5_VPORT_ACCESS_METHOD_HCA:
350 err = mlx5_query_hca_vport_system_image_guid(mdev, &tmp);
Achiad Shochat3f89a642015-12-23 18:47:21 +0200351 break;
352
353 case MLX5_VPORT_ACCESS_METHOD_NIC:
354 err = mlx5_query_nic_vport_system_image_guid(mdev, &tmp);
355 break;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300356
357 default:
358 return -EINVAL;
359 }
Achiad Shochat3f89a642015-12-23 18:47:21 +0200360
361 if (!err)
362 *sys_image_guid = cpu_to_be64(tmp);
363
364 return err;
365
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300366}
367
368static int mlx5_query_max_pkeys(struct ib_device *ibdev,
369 u16 *max_pkeys)
370{
371 struct mlx5_ib_dev *dev = to_mdev(ibdev);
372 struct mlx5_core_dev *mdev = dev->mdev;
373
374 switch (mlx5_get_vport_access_method(ibdev)) {
375 case MLX5_VPORT_ACCESS_METHOD_MAD:
376 return mlx5_query_mad_ifc_max_pkeys(ibdev, max_pkeys);
377
378 case MLX5_VPORT_ACCESS_METHOD_HCA:
379 case MLX5_VPORT_ACCESS_METHOD_NIC:
380 *max_pkeys = mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev,
381 pkey_table_size));
382 return 0;
383
384 default:
385 return -EINVAL;
386 }
387}
388
389static int mlx5_query_vendor_id(struct ib_device *ibdev,
390 u32 *vendor_id)
391{
392 struct mlx5_ib_dev *dev = to_mdev(ibdev);
393
394 switch (mlx5_get_vport_access_method(ibdev)) {
395 case MLX5_VPORT_ACCESS_METHOD_MAD:
396 return mlx5_query_mad_ifc_vendor_id(ibdev, vendor_id);
397
398 case MLX5_VPORT_ACCESS_METHOD_HCA:
399 case MLX5_VPORT_ACCESS_METHOD_NIC:
400 return mlx5_core_query_vendor_id(dev->mdev, vendor_id);
401
402 default:
403 return -EINVAL;
404 }
405}
406
407static int mlx5_query_node_guid(struct mlx5_ib_dev *dev,
408 __be64 *node_guid)
409{
410 u64 tmp;
411 int err;
412
413 switch (mlx5_get_vport_access_method(&dev->ib_dev)) {
414 case MLX5_VPORT_ACCESS_METHOD_MAD:
415 return mlx5_query_mad_ifc_node_guid(dev, node_guid);
416
417 case MLX5_VPORT_ACCESS_METHOD_HCA:
418 err = mlx5_query_hca_vport_node_guid(dev->mdev, &tmp);
Achiad Shochat3f89a642015-12-23 18:47:21 +0200419 break;
420
421 case MLX5_VPORT_ACCESS_METHOD_NIC:
422 err = mlx5_query_nic_vport_node_guid(dev->mdev, &tmp);
423 break;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300424
425 default:
426 return -EINVAL;
427 }
Achiad Shochat3f89a642015-12-23 18:47:21 +0200428
429 if (!err)
430 *node_guid = cpu_to_be64(tmp);
431
432 return err;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300433}
434
435struct mlx5_reg_node_desc {
436 u8 desc[64];
437};
438
439static int mlx5_query_node_desc(struct mlx5_ib_dev *dev, char *node_desc)
440{
441 struct mlx5_reg_node_desc in;
442
443 if (mlx5_use_mad_ifc(dev))
444 return mlx5_query_mad_ifc_node_desc(dev, node_desc);
445
446 memset(&in, 0, sizeof(in));
447
448 return mlx5_core_access_reg(dev->mdev, &in, sizeof(in), node_desc,
449 sizeof(struct mlx5_reg_node_desc),
450 MLX5_REG_NODE_DESC, 0, 0);
451}
452
Eli Cohene126ba92013-07-07 17:25:49 +0300453static int mlx5_ib_query_device(struct ib_device *ibdev,
Matan Barak2528e332015-06-11 16:35:25 +0300454 struct ib_device_attr *props,
455 struct ib_udata *uhw)
Eli Cohene126ba92013-07-07 17:25:49 +0300456{
457 struct mlx5_ib_dev *dev = to_mdev(ibdev);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300458 struct mlx5_core_dev *mdev = dev->mdev;
Eli Cohene126ba92013-07-07 17:25:49 +0300459 int err = -ENOMEM;
460 int max_rq_sg;
461 int max_sq_sg;
Sagi Grimberge0238a62015-07-21 14:40:12 +0300462 u64 min_page_size = 1ull << MLX5_CAP_GEN(mdev, log_pg_sz);
Bodong Wang402ca532016-06-17 15:02:20 +0300463 struct mlx5_ib_query_device_resp resp = {};
464 size_t resp_len;
465 u64 max_tso;
Eli Cohene126ba92013-07-07 17:25:49 +0300466
Bodong Wang402ca532016-06-17 15:02:20 +0300467 resp_len = sizeof(resp.comp_mask) + sizeof(resp.response_length);
468 if (uhw->outlen && uhw->outlen < resp_len)
469 return -EINVAL;
470 else
471 resp.response_length = resp_len;
472
473 if (uhw->inlen && !ib_is_udata_cleared(uhw, 0, uhw->inlen))
Matan Barak2528e332015-06-11 16:35:25 +0300474 return -EINVAL;
475
Eli Cohene126ba92013-07-07 17:25:49 +0300476 memset(props, 0, sizeof(*props));
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300477 err = mlx5_query_system_image_guid(ibdev,
478 &props->sys_image_guid);
479 if (err)
480 return err;
481
482 err = mlx5_query_max_pkeys(ibdev, &props->max_pkeys);
483 if (err)
484 return err;
485
486 err = mlx5_query_vendor_id(ibdev, &props->vendor_id);
487 if (err)
488 return err;
Eli Cohene126ba92013-07-07 17:25:49 +0300489
Jack Morgenstein9603b612014-07-28 23:30:22 +0300490 props->fw_ver = ((u64)fw_rev_maj(dev->mdev) << 32) |
491 (fw_rev_min(dev->mdev) << 16) |
492 fw_rev_sub(dev->mdev);
Eli Cohene126ba92013-07-07 17:25:49 +0300493 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
494 IB_DEVICE_PORT_ACTIVE_EVENT |
495 IB_DEVICE_SYS_IMAGE_GUID |
Eli Cohen1a4c3a32014-02-06 17:41:25 +0200496 IB_DEVICE_RC_RNR_NAK_GEN;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300497
498 if (MLX5_CAP_GEN(mdev, pkv))
Eli Cohene126ba92013-07-07 17:25:49 +0300499 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300500 if (MLX5_CAP_GEN(mdev, qkv))
Eli Cohene126ba92013-07-07 17:25:49 +0300501 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300502 if (MLX5_CAP_GEN(mdev, apm))
Eli Cohene126ba92013-07-07 17:25:49 +0300503 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300504 if (MLX5_CAP_GEN(mdev, xrc))
Eli Cohene126ba92013-07-07 17:25:49 +0300505 props->device_cap_flags |= IB_DEVICE_XRC;
Matan Barakd2370e02016-02-29 18:05:30 +0200506 if (MLX5_CAP_GEN(mdev, imaicl)) {
507 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW |
508 IB_DEVICE_MEM_WINDOW_TYPE_2B;
509 props->max_mw = 1 << MLX5_CAP_GEN(mdev, log_max_mkey);
Sagi Grimbergb005d312016-02-29 19:07:33 +0200510 /* We support 'Gappy' memory registration too */
511 props->device_cap_flags |= IB_DEVICE_SG_GAPS_REG;
Matan Barakd2370e02016-02-29 18:05:30 +0200512 }
Eli Cohene126ba92013-07-07 17:25:49 +0300513 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300514 if (MLX5_CAP_GEN(mdev, sho)) {
Sagi Grimberg2dea9092014-02-23 14:19:13 +0200515 props->device_cap_flags |= IB_DEVICE_SIGNATURE_HANDOVER;
516 /* At this stage no support for signature handover */
517 props->sig_prot_cap = IB_PROT_T10DIF_TYPE_1 |
518 IB_PROT_T10DIF_TYPE_2 |
519 IB_PROT_T10DIF_TYPE_3;
520 props->sig_guard_cap = IB_GUARD_T10DIF_CRC |
521 IB_GUARD_T10DIF_CSUM;
522 }
Saeed Mahameed938fe832015-05-28 22:28:41 +0300523 if (MLX5_CAP_GEN(mdev, block_lb_mc))
Eli Cohenf360d882014-04-02 00:10:16 +0300524 props->device_cap_flags |= IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
Eli Cohene126ba92013-07-07 17:25:49 +0300525
Bodong Wang402ca532016-06-17 15:02:20 +0300526 if (MLX5_CAP_GEN(dev->mdev, eth_net_offloads)) {
527 if (MLX5_CAP_ETH(mdev, csum_cap))
Bodong Wang88115fe2015-12-18 13:53:20 +0200528 props->device_cap_flags |= IB_DEVICE_RAW_IP_CSUM;
529
Bodong Wang402ca532016-06-17 15:02:20 +0300530 if (field_avail(typeof(resp), tso_caps, uhw->outlen)) {
531 max_tso = MLX5_CAP_ETH(mdev, max_lso_cap);
532 if (max_tso) {
533 resp.tso_caps.max_tso = 1 << max_tso;
534 resp.tso_caps.supported_qpts |=
535 1 << IB_QPT_RAW_PACKET;
536 resp.response_length += sizeof(resp.tso_caps);
537 }
538 }
539 }
540
Erez Shitritf0313962016-02-21 16:27:17 +0200541 if (MLX5_CAP_GEN(mdev, ipoib_basic_offloads)) {
542 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
543 props->device_cap_flags |= IB_DEVICE_UD_TSO;
544 }
545
Majd Dibbinycff5a0f2016-04-17 17:19:38 +0300546 if (MLX5_CAP_GEN(dev->mdev, eth_net_offloads) &&
547 MLX5_CAP_ETH(dev->mdev, scatter_fcs))
548 props->device_cap_flags |= IB_DEVICE_RAW_SCATTER_FCS;
549
Maor Gottliebda6d6ba32016-06-04 15:15:28 +0300550 if (mlx5_get_flow_namespace(dev->mdev, MLX5_FLOW_NAMESPACE_BYPASS))
551 props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
552
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300553 props->vendor_part_id = mdev->pdev->device;
554 props->hw_ver = mdev->pdev->revision;
Eli Cohene126ba92013-07-07 17:25:49 +0300555
556 props->max_mr_size = ~0ull;
Sagi Grimberge0238a62015-07-21 14:40:12 +0300557 props->page_size_cap = ~(min_page_size - 1);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300558 props->max_qp = 1 << MLX5_CAP_GEN(mdev, log_max_qp);
559 props->max_qp_wr = 1 << MLX5_CAP_GEN(mdev, log_max_qp_sz);
560 max_rq_sg = MLX5_CAP_GEN(mdev, max_wqe_sz_rq) /
561 sizeof(struct mlx5_wqe_data_seg);
562 max_sq_sg = (MLX5_CAP_GEN(mdev, max_wqe_sz_sq) -
563 sizeof(struct mlx5_wqe_ctrl_seg)) /
564 sizeof(struct mlx5_wqe_data_seg);
Eli Cohene126ba92013-07-07 17:25:49 +0300565 props->max_sge = min(max_rq_sg, max_sq_sg);
Sagi Grimberg986ef952016-03-31 19:03:25 +0300566 props->max_sge_rd = MLX5_MAX_SGE_RD;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300567 props->max_cq = 1 << MLX5_CAP_GEN(mdev, log_max_cq);
Leon Romanovsky9f177682016-01-14 08:11:40 +0200568 props->max_cqe = (1 << MLX5_CAP_GEN(mdev, log_max_cq_sz)) - 1;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300569 props->max_mr = 1 << MLX5_CAP_GEN(mdev, log_max_mkey);
570 props->max_pd = 1 << MLX5_CAP_GEN(mdev, log_max_pd);
571 props->max_qp_rd_atom = 1 << MLX5_CAP_GEN(mdev, log_max_ra_req_qp);
572 props->max_qp_init_rd_atom = 1 << MLX5_CAP_GEN(mdev, log_max_ra_res_qp);
573 props->max_srq = 1 << MLX5_CAP_GEN(mdev, log_max_srq);
574 props->max_srq_wr = (1 << MLX5_CAP_GEN(mdev, log_max_srq_sz)) - 1;
575 props->local_ca_ack_delay = MLX5_CAP_GEN(mdev, local_ca_ack_delay);
Eli Cohene126ba92013-07-07 17:25:49 +0300576 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
Eli Cohene126ba92013-07-07 17:25:49 +0300577 props->max_srq_sge = max_rq_sg - 1;
Sagi Grimberg911f4332016-03-03 13:37:51 +0200578 props->max_fast_reg_page_list_len =
579 1 << MLX5_CAP_GEN(mdev, log_max_klm_list_size);
Eran Ben Elishada7525d2015-12-14 16:34:10 +0200580 get_atomic_caps(dev, props);
Eli Cohen81bea282013-09-11 16:35:30 +0300581 props->masked_atomic_cap = IB_ATOMIC_NONE;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300582 props->max_mcast_grp = 1 << MLX5_CAP_GEN(mdev, log_max_mcg);
583 props->max_mcast_qp_attach = MLX5_CAP_GEN(mdev, max_qp_mcg);
Eli Cohene126ba92013-07-07 17:25:49 +0300584 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
585 props->max_mcast_grp;
586 props->max_map_per_fmr = INT_MAX; /* no limit in ConnectIB */
Matan Barak7c60bcb2015-12-15 20:30:11 +0200587 props->hca_core_clock = MLX5_CAP_GEN(mdev, device_frequency_khz);
588 props->timestamp_mask = 0x7FFFFFFFFFFFFFFFULL;
Eli Cohene126ba92013-07-07 17:25:49 +0300589
Haggai Eran8cdd3122014-12-11 17:04:20 +0200590#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
Saeed Mahameed938fe832015-05-28 22:28:41 +0300591 if (MLX5_CAP_GEN(mdev, pg))
Haggai Eran8cdd3122014-12-11 17:04:20 +0200592 props->device_cap_flags |= IB_DEVICE_ON_DEMAND_PAGING;
593 props->odp_caps = dev->odp_caps;
594#endif
595
Leon Romanovsky051f2632015-12-20 12:16:11 +0200596 if (MLX5_CAP_GEN(mdev, cd))
597 props->device_cap_flags |= IB_DEVICE_CROSS_CHANNEL;
598
Eli Coheneff901d2016-03-11 22:58:42 +0200599 if (!mlx5_core_is_pf(mdev))
600 props->device_cap_flags |= IB_DEVICE_VIRTUAL_FUNCTION;
601
Bodong Wang402ca532016-06-17 15:02:20 +0300602 if (uhw->outlen) {
603 err = ib_copy_to_udata(uhw, &resp, resp.response_length);
604
605 if (err)
606 return err;
607 }
608
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300609 return 0;
610}
Eli Cohene126ba92013-07-07 17:25:49 +0300611
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300612enum mlx5_ib_width {
613 MLX5_IB_WIDTH_1X = 1 << 0,
614 MLX5_IB_WIDTH_2X = 1 << 1,
615 MLX5_IB_WIDTH_4X = 1 << 2,
616 MLX5_IB_WIDTH_8X = 1 << 3,
617 MLX5_IB_WIDTH_12X = 1 << 4
618};
619
620static int translate_active_width(struct ib_device *ibdev, u8 active_width,
621 u8 *ib_width)
622{
623 struct mlx5_ib_dev *dev = to_mdev(ibdev);
624 int err = 0;
625
626 if (active_width & MLX5_IB_WIDTH_1X) {
627 *ib_width = IB_WIDTH_1X;
628 } else if (active_width & MLX5_IB_WIDTH_2X) {
629 mlx5_ib_dbg(dev, "active_width %d is not supported by IB spec\n",
630 (int)active_width);
631 err = -EINVAL;
632 } else if (active_width & MLX5_IB_WIDTH_4X) {
633 *ib_width = IB_WIDTH_4X;
634 } else if (active_width & MLX5_IB_WIDTH_8X) {
635 *ib_width = IB_WIDTH_8X;
636 } else if (active_width & MLX5_IB_WIDTH_12X) {
637 *ib_width = IB_WIDTH_12X;
638 } else {
639 mlx5_ib_dbg(dev, "Invalid active_width %d\n",
640 (int)active_width);
641 err = -EINVAL;
642 }
643
644 return err;
645}
646
647static int mlx5_mtu_to_ib_mtu(int mtu)
648{
649 switch (mtu) {
650 case 256: return 1;
651 case 512: return 2;
652 case 1024: return 3;
653 case 2048: return 4;
654 case 4096: return 5;
655 default:
656 pr_warn("invalid mtu\n");
657 return -1;
658 }
659}
660
661enum ib_max_vl_num {
662 __IB_MAX_VL_0 = 1,
663 __IB_MAX_VL_0_1 = 2,
664 __IB_MAX_VL_0_3 = 3,
665 __IB_MAX_VL_0_7 = 4,
666 __IB_MAX_VL_0_14 = 5,
667};
668
669enum mlx5_vl_hw_cap {
670 MLX5_VL_HW_0 = 1,
671 MLX5_VL_HW_0_1 = 2,
672 MLX5_VL_HW_0_2 = 3,
673 MLX5_VL_HW_0_3 = 4,
674 MLX5_VL_HW_0_4 = 5,
675 MLX5_VL_HW_0_5 = 6,
676 MLX5_VL_HW_0_6 = 7,
677 MLX5_VL_HW_0_7 = 8,
678 MLX5_VL_HW_0_14 = 15
679};
680
681static int translate_max_vl_num(struct ib_device *ibdev, u8 vl_hw_cap,
682 u8 *max_vl_num)
683{
684 switch (vl_hw_cap) {
685 case MLX5_VL_HW_0:
686 *max_vl_num = __IB_MAX_VL_0;
687 break;
688 case MLX5_VL_HW_0_1:
689 *max_vl_num = __IB_MAX_VL_0_1;
690 break;
691 case MLX5_VL_HW_0_3:
692 *max_vl_num = __IB_MAX_VL_0_3;
693 break;
694 case MLX5_VL_HW_0_7:
695 *max_vl_num = __IB_MAX_VL_0_7;
696 break;
697 case MLX5_VL_HW_0_14:
698 *max_vl_num = __IB_MAX_VL_0_14;
699 break;
700
701 default:
702 return -EINVAL;
703 }
704
705 return 0;
706}
707
708static int mlx5_query_hca_port(struct ib_device *ibdev, u8 port,
709 struct ib_port_attr *props)
710{
711 struct mlx5_ib_dev *dev = to_mdev(ibdev);
712 struct mlx5_core_dev *mdev = dev->mdev;
713 struct mlx5_hca_vport_context *rep;
Saeed Mahameed046339e2016-04-22 00:33:03 +0300714 u16 max_mtu;
715 u16 oper_mtu;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300716 int err;
717 u8 ib_link_width_oper;
718 u8 vl_hw_cap;
719
720 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
721 if (!rep) {
722 err = -ENOMEM;
723 goto out;
724 }
725
726 memset(props, 0, sizeof(*props));
727
728 err = mlx5_query_hca_vport_context(mdev, 0, port, 0, rep);
729 if (err)
730 goto out;
731
732 props->lid = rep->lid;
733 props->lmc = rep->lmc;
734 props->sm_lid = rep->sm_lid;
735 props->sm_sl = rep->sm_sl;
736 props->state = rep->vport_state;
737 props->phys_state = rep->port_physical_state;
738 props->port_cap_flags = rep->cap_mask1;
739 props->gid_tbl_len = mlx5_get_gid_table_len(MLX5_CAP_GEN(mdev, gid_table_size));
740 props->max_msg_sz = 1 << MLX5_CAP_GEN(mdev, log_max_msg);
741 props->pkey_tbl_len = mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev, pkey_table_size));
742 props->bad_pkey_cntr = rep->pkey_violation_counter;
743 props->qkey_viol_cntr = rep->qkey_violation_counter;
744 props->subnet_timeout = rep->subnet_timeout;
745 props->init_type_reply = rep->init_type_reply;
Eli Coheneff901d2016-03-11 22:58:42 +0200746 props->grh_required = rep->grh_required;
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300747
748 err = mlx5_query_port_link_width_oper(mdev, &ib_link_width_oper, port);
749 if (err)
750 goto out;
751
752 err = translate_active_width(ibdev, ib_link_width_oper,
753 &props->active_width);
754 if (err)
755 goto out;
756 err = mlx5_query_port_proto_oper(mdev, &props->active_speed, MLX5_PTYS_IB,
757 port);
758 if (err)
759 goto out;
760
Saeed Mahameedfacc9692015-06-11 14:47:27 +0300761 mlx5_query_port_max_mtu(mdev, &max_mtu, port);
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300762
763 props->max_mtu = mlx5_mtu_to_ib_mtu(max_mtu);
764
Saeed Mahameedfacc9692015-06-11 14:47:27 +0300765 mlx5_query_port_oper_mtu(mdev, &oper_mtu, port);
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300766
767 props->active_mtu = mlx5_mtu_to_ib_mtu(oper_mtu);
768
769 err = mlx5_query_port_vl_hw_cap(mdev, &vl_hw_cap, port);
770 if (err)
771 goto out;
772
773 err = translate_max_vl_num(ibdev, vl_hw_cap,
774 &props->max_vl_num);
775out:
776 kfree(rep);
Eli Cohene126ba92013-07-07 17:25:49 +0300777 return err;
778}
779
780int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
781 struct ib_port_attr *props)
782{
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300783 switch (mlx5_get_vport_access_method(ibdev)) {
784 case MLX5_VPORT_ACCESS_METHOD_MAD:
785 return mlx5_query_mad_ifc_port(ibdev, port, props);
Eli Cohene126ba92013-07-07 17:25:49 +0300786
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300787 case MLX5_VPORT_ACCESS_METHOD_HCA:
788 return mlx5_query_hca_port(ibdev, port, props);
789
Achiad Shochat3f89a642015-12-23 18:47:21 +0200790 case MLX5_VPORT_ACCESS_METHOD_NIC:
791 return mlx5_query_port_roce(ibdev, port, props);
792
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300793 default:
Eli Cohene126ba92013-07-07 17:25:49 +0300794 return -EINVAL;
795 }
Eli Cohene126ba92013-07-07 17:25:49 +0300796}
797
798static int mlx5_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
799 union ib_gid *gid)
800{
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300801 struct mlx5_ib_dev *dev = to_mdev(ibdev);
802 struct mlx5_core_dev *mdev = dev->mdev;
Eli Cohene126ba92013-07-07 17:25:49 +0300803
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300804 switch (mlx5_get_vport_access_method(ibdev)) {
805 case MLX5_VPORT_ACCESS_METHOD_MAD:
806 return mlx5_query_mad_ifc_gids(ibdev, port, index, gid);
Eli Cohene126ba92013-07-07 17:25:49 +0300807
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300808 case MLX5_VPORT_ACCESS_METHOD_HCA:
809 return mlx5_query_hca_vport_gid(mdev, 0, port, 0, index, gid);
Eli Cohene126ba92013-07-07 17:25:49 +0300810
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300811 default:
812 return -EINVAL;
813 }
Eli Cohene126ba92013-07-07 17:25:49 +0300814
Eli Cohene126ba92013-07-07 17:25:49 +0300815}
816
817static int mlx5_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
818 u16 *pkey)
819{
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300820 struct mlx5_ib_dev *dev = to_mdev(ibdev);
821 struct mlx5_core_dev *mdev = dev->mdev;
Eli Cohene126ba92013-07-07 17:25:49 +0300822
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300823 switch (mlx5_get_vport_access_method(ibdev)) {
824 case MLX5_VPORT_ACCESS_METHOD_MAD:
825 return mlx5_query_mad_ifc_pkey(ibdev, port, index, pkey);
Eli Cohene126ba92013-07-07 17:25:49 +0300826
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300827 case MLX5_VPORT_ACCESS_METHOD_HCA:
828 case MLX5_VPORT_ACCESS_METHOD_NIC:
829 return mlx5_query_hca_vport_pkey(mdev, 0, port, 0, index,
830 pkey);
831 default:
832 return -EINVAL;
833 }
Eli Cohene126ba92013-07-07 17:25:49 +0300834}
835
Eli Cohene126ba92013-07-07 17:25:49 +0300836static int mlx5_ib_modify_device(struct ib_device *ibdev, int mask,
837 struct ib_device_modify *props)
838{
839 struct mlx5_ib_dev *dev = to_mdev(ibdev);
840 struct mlx5_reg_node_desc in;
841 struct mlx5_reg_node_desc out;
842 int err;
843
844 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
845 return -EOPNOTSUPP;
846
847 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
848 return 0;
849
850 /*
851 * If possible, pass node desc to FW, so it can generate
852 * a 144 trap. If cmd fails, just ignore.
853 */
854 memcpy(&in, props->node_desc, 64);
Jack Morgenstein9603b612014-07-28 23:30:22 +0300855 err = mlx5_core_access_reg(dev->mdev, &in, sizeof(in), &out,
Eli Cohene126ba92013-07-07 17:25:49 +0300856 sizeof(out), MLX5_REG_NODE_DESC, 0, 1);
857 if (err)
858 return err;
859
860 memcpy(ibdev->node_desc, props->node_desc, 64);
861
862 return err;
863}
864
865static int mlx5_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
866 struct ib_port_modify *props)
867{
868 struct mlx5_ib_dev *dev = to_mdev(ibdev);
869 struct ib_port_attr attr;
870 u32 tmp;
871 int err;
872
873 mutex_lock(&dev->cap_mask_mutex);
874
875 err = mlx5_ib_query_port(ibdev, port, &attr);
876 if (err)
877 goto out;
878
879 tmp = (attr.port_cap_flags | props->set_port_cap_mask) &
880 ~props->clr_port_cap_mask;
881
Jack Morgenstein9603b612014-07-28 23:30:22 +0300882 err = mlx5_set_port_caps(dev->mdev, port, tmp);
Eli Cohene126ba92013-07-07 17:25:49 +0300883
884out:
885 mutex_unlock(&dev->cap_mask_mutex);
886 return err;
887}
888
889static struct ib_ucontext *mlx5_ib_alloc_ucontext(struct ib_device *ibdev,
890 struct ib_udata *udata)
891{
892 struct mlx5_ib_dev *dev = to_mdev(ibdev);
Matan Barakb368d7c2015-12-15 20:30:12 +0200893 struct mlx5_ib_alloc_ucontext_req_v2 req = {};
894 struct mlx5_ib_alloc_ucontext_resp resp = {};
Eli Cohene126ba92013-07-07 17:25:49 +0300895 struct mlx5_ib_ucontext *context;
896 struct mlx5_uuar_info *uuari;
897 struct mlx5_uar *uars;
Eli Cohenc1be5232014-01-14 17:45:12 +0200898 int gross_uuars;
Eli Cohene126ba92013-07-07 17:25:49 +0300899 int num_uars;
Eli Cohen78c0f982014-01-30 13:49:48 +0200900 int ver;
Eli Cohene126ba92013-07-07 17:25:49 +0300901 int uuarn;
902 int err;
903 int i;
Jack Morgensteinf241e742014-07-28 23:30:23 +0300904 size_t reqlen;
Majd Dibbinya168a41c2016-01-28 17:51:47 +0200905 size_t min_req_v2 = offsetof(struct mlx5_ib_alloc_ucontext_req_v2,
906 max_cqe_version);
Eli Cohene126ba92013-07-07 17:25:49 +0300907
908 if (!dev->ib_active)
909 return ERR_PTR(-EAGAIN);
910
Haggai Abramovskydfbee852016-01-14 19:12:56 +0200911 if (udata->inlen < sizeof(struct ib_uverbs_cmd_hdr))
912 return ERR_PTR(-EINVAL);
913
Eli Cohen78c0f982014-01-30 13:49:48 +0200914 reqlen = udata->inlen - sizeof(struct ib_uverbs_cmd_hdr);
915 if (reqlen == sizeof(struct mlx5_ib_alloc_ucontext_req))
916 ver = 0;
Majd Dibbinya168a41c2016-01-28 17:51:47 +0200917 else if (reqlen >= min_req_v2)
Eli Cohen78c0f982014-01-30 13:49:48 +0200918 ver = 2;
919 else
920 return ERR_PTR(-EINVAL);
921
Matan Barakb368d7c2015-12-15 20:30:12 +0200922 err = ib_copy_from_udata(&req, udata, min(reqlen, sizeof(req)));
Eli Cohene126ba92013-07-07 17:25:49 +0300923 if (err)
924 return ERR_PTR(err);
925
Matan Barakb368d7c2015-12-15 20:30:12 +0200926 if (req.flags)
Eli Cohen78c0f982014-01-30 13:49:48 +0200927 return ERR_PTR(-EINVAL);
928
Eli Cohene126ba92013-07-07 17:25:49 +0300929 if (req.total_num_uuars > MLX5_MAX_UUARS)
930 return ERR_PTR(-ENOMEM);
931
932 if (req.total_num_uuars == 0)
933 return ERR_PTR(-EINVAL);
934
Haggai Abramovskyf72300c2016-01-14 19:12:58 +0200935 if (req.comp_mask || req.reserved0 || req.reserved1 || req.reserved2)
Matan Barakb368d7c2015-12-15 20:30:12 +0200936 return ERR_PTR(-EOPNOTSUPP);
937
938 if (reqlen > sizeof(req) &&
939 !ib_is_udata_cleared(udata, sizeof(req),
Haggai Abramovskydfbee852016-01-14 19:12:56 +0200940 reqlen - sizeof(req)))
Matan Barakb368d7c2015-12-15 20:30:12 +0200941 return ERR_PTR(-EOPNOTSUPP);
942
Eli Cohenc1be5232014-01-14 17:45:12 +0200943 req.total_num_uuars = ALIGN(req.total_num_uuars,
944 MLX5_NON_FP_BF_REGS_PER_PAGE);
Eli Cohene126ba92013-07-07 17:25:49 +0300945 if (req.num_low_latency_uuars > req.total_num_uuars - 1)
946 return ERR_PTR(-EINVAL);
947
Eli Cohenc1be5232014-01-14 17:45:12 +0200948 num_uars = req.total_num_uuars / MLX5_NON_FP_BF_REGS_PER_PAGE;
949 gross_uuars = num_uars * MLX5_BF_REGS_PER_PAGE;
Saeed Mahameed938fe832015-05-28 22:28:41 +0300950 resp.qp_tab_size = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp);
Noa Osherovich2cc6ad52016-06-04 15:15:33 +0300951 if (mlx5_core_is_pf(dev->mdev) && MLX5_CAP_GEN(dev->mdev, bf))
952 resp.bf_reg_size = 1 << MLX5_CAP_GEN(dev->mdev, log_bf_reg_size);
Saeed Mahameed938fe832015-05-28 22:28:41 +0300953 resp.cache_line_size = L1_CACHE_BYTES;
954 resp.max_sq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_sq);
955 resp.max_rq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_rq);
956 resp.max_send_wqebb = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
957 resp.max_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
958 resp.max_srq_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_srq_sz);
Haggai Abramovskyf72300c2016-01-14 19:12:58 +0200959 resp.cqe_version = min_t(__u8,
960 (__u8)MLX5_CAP_GEN(dev->mdev, cqe_version),
961 req.max_cqe_version);
Matan Barakb368d7c2015-12-15 20:30:12 +0200962 resp.response_length = min(offsetof(typeof(resp), response_length) +
963 sizeof(resp.response_length), udata->outlen);
Eli Cohene126ba92013-07-07 17:25:49 +0300964
965 context = kzalloc(sizeof(*context), GFP_KERNEL);
966 if (!context)
967 return ERR_PTR(-ENOMEM);
968
969 uuari = &context->uuari;
970 mutex_init(&uuari->lock);
971 uars = kcalloc(num_uars, sizeof(*uars), GFP_KERNEL);
972 if (!uars) {
973 err = -ENOMEM;
974 goto out_ctx;
975 }
976
Eli Cohenc1be5232014-01-14 17:45:12 +0200977 uuari->bitmap = kcalloc(BITS_TO_LONGS(gross_uuars),
Eli Cohene126ba92013-07-07 17:25:49 +0300978 sizeof(*uuari->bitmap),
979 GFP_KERNEL);
980 if (!uuari->bitmap) {
981 err = -ENOMEM;
982 goto out_uar_ctx;
983 }
984 /*
985 * clear all fast path uuars
986 */
Eli Cohenc1be5232014-01-14 17:45:12 +0200987 for (i = 0; i < gross_uuars; i++) {
Eli Cohene126ba92013-07-07 17:25:49 +0300988 uuarn = i & 3;
989 if (uuarn == 2 || uuarn == 3)
990 set_bit(i, uuari->bitmap);
991 }
992
Eli Cohenc1be5232014-01-14 17:45:12 +0200993 uuari->count = kcalloc(gross_uuars, sizeof(*uuari->count), GFP_KERNEL);
Eli Cohene126ba92013-07-07 17:25:49 +0300994 if (!uuari->count) {
995 err = -ENOMEM;
996 goto out_bitmap;
997 }
998
999 for (i = 0; i < num_uars; i++) {
Jack Morgenstein9603b612014-07-28 23:30:22 +03001000 err = mlx5_cmd_alloc_uar(dev->mdev, &uars[i].index);
Eli Cohene126ba92013-07-07 17:25:49 +03001001 if (err)
1002 goto out_count;
1003 }
1004
Haggai Eranb4cfe442014-12-11 17:04:26 +02001005#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1006 context->ibucontext.invalidate_range = &mlx5_ib_invalidate_range;
1007#endif
1008
majd@mellanox.com146d2f12016-01-14 19:13:02 +02001009 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain)) {
1010 err = mlx5_core_alloc_transport_domain(dev->mdev,
1011 &context->tdn);
1012 if (err)
1013 goto out_uars;
1014 }
1015
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001016 INIT_LIST_HEAD(&context->vma_private_list);
Eli Cohene126ba92013-07-07 17:25:49 +03001017 INIT_LIST_HEAD(&context->db_page_list);
1018 mutex_init(&context->db_page_mutex);
1019
1020 resp.tot_uuars = req.total_num_uuars;
Saeed Mahameed938fe832015-05-28 22:28:41 +03001021 resp.num_ports = MLX5_CAP_GEN(dev->mdev, num_ports);
Matan Barakb368d7c2015-12-15 20:30:12 +02001022
Haggai Abramovskyf72300c2016-01-14 19:12:58 +02001023 if (field_avail(typeof(resp), cqe_version, udata->outlen))
1024 resp.response_length += sizeof(resp.cqe_version);
Matan Barakb368d7c2015-12-15 20:30:12 +02001025
Bodong Wang402ca532016-06-17 15:02:20 +03001026 if (field_avail(typeof(resp), cmds_supp_uhw, udata->outlen)) {
1027 resp.cmds_supp_uhw |= MLX5_USER_CMDS_SUPP_UHW_QUERY_DEVICE;
1028 resp.response_length += sizeof(resp.cmds_supp_uhw);
1029 }
1030
Noa Osherovichbc5c6ee2016-06-04 15:15:31 +03001031 /*
1032 * We don't want to expose information from the PCI bar that is located
1033 * after 4096 bytes, so if the arch only supports larger pages, let's
1034 * pretend we don't support reading the HCA's core clock. This is also
1035 * forced by mmap function.
1036 */
1037 if (PAGE_SIZE <= 4096 &&
1038 field_avail(typeof(resp), hca_core_clock_offset, udata->outlen)) {
Matan Barakb368d7c2015-12-15 20:30:12 +02001039 resp.comp_mask |=
1040 MLX5_IB_ALLOC_UCONTEXT_RESP_MASK_CORE_CLOCK_OFFSET;
1041 resp.hca_core_clock_offset =
1042 offsetof(struct mlx5_init_seg, internal_timer_h) %
1043 PAGE_SIZE;
Haggai Abramovskyf72300c2016-01-14 19:12:58 +02001044 resp.response_length += sizeof(resp.hca_core_clock_offset) +
Bodong Wang402ca532016-06-17 15:02:20 +03001045 sizeof(resp.reserved2);
Matan Barakb368d7c2015-12-15 20:30:12 +02001046 }
1047
1048 err = ib_copy_to_udata(udata, &resp, resp.response_length);
Eli Cohene126ba92013-07-07 17:25:49 +03001049 if (err)
majd@mellanox.com146d2f12016-01-14 19:13:02 +02001050 goto out_td;
Eli Cohene126ba92013-07-07 17:25:49 +03001051
Eli Cohen78c0f982014-01-30 13:49:48 +02001052 uuari->ver = ver;
Eli Cohene126ba92013-07-07 17:25:49 +03001053 uuari->num_low_latency_uuars = req.num_low_latency_uuars;
1054 uuari->uars = uars;
1055 uuari->num_uars = num_uars;
Haggai Abramovskyf72300c2016-01-14 19:12:58 +02001056 context->cqe_version = resp.cqe_version;
1057
Eli Cohene126ba92013-07-07 17:25:49 +03001058 return &context->ibucontext;
1059
majd@mellanox.com146d2f12016-01-14 19:13:02 +02001060out_td:
1061 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain))
1062 mlx5_core_dealloc_transport_domain(dev->mdev, context->tdn);
1063
Eli Cohene126ba92013-07-07 17:25:49 +03001064out_uars:
1065 for (i--; i >= 0; i--)
Jack Morgenstein9603b612014-07-28 23:30:22 +03001066 mlx5_cmd_free_uar(dev->mdev, uars[i].index);
Eli Cohene126ba92013-07-07 17:25:49 +03001067out_count:
1068 kfree(uuari->count);
1069
1070out_bitmap:
1071 kfree(uuari->bitmap);
1072
1073out_uar_ctx:
1074 kfree(uars);
1075
1076out_ctx:
1077 kfree(context);
1078 return ERR_PTR(err);
1079}
1080
1081static int mlx5_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
1082{
1083 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1084 struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
1085 struct mlx5_uuar_info *uuari = &context->uuari;
1086 int i;
1087
majd@mellanox.com146d2f12016-01-14 19:13:02 +02001088 if (MLX5_CAP_GEN(dev->mdev, log_max_transport_domain))
1089 mlx5_core_dealloc_transport_domain(dev->mdev, context->tdn);
1090
Eli Cohene126ba92013-07-07 17:25:49 +03001091 for (i = 0; i < uuari->num_uars; i++) {
Jack Morgenstein9603b612014-07-28 23:30:22 +03001092 if (mlx5_cmd_free_uar(dev->mdev, uuari->uars[i].index))
Eli Cohene126ba92013-07-07 17:25:49 +03001093 mlx5_ib_warn(dev, "failed to free UAR 0x%x\n", uuari->uars[i].index);
1094 }
1095
1096 kfree(uuari->count);
1097 kfree(uuari->bitmap);
1098 kfree(uuari->uars);
1099 kfree(context);
1100
1101 return 0;
1102}
1103
1104static phys_addr_t uar_index2pfn(struct mlx5_ib_dev *dev, int index)
1105{
Jack Morgenstein9603b612014-07-28 23:30:22 +03001106 return (pci_resource_start(dev->mdev->pdev, 0) >> PAGE_SHIFT) + index;
Eli Cohene126ba92013-07-07 17:25:49 +03001107}
1108
1109static int get_command(unsigned long offset)
1110{
1111 return (offset >> MLX5_IB_MMAP_CMD_SHIFT) & MLX5_IB_MMAP_CMD_MASK;
1112}
1113
1114static int get_arg(unsigned long offset)
1115{
1116 return offset & ((1 << MLX5_IB_MMAP_CMD_SHIFT) - 1);
1117}
1118
1119static int get_index(unsigned long offset)
1120{
1121 return get_arg(offset);
1122}
1123
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001124static void mlx5_ib_vma_open(struct vm_area_struct *area)
1125{
1126 /* vma_open is called when a new VMA is created on top of our VMA. This
1127 * is done through either mremap flow or split_vma (usually due to
1128 * mlock, madvise, munmap, etc.) We do not support a clone of the VMA,
1129 * as this VMA is strongly hardware related. Therefore we set the
1130 * vm_ops of the newly created/cloned VMA to NULL, to prevent it from
1131 * calling us again and trying to do incorrect actions. We assume that
1132 * the original VMA size is exactly a single page, and therefore all
1133 * "splitting" operation will not happen to it.
1134 */
1135 area->vm_ops = NULL;
1136}
1137
1138static void mlx5_ib_vma_close(struct vm_area_struct *area)
1139{
1140 struct mlx5_ib_vma_private_data *mlx5_ib_vma_priv_data;
1141
1142 /* It's guaranteed that all VMAs opened on a FD are closed before the
1143 * file itself is closed, therefore no sync is needed with the regular
1144 * closing flow. (e.g. mlx5 ib_dealloc_ucontext)
1145 * However need a sync with accessing the vma as part of
1146 * mlx5_ib_disassociate_ucontext.
1147 * The close operation is usually called under mm->mmap_sem except when
1148 * process is exiting.
1149 * The exiting case is handled explicitly as part of
1150 * mlx5_ib_disassociate_ucontext.
1151 */
1152 mlx5_ib_vma_priv_data = (struct mlx5_ib_vma_private_data *)area->vm_private_data;
1153
1154 /* setting the vma context pointer to null in the mlx5_ib driver's
1155 * private data, to protect a race condition in
1156 * mlx5_ib_disassociate_ucontext().
1157 */
1158 mlx5_ib_vma_priv_data->vma = NULL;
1159 list_del(&mlx5_ib_vma_priv_data->list);
1160 kfree(mlx5_ib_vma_priv_data);
1161}
1162
1163static const struct vm_operations_struct mlx5_ib_vm_ops = {
1164 .open = mlx5_ib_vma_open,
1165 .close = mlx5_ib_vma_close
1166};
1167
1168static int mlx5_ib_set_vma_data(struct vm_area_struct *vma,
1169 struct mlx5_ib_ucontext *ctx)
1170{
1171 struct mlx5_ib_vma_private_data *vma_prv;
1172 struct list_head *vma_head = &ctx->vma_private_list;
1173
1174 vma_prv = kzalloc(sizeof(*vma_prv), GFP_KERNEL);
1175 if (!vma_prv)
1176 return -ENOMEM;
1177
1178 vma_prv->vma = vma;
1179 vma->vm_private_data = vma_prv;
1180 vma->vm_ops = &mlx5_ib_vm_ops;
1181
1182 list_add(&vma_prv->list, vma_head);
1183
1184 return 0;
1185}
1186
1187static void mlx5_ib_disassociate_ucontext(struct ib_ucontext *ibcontext)
1188{
1189 int ret;
1190 struct vm_area_struct *vma;
1191 struct mlx5_ib_vma_private_data *vma_private, *n;
1192 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1193 struct task_struct *owning_process = NULL;
1194 struct mm_struct *owning_mm = NULL;
1195
1196 owning_process = get_pid_task(ibcontext->tgid, PIDTYPE_PID);
1197 if (!owning_process)
1198 return;
1199
1200 owning_mm = get_task_mm(owning_process);
1201 if (!owning_mm) {
1202 pr_info("no mm, disassociate ucontext is pending task termination\n");
1203 while (1) {
1204 put_task_struct(owning_process);
1205 usleep_range(1000, 2000);
1206 owning_process = get_pid_task(ibcontext->tgid,
1207 PIDTYPE_PID);
1208 if (!owning_process ||
1209 owning_process->state == TASK_DEAD) {
1210 pr_info("disassociate ucontext done, task was terminated\n");
1211 /* in case task was dead need to release the
1212 * task struct.
1213 */
1214 if (owning_process)
1215 put_task_struct(owning_process);
1216 return;
1217 }
1218 }
1219 }
1220
1221 /* need to protect from a race on closing the vma as part of
1222 * mlx5_ib_vma_close.
1223 */
1224 down_read(&owning_mm->mmap_sem);
1225 list_for_each_entry_safe(vma_private, n, &context->vma_private_list,
1226 list) {
1227 vma = vma_private->vma;
1228 ret = zap_vma_ptes(vma, vma->vm_start,
1229 PAGE_SIZE);
1230 WARN_ONCE(ret, "%s: zap_vma_ptes failed", __func__);
1231 /* context going to be destroyed, should
1232 * not access ops any more.
1233 */
1234 vma->vm_ops = NULL;
1235 list_del(&vma_private->list);
1236 kfree(vma_private);
1237 }
1238 up_read(&owning_mm->mmap_sem);
1239 mmput(owning_mm);
1240 put_task_struct(owning_process);
1241}
1242
Guy Levi37aa5c32016-04-27 16:49:50 +03001243static inline char *mmap_cmd2str(enum mlx5_ib_mmap_cmd cmd)
1244{
1245 switch (cmd) {
1246 case MLX5_IB_MMAP_WC_PAGE:
1247 return "WC";
1248 case MLX5_IB_MMAP_REGULAR_PAGE:
1249 return "best effort WC";
1250 case MLX5_IB_MMAP_NC_PAGE:
1251 return "NC";
1252 default:
1253 return NULL;
1254 }
1255}
1256
1257static int uar_mmap(struct mlx5_ib_dev *dev, enum mlx5_ib_mmap_cmd cmd,
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001258 struct vm_area_struct *vma,
1259 struct mlx5_ib_ucontext *context)
Guy Levi37aa5c32016-04-27 16:49:50 +03001260{
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001261 struct mlx5_uuar_info *uuari = &context->uuari;
Guy Levi37aa5c32016-04-27 16:49:50 +03001262 int err;
1263 unsigned long idx;
1264 phys_addr_t pfn, pa;
1265 pgprot_t prot;
1266
1267 switch (cmd) {
1268 case MLX5_IB_MMAP_WC_PAGE:
1269/* Some architectures don't support WC memory */
1270#if defined(CONFIG_X86)
1271 if (!pat_enabled())
1272 return -EPERM;
1273#elif !(defined(CONFIG_PPC) || (defined(CONFIG_ARM) && defined(CONFIG_MMU)))
1274 return -EPERM;
1275#endif
1276 /* fall through */
1277 case MLX5_IB_MMAP_REGULAR_PAGE:
1278 /* For MLX5_IB_MMAP_REGULAR_PAGE do the best effort to get WC */
1279 prot = pgprot_writecombine(vma->vm_page_prot);
1280 break;
1281 case MLX5_IB_MMAP_NC_PAGE:
1282 prot = pgprot_noncached(vma->vm_page_prot);
1283 break;
1284 default:
1285 return -EINVAL;
1286 }
1287
1288 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
1289 return -EINVAL;
1290
1291 idx = get_index(vma->vm_pgoff);
1292 if (idx >= uuari->num_uars)
1293 return -EINVAL;
1294
1295 pfn = uar_index2pfn(dev, uuari->uars[idx].index);
1296 mlx5_ib_dbg(dev, "uar idx 0x%lx, pfn %pa\n", idx, &pfn);
1297
1298 vma->vm_page_prot = prot;
1299 err = io_remap_pfn_range(vma, vma->vm_start, pfn,
1300 PAGE_SIZE, vma->vm_page_prot);
1301 if (err) {
1302 mlx5_ib_err(dev, "io_remap_pfn_range failed with error=%d, vm_start=0x%lx, pfn=%pa, mmap_cmd=%s\n",
1303 err, vma->vm_start, &pfn, mmap_cmd2str(cmd));
1304 return -EAGAIN;
1305 }
1306
1307 pa = pfn << PAGE_SHIFT;
1308 mlx5_ib_dbg(dev, "mapped %s at 0x%lx, PA %pa\n", mmap_cmd2str(cmd),
1309 vma->vm_start, &pa);
1310
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001311 return mlx5_ib_set_vma_data(vma, context);
Guy Levi37aa5c32016-04-27 16:49:50 +03001312}
1313
Eli Cohene126ba92013-07-07 17:25:49 +03001314static int mlx5_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma)
1315{
1316 struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
1317 struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
Eli Cohene126ba92013-07-07 17:25:49 +03001318 unsigned long command;
Eli Cohene126ba92013-07-07 17:25:49 +03001319 phys_addr_t pfn;
1320
1321 command = get_command(vma->vm_pgoff);
1322 switch (command) {
Guy Levi37aa5c32016-04-27 16:49:50 +03001323 case MLX5_IB_MMAP_WC_PAGE:
1324 case MLX5_IB_MMAP_NC_PAGE:
Eli Cohene126ba92013-07-07 17:25:49 +03001325 case MLX5_IB_MMAP_REGULAR_PAGE:
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03001326 return uar_mmap(dev, command, vma, context);
Eli Cohene126ba92013-07-07 17:25:49 +03001327
1328 case MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES:
1329 return -ENOSYS;
1330
Matan Barakd69e3bc2015-12-15 20:30:13 +02001331 case MLX5_IB_MMAP_CORE_CLOCK:
Matan Barakd69e3bc2015-12-15 20:30:13 +02001332 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
1333 return -EINVAL;
1334
Matan Barak6cbac1e2016-04-14 16:52:10 +03001335 if (vma->vm_flags & VM_WRITE)
Matan Barakd69e3bc2015-12-15 20:30:13 +02001336 return -EPERM;
1337
1338 /* Don't expose to user-space information it shouldn't have */
1339 if (PAGE_SIZE > 4096)
1340 return -EOPNOTSUPP;
1341
1342 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1343 pfn = (dev->mdev->iseg_base +
1344 offsetof(struct mlx5_init_seg, internal_timer_h)) >>
1345 PAGE_SHIFT;
1346 if (io_remap_pfn_range(vma, vma->vm_start, pfn,
1347 PAGE_SIZE, vma->vm_page_prot))
1348 return -EAGAIN;
1349
1350 mlx5_ib_dbg(dev, "mapped internal timer at 0x%lx, PA 0x%llx\n",
1351 vma->vm_start,
1352 (unsigned long long)pfn << PAGE_SHIFT);
1353 break;
Matan Barakd69e3bc2015-12-15 20:30:13 +02001354
Eli Cohene126ba92013-07-07 17:25:49 +03001355 default:
1356 return -EINVAL;
1357 }
1358
1359 return 0;
1360}
1361
Eli Cohene126ba92013-07-07 17:25:49 +03001362static struct ib_pd *mlx5_ib_alloc_pd(struct ib_device *ibdev,
1363 struct ib_ucontext *context,
1364 struct ib_udata *udata)
1365{
1366 struct mlx5_ib_alloc_pd_resp resp;
1367 struct mlx5_ib_pd *pd;
1368 int err;
1369
1370 pd = kmalloc(sizeof(*pd), GFP_KERNEL);
1371 if (!pd)
1372 return ERR_PTR(-ENOMEM);
1373
Jack Morgenstein9603b612014-07-28 23:30:22 +03001374 err = mlx5_core_alloc_pd(to_mdev(ibdev)->mdev, &pd->pdn);
Eli Cohene126ba92013-07-07 17:25:49 +03001375 if (err) {
1376 kfree(pd);
1377 return ERR_PTR(err);
1378 }
1379
1380 if (context) {
1381 resp.pdn = pd->pdn;
1382 if (ib_copy_to_udata(udata, &resp, sizeof(resp))) {
Jack Morgenstein9603b612014-07-28 23:30:22 +03001383 mlx5_core_dealloc_pd(to_mdev(ibdev)->mdev, pd->pdn);
Eli Cohene126ba92013-07-07 17:25:49 +03001384 kfree(pd);
1385 return ERR_PTR(-EFAULT);
1386 }
Eli Cohene126ba92013-07-07 17:25:49 +03001387 }
1388
1389 return &pd->ibpd;
1390}
1391
1392static int mlx5_ib_dealloc_pd(struct ib_pd *pd)
1393{
1394 struct mlx5_ib_dev *mdev = to_mdev(pd->device);
1395 struct mlx5_ib_pd *mpd = to_mpd(pd);
1396
Jack Morgenstein9603b612014-07-28 23:30:22 +03001397 mlx5_core_dealloc_pd(mdev->mdev, mpd->pdn);
Eli Cohene126ba92013-07-07 17:25:49 +03001398 kfree(mpd);
1399
1400 return 0;
1401}
1402
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001403static bool outer_header_zero(u32 *match_criteria)
1404{
1405 int size = MLX5_ST_SZ_BYTES(fte_match_param);
1406 char *outer_headers_c = MLX5_ADDR_OF(fte_match_param, match_criteria,
1407 outer_headers);
1408
1409 return outer_headers_c[0] == 0 && !memcmp(outer_headers_c,
1410 outer_headers_c + 1,
1411 size - 1);
1412}
1413
1414static int parse_flow_attr(u32 *match_c, u32 *match_v,
1415 union ib_flow_spec *ib_spec)
1416{
1417 void *outer_headers_c = MLX5_ADDR_OF(fte_match_param, match_c,
1418 outer_headers);
1419 void *outer_headers_v = MLX5_ADDR_OF(fte_match_param, match_v,
1420 outer_headers);
1421 switch (ib_spec->type) {
1422 case IB_FLOW_SPEC_ETH:
1423 if (ib_spec->size != sizeof(ib_spec->eth))
1424 return -EINVAL;
1425
1426 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1427 dmac_47_16),
1428 ib_spec->eth.mask.dst_mac);
1429 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1430 dmac_47_16),
1431 ib_spec->eth.val.dst_mac);
1432
1433 if (ib_spec->eth.mask.vlan_tag) {
1434 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1435 vlan_tag, 1);
1436 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1437 vlan_tag, 1);
1438
1439 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1440 first_vid, ntohs(ib_spec->eth.mask.vlan_tag));
1441 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1442 first_vid, ntohs(ib_spec->eth.val.vlan_tag));
1443
1444 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1445 first_cfi,
1446 ntohs(ib_spec->eth.mask.vlan_tag) >> 12);
1447 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1448 first_cfi,
1449 ntohs(ib_spec->eth.val.vlan_tag) >> 12);
1450
1451 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1452 first_prio,
1453 ntohs(ib_spec->eth.mask.vlan_tag) >> 13);
1454 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1455 first_prio,
1456 ntohs(ib_spec->eth.val.vlan_tag) >> 13);
1457 }
1458 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1459 ethertype, ntohs(ib_spec->eth.mask.ether_type));
1460 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1461 ethertype, ntohs(ib_spec->eth.val.ether_type));
1462 break;
1463 case IB_FLOW_SPEC_IPV4:
1464 if (ib_spec->size != sizeof(ib_spec->ipv4))
1465 return -EINVAL;
1466
1467 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1468 ethertype, 0xffff);
1469 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1470 ethertype, ETH_P_IP);
1471
1472 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1473 src_ipv4_src_ipv6.ipv4_layout.ipv4),
1474 &ib_spec->ipv4.mask.src_ip,
1475 sizeof(ib_spec->ipv4.mask.src_ip));
1476 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1477 src_ipv4_src_ipv6.ipv4_layout.ipv4),
1478 &ib_spec->ipv4.val.src_ip,
1479 sizeof(ib_spec->ipv4.val.src_ip));
1480 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1481 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
1482 &ib_spec->ipv4.mask.dst_ip,
1483 sizeof(ib_spec->ipv4.mask.dst_ip));
1484 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1485 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
1486 &ib_spec->ipv4.val.dst_ip,
1487 sizeof(ib_spec->ipv4.val.dst_ip));
1488 break;
Maor Gottlieb026bae02016-06-17 15:14:51 +03001489 case IB_FLOW_SPEC_IPV6:
1490 if (ib_spec->size != sizeof(ib_spec->ipv6))
1491 return -EINVAL;
1492
1493 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
1494 ethertype, 0xffff);
1495 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
1496 ethertype, ETH_P_IPV6);
1497
1498 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1499 src_ipv4_src_ipv6.ipv6_layout.ipv6),
1500 &ib_spec->ipv6.mask.src_ip,
1501 sizeof(ib_spec->ipv6.mask.src_ip));
1502 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1503 src_ipv4_src_ipv6.ipv6_layout.ipv6),
1504 &ib_spec->ipv6.val.src_ip,
1505 sizeof(ib_spec->ipv6.val.src_ip));
1506 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
1507 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
1508 &ib_spec->ipv6.mask.dst_ip,
1509 sizeof(ib_spec->ipv6.mask.dst_ip));
1510 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_v,
1511 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
1512 &ib_spec->ipv6.val.dst_ip,
1513 sizeof(ib_spec->ipv6.val.dst_ip));
1514 break;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001515 case IB_FLOW_SPEC_TCP:
1516 if (ib_spec->size != sizeof(ib_spec->tcp_udp))
1517 return -EINVAL;
1518
1519 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, ip_protocol,
1520 0xff);
1521 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, ip_protocol,
1522 IPPROTO_TCP);
1523
1524 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, tcp_sport,
1525 ntohs(ib_spec->tcp_udp.mask.src_port));
1526 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, tcp_sport,
1527 ntohs(ib_spec->tcp_udp.val.src_port));
1528
1529 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, tcp_dport,
1530 ntohs(ib_spec->tcp_udp.mask.dst_port));
1531 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, tcp_dport,
1532 ntohs(ib_spec->tcp_udp.val.dst_port));
1533 break;
1534 case IB_FLOW_SPEC_UDP:
1535 if (ib_spec->size != sizeof(ib_spec->tcp_udp))
1536 return -EINVAL;
1537
1538 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, ip_protocol,
1539 0xff);
1540 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, ip_protocol,
1541 IPPROTO_UDP);
1542
1543 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, udp_sport,
1544 ntohs(ib_spec->tcp_udp.mask.src_port));
1545 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, udp_sport,
1546 ntohs(ib_spec->tcp_udp.val.src_port));
1547
1548 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c, udp_dport,
1549 ntohs(ib_spec->tcp_udp.mask.dst_port));
1550 MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v, udp_dport,
1551 ntohs(ib_spec->tcp_udp.val.dst_port));
1552 break;
1553 default:
1554 return -EINVAL;
1555 }
1556
1557 return 0;
1558}
1559
1560/* If a flow could catch both multicast and unicast packets,
1561 * it won't fall into the multicast flow steering table and this rule
1562 * could steal other multicast packets.
1563 */
1564static bool flow_is_multicast_only(struct ib_flow_attr *ib_attr)
1565{
1566 struct ib_flow_spec_eth *eth_spec;
1567
1568 if (ib_attr->type != IB_FLOW_ATTR_NORMAL ||
1569 ib_attr->size < sizeof(struct ib_flow_attr) +
1570 sizeof(struct ib_flow_spec_eth) ||
1571 ib_attr->num_of_specs < 1)
1572 return false;
1573
1574 eth_spec = (struct ib_flow_spec_eth *)(ib_attr + 1);
1575 if (eth_spec->type != IB_FLOW_SPEC_ETH ||
1576 eth_spec->size != sizeof(*eth_spec))
1577 return false;
1578
1579 return is_multicast_ether_addr(eth_spec->mask.dst_mac) &&
1580 is_multicast_ether_addr(eth_spec->val.dst_mac);
1581}
1582
1583static bool is_valid_attr(struct ib_flow_attr *flow_attr)
1584{
1585 union ib_flow_spec *ib_spec = (union ib_flow_spec *)(flow_attr + 1);
1586 bool has_ipv4_spec = false;
1587 bool eth_type_ipv4 = true;
1588 unsigned int spec_index;
1589
1590 /* Validate that ethertype is correct */
1591 for (spec_index = 0; spec_index < flow_attr->num_of_specs; spec_index++) {
1592 if (ib_spec->type == IB_FLOW_SPEC_ETH &&
1593 ib_spec->eth.mask.ether_type) {
1594 if (!((ib_spec->eth.mask.ether_type == htons(0xffff)) &&
1595 ib_spec->eth.val.ether_type == htons(ETH_P_IP)))
1596 eth_type_ipv4 = false;
1597 } else if (ib_spec->type == IB_FLOW_SPEC_IPV4) {
1598 has_ipv4_spec = true;
1599 }
1600 ib_spec = (void *)ib_spec + ib_spec->size;
1601 }
1602 return !has_ipv4_spec || eth_type_ipv4;
1603}
1604
1605static void put_flow_table(struct mlx5_ib_dev *dev,
1606 struct mlx5_ib_flow_prio *prio, bool ft_added)
1607{
1608 prio->refcount -= !!ft_added;
1609 if (!prio->refcount) {
1610 mlx5_destroy_flow_table(prio->flow_table);
1611 prio->flow_table = NULL;
1612 }
1613}
1614
1615static int mlx5_ib_destroy_flow(struct ib_flow *flow_id)
1616{
1617 struct mlx5_ib_dev *dev = to_mdev(flow_id->qp->device);
1618 struct mlx5_ib_flow_handler *handler = container_of(flow_id,
1619 struct mlx5_ib_flow_handler,
1620 ibflow);
1621 struct mlx5_ib_flow_handler *iter, *tmp;
1622
1623 mutex_lock(&dev->flow_db.lock);
1624
1625 list_for_each_entry_safe(iter, tmp, &handler->list, list) {
1626 mlx5_del_flow_rule(iter->rule);
1627 list_del(&iter->list);
1628 kfree(iter);
1629 }
1630
1631 mlx5_del_flow_rule(handler->rule);
1632 put_flow_table(dev, &dev->flow_db.prios[handler->prio], true);
1633 mutex_unlock(&dev->flow_db.lock);
1634
1635 kfree(handler);
1636
1637 return 0;
1638}
1639
Maor Gottlieb35d190112016-03-07 18:51:47 +02001640static int ib_prio_to_core_prio(unsigned int priority, bool dont_trap)
1641{
1642 priority *= 2;
1643 if (!dont_trap)
1644 priority++;
1645 return priority;
1646}
1647
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001648#define MLX5_FS_MAX_TYPES 10
1649#define MLX5_FS_MAX_ENTRIES 32000UL
1650static struct mlx5_ib_flow_prio *get_flow_table(struct mlx5_ib_dev *dev,
1651 struct ib_flow_attr *flow_attr)
1652{
Maor Gottlieb35d190112016-03-07 18:51:47 +02001653 bool dont_trap = flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001654 struct mlx5_flow_namespace *ns = NULL;
1655 struct mlx5_ib_flow_prio *prio;
1656 struct mlx5_flow_table *ft;
1657 int num_entries;
1658 int num_groups;
1659 int priority;
1660 int err = 0;
1661
1662 if (flow_attr->type == IB_FLOW_ATTR_NORMAL) {
Maor Gottlieb35d190112016-03-07 18:51:47 +02001663 if (flow_is_multicast_only(flow_attr) &&
1664 !dont_trap)
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001665 priority = MLX5_IB_FLOW_MCAST_PRIO;
1666 else
Maor Gottlieb35d190112016-03-07 18:51:47 +02001667 priority = ib_prio_to_core_prio(flow_attr->priority,
1668 dont_trap);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001669 ns = mlx5_get_flow_namespace(dev->mdev,
1670 MLX5_FLOW_NAMESPACE_BYPASS);
1671 num_entries = MLX5_FS_MAX_ENTRIES;
1672 num_groups = MLX5_FS_MAX_TYPES;
1673 prio = &dev->flow_db.prios[priority];
1674 } else if (flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT ||
1675 flow_attr->type == IB_FLOW_ATTR_MC_DEFAULT) {
1676 ns = mlx5_get_flow_namespace(dev->mdev,
1677 MLX5_FLOW_NAMESPACE_LEFTOVERS);
1678 build_leftovers_ft_param(&priority,
1679 &num_entries,
1680 &num_groups);
1681 prio = &dev->flow_db.prios[MLX5_IB_FLOW_LEFTOVERS_PRIO];
1682 }
1683
1684 if (!ns)
1685 return ERR_PTR(-ENOTSUPP);
1686
1687 ft = prio->flow_table;
1688 if (!ft) {
1689 ft = mlx5_create_auto_grouped_flow_table(ns, priority,
1690 num_entries,
Maor Gottliebd63cd282016-04-29 01:36:35 +03001691 num_groups,
1692 0);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001693
1694 if (!IS_ERR(ft)) {
1695 prio->refcount = 0;
1696 prio->flow_table = ft;
1697 } else {
1698 err = PTR_ERR(ft);
1699 }
1700 }
1701
1702 return err ? ERR_PTR(err) : prio;
1703}
1704
1705static struct mlx5_ib_flow_handler *create_flow_rule(struct mlx5_ib_dev *dev,
1706 struct mlx5_ib_flow_prio *ft_prio,
1707 struct ib_flow_attr *flow_attr,
1708 struct mlx5_flow_destination *dst)
1709{
1710 struct mlx5_flow_table *ft = ft_prio->flow_table;
1711 struct mlx5_ib_flow_handler *handler;
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001712 struct mlx5_flow_spec *spec;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001713 void *ib_flow = flow_attr + 1;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001714 unsigned int spec_index;
Maor Gottlieb35d190112016-03-07 18:51:47 +02001715 u32 action;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001716 int err = 0;
1717
1718 if (!is_valid_attr(flow_attr))
1719 return ERR_PTR(-EINVAL);
1720
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001721 spec = mlx5_vzalloc(sizeof(*spec));
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001722 handler = kzalloc(sizeof(*handler), GFP_KERNEL);
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001723 if (!handler || !spec) {
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001724 err = -ENOMEM;
1725 goto free;
1726 }
1727
1728 INIT_LIST_HEAD(&handler->list);
1729
1730 for (spec_index = 0; spec_index < flow_attr->num_of_specs; spec_index++) {
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001731 err = parse_flow_attr(spec->match_criteria,
1732 spec->match_value, ib_flow);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001733 if (err < 0)
1734 goto free;
1735
1736 ib_flow += ((union ib_flow_spec *)ib_flow)->size;
1737 }
1738
1739 /* Outer header support only */
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001740 spec->match_criteria_enable = (!outer_header_zero(spec->match_criteria))
1741 << 0;
Maor Gottlieb35d190112016-03-07 18:51:47 +02001742 action = dst ? MLX5_FLOW_CONTEXT_ACTION_FWD_DEST :
1743 MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO;
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001744 handler->rule = mlx5_add_flow_rule(ft, spec,
Maor Gottlieb35d190112016-03-07 18:51:47 +02001745 action,
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001746 MLX5_FS_DEFAULT_FLOW_TAG,
1747 dst);
1748
1749 if (IS_ERR(handler->rule)) {
1750 err = PTR_ERR(handler->rule);
1751 goto free;
1752 }
1753
1754 handler->prio = ft_prio - dev->flow_db.prios;
1755
1756 ft_prio->flow_table = ft;
1757free:
1758 if (err)
1759 kfree(handler);
Maor Gottliebc5bb1732016-07-04 17:23:05 +03001760 kvfree(spec);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001761 return err ? ERR_PTR(err) : handler;
1762}
1763
Maor Gottlieb35d190112016-03-07 18:51:47 +02001764static struct mlx5_ib_flow_handler *create_dont_trap_rule(struct mlx5_ib_dev *dev,
1765 struct mlx5_ib_flow_prio *ft_prio,
1766 struct ib_flow_attr *flow_attr,
1767 struct mlx5_flow_destination *dst)
1768{
1769 struct mlx5_ib_flow_handler *handler_dst = NULL;
1770 struct mlx5_ib_flow_handler *handler = NULL;
1771
1772 handler = create_flow_rule(dev, ft_prio, flow_attr, NULL);
1773 if (!IS_ERR(handler)) {
1774 handler_dst = create_flow_rule(dev, ft_prio,
1775 flow_attr, dst);
1776 if (IS_ERR(handler_dst)) {
1777 mlx5_del_flow_rule(handler->rule);
1778 kfree(handler);
1779 handler = handler_dst;
1780 } else {
1781 list_add(&handler_dst->list, &handler->list);
1782 }
1783 }
1784
1785 return handler;
1786}
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001787enum {
1788 LEFTOVERS_MC,
1789 LEFTOVERS_UC,
1790};
1791
1792static struct mlx5_ib_flow_handler *create_leftovers_rule(struct mlx5_ib_dev *dev,
1793 struct mlx5_ib_flow_prio *ft_prio,
1794 struct ib_flow_attr *flow_attr,
1795 struct mlx5_flow_destination *dst)
1796{
1797 struct mlx5_ib_flow_handler *handler_ucast = NULL;
1798 struct mlx5_ib_flow_handler *handler = NULL;
1799
1800 static struct {
1801 struct ib_flow_attr flow_attr;
1802 struct ib_flow_spec_eth eth_flow;
1803 } leftovers_specs[] = {
1804 [LEFTOVERS_MC] = {
1805 .flow_attr = {
1806 .num_of_specs = 1,
1807 .size = sizeof(leftovers_specs[0])
1808 },
1809 .eth_flow = {
1810 .type = IB_FLOW_SPEC_ETH,
1811 .size = sizeof(struct ib_flow_spec_eth),
1812 .mask = {.dst_mac = {0x1} },
1813 .val = {.dst_mac = {0x1} }
1814 }
1815 },
1816 [LEFTOVERS_UC] = {
1817 .flow_attr = {
1818 .num_of_specs = 1,
1819 .size = sizeof(leftovers_specs[0])
1820 },
1821 .eth_flow = {
1822 .type = IB_FLOW_SPEC_ETH,
1823 .size = sizeof(struct ib_flow_spec_eth),
1824 .mask = {.dst_mac = {0x1} },
1825 .val = {.dst_mac = {} }
1826 }
1827 }
1828 };
1829
1830 handler = create_flow_rule(dev, ft_prio,
1831 &leftovers_specs[LEFTOVERS_MC].flow_attr,
1832 dst);
1833 if (!IS_ERR(handler) &&
1834 flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT) {
1835 handler_ucast = create_flow_rule(dev, ft_prio,
1836 &leftovers_specs[LEFTOVERS_UC].flow_attr,
1837 dst);
1838 if (IS_ERR(handler_ucast)) {
1839 kfree(handler);
1840 handler = handler_ucast;
1841 } else {
1842 list_add(&handler_ucast->list, &handler->list);
1843 }
1844 }
1845
1846 return handler;
1847}
1848
1849static struct ib_flow *mlx5_ib_create_flow(struct ib_qp *qp,
1850 struct ib_flow_attr *flow_attr,
1851 int domain)
1852{
1853 struct mlx5_ib_dev *dev = to_mdev(qp->device);
Yishai Hadasd9f88e52016-08-28 10:58:37 +03001854 struct mlx5_ib_qp *mqp = to_mqp(qp);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001855 struct mlx5_ib_flow_handler *handler = NULL;
1856 struct mlx5_flow_destination *dst = NULL;
1857 struct mlx5_ib_flow_prio *ft_prio;
1858 int err;
1859
1860 if (flow_attr->priority > MLX5_IB_FLOW_LAST_PRIO)
1861 return ERR_PTR(-ENOSPC);
1862
1863 if (domain != IB_FLOW_DOMAIN_USER ||
1864 flow_attr->port > MLX5_CAP_GEN(dev->mdev, num_ports) ||
Maor Gottlieb35d190112016-03-07 18:51:47 +02001865 (flow_attr->flags & ~IB_FLOW_ATTR_FLAGS_DONT_TRAP))
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001866 return ERR_PTR(-EINVAL);
1867
1868 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
1869 if (!dst)
1870 return ERR_PTR(-ENOMEM);
1871
1872 mutex_lock(&dev->flow_db.lock);
1873
1874 ft_prio = get_flow_table(dev, flow_attr);
1875 if (IS_ERR(ft_prio)) {
1876 err = PTR_ERR(ft_prio);
1877 goto unlock;
1878 }
1879
1880 dst->type = MLX5_FLOW_DESTINATION_TYPE_TIR;
Yishai Hadasd9f88e52016-08-28 10:58:37 +03001881 if (mqp->flags & MLX5_IB_QP_RSS)
1882 dst->tir_num = mqp->rss_qp.tirn;
1883 else
1884 dst->tir_num = mqp->raw_packet_qp.rq.tirn;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001885
1886 if (flow_attr->type == IB_FLOW_ATTR_NORMAL) {
Maor Gottlieb35d190112016-03-07 18:51:47 +02001887 if (flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP) {
1888 handler = create_dont_trap_rule(dev, ft_prio,
1889 flow_attr, dst);
1890 } else {
1891 handler = create_flow_rule(dev, ft_prio, flow_attr,
1892 dst);
1893 }
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02001894 } else if (flow_attr->type == IB_FLOW_ATTR_ALL_DEFAULT ||
1895 flow_attr->type == IB_FLOW_ATTR_MC_DEFAULT) {
1896 handler = create_leftovers_rule(dev, ft_prio, flow_attr,
1897 dst);
1898 } else {
1899 err = -EINVAL;
1900 goto destroy_ft;
1901 }
1902
1903 if (IS_ERR(handler)) {
1904 err = PTR_ERR(handler);
1905 handler = NULL;
1906 goto destroy_ft;
1907 }
1908
1909 ft_prio->refcount++;
1910 mutex_unlock(&dev->flow_db.lock);
1911 kfree(dst);
1912
1913 return &handler->ibflow;
1914
1915destroy_ft:
1916 put_flow_table(dev, ft_prio, false);
1917unlock:
1918 mutex_unlock(&dev->flow_db.lock);
1919 kfree(dst);
1920 kfree(handler);
1921 return ERR_PTR(err);
1922}
1923
Eli Cohene126ba92013-07-07 17:25:49 +03001924static int mlx5_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1925{
1926 struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
1927 int err;
1928
Jack Morgenstein9603b612014-07-28 23:30:22 +03001929 err = mlx5_core_attach_mcg(dev->mdev, gid, ibqp->qp_num);
Eli Cohene126ba92013-07-07 17:25:49 +03001930 if (err)
1931 mlx5_ib_warn(dev, "failed attaching QPN 0x%x, MGID %pI6\n",
1932 ibqp->qp_num, gid->raw);
1933
1934 return err;
1935}
1936
1937static int mlx5_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1938{
1939 struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
1940 int err;
1941
Jack Morgenstein9603b612014-07-28 23:30:22 +03001942 err = mlx5_core_detach_mcg(dev->mdev, gid, ibqp->qp_num);
Eli Cohene126ba92013-07-07 17:25:49 +03001943 if (err)
1944 mlx5_ib_warn(dev, "failed detaching QPN 0x%x, MGID %pI6\n",
1945 ibqp->qp_num, gid->raw);
1946
1947 return err;
1948}
1949
1950static int init_node_data(struct mlx5_ib_dev *dev)
1951{
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03001952 int err;
Eli Cohene126ba92013-07-07 17:25:49 +03001953
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03001954 err = mlx5_query_node_desc(dev, dev->ib_dev.node_desc);
Eli Cohene126ba92013-07-07 17:25:49 +03001955 if (err)
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03001956 return err;
Eli Cohene126ba92013-07-07 17:25:49 +03001957
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03001958 dev->mdev->rev_id = dev->mdev->pdev->revision;
Eli Cohene126ba92013-07-07 17:25:49 +03001959
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03001960 return mlx5_query_node_guid(dev, &dev->ib_dev.node_guid);
Eli Cohene126ba92013-07-07 17:25:49 +03001961}
1962
1963static ssize_t show_fw_pages(struct device *device, struct device_attribute *attr,
1964 char *buf)
1965{
1966 struct mlx5_ib_dev *dev =
1967 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
1968
Jack Morgenstein9603b612014-07-28 23:30:22 +03001969 return sprintf(buf, "%d\n", dev->mdev->priv.fw_pages);
Eli Cohene126ba92013-07-07 17:25:49 +03001970}
1971
1972static ssize_t show_reg_pages(struct device *device,
1973 struct device_attribute *attr, char *buf)
1974{
1975 struct mlx5_ib_dev *dev =
1976 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
1977
Haggai Eran6aec21f2014-12-11 17:04:23 +02001978 return sprintf(buf, "%d\n", atomic_read(&dev->mdev->priv.reg_pages));
Eli Cohene126ba92013-07-07 17:25:49 +03001979}
1980
1981static ssize_t show_hca(struct device *device, struct device_attribute *attr,
1982 char *buf)
1983{
1984 struct mlx5_ib_dev *dev =
1985 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
Jack Morgenstein9603b612014-07-28 23:30:22 +03001986 return sprintf(buf, "MT%d\n", dev->mdev->pdev->device);
Eli Cohene126ba92013-07-07 17:25:49 +03001987}
1988
Eli Cohene126ba92013-07-07 17:25:49 +03001989static ssize_t show_rev(struct device *device, struct device_attribute *attr,
1990 char *buf)
1991{
1992 struct mlx5_ib_dev *dev =
1993 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
Jack Morgenstein9603b612014-07-28 23:30:22 +03001994 return sprintf(buf, "%x\n", dev->mdev->rev_id);
Eli Cohene126ba92013-07-07 17:25:49 +03001995}
1996
1997static ssize_t show_board(struct device *device, struct device_attribute *attr,
1998 char *buf)
1999{
2000 struct mlx5_ib_dev *dev =
2001 container_of(device, struct mlx5_ib_dev, ib_dev.dev);
2002 return sprintf(buf, "%.*s\n", MLX5_BOARD_ID_LEN,
Jack Morgenstein9603b612014-07-28 23:30:22 +03002003 dev->mdev->board_id);
Eli Cohene126ba92013-07-07 17:25:49 +03002004}
2005
2006static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
Eli Cohene126ba92013-07-07 17:25:49 +03002007static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
2008static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
2009static DEVICE_ATTR(fw_pages, S_IRUGO, show_fw_pages, NULL);
2010static DEVICE_ATTR(reg_pages, S_IRUGO, show_reg_pages, NULL);
2011
2012static struct device_attribute *mlx5_class_attributes[] = {
2013 &dev_attr_hw_rev,
Eli Cohene126ba92013-07-07 17:25:49 +03002014 &dev_attr_hca_type,
2015 &dev_attr_board_id,
2016 &dev_attr_fw_pages,
2017 &dev_attr_reg_pages,
2018};
2019
Haggai Eran7722f472016-02-29 15:45:07 +02002020static void pkey_change_handler(struct work_struct *work)
2021{
2022 struct mlx5_ib_port_resources *ports =
2023 container_of(work, struct mlx5_ib_port_resources,
2024 pkey_change_work);
2025
2026 mutex_lock(&ports->devr->mutex);
2027 mlx5_ib_gsi_pkey_change(ports->gsi);
2028 mutex_unlock(&ports->devr->mutex);
2029}
2030
Maor Gottlieb89ea94a72016-06-17 15:01:38 +03002031static void mlx5_ib_handle_internal_error(struct mlx5_ib_dev *ibdev)
2032{
2033 struct mlx5_ib_qp *mqp;
2034 struct mlx5_ib_cq *send_mcq, *recv_mcq;
2035 struct mlx5_core_cq *mcq;
2036 struct list_head cq_armed_list;
2037 unsigned long flags_qp;
2038 unsigned long flags_cq;
2039 unsigned long flags;
2040
2041 INIT_LIST_HEAD(&cq_armed_list);
2042
2043 /* Go over qp list reside on that ibdev, sync with create/destroy qp.*/
2044 spin_lock_irqsave(&ibdev->reset_flow_resource_lock, flags);
2045 list_for_each_entry(mqp, &ibdev->qp_list, qps_list) {
2046 spin_lock_irqsave(&mqp->sq.lock, flags_qp);
2047 if (mqp->sq.tail != mqp->sq.head) {
2048 send_mcq = to_mcq(mqp->ibqp.send_cq);
2049 spin_lock_irqsave(&send_mcq->lock, flags_cq);
2050 if (send_mcq->mcq.comp &&
2051 mqp->ibqp.send_cq->comp_handler) {
2052 if (!send_mcq->mcq.reset_notify_added) {
2053 send_mcq->mcq.reset_notify_added = 1;
2054 list_add_tail(&send_mcq->mcq.reset_notify,
2055 &cq_armed_list);
2056 }
2057 }
2058 spin_unlock_irqrestore(&send_mcq->lock, flags_cq);
2059 }
2060 spin_unlock_irqrestore(&mqp->sq.lock, flags_qp);
2061 spin_lock_irqsave(&mqp->rq.lock, flags_qp);
2062 /* no handling is needed for SRQ */
2063 if (!mqp->ibqp.srq) {
2064 if (mqp->rq.tail != mqp->rq.head) {
2065 recv_mcq = to_mcq(mqp->ibqp.recv_cq);
2066 spin_lock_irqsave(&recv_mcq->lock, flags_cq);
2067 if (recv_mcq->mcq.comp &&
2068 mqp->ibqp.recv_cq->comp_handler) {
2069 if (!recv_mcq->mcq.reset_notify_added) {
2070 recv_mcq->mcq.reset_notify_added = 1;
2071 list_add_tail(&recv_mcq->mcq.reset_notify,
2072 &cq_armed_list);
2073 }
2074 }
2075 spin_unlock_irqrestore(&recv_mcq->lock,
2076 flags_cq);
2077 }
2078 }
2079 spin_unlock_irqrestore(&mqp->rq.lock, flags_qp);
2080 }
2081 /*At that point all inflight post send were put to be executed as of we
2082 * lock/unlock above locks Now need to arm all involved CQs.
2083 */
2084 list_for_each_entry(mcq, &cq_armed_list, reset_notify) {
2085 mcq->comp(mcq);
2086 }
2087 spin_unlock_irqrestore(&ibdev->reset_flow_resource_lock, flags);
2088}
2089
Jack Morgenstein9603b612014-07-28 23:30:22 +03002090static void mlx5_ib_event(struct mlx5_core_dev *dev, void *context,
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002091 enum mlx5_dev_event event, unsigned long param)
Eli Cohene126ba92013-07-07 17:25:49 +03002092{
Jack Morgenstein9603b612014-07-28 23:30:22 +03002093 struct mlx5_ib_dev *ibdev = (struct mlx5_ib_dev *)context;
Eli Cohene126ba92013-07-07 17:25:49 +03002094 struct ib_event ibev;
Jack Morgenstein9603b612014-07-28 23:30:22 +03002095
Eli Cohene126ba92013-07-07 17:25:49 +03002096 u8 port = 0;
2097
2098 switch (event) {
2099 case MLX5_DEV_EVENT_SYS_ERROR:
2100 ibdev->ib_active = false;
2101 ibev.event = IB_EVENT_DEVICE_FATAL;
Maor Gottlieb89ea94a72016-06-17 15:01:38 +03002102 mlx5_ib_handle_internal_error(ibdev);
Eli Cohene126ba92013-07-07 17:25:49 +03002103 break;
2104
2105 case MLX5_DEV_EVENT_PORT_UP:
2106 ibev.event = IB_EVENT_PORT_ACTIVE;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002107 port = (u8)param;
Eli Cohene126ba92013-07-07 17:25:49 +03002108 break;
2109
2110 case MLX5_DEV_EVENT_PORT_DOWN:
Noa Osherovich2788cf32016-06-04 15:15:29 +03002111 case MLX5_DEV_EVENT_PORT_INITIALIZED:
Eli Cohene126ba92013-07-07 17:25:49 +03002112 ibev.event = IB_EVENT_PORT_ERR;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002113 port = (u8)param;
Eli Cohene126ba92013-07-07 17:25:49 +03002114 break;
2115
Eli Cohene126ba92013-07-07 17:25:49 +03002116 case MLX5_DEV_EVENT_LID_CHANGE:
2117 ibev.event = IB_EVENT_LID_CHANGE;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002118 port = (u8)param;
Eli Cohene126ba92013-07-07 17:25:49 +03002119 break;
2120
2121 case MLX5_DEV_EVENT_PKEY_CHANGE:
2122 ibev.event = IB_EVENT_PKEY_CHANGE;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002123 port = (u8)param;
Haggai Eran7722f472016-02-29 15:45:07 +02002124
2125 schedule_work(&ibdev->devr.ports[port - 1].pkey_change_work);
Eli Cohene126ba92013-07-07 17:25:49 +03002126 break;
2127
2128 case MLX5_DEV_EVENT_GUID_CHANGE:
2129 ibev.event = IB_EVENT_GID_CHANGE;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002130 port = (u8)param;
Eli Cohene126ba92013-07-07 17:25:49 +03002131 break;
2132
2133 case MLX5_DEV_EVENT_CLIENT_REREG:
2134 ibev.event = IB_EVENT_CLIENT_REREGISTER;
Jack Morgenstein4d2f9bb2014-07-28 23:30:24 +03002135 port = (u8)param;
Eli Cohene126ba92013-07-07 17:25:49 +03002136 break;
2137 }
2138
2139 ibev.device = &ibdev->ib_dev;
2140 ibev.element.port_num = port;
2141
Eli Cohena0c84c32013-09-11 16:35:27 +03002142 if (port < 1 || port > ibdev->num_ports) {
2143 mlx5_ib_warn(ibdev, "warning: event on port %d\n", port);
2144 return;
2145 }
2146
Eli Cohene126ba92013-07-07 17:25:49 +03002147 if (ibdev->ib_active)
2148 ib_dispatch_event(&ibev);
2149}
2150
2151static void get_ext_port_caps(struct mlx5_ib_dev *dev)
2152{
2153 int port;
2154
Saeed Mahameed938fe832015-05-28 22:28:41 +03002155 for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++)
Eli Cohene126ba92013-07-07 17:25:49 +03002156 mlx5_query_ext_port_caps(dev, port);
2157}
2158
2159static int get_port_caps(struct mlx5_ib_dev *dev)
2160{
2161 struct ib_device_attr *dprops = NULL;
2162 struct ib_port_attr *pprops = NULL;
Dan Carpenterf614fc12015-01-12 11:56:58 +03002163 int err = -ENOMEM;
Eli Cohene126ba92013-07-07 17:25:49 +03002164 int port;
Matan Barak2528e332015-06-11 16:35:25 +03002165 struct ib_udata uhw = {.inlen = 0, .outlen = 0};
Eli Cohene126ba92013-07-07 17:25:49 +03002166
2167 pprops = kmalloc(sizeof(*pprops), GFP_KERNEL);
2168 if (!pprops)
2169 goto out;
2170
2171 dprops = kmalloc(sizeof(*dprops), GFP_KERNEL);
2172 if (!dprops)
2173 goto out;
2174
Matan Barak2528e332015-06-11 16:35:25 +03002175 err = mlx5_ib_query_device(&dev->ib_dev, dprops, &uhw);
Eli Cohene126ba92013-07-07 17:25:49 +03002176 if (err) {
2177 mlx5_ib_warn(dev, "query_device failed %d\n", err);
2178 goto out;
2179 }
2180
Saeed Mahameed938fe832015-05-28 22:28:41 +03002181 for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++) {
Eli Cohene126ba92013-07-07 17:25:49 +03002182 err = mlx5_ib_query_port(&dev->ib_dev, port, pprops);
2183 if (err) {
Saeed Mahameed938fe832015-05-28 22:28:41 +03002184 mlx5_ib_warn(dev, "query_port %d failed %d\n",
2185 port, err);
Eli Cohene126ba92013-07-07 17:25:49 +03002186 break;
2187 }
Saeed Mahameed938fe832015-05-28 22:28:41 +03002188 dev->mdev->port_caps[port - 1].pkey_table_len =
2189 dprops->max_pkeys;
2190 dev->mdev->port_caps[port - 1].gid_table_len =
2191 pprops->gid_tbl_len;
Eli Cohene126ba92013-07-07 17:25:49 +03002192 mlx5_ib_dbg(dev, "pkey_table_len %d, gid_table_len %d\n",
2193 dprops->max_pkeys, pprops->gid_tbl_len);
2194 }
2195
2196out:
2197 kfree(pprops);
2198 kfree(dprops);
2199
2200 return err;
2201}
2202
2203static void destroy_umrc_res(struct mlx5_ib_dev *dev)
2204{
2205 int err;
2206
2207 err = mlx5_mr_cache_cleanup(dev);
2208 if (err)
2209 mlx5_ib_warn(dev, "mr cache cleanup failed\n");
2210
2211 mlx5_ib_destroy_qp(dev->umrc.qp);
Christoph Hellwigadd08d72016-03-03 09:38:22 +01002212 ib_free_cq(dev->umrc.cq);
Eli Cohene126ba92013-07-07 17:25:49 +03002213 ib_dealloc_pd(dev->umrc.pd);
2214}
2215
2216enum {
2217 MAX_UMR_WR = 128,
2218};
2219
2220static int create_umr_res(struct mlx5_ib_dev *dev)
2221{
2222 struct ib_qp_init_attr *init_attr = NULL;
2223 struct ib_qp_attr *attr = NULL;
2224 struct ib_pd *pd;
2225 struct ib_cq *cq;
2226 struct ib_qp *qp;
Eli Cohene126ba92013-07-07 17:25:49 +03002227 int ret;
2228
2229 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
2230 init_attr = kzalloc(sizeof(*init_attr), GFP_KERNEL);
2231 if (!attr || !init_attr) {
2232 ret = -ENOMEM;
2233 goto error_0;
2234 }
2235
2236 pd = ib_alloc_pd(&dev->ib_dev);
2237 if (IS_ERR(pd)) {
2238 mlx5_ib_dbg(dev, "Couldn't create PD for sync UMR QP\n");
2239 ret = PTR_ERR(pd);
2240 goto error_0;
2241 }
2242
Christoph Hellwigadd08d72016-03-03 09:38:22 +01002243 cq = ib_alloc_cq(&dev->ib_dev, NULL, 128, 0, IB_POLL_SOFTIRQ);
Eli Cohene126ba92013-07-07 17:25:49 +03002244 if (IS_ERR(cq)) {
2245 mlx5_ib_dbg(dev, "Couldn't create CQ for sync UMR QP\n");
2246 ret = PTR_ERR(cq);
2247 goto error_2;
2248 }
Eli Cohene126ba92013-07-07 17:25:49 +03002249
2250 init_attr->send_cq = cq;
2251 init_attr->recv_cq = cq;
2252 init_attr->sq_sig_type = IB_SIGNAL_ALL_WR;
2253 init_attr->cap.max_send_wr = MAX_UMR_WR;
2254 init_attr->cap.max_send_sge = 1;
2255 init_attr->qp_type = MLX5_IB_QPT_REG_UMR;
2256 init_attr->port_num = 1;
2257 qp = mlx5_ib_create_qp(pd, init_attr, NULL);
2258 if (IS_ERR(qp)) {
2259 mlx5_ib_dbg(dev, "Couldn't create sync UMR QP\n");
2260 ret = PTR_ERR(qp);
2261 goto error_3;
2262 }
2263 qp->device = &dev->ib_dev;
2264 qp->real_qp = qp;
2265 qp->uobject = NULL;
2266 qp->qp_type = MLX5_IB_QPT_REG_UMR;
2267
2268 attr->qp_state = IB_QPS_INIT;
2269 attr->port_num = 1;
2270 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE | IB_QP_PKEY_INDEX |
2271 IB_QP_PORT, NULL);
2272 if (ret) {
2273 mlx5_ib_dbg(dev, "Couldn't modify UMR QP\n");
2274 goto error_4;
2275 }
2276
2277 memset(attr, 0, sizeof(*attr));
2278 attr->qp_state = IB_QPS_RTR;
2279 attr->path_mtu = IB_MTU_256;
2280
2281 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
2282 if (ret) {
2283 mlx5_ib_dbg(dev, "Couldn't modify umr QP to rtr\n");
2284 goto error_4;
2285 }
2286
2287 memset(attr, 0, sizeof(*attr));
2288 attr->qp_state = IB_QPS_RTS;
2289 ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
2290 if (ret) {
2291 mlx5_ib_dbg(dev, "Couldn't modify umr QP to rts\n");
2292 goto error_4;
2293 }
2294
2295 dev->umrc.qp = qp;
2296 dev->umrc.cq = cq;
Eli Cohene126ba92013-07-07 17:25:49 +03002297 dev->umrc.pd = pd;
2298
2299 sema_init(&dev->umrc.sem, MAX_UMR_WR);
2300 ret = mlx5_mr_cache_init(dev);
2301 if (ret) {
2302 mlx5_ib_warn(dev, "mr cache init failed %d\n", ret);
2303 goto error_4;
2304 }
2305
2306 kfree(attr);
2307 kfree(init_attr);
2308
2309 return 0;
2310
2311error_4:
2312 mlx5_ib_destroy_qp(qp);
2313
2314error_3:
Christoph Hellwigadd08d72016-03-03 09:38:22 +01002315 ib_free_cq(cq);
Eli Cohene126ba92013-07-07 17:25:49 +03002316
2317error_2:
Eli Cohene126ba92013-07-07 17:25:49 +03002318 ib_dealloc_pd(pd);
2319
2320error_0:
2321 kfree(attr);
2322 kfree(init_attr);
2323 return ret;
2324}
2325
2326static int create_dev_resources(struct mlx5_ib_resources *devr)
2327{
2328 struct ib_srq_init_attr attr;
2329 struct mlx5_ib_dev *dev;
Matan Barakbcf4c1e2015-06-11 16:35:20 +03002330 struct ib_cq_init_attr cq_attr = {.cqe = 1};
Haggai Eran7722f472016-02-29 15:45:07 +02002331 int port;
Eli Cohene126ba92013-07-07 17:25:49 +03002332 int ret = 0;
2333
2334 dev = container_of(devr, struct mlx5_ib_dev, devr);
2335
Haggai Erand16e91d2016-02-29 15:45:05 +02002336 mutex_init(&devr->mutex);
2337
Eli Cohene126ba92013-07-07 17:25:49 +03002338 devr->p0 = mlx5_ib_alloc_pd(&dev->ib_dev, NULL, NULL);
2339 if (IS_ERR(devr->p0)) {
2340 ret = PTR_ERR(devr->p0);
2341 goto error0;
2342 }
2343 devr->p0->device = &dev->ib_dev;
2344 devr->p0->uobject = NULL;
2345 atomic_set(&devr->p0->usecnt, 0);
2346
Matan Barakbcf4c1e2015-06-11 16:35:20 +03002347 devr->c0 = mlx5_ib_create_cq(&dev->ib_dev, &cq_attr, NULL, NULL);
Eli Cohene126ba92013-07-07 17:25:49 +03002348 if (IS_ERR(devr->c0)) {
2349 ret = PTR_ERR(devr->c0);
2350 goto error1;
2351 }
2352 devr->c0->device = &dev->ib_dev;
2353 devr->c0->uobject = NULL;
2354 devr->c0->comp_handler = NULL;
2355 devr->c0->event_handler = NULL;
2356 devr->c0->cq_context = NULL;
2357 atomic_set(&devr->c0->usecnt, 0);
2358
2359 devr->x0 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
2360 if (IS_ERR(devr->x0)) {
2361 ret = PTR_ERR(devr->x0);
2362 goto error2;
2363 }
2364 devr->x0->device = &dev->ib_dev;
2365 devr->x0->inode = NULL;
2366 atomic_set(&devr->x0->usecnt, 0);
2367 mutex_init(&devr->x0->tgt_qp_mutex);
2368 INIT_LIST_HEAD(&devr->x0->tgt_qp_list);
2369
2370 devr->x1 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
2371 if (IS_ERR(devr->x1)) {
2372 ret = PTR_ERR(devr->x1);
2373 goto error3;
2374 }
2375 devr->x1->device = &dev->ib_dev;
2376 devr->x1->inode = NULL;
2377 atomic_set(&devr->x1->usecnt, 0);
2378 mutex_init(&devr->x1->tgt_qp_mutex);
2379 INIT_LIST_HEAD(&devr->x1->tgt_qp_list);
2380
2381 memset(&attr, 0, sizeof(attr));
2382 attr.attr.max_sge = 1;
2383 attr.attr.max_wr = 1;
2384 attr.srq_type = IB_SRQT_XRC;
2385 attr.ext.xrc.cq = devr->c0;
2386 attr.ext.xrc.xrcd = devr->x0;
2387
2388 devr->s0 = mlx5_ib_create_srq(devr->p0, &attr, NULL);
2389 if (IS_ERR(devr->s0)) {
2390 ret = PTR_ERR(devr->s0);
2391 goto error4;
2392 }
2393 devr->s0->device = &dev->ib_dev;
2394 devr->s0->pd = devr->p0;
2395 devr->s0->uobject = NULL;
2396 devr->s0->event_handler = NULL;
2397 devr->s0->srq_context = NULL;
2398 devr->s0->srq_type = IB_SRQT_XRC;
2399 devr->s0->ext.xrc.xrcd = devr->x0;
2400 devr->s0->ext.xrc.cq = devr->c0;
2401 atomic_inc(&devr->s0->ext.xrc.xrcd->usecnt);
2402 atomic_inc(&devr->s0->ext.xrc.cq->usecnt);
2403 atomic_inc(&devr->p0->usecnt);
2404 atomic_set(&devr->s0->usecnt, 0);
2405
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +03002406 memset(&attr, 0, sizeof(attr));
2407 attr.attr.max_sge = 1;
2408 attr.attr.max_wr = 1;
2409 attr.srq_type = IB_SRQT_BASIC;
2410 devr->s1 = mlx5_ib_create_srq(devr->p0, &attr, NULL);
2411 if (IS_ERR(devr->s1)) {
2412 ret = PTR_ERR(devr->s1);
2413 goto error5;
2414 }
2415 devr->s1->device = &dev->ib_dev;
2416 devr->s1->pd = devr->p0;
2417 devr->s1->uobject = NULL;
2418 devr->s1->event_handler = NULL;
2419 devr->s1->srq_context = NULL;
2420 devr->s1->srq_type = IB_SRQT_BASIC;
2421 devr->s1->ext.xrc.cq = devr->c0;
2422 atomic_inc(&devr->p0->usecnt);
2423 atomic_set(&devr->s0->usecnt, 0);
2424
Haggai Eran7722f472016-02-29 15:45:07 +02002425 for (port = 0; port < ARRAY_SIZE(devr->ports); ++port) {
2426 INIT_WORK(&devr->ports[port].pkey_change_work,
2427 pkey_change_handler);
2428 devr->ports[port].devr = devr;
2429 }
2430
Eli Cohene126ba92013-07-07 17:25:49 +03002431 return 0;
2432
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +03002433error5:
2434 mlx5_ib_destroy_srq(devr->s0);
Eli Cohene126ba92013-07-07 17:25:49 +03002435error4:
2436 mlx5_ib_dealloc_xrcd(devr->x1);
2437error3:
2438 mlx5_ib_dealloc_xrcd(devr->x0);
2439error2:
2440 mlx5_ib_destroy_cq(devr->c0);
2441error1:
2442 mlx5_ib_dealloc_pd(devr->p0);
2443error0:
2444 return ret;
2445}
2446
2447static void destroy_dev_resources(struct mlx5_ib_resources *devr)
2448{
Haggai Eran7722f472016-02-29 15:45:07 +02002449 struct mlx5_ib_dev *dev =
2450 container_of(devr, struct mlx5_ib_dev, devr);
2451 int port;
2452
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +03002453 mlx5_ib_destroy_srq(devr->s1);
Eli Cohene126ba92013-07-07 17:25:49 +03002454 mlx5_ib_destroy_srq(devr->s0);
2455 mlx5_ib_dealloc_xrcd(devr->x0);
2456 mlx5_ib_dealloc_xrcd(devr->x1);
2457 mlx5_ib_destroy_cq(devr->c0);
2458 mlx5_ib_dealloc_pd(devr->p0);
Haggai Eran7722f472016-02-29 15:45:07 +02002459
2460 /* Make sure no change P_Key work items are still executing */
2461 for (port = 0; port < dev->num_ports; ++port)
2462 cancel_work_sync(&devr->ports[port].pkey_change_work);
Eli Cohene126ba92013-07-07 17:25:49 +03002463}
2464
Achiad Shochate53505a2015-12-23 18:47:25 +02002465static u32 get_core_cap_flags(struct ib_device *ibdev)
2466{
2467 struct mlx5_ib_dev *dev = to_mdev(ibdev);
2468 enum rdma_link_layer ll = mlx5_ib_port_link_layer(ibdev, 1);
2469 u8 l3_type_cap = MLX5_CAP_ROCE(dev->mdev, l3_type);
2470 u8 roce_version_cap = MLX5_CAP_ROCE(dev->mdev, roce_version);
2471 u32 ret = 0;
2472
2473 if (ll == IB_LINK_LAYER_INFINIBAND)
2474 return RDMA_CORE_PORT_IBA_IB;
2475
2476 if (!(l3_type_cap & MLX5_ROCE_L3_TYPE_IPV4_CAP))
2477 return 0;
2478
2479 if (!(l3_type_cap & MLX5_ROCE_L3_TYPE_IPV6_CAP))
2480 return 0;
2481
2482 if (roce_version_cap & MLX5_ROCE_VERSION_1_CAP)
2483 ret |= RDMA_CORE_PORT_IBA_ROCE;
2484
2485 if (roce_version_cap & MLX5_ROCE_VERSION_2_CAP)
2486 ret |= RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP;
2487
2488 return ret;
2489}
2490
Ira Weiny77386132015-05-13 20:02:58 -04002491static int mlx5_port_immutable(struct ib_device *ibdev, u8 port_num,
2492 struct ib_port_immutable *immutable)
2493{
2494 struct ib_port_attr attr;
2495 int err;
2496
2497 err = mlx5_ib_query_port(ibdev, port_num, &attr);
2498 if (err)
2499 return err;
2500
2501 immutable->pkey_tbl_len = attr.pkey_tbl_len;
2502 immutable->gid_tbl_len = attr.gid_tbl_len;
Achiad Shochate53505a2015-12-23 18:47:25 +02002503 immutable->core_cap_flags = get_core_cap_flags(ibdev);
Ira Weiny337877a2015-06-06 14:38:29 -04002504 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
Ira Weiny77386132015-05-13 20:02:58 -04002505
2506 return 0;
2507}
2508
Ira Weinyc7342822016-06-15 02:22:01 -04002509static void get_dev_fw_str(struct ib_device *ibdev, char *str,
2510 size_t str_len)
2511{
2512 struct mlx5_ib_dev *dev =
2513 container_of(ibdev, struct mlx5_ib_dev, ib_dev);
2514 snprintf(str, str_len, "%d.%d.%04d", fw_rev_maj(dev->mdev),
2515 fw_rev_min(dev->mdev), fw_rev_sub(dev->mdev));
2516}
2517
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002518static int mlx5_enable_roce(struct mlx5_ib_dev *dev)
2519{
Achiad Shochate53505a2015-12-23 18:47:25 +02002520 int err;
2521
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002522 dev->roce.nb.notifier_call = mlx5_netdev_event;
Achiad Shochate53505a2015-12-23 18:47:25 +02002523 err = register_netdevice_notifier(&dev->roce.nb);
2524 if (err)
2525 return err;
2526
2527 err = mlx5_nic_vport_enable_roce(dev->mdev);
2528 if (err)
2529 goto err_unregister_netdevice_notifier;
2530
2531 return 0;
2532
2533err_unregister_netdevice_notifier:
2534 unregister_netdevice_notifier(&dev->roce.nb);
2535 return err;
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002536}
2537
2538static void mlx5_disable_roce(struct mlx5_ib_dev *dev)
2539{
Achiad Shochate53505a2015-12-23 18:47:25 +02002540 mlx5_nic_vport_disable_roce(dev->mdev);
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002541 unregister_netdevice_notifier(&dev->roce.nb);
2542}
2543
Mark Bloch0837e862016-06-17 15:10:55 +03002544static void mlx5_ib_dealloc_q_counters(struct mlx5_ib_dev *dev)
2545{
2546 unsigned int i;
2547
2548 for (i = 0; i < dev->num_ports; i++)
2549 mlx5_core_dealloc_q_counter(dev->mdev,
2550 dev->port[i].q_cnt_id);
2551}
2552
2553static int mlx5_ib_alloc_q_counters(struct mlx5_ib_dev *dev)
2554{
2555 int i;
2556 int ret;
2557
2558 for (i = 0; i < dev->num_ports; i++) {
2559 ret = mlx5_core_alloc_q_counter(dev->mdev,
2560 &dev->port[i].q_cnt_id);
2561 if (ret) {
2562 mlx5_ib_warn(dev,
2563 "couldn't allocate queue counter for port %d, err %d\n",
2564 i + 1, ret);
2565 goto dealloc_counters;
2566 }
2567 }
2568
2569 return 0;
2570
2571dealloc_counters:
2572 while (--i >= 0)
2573 mlx5_core_dealloc_q_counter(dev->mdev,
2574 dev->port[i].q_cnt_id);
2575
2576 return ret;
2577}
2578
Wei Yongjun61961502016-07-12 11:32:47 +00002579static const char * const names[] = {
Mark Bloch0ad17a82016-06-17 15:10:56 +03002580 "rx_write_requests",
2581 "rx_read_requests",
2582 "rx_atomic_requests",
2583 "out_of_buffer",
2584 "out_of_sequence",
2585 "duplicate_request",
2586 "rnr_nak_retry_err",
2587 "packet_seq_err",
2588 "implied_nak_seq_err",
2589 "local_ack_timeout_err",
2590};
2591
2592static const size_t stats_offsets[] = {
2593 MLX5_BYTE_OFF(query_q_counter_out, rx_write_requests),
2594 MLX5_BYTE_OFF(query_q_counter_out, rx_read_requests),
2595 MLX5_BYTE_OFF(query_q_counter_out, rx_atomic_requests),
2596 MLX5_BYTE_OFF(query_q_counter_out, out_of_buffer),
2597 MLX5_BYTE_OFF(query_q_counter_out, out_of_sequence),
2598 MLX5_BYTE_OFF(query_q_counter_out, duplicate_request),
2599 MLX5_BYTE_OFF(query_q_counter_out, rnr_nak_retry_err),
2600 MLX5_BYTE_OFF(query_q_counter_out, packet_seq_err),
2601 MLX5_BYTE_OFF(query_q_counter_out, implied_nak_seq_err),
2602 MLX5_BYTE_OFF(query_q_counter_out, local_ack_timeout_err),
2603};
2604
2605static struct rdma_hw_stats *mlx5_ib_alloc_hw_stats(struct ib_device *ibdev,
2606 u8 port_num)
2607{
2608 BUILD_BUG_ON(ARRAY_SIZE(names) != ARRAY_SIZE(stats_offsets));
2609
2610 /* We support only per port stats */
2611 if (port_num == 0)
2612 return NULL;
2613
2614 return rdma_alloc_hw_stats_struct(names, ARRAY_SIZE(names),
2615 RDMA_HW_STATS_DEFAULT_LIFESPAN);
2616}
2617
2618static int mlx5_ib_get_hw_stats(struct ib_device *ibdev,
2619 struct rdma_hw_stats *stats,
2620 u8 port, int index)
2621{
2622 struct mlx5_ib_dev *dev = to_mdev(ibdev);
2623 int outlen = MLX5_ST_SZ_BYTES(query_q_counter_out);
2624 void *out;
2625 __be32 val;
2626 int ret;
2627 int i;
2628
2629 if (!port || !stats)
2630 return -ENOSYS;
2631
2632 out = mlx5_vzalloc(outlen);
2633 if (!out)
2634 return -ENOMEM;
2635
2636 ret = mlx5_core_query_q_counter(dev->mdev,
2637 dev->port[port - 1].q_cnt_id, 0,
2638 out, outlen);
2639 if (ret)
2640 goto free;
2641
2642 for (i = 0; i < ARRAY_SIZE(names); i++) {
2643 val = *(__be32 *)(out + stats_offsets[i]);
2644 stats->value[i] = (u64)be32_to_cpu(val);
2645 }
2646free:
2647 kvfree(out);
2648 return ARRAY_SIZE(names);
2649}
2650
Jack Morgenstein9603b612014-07-28 23:30:22 +03002651static void *mlx5_ib_add(struct mlx5_core_dev *mdev)
Eli Cohene126ba92013-07-07 17:25:49 +03002652{
Eli Cohene126ba92013-07-07 17:25:49 +03002653 struct mlx5_ib_dev *dev;
Achiad Shochatebd61f62015-12-23 18:47:16 +02002654 enum rdma_link_layer ll;
2655 int port_type_cap;
Eli Cohene126ba92013-07-07 17:25:49 +03002656 int err;
2657 int i;
2658
Achiad Shochatebd61f62015-12-23 18:47:16 +02002659 port_type_cap = MLX5_CAP_GEN(mdev, port_type);
2660 ll = mlx5_port_type_cap_to_rdma_ll(port_type_cap);
2661
Achiad Shochate53505a2015-12-23 18:47:25 +02002662 if ((ll == IB_LINK_LAYER_ETHERNET) && !MLX5_CAP_GEN(mdev, roce))
Majd Dibbiny647241e2015-06-04 19:30:47 +03002663 return NULL;
2664
Eli Cohene126ba92013-07-07 17:25:49 +03002665 printk_once(KERN_INFO "%s", mlx5_version);
2666
2667 dev = (struct mlx5_ib_dev *)ib_alloc_device(sizeof(*dev));
2668 if (!dev)
Jack Morgenstein9603b612014-07-28 23:30:22 +03002669 return NULL;
Eli Cohene126ba92013-07-07 17:25:49 +03002670
Jack Morgenstein9603b612014-07-28 23:30:22 +03002671 dev->mdev = mdev;
Eli Cohene126ba92013-07-07 17:25:49 +03002672
Mark Bloch0837e862016-06-17 15:10:55 +03002673 dev->port = kcalloc(MLX5_CAP_GEN(mdev, num_ports), sizeof(*dev->port),
2674 GFP_KERNEL);
2675 if (!dev->port)
2676 goto err_dealloc;
2677
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002678 rwlock_init(&dev->roce.netdev_lock);
Eli Cohene126ba92013-07-07 17:25:49 +03002679 err = get_port_caps(dev);
2680 if (err)
Mark Bloch0837e862016-06-17 15:10:55 +03002681 goto err_free_port;
Eli Cohene126ba92013-07-07 17:25:49 +03002682
Majd Dibbiny1b5daf12015-06-04 19:30:46 +03002683 if (mlx5_use_mad_ifc(dev))
2684 get_ext_port_caps(dev);
Eli Cohene126ba92013-07-07 17:25:49 +03002685
Eli Cohene126ba92013-07-07 17:25:49 +03002686 MLX5_INIT_DOORBELL_LOCK(&dev->uar_lock);
2687
2688 strlcpy(dev->ib_dev.name, "mlx5_%d", IB_DEVICE_NAME_MAX);
2689 dev->ib_dev.owner = THIS_MODULE;
2690 dev->ib_dev.node_type = RDMA_NODE_IB_CA;
Sagi Grimbergc6790aa2015-09-24 10:34:23 +03002691 dev->ib_dev.local_dma_lkey = 0 /* not supported for now */;
Saeed Mahameed938fe832015-05-28 22:28:41 +03002692 dev->num_ports = MLX5_CAP_GEN(mdev, num_ports);
Eli Cohene126ba92013-07-07 17:25:49 +03002693 dev->ib_dev.phys_port_cnt = dev->num_ports;
Saeed Mahameed233d05d2015-04-02 17:07:32 +03002694 dev->ib_dev.num_comp_vectors =
2695 dev->mdev->priv.eq_table.num_comp_vectors;
Eli Cohene126ba92013-07-07 17:25:49 +03002696 dev->ib_dev.dma_device = &mdev->pdev->dev;
2697
2698 dev->ib_dev.uverbs_abi_ver = MLX5_IB_UVERBS_ABI_VERSION;
2699 dev->ib_dev.uverbs_cmd_mask =
2700 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2701 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2702 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2703 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2704 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2705 (1ull << IB_USER_VERBS_CMD_REG_MR) |
Noa Osherovich56e11d62016-02-29 16:46:51 +02002706 (1ull << IB_USER_VERBS_CMD_REREG_MR) |
Eli Cohene126ba92013-07-07 17:25:49 +03002707 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2708 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2709 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
2710 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
2711 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2712 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2713 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
2714 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
2715 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2716 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2717 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2718 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2719 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
2720 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
2721 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
2722 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
2723 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
Haggai Eran1707cb42015-02-08 13:28:52 +02002724 dev->ib_dev.uverbs_ex_cmd_mask =
Matan Barakd4584dd2016-01-28 17:51:46 +02002725 (1ull << IB_USER_VERBS_EX_CMD_QUERY_DEVICE) |
2726 (1ull << IB_USER_VERBS_EX_CMD_CREATE_CQ) |
2727 (1ull << IB_USER_VERBS_EX_CMD_CREATE_QP);
Eli Cohene126ba92013-07-07 17:25:49 +03002728
2729 dev->ib_dev.query_device = mlx5_ib_query_device;
2730 dev->ib_dev.query_port = mlx5_ib_query_port;
Achiad Shochatebd61f62015-12-23 18:47:16 +02002731 dev->ib_dev.get_link_layer = mlx5_ib_port_link_layer;
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002732 if (ll == IB_LINK_LAYER_ETHERNET)
2733 dev->ib_dev.get_netdev = mlx5_ib_get_netdev;
Eli Cohene126ba92013-07-07 17:25:49 +03002734 dev->ib_dev.query_gid = mlx5_ib_query_gid;
Achiad Shochat3cca2602015-12-23 18:47:23 +02002735 dev->ib_dev.add_gid = mlx5_ib_add_gid;
2736 dev->ib_dev.del_gid = mlx5_ib_del_gid;
Eli Cohene126ba92013-07-07 17:25:49 +03002737 dev->ib_dev.query_pkey = mlx5_ib_query_pkey;
2738 dev->ib_dev.modify_device = mlx5_ib_modify_device;
2739 dev->ib_dev.modify_port = mlx5_ib_modify_port;
2740 dev->ib_dev.alloc_ucontext = mlx5_ib_alloc_ucontext;
2741 dev->ib_dev.dealloc_ucontext = mlx5_ib_dealloc_ucontext;
2742 dev->ib_dev.mmap = mlx5_ib_mmap;
2743 dev->ib_dev.alloc_pd = mlx5_ib_alloc_pd;
2744 dev->ib_dev.dealloc_pd = mlx5_ib_dealloc_pd;
2745 dev->ib_dev.create_ah = mlx5_ib_create_ah;
2746 dev->ib_dev.query_ah = mlx5_ib_query_ah;
2747 dev->ib_dev.destroy_ah = mlx5_ib_destroy_ah;
2748 dev->ib_dev.create_srq = mlx5_ib_create_srq;
2749 dev->ib_dev.modify_srq = mlx5_ib_modify_srq;
2750 dev->ib_dev.query_srq = mlx5_ib_query_srq;
2751 dev->ib_dev.destroy_srq = mlx5_ib_destroy_srq;
2752 dev->ib_dev.post_srq_recv = mlx5_ib_post_srq_recv;
2753 dev->ib_dev.create_qp = mlx5_ib_create_qp;
2754 dev->ib_dev.modify_qp = mlx5_ib_modify_qp;
2755 dev->ib_dev.query_qp = mlx5_ib_query_qp;
2756 dev->ib_dev.destroy_qp = mlx5_ib_destroy_qp;
2757 dev->ib_dev.post_send = mlx5_ib_post_send;
2758 dev->ib_dev.post_recv = mlx5_ib_post_recv;
2759 dev->ib_dev.create_cq = mlx5_ib_create_cq;
2760 dev->ib_dev.modify_cq = mlx5_ib_modify_cq;
2761 dev->ib_dev.resize_cq = mlx5_ib_resize_cq;
2762 dev->ib_dev.destroy_cq = mlx5_ib_destroy_cq;
2763 dev->ib_dev.poll_cq = mlx5_ib_poll_cq;
2764 dev->ib_dev.req_notify_cq = mlx5_ib_arm_cq;
2765 dev->ib_dev.get_dma_mr = mlx5_ib_get_dma_mr;
2766 dev->ib_dev.reg_user_mr = mlx5_ib_reg_user_mr;
Noa Osherovich56e11d62016-02-29 16:46:51 +02002767 dev->ib_dev.rereg_user_mr = mlx5_ib_rereg_user_mr;
Eli Cohene126ba92013-07-07 17:25:49 +03002768 dev->ib_dev.dereg_mr = mlx5_ib_dereg_mr;
2769 dev->ib_dev.attach_mcast = mlx5_ib_mcg_attach;
2770 dev->ib_dev.detach_mcast = mlx5_ib_mcg_detach;
2771 dev->ib_dev.process_mad = mlx5_ib_process_mad;
Sagi Grimberg9bee1782015-07-30 10:32:35 +03002772 dev->ib_dev.alloc_mr = mlx5_ib_alloc_mr;
Sagi Grimberg8a187ee2015-10-13 19:11:26 +03002773 dev->ib_dev.map_mr_sg = mlx5_ib_map_mr_sg;
Sagi Grimbergd5436ba2014-02-23 14:19:12 +02002774 dev->ib_dev.check_mr_status = mlx5_ib_check_mr_status;
Ira Weiny77386132015-05-13 20:02:58 -04002775 dev->ib_dev.get_port_immutable = mlx5_port_immutable;
Ira Weinyc7342822016-06-15 02:22:01 -04002776 dev->ib_dev.get_dev_fw_str = get_dev_fw_str;
Eli Coheneff901d2016-03-11 22:58:42 +02002777 if (mlx5_core_is_pf(mdev)) {
2778 dev->ib_dev.get_vf_config = mlx5_ib_get_vf_config;
2779 dev->ib_dev.set_vf_link_state = mlx5_ib_set_vf_link_state;
2780 dev->ib_dev.get_vf_stats = mlx5_ib_get_vf_stats;
2781 dev->ib_dev.set_vf_guid = mlx5_ib_set_vf_guid;
2782 }
Eli Cohene126ba92013-07-07 17:25:49 +03002783
Maor Gottlieb7c2344c2016-06-17 14:56:44 +03002784 dev->ib_dev.disassociate_ucontext = mlx5_ib_disassociate_ucontext;
2785
Saeed Mahameed938fe832015-05-28 22:28:41 +03002786 mlx5_ib_internal_fill_odp_caps(dev);
Haggai Eran8cdd3122014-12-11 17:04:20 +02002787
Matan Barakd2370e02016-02-29 18:05:30 +02002788 if (MLX5_CAP_GEN(mdev, imaicl)) {
2789 dev->ib_dev.alloc_mw = mlx5_ib_alloc_mw;
2790 dev->ib_dev.dealloc_mw = mlx5_ib_dealloc_mw;
2791 dev->ib_dev.uverbs_cmd_mask |=
2792 (1ull << IB_USER_VERBS_CMD_ALLOC_MW) |
2793 (1ull << IB_USER_VERBS_CMD_DEALLOC_MW);
2794 }
2795
Mark Bloch0ad17a82016-06-17 15:10:56 +03002796 if (MLX5_CAP_GEN(dev->mdev, out_of_seq_cnt) &&
2797 MLX5_CAP_GEN(dev->mdev, retransmission_q_counters)) {
2798 dev->ib_dev.get_hw_stats = mlx5_ib_get_hw_stats;
2799 dev->ib_dev.alloc_hw_stats = mlx5_ib_alloc_hw_stats;
2800 }
2801
Saeed Mahameed938fe832015-05-28 22:28:41 +03002802 if (MLX5_CAP_GEN(mdev, xrc)) {
Eli Cohene126ba92013-07-07 17:25:49 +03002803 dev->ib_dev.alloc_xrcd = mlx5_ib_alloc_xrcd;
2804 dev->ib_dev.dealloc_xrcd = mlx5_ib_dealloc_xrcd;
2805 dev->ib_dev.uverbs_cmd_mask |=
2806 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
2807 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
2808 }
2809
Linus Torvalds048ccca2016-01-23 18:45:06 -08002810 if (mlx5_ib_port_link_layer(&dev->ib_dev, 1) ==
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02002811 IB_LINK_LAYER_ETHERNET) {
2812 dev->ib_dev.create_flow = mlx5_ib_create_flow;
2813 dev->ib_dev.destroy_flow = mlx5_ib_destroy_flow;
Yishai Hadas79b20a62016-05-23 15:20:50 +03002814 dev->ib_dev.create_wq = mlx5_ib_create_wq;
2815 dev->ib_dev.modify_wq = mlx5_ib_modify_wq;
2816 dev->ib_dev.destroy_wq = mlx5_ib_destroy_wq;
Yishai Hadasc5f90922016-05-23 15:20:53 +03002817 dev->ib_dev.create_rwq_ind_table = mlx5_ib_create_rwq_ind_table;
2818 dev->ib_dev.destroy_rwq_ind_table = mlx5_ib_destroy_rwq_ind_table;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02002819 dev->ib_dev.uverbs_ex_cmd_mask |=
2820 (1ull << IB_USER_VERBS_EX_CMD_CREATE_FLOW) |
Yishai Hadas79b20a62016-05-23 15:20:50 +03002821 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_FLOW) |
2822 (1ull << IB_USER_VERBS_EX_CMD_CREATE_WQ) |
2823 (1ull << IB_USER_VERBS_EX_CMD_MODIFY_WQ) |
Yishai Hadasc5f90922016-05-23 15:20:53 +03002824 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_WQ) |
2825 (1ull << IB_USER_VERBS_EX_CMD_CREATE_RWQ_IND_TBL) |
2826 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_RWQ_IND_TBL);
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02002827 }
Eli Cohene126ba92013-07-07 17:25:49 +03002828 err = init_node_data(dev);
2829 if (err)
Saeed Mahameed233d05d2015-04-02 17:07:32 +03002830 goto err_dealloc;
Eli Cohene126ba92013-07-07 17:25:49 +03002831
Maor Gottlieb038d2ef2016-01-11 10:26:07 +02002832 mutex_init(&dev->flow_db.lock);
Eli Cohene126ba92013-07-07 17:25:49 +03002833 mutex_init(&dev->cap_mask_mutex);
Maor Gottlieb89ea94a72016-06-17 15:01:38 +03002834 INIT_LIST_HEAD(&dev->qp_list);
2835 spin_lock_init(&dev->reset_flow_resource_lock);
Eli Cohene126ba92013-07-07 17:25:49 +03002836
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002837 if (ll == IB_LINK_LAYER_ETHERNET) {
2838 err = mlx5_enable_roce(dev);
2839 if (err)
2840 goto err_dealloc;
2841 }
2842
Eli Cohene126ba92013-07-07 17:25:49 +03002843 err = create_dev_resources(&dev->devr);
2844 if (err)
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002845 goto err_disable_roce;
Eli Cohene126ba92013-07-07 17:25:49 +03002846
Haggai Eran6aec21f2014-12-11 17:04:23 +02002847 err = mlx5_ib_odp_init_one(dev);
Wei Yongjun281d1a92013-07-30 07:54:26 +08002848 if (err)
Eli Cohene126ba92013-07-07 17:25:49 +03002849 goto err_rsrc;
2850
Mark Bloch0837e862016-06-17 15:10:55 +03002851 err = mlx5_ib_alloc_q_counters(dev);
Haggai Eran6aec21f2014-12-11 17:04:23 +02002852 if (err)
2853 goto err_odp;
2854
Mark Bloch0837e862016-06-17 15:10:55 +03002855 err = ib_register_device(&dev->ib_dev, NULL);
2856 if (err)
2857 goto err_q_cnt;
2858
Eli Cohene126ba92013-07-07 17:25:49 +03002859 err = create_umr_res(dev);
2860 if (err)
2861 goto err_dev;
2862
2863 for (i = 0; i < ARRAY_SIZE(mlx5_class_attributes); i++) {
Wei Yongjun281d1a92013-07-30 07:54:26 +08002864 err = device_create_file(&dev->ib_dev.dev,
2865 mlx5_class_attributes[i]);
2866 if (err)
Eli Cohene126ba92013-07-07 17:25:49 +03002867 goto err_umrc;
2868 }
2869
2870 dev->ib_active = true;
2871
Jack Morgenstein9603b612014-07-28 23:30:22 +03002872 return dev;
Eli Cohene126ba92013-07-07 17:25:49 +03002873
2874err_umrc:
2875 destroy_umrc_res(dev);
2876
2877err_dev:
2878 ib_unregister_device(&dev->ib_dev);
2879
Mark Bloch0837e862016-06-17 15:10:55 +03002880err_q_cnt:
2881 mlx5_ib_dealloc_q_counters(dev);
2882
Haggai Eran6aec21f2014-12-11 17:04:23 +02002883err_odp:
2884 mlx5_ib_odp_remove_one(dev);
2885
Eli Cohene126ba92013-07-07 17:25:49 +03002886err_rsrc:
2887 destroy_dev_resources(&dev->devr);
2888
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002889err_disable_roce:
2890 if (ll == IB_LINK_LAYER_ETHERNET)
2891 mlx5_disable_roce(dev);
2892
Mark Bloch0837e862016-06-17 15:10:55 +03002893err_free_port:
2894 kfree(dev->port);
2895
Jack Morgenstein9603b612014-07-28 23:30:22 +03002896err_dealloc:
Eli Cohene126ba92013-07-07 17:25:49 +03002897 ib_dealloc_device((struct ib_device *)dev);
2898
Jack Morgenstein9603b612014-07-28 23:30:22 +03002899 return NULL;
Eli Cohene126ba92013-07-07 17:25:49 +03002900}
2901
Jack Morgenstein9603b612014-07-28 23:30:22 +03002902static void mlx5_ib_remove(struct mlx5_core_dev *mdev, void *context)
Eli Cohene126ba92013-07-07 17:25:49 +03002903{
Jack Morgenstein9603b612014-07-28 23:30:22 +03002904 struct mlx5_ib_dev *dev = context;
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002905 enum rdma_link_layer ll = mlx5_ib_port_link_layer(&dev->ib_dev, 1);
Haggai Eran6aec21f2014-12-11 17:04:23 +02002906
Eli Cohene126ba92013-07-07 17:25:49 +03002907 ib_unregister_device(&dev->ib_dev);
Mark Bloch0837e862016-06-17 15:10:55 +03002908 mlx5_ib_dealloc_q_counters(dev);
Eli Coheneefd56e2014-09-14 16:47:50 +03002909 destroy_umrc_res(dev);
Haggai Eran6aec21f2014-12-11 17:04:23 +02002910 mlx5_ib_odp_remove_one(dev);
Eli Cohene126ba92013-07-07 17:25:49 +03002911 destroy_dev_resources(&dev->devr);
Achiad Shochatfc24fc52015-12-23 18:47:17 +02002912 if (ll == IB_LINK_LAYER_ETHERNET)
2913 mlx5_disable_roce(dev);
Mark Bloch0837e862016-06-17 15:10:55 +03002914 kfree(dev->port);
Eli Cohene126ba92013-07-07 17:25:49 +03002915 ib_dealloc_device(&dev->ib_dev);
2916}
2917
Jack Morgenstein9603b612014-07-28 23:30:22 +03002918static struct mlx5_interface mlx5_ib_interface = {
2919 .add = mlx5_ib_add,
2920 .remove = mlx5_ib_remove,
2921 .event = mlx5_ib_event,
Saeed Mahameed64613d942015-04-02 17:07:34 +03002922 .protocol = MLX5_INTERFACE_PROTOCOL_IB,
Eli Cohene126ba92013-07-07 17:25:49 +03002923};
2924
2925static int __init mlx5_ib_init(void)
2926{
Haggai Eran6aec21f2014-12-11 17:04:23 +02002927 int err;
2928
Jack Morgenstein9603b612014-07-28 23:30:22 +03002929 if (deprecated_prof_sel != 2)
2930 pr_warn("prof_sel is deprecated for mlx5_ib, set it for mlx5_core\n");
2931
Haggai Eran6aec21f2014-12-11 17:04:23 +02002932 err = mlx5_ib_odp_init();
2933 if (err)
2934 return err;
2935
2936 err = mlx5_register_interface(&mlx5_ib_interface);
2937 if (err)
2938 goto clean_odp;
2939
2940 return err;
2941
2942clean_odp:
2943 mlx5_ib_odp_cleanup();
2944 return err;
Eli Cohene126ba92013-07-07 17:25:49 +03002945}
2946
2947static void __exit mlx5_ib_cleanup(void)
2948{
Jack Morgenstein9603b612014-07-28 23:30:22 +03002949 mlx5_unregister_interface(&mlx5_ib_interface);
Haggai Eran6aec21f2014-12-11 17:04:23 +02002950 mlx5_ib_odp_cleanup();
Eli Cohene126ba92013-07-07 17:25:49 +03002951}
2952
2953module_init(mlx5_ib_init);
2954module_exit(mlx5_ib_cleanup);