blob: 8d59a5905ee83d11908193c4612a8b4fdc18bc79 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07003 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#include <linux/module.h>
35#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070037#include <linux/errno.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070038#include <linux/netdevice.h>
39#include <linux/inetdevice.h>
40#include <linux/rtnetlink.h>
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030041#include <linux/if_vlan.h>
Moni Shouad487ee72013-12-12 18:03:13 +020042#include <net/ipv6.h>
43#include <net/addrconf.h>
Jiri Pirko09d4d082016-02-26 17:32:24 +010044#include <net/devlink.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070045
46#include <rdma/ib_smi.h>
47#include <rdma/ib_user_verbs.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070048#include <rdma/ib_addr.h>
Moni Shouae26be1b2015-07-30 18:33:29 +030049#include <rdma/ib_cache.h>
50
51#include <net/bonding.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070052
53#include <linux/mlx4/driver.h>
54#include <linux/mlx4/cmd.h>
Matan Barak9433c182014-05-15 15:29:28 +030055#include <linux/mlx4/qp.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070056
57#include "mlx4_ib.h"
Leon Romanovsky9ce28a22016-09-22 17:31:14 +030058#include <rdma/mlx4-abi.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070059
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +030060#define DRV_NAME MLX4_IB_DRV_NAME
Amir Vadai169a1d82014-02-19 17:47:31 +020061#define DRV_VERSION "2.2-1"
62#define DRV_RELDATE "Feb 2014"
Roland Dreier225c7b12007-05-08 18:00:38 -070063
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030064#define MLX4_IB_FLOW_MAX_PRIO 0xFFF
Matan Baraka37a1a42013-11-07 15:25:16 +020065#define MLX4_IB_FLOW_QPN_MASK 0xFFFFFF
Markus Stockhausen50e2ec92014-08-13 14:07:30 +000066#define MLX4_IB_CARD_REV_A0 0xA0
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030067
Roland Dreier225c7b12007-05-08 18:00:38 -070068MODULE_AUTHOR("Roland Dreier");
69MODULE_DESCRIPTION("Mellanox ConnectX HCA InfiniBand driver");
70MODULE_LICENSE("Dual BSD/GPL");
71MODULE_VERSION(DRV_VERSION);
72
Yishai Hadas56c1d232015-02-12 09:49:43 +020073int mlx4_ib_sm_guid_assign = 0;
Jack Morgensteina0c64a12012-08-03 08:40:49 +000074module_param_named(sm_guid_assign, mlx4_ib_sm_guid_assign, int, 0444);
Yishai Hadas56c1d232015-02-12 09:49:43 +020075MODULE_PARM_DESC(sm_guid_assign, "Enable SM alias_GUID assignment if sm_guid_assign > 0 (Default: 0)");
Jack Morgensteina0c64a12012-08-03 08:40:49 +000076
Roland Dreier68f39482008-02-04 20:20:44 -080077static const char mlx4_ib_version[] =
Roland Dreier225c7b12007-05-08 18:00:38 -070078 DRV_NAME ": Mellanox ConnectX InfiniBand driver v"
79 DRV_VERSION " (" DRV_RELDATE ")\n";
80
Jack Morgenstein3806d082012-08-03 08:40:58 +000081static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init);
82
Eli Cohenfa417f72010-10-24 21:08:52 -070083static struct workqueue_struct *wq;
84
Roland Dreier225c7b12007-05-08 18:00:38 -070085static void init_query_mad(struct ib_smp *mad)
86{
87 mad->base_version = 1;
88 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
89 mad->class_version = 1;
90 mad->method = IB_MGMT_METHOD_GET;
91}
92
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030093static int check_flow_steering_support(struct mlx4_dev *dev)
94{
Matan Barak0a9b7d52013-11-07 15:25:15 +020095 int eth_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030096 int ib_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030097
Matan Barak0a9b7d52013-11-07 15:25:15 +020098 int dmfs = dev->caps.steering_mode == MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030099
Matan Barak0a9b7d52013-11-07 15:25:15 +0200100 if (dmfs) {
101 int i;
102 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
103 eth_num_ports++;
104 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
105 ib_num_ports++;
106 dmfs &= (!ib_num_ports ||
107 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DMFS_IPOIB)) &&
108 (!eth_num_ports ||
109 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_FS_EN));
110 if (ib_num_ports && mlx4_is_mfunc(dev)) {
111 pr_warn("Device managed flow steering is unavailable for IB port in multifunction env.\n");
112 dmfs = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300113 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300114 }
Matan Barak0a9b7d52013-11-07 15:25:15 +0200115 return dmfs;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300116}
117
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300118static int num_ib_ports(struct mlx4_dev *dev)
119{
120 int ib_ports = 0;
121 int i;
122
123 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
124 ib_ports++;
125
126 return ib_ports;
127}
128
Moni Shouae26be1b2015-07-30 18:33:29 +0300129static struct net_device *mlx4_ib_get_netdev(struct ib_device *device, u8 port_num)
130{
131 struct mlx4_ib_dev *ibdev = to_mdev(device);
132 struct net_device *dev;
133
134 rcu_read_lock();
135 dev = mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port_num);
136
137 if (dev) {
138 if (mlx4_is_bonded(ibdev->dev)) {
139 struct net_device *upper = NULL;
140
141 upper = netdev_master_upper_dev_get_rcu(dev);
142 if (upper) {
143 struct net_device *active;
144
145 active = bond_option_active_slave_get_rcu(netdev_priv(upper));
146 if (active)
147 dev = active;
148 }
149 }
150 }
151 if (dev)
152 dev_hold(dev);
153
154 rcu_read_unlock();
155 return dev;
156}
157
Moni Shoua7e57b852016-01-14 17:50:35 +0200158static int mlx4_ib_update_gids_v1(struct gid_entry *gids,
159 struct mlx4_ib_dev *ibdev,
160 u8 port_num)
Moni Shouae26be1b2015-07-30 18:33:29 +0300161{
162 struct mlx4_cmd_mailbox *mailbox;
163 int err;
164 struct mlx4_dev *dev = ibdev->dev;
165 int i;
166 union ib_gid *gid_tbl;
167
168 mailbox = mlx4_alloc_cmd_mailbox(dev);
169 if (IS_ERR(mailbox))
170 return -ENOMEM;
171
172 gid_tbl = mailbox->buf;
173
174 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i)
175 memcpy(&gid_tbl[i], &gids[i].gid, sizeof(union ib_gid));
176
177 err = mlx4_cmd(dev, mailbox->dma,
178 MLX4_SET_PORT_GID_TABLE << 8 | port_num,
179 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
180 MLX4_CMD_WRAPPED);
181 if (mlx4_is_bonded(dev))
182 err += mlx4_cmd(dev, mailbox->dma,
183 MLX4_SET_PORT_GID_TABLE << 8 | 2,
184 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
185 MLX4_CMD_WRAPPED);
186
187 mlx4_free_cmd_mailbox(dev, mailbox);
188 return err;
189}
190
Moni Shoua7e57b852016-01-14 17:50:35 +0200191static int mlx4_ib_update_gids_v1_v2(struct gid_entry *gids,
192 struct mlx4_ib_dev *ibdev,
193 u8 port_num)
194{
195 struct mlx4_cmd_mailbox *mailbox;
196 int err;
197 struct mlx4_dev *dev = ibdev->dev;
198 int i;
199 struct {
200 union ib_gid gid;
201 __be32 rsrvd1[2];
202 __be16 rsrvd2;
203 u8 type;
204 u8 version;
205 __be32 rsrvd3;
206 } *gid_tbl;
207
208 mailbox = mlx4_alloc_cmd_mailbox(dev);
209 if (IS_ERR(mailbox))
210 return -ENOMEM;
211
212 gid_tbl = mailbox->buf;
213 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i) {
214 memcpy(&gid_tbl[i].gid, &gids[i].gid, sizeof(union ib_gid));
215 if (gids[i].gid_type == IB_GID_TYPE_ROCE_UDP_ENCAP) {
216 gid_tbl[i].version = 2;
217 if (!ipv6_addr_v4mapped((struct in6_addr *)&gids[i].gid))
218 gid_tbl[i].type = 1;
Moni Shoua7e57b852016-01-14 17:50:35 +0200219 }
220 }
221
222 err = mlx4_cmd(dev, mailbox->dma,
223 MLX4_SET_PORT_ROCE_ADDR << 8 | port_num,
224 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
225 MLX4_CMD_WRAPPED);
226 if (mlx4_is_bonded(dev))
227 err += mlx4_cmd(dev, mailbox->dma,
228 MLX4_SET_PORT_ROCE_ADDR << 8 | 2,
229 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
230 MLX4_CMD_WRAPPED);
231
232 mlx4_free_cmd_mailbox(dev, mailbox);
233 return err;
234}
235
236static int mlx4_ib_update_gids(struct gid_entry *gids,
237 struct mlx4_ib_dev *ibdev,
238 u8 port_num)
239{
240 if (ibdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ROCE_V1_V2)
241 return mlx4_ib_update_gids_v1_v2(gids, ibdev, port_num);
242
243 return mlx4_ib_update_gids_v1(gids, ibdev, port_num);
244}
245
Moni Shouae26be1b2015-07-30 18:33:29 +0300246static int mlx4_ib_add_gid(struct ib_device *device,
247 u8 port_num,
248 unsigned int index,
249 const union ib_gid *gid,
250 const struct ib_gid_attr *attr,
251 void **context)
252{
253 struct mlx4_ib_dev *ibdev = to_mdev(device);
254 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
255 struct mlx4_port_gid_table *port_gid_table;
256 int free = -1, found = -1;
257 int ret = 0;
258 int hw_update = 0;
259 int i;
260 struct gid_entry *gids = NULL;
261
262 if (!rdma_cap_roce_gid_table(device, port_num))
263 return -EINVAL;
264
265 if (port_num > MLX4_MAX_PORTS)
266 return -EINVAL;
267
268 if (!context)
269 return -EINVAL;
270
271 port_gid_table = &iboe->gids[port_num - 1];
272 spin_lock_bh(&iboe->lock);
273 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i) {
Moni Shouab699a852016-01-14 17:50:33 +0200274 if (!memcmp(&port_gid_table->gids[i].gid, gid, sizeof(*gid)) &&
275 (port_gid_table->gids[i].gid_type == attr->gid_type)) {
Moni Shouae26be1b2015-07-30 18:33:29 +0300276 found = i;
277 break;
278 }
279 if (free < 0 && !memcmp(&port_gid_table->gids[i].gid, &zgid, sizeof(*gid)))
280 free = i; /* HW has space */
281 }
282
283 if (found < 0) {
284 if (free < 0) {
285 ret = -ENOSPC;
286 } else {
287 port_gid_table->gids[free].ctx = kmalloc(sizeof(*port_gid_table->gids[free].ctx), GFP_ATOMIC);
288 if (!port_gid_table->gids[free].ctx) {
289 ret = -ENOMEM;
290 } else {
291 *context = port_gid_table->gids[free].ctx;
292 memcpy(&port_gid_table->gids[free].gid, gid, sizeof(*gid));
Moni Shouab699a852016-01-14 17:50:33 +0200293 port_gid_table->gids[free].gid_type = attr->gid_type;
Moni Shouae26be1b2015-07-30 18:33:29 +0300294 port_gid_table->gids[free].ctx->real_index = free;
295 port_gid_table->gids[free].ctx->refcount = 1;
296 hw_update = 1;
297 }
298 }
299 } else {
300 struct gid_cache_context *ctx = port_gid_table->gids[found].ctx;
301 *context = ctx;
302 ctx->refcount++;
303 }
304 if (!ret && hw_update) {
305 gids = kmalloc(sizeof(*gids) * MLX4_MAX_PORT_GIDS, GFP_ATOMIC);
306 if (!gids) {
307 ret = -ENOMEM;
308 } else {
Moni Shouab699a852016-01-14 17:50:33 +0200309 for (i = 0; i < MLX4_MAX_PORT_GIDS; i++) {
Moni Shouae26be1b2015-07-30 18:33:29 +0300310 memcpy(&gids[i].gid, &port_gid_table->gids[i].gid, sizeof(union ib_gid));
Moni Shouab699a852016-01-14 17:50:33 +0200311 gids[i].gid_type = port_gid_table->gids[i].gid_type;
312 }
Moni Shouae26be1b2015-07-30 18:33:29 +0300313 }
314 }
315 spin_unlock_bh(&iboe->lock);
316
317 if (!ret && hw_update) {
318 ret = mlx4_ib_update_gids(gids, ibdev, port_num);
319 kfree(gids);
320 }
321
322 return ret;
323}
324
325static int mlx4_ib_del_gid(struct ib_device *device,
326 u8 port_num,
327 unsigned int index,
328 void **context)
329{
330 struct gid_cache_context *ctx = *context;
331 struct mlx4_ib_dev *ibdev = to_mdev(device);
332 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
333 struct mlx4_port_gid_table *port_gid_table;
334 int ret = 0;
335 int hw_update = 0;
336 struct gid_entry *gids = NULL;
337
338 if (!rdma_cap_roce_gid_table(device, port_num))
339 return -EINVAL;
340
341 if (port_num > MLX4_MAX_PORTS)
342 return -EINVAL;
343
344 port_gid_table = &iboe->gids[port_num - 1];
345 spin_lock_bh(&iboe->lock);
346 if (ctx) {
347 ctx->refcount--;
348 if (!ctx->refcount) {
349 unsigned int real_index = ctx->real_index;
350
351 memcpy(&port_gid_table->gids[real_index].gid, &zgid, sizeof(zgid));
352 kfree(port_gid_table->gids[real_index].ctx);
353 port_gid_table->gids[real_index].ctx = NULL;
354 hw_update = 1;
355 }
356 }
357 if (!ret && hw_update) {
358 int i;
359
360 gids = kmalloc(sizeof(*gids) * MLX4_MAX_PORT_GIDS, GFP_ATOMIC);
361 if (!gids) {
362 ret = -ENOMEM;
363 } else {
Jack Mc6ffc772018-03-05 20:09:46 +0200364 for (i = 0; i < MLX4_MAX_PORT_GIDS; i++) {
365 memcpy(&gids[i].gid,
366 &port_gid_table->gids[i].gid,
367 sizeof(union ib_gid));
368 gids[i].gid_type =
369 port_gid_table->gids[i].gid_type;
370 }
Moni Shouae26be1b2015-07-30 18:33:29 +0300371 }
372 }
373 spin_unlock_bh(&iboe->lock);
374
375 if (!ret && hw_update) {
376 ret = mlx4_ib_update_gids(gids, ibdev, port_num);
377 kfree(gids);
378 }
379 return ret;
380}
381
382int mlx4_ib_gid_index_to_real_index(struct mlx4_ib_dev *ibdev,
383 u8 port_num, int index)
384{
385 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
386 struct gid_cache_context *ctx = NULL;
387 union ib_gid gid;
388 struct mlx4_port_gid_table *port_gid_table;
389 int real_index = -EINVAL;
390 int i;
391 int ret;
392 unsigned long flags;
Moni Shouab699a852016-01-14 17:50:33 +0200393 struct ib_gid_attr attr;
Moni Shouae26be1b2015-07-30 18:33:29 +0300394
395 if (port_num > MLX4_MAX_PORTS)
396 return -EINVAL;
397
398 if (mlx4_is_bonded(ibdev->dev))
399 port_num = 1;
400
401 if (!rdma_cap_roce_gid_table(&ibdev->ib_dev, port_num))
402 return index;
403
Moni Shouab699a852016-01-14 17:50:33 +0200404 ret = ib_get_cached_gid(&ibdev->ib_dev, port_num, index, &gid, &attr);
Moni Shouae26be1b2015-07-30 18:33:29 +0300405 if (ret)
406 return ret;
407
Moni Shouab699a852016-01-14 17:50:33 +0200408 if (attr.ndev)
409 dev_put(attr.ndev);
410
Moni Shouae26be1b2015-07-30 18:33:29 +0300411 if (!memcmp(&gid, &zgid, sizeof(gid)))
412 return -EINVAL;
413
414 spin_lock_irqsave(&iboe->lock, flags);
415 port_gid_table = &iboe->gids[port_num - 1];
416
417 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i)
Moni Shouab699a852016-01-14 17:50:33 +0200418 if (!memcmp(&port_gid_table->gids[i].gid, &gid, sizeof(gid)) &&
419 attr.gid_type == port_gid_table->gids[i].gid_type) {
Moni Shouae26be1b2015-07-30 18:33:29 +0300420 ctx = port_gid_table->gids[i].ctx;
421 break;
422 }
423 if (ctx)
424 real_index = ctx->real_index;
425 spin_unlock_irqrestore(&iboe->lock, flags);
426 return real_index;
427}
428
Roland Dreier225c7b12007-05-08 18:00:38 -0700429static int mlx4_ib_query_device(struct ib_device *ibdev,
Matan Barak2528e332015-06-11 16:35:25 +0300430 struct ib_device_attr *props,
431 struct ib_udata *uhw)
Roland Dreier225c7b12007-05-08 18:00:38 -0700432{
433 struct mlx4_ib_dev *dev = to_mdev(ibdev);
434 struct ib_smp *in_mad = NULL;
435 struct ib_smp *out_mad = NULL;
436 int err = -ENOMEM;
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300437 int have_ib_ports;
Matan Barak4b664c42015-06-11 16:35:27 +0300438 struct mlx4_uverbs_ex_query_device cmd;
439 struct mlx4_uverbs_ex_query_device_resp resp = {.comp_mask = 0};
440 struct mlx4_clock_params clock_params;
Roland Dreier225c7b12007-05-08 18:00:38 -0700441
Matan Barak4b664c42015-06-11 16:35:27 +0300442 if (uhw->inlen) {
443 if (uhw->inlen < sizeof(cmd))
444 return -EINVAL;
Matan Barak2528e332015-06-11 16:35:25 +0300445
Matan Barak4b664c42015-06-11 16:35:27 +0300446 err = ib_copy_from_udata(&cmd, uhw, sizeof(cmd));
447 if (err)
448 return err;
449
450 if (cmd.comp_mask)
451 return -EINVAL;
452
453 if (cmd.reserved)
454 return -EINVAL;
455 }
456
457 resp.response_length = offsetof(typeof(resp), response_length) +
458 sizeof(resp.response_length);
Roland Dreier225c7b12007-05-08 18:00:38 -0700459 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
460 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
461 if (!in_mad || !out_mad)
462 goto out;
463
464 init_query_mad(in_mad);
465 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
466
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000467 err = mlx4_MAD_IFC(to_mdev(ibdev), MLX4_MAD_IFC_IGNORE_KEYS,
468 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700469 if (err)
470 goto out;
471
472 memset(props, 0, sizeof *props);
473
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300474 have_ib_ports = num_ib_ports(dev->dev);
475
Roland Dreier225c7b12007-05-08 18:00:38 -0700476 props->fw_ver = dev->dev->caps.fw_ver;
477 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
478 IB_DEVICE_PORT_ACTIVE_EVENT |
479 IB_DEVICE_SYS_IMAGE_GUID |
Ron Livne521e5752008-07-14 23:48:48 -0700480 IB_DEVICE_RC_RNR_NAK_GEN |
481 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
Roland Dreier225c7b12007-05-08 18:00:38 -0700482 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR)
483 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
484 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR)
485 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300486 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_APM && have_ib_ports)
Roland Dreier225c7b12007-05-08 18:00:38 -0700487 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
488 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UD_AV_PORT)
489 props->device_cap_flags |= IB_DEVICE_UD_AV_PORT_ENFORCE;
Eli Cohen8ff095e2008-04-16 21:01:10 -0700490 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_IPOIB_CSUM)
491 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
Markus Stockhausen50e2ec92014-08-13 14:07:30 +0000492 if (dev->dev->caps.max_gso_sz &&
493 (dev->dev->rev_id != MLX4_IB_CARD_REV_A0) &&
494 (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BLH))
Eli Cohenb832be12008-04-16 21:09:27 -0700495 props->device_cap_flags |= IB_DEVICE_UD_TSO;
Roland Dreier95d04f02008-07-23 08:12:26 -0700496 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_RESERVED_LKEY)
497 props->device_cap_flags |= IB_DEVICE_LOCAL_DMA_LKEY;
498 if ((dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_LOCAL_INV) &&
499 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_REMOTE_INV) &&
500 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_FAST_REG_WR))
501 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
Sean Hefty0a1405d2011-06-02 11:32:15 -0700502 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC)
503 props->device_cap_flags |= IB_DEVICE_XRC;
Shani Michaelib4253882013-02-06 16:19:16 +0000504 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW)
505 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW;
506 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
507 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_WIN_TYPE_2B)
508 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2B;
509 else
510 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2A;
511 }
Bart Van Asscheca920f52016-06-03 07:58:32 -0700512 if (dev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED)
513 props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
Roland Dreier225c7b12007-05-08 18:00:38 -0700514
Bodong Wang070b3992015-09-22 23:18:11 +0300515 props->device_cap_flags |= IB_DEVICE_RAW_IP_CSUM;
516
Roland Dreier225c7b12007-05-08 18:00:38 -0700517 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
518 0xffffff;
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200519 props->vendor_part_id = dev->dev->persist->pdev->device;
Roland Dreier225c7b12007-05-08 18:00:38 -0700520 props->hw_ver = be32_to_cpup((__be32 *) (out_mad->data + 32));
521 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
522
523 props->max_mr_size = ~0ull;
524 props->page_size_cap = dev->dev->caps.page_size_cap;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200525 props->max_qp = dev->dev->quotas.qp;
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300526 props->max_qp_wr = dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE;
Roland Dreier225c7b12007-05-08 18:00:38 -0700527 props->max_sge = min(dev->dev->caps.max_sq_sg,
528 dev->dev->caps.max_rq_sg);
Sagi Grimberga5e14ba2015-10-28 13:28:15 +0200529 props->max_sge_rd = MLX4_MAX_SGE_RD;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200530 props->max_cq = dev->dev->quotas.cq;
Roland Dreier225c7b12007-05-08 18:00:38 -0700531 props->max_cqe = dev->dev->caps.max_cqes;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200532 props->max_mr = dev->dev->quotas.mpt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700533 props->max_pd = dev->dev->caps.num_pds - dev->dev->caps.reserved_pds;
534 props->max_qp_rd_atom = dev->dev->caps.max_qp_dest_rdma;
535 props->max_qp_init_rd_atom = dev->dev->caps.max_qp_init_rdma;
536 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200537 props->max_srq = dev->dev->quotas.srq;
Jack Morgensteinc8681f12007-06-21 13:39:10 -0700538 props->max_srq_wr = dev->dev->caps.max_srq_wqes - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700539 props->max_srq_sge = dev->dev->caps.max_srq_sge;
Eli Cohen5a0fd092010-10-07 16:24:16 +0200540 props->max_fast_reg_page_list_len = MLX4_MAX_FAST_REG_PAGES;
Roland Dreier225c7b12007-05-08 18:00:38 -0700541 props->local_ca_ack_delay = dev->dev->caps.local_ca_ack_delay;
542 props->atomic_cap = dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_ATOMIC ?
543 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
Dotan Barak47e956b2012-07-11 15:39:29 +0000544 props->masked_atomic_cap = props->atomic_cap;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700545 props->max_pkeys = dev->dev->caps.pkey_table_len[1];
Roland Dreier225c7b12007-05-08 18:00:38 -0700546 props->max_mcast_grp = dev->dev->caps.num_mgms + dev->dev->caps.num_amgms;
547 props->max_mcast_qp_attach = dev->dev->caps.num_qp_per_mgm;
548 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
549 props->max_mcast_grp;
Eli Cohena5bbe892012-02-09 18:10:06 +0200550 props->max_map_per_fmr = dev->dev->caps.max_fmr_maps;
Matan Barak4b664c42015-06-11 16:35:27 +0300551 props->hca_core_clock = dev->dev->caps.hca_core_clock * 1000UL;
552 props->timestamp_mask = 0xFFFFFFFFFFFFULL;
Roland Dreier225c7b12007-05-08 18:00:38 -0700553
Matan Barak8a7ff142015-07-01 14:31:02 +0300554 if (!mlx4_is_slave(dev->dev))
555 err = mlx4_get_internal_clock_params(dev->dev, &clock_params);
Matan Barak4b664c42015-06-11 16:35:27 +0300556
557 if (uhw->outlen >= resp.response_length + sizeof(resp.hca_core_clock_offset)) {
Matan Barak4b664c42015-06-11 16:35:27 +0300558 resp.response_length += sizeof(resp.hca_core_clock_offset);
Matan Barak8a7ff142015-07-01 14:31:02 +0300559 if (!err && !mlx4_is_slave(dev->dev)) {
560 resp.comp_mask |= QUERY_DEVICE_RESP_MASK_TIMESTAMP;
561 resp.hca_core_clock_offset = clock_params.offset % PAGE_SIZE;
562 }
Matan Barak4b664c42015-06-11 16:35:27 +0300563 }
564
565 if (uhw->outlen) {
566 err = ib_copy_to_udata(uhw, &resp, resp.response_length);
567 if (err)
568 goto out;
569 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700570out:
571 kfree(in_mad);
572 kfree(out_mad);
573
574 return err;
575}
576
Eli Cohenfa417f72010-10-24 21:08:52 -0700577static enum rdma_link_layer
578mlx4_ib_port_link_layer(struct ib_device *device, u8 port_num)
579{
580 struct mlx4_dev *dev = to_mdev(device)->dev;
581
Jack Morgenstein65dab252011-12-13 04:10:41 +0000582 return dev->caps.port_mask[port_num] == MLX4_PORT_TYPE_IB ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700583 IB_LINK_LAYER_INFINIBAND : IB_LINK_LAYER_ETHERNET;
584}
585
586static int ib_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000587 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700588{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200589 struct ib_smp *in_mad = NULL;
590 struct ib_smp *out_mad = NULL;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300591 int ext_active_speed;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000592 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200593 int err = -ENOMEM;
594
595 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
596 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
597 if (!in_mad || !out_mad)
598 goto out;
599
600 init_query_mad(in_mad);
601 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
602 in_mad->attr_mod = cpu_to_be32(port);
603
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000604 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
605 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
606
607 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
Or Gerlitza9c766b2012-01-11 19:00:29 +0200608 in_mad, out_mad);
609 if (err)
610 goto out;
611
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300612
Eli Cohenfa417f72010-10-24 21:08:52 -0700613 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
614 props->lmc = out_mad->data[34] & 0x7;
615 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
616 props->sm_sl = out_mad->data[36] & 0xf;
617 props->state = out_mad->data[32] & 0xf;
618 props->phys_state = out_mad->data[33] >> 4;
619 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000620 if (netw_view)
621 props->gid_tbl_len = out_mad->data[50];
622 else
623 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
Eli Cohenfa417f72010-10-24 21:08:52 -0700624 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
625 props->pkey_tbl_len = to_mdev(ibdev)->dev->caps.pkey_table_len[port];
626 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
627 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
628 props->active_width = out_mad->data[31] & 0xf;
629 props->active_speed = out_mad->data[35] >> 4;
630 props->max_mtu = out_mad->data[41] & 0xf;
631 props->active_mtu = out_mad->data[36] >> 4;
632 props->subnet_timeout = out_mad->data[51] & 0x1f;
633 props->max_vl_num = out_mad->data[37] >> 4;
634 props->init_type_reply = out_mad->data[41] >> 4;
635
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300636 /* Check if extended speeds (EDR/FDR/...) are supported */
637 if (props->port_cap_flags & IB_PORT_EXTENDED_SPEEDS_SUP) {
638 ext_active_speed = out_mad->data[62] >> 4;
639
640 switch (ext_active_speed) {
641 case 1:
Or Gerlitz2e966912012-02-28 18:49:50 +0200642 props->active_speed = IB_SPEED_FDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300643 break;
644 case 2:
Or Gerlitz2e966912012-02-28 18:49:50 +0200645 props->active_speed = IB_SPEED_EDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300646 break;
647 }
648 }
649
650 /* If reported active speed is QDR, check if is FDR-10 */
Or Gerlitz2e966912012-02-28 18:49:50 +0200651 if (props->active_speed == IB_SPEED_QDR) {
Or Gerlitz8154c072012-03-06 15:50:50 +0200652 init_query_mad(in_mad);
653 in_mad->attr_id = MLX4_ATTR_EXTENDED_PORT_INFO;
654 in_mad->attr_mod = cpu_to_be32(port);
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300655
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000656 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port,
Or Gerlitz8154c072012-03-06 15:50:50 +0200657 NULL, NULL, in_mad, out_mad);
658 if (err)
Jesper Juhlbf6b47d2012-04-11 23:43:29 +0200659 goto out;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300660
Or Gerlitz8154c072012-03-06 15:50:50 +0200661 /* Checking LinkSpeedActive for FDR-10 */
662 if (out_mad->data[15] & 0x1)
663 props->active_speed = IB_SPEED_FDR10;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300664 }
Or Gerlitzd2ef4062012-04-02 17:45:20 +0300665
666 /* Avoid wrong speed value returned by FW if the IB link is down. */
667 if (props->state == IB_PORT_DOWN)
668 props->active_speed = IB_SPEED_SDR;
669
Or Gerlitza9c766b2012-01-11 19:00:29 +0200670out:
671 kfree(in_mad);
672 kfree(out_mad);
673 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700674}
675
676static u8 state_to_phys_state(enum ib_port_state state)
677{
678 return state == IB_PORT_ACTIVE ? 5 : 3;
679}
680
681static int eth_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000682 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700683{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200684
685 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
686 struct mlx4_ib_iboe *iboe = &mdev->iboe;
Eli Cohenfa417f72010-10-24 21:08:52 -0700687 struct net_device *ndev;
688 enum ib_mtu tmp;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200689 struct mlx4_cmd_mailbox *mailbox;
690 int err = 0;
Moni Shouaa5750092015-02-03 16:48:37 +0200691 int is_bonded = mlx4_is_bonded(mdev->dev);
Eli Cohenfa417f72010-10-24 21:08:52 -0700692
Or Gerlitza9c766b2012-01-11 19:00:29 +0200693 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
694 if (IS_ERR(mailbox))
695 return PTR_ERR(mailbox);
696
697 err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0,
698 MLX4_CMD_QUERY_PORT, MLX4_CMD_TIME_CLASS_B,
699 MLX4_CMD_WRAPPED);
700 if (err)
701 goto out;
702
Saeed Mahameed8f957352016-11-10 11:30:59 +0200703 props->active_width = (((u8 *)mailbox->buf)[5] == 0x40) ||
704 (((u8 *)mailbox->buf)[5] == 0x20 /*56Gb*/) ?
705 IB_WIDTH_4X : IB_WIDTH_1X;
706 props->active_speed = (((u8 *)mailbox->buf)[5] == 0x20 /*56Gb*/) ?
707 IB_SPEED_FDR : IB_SPEED_QDR;
Moni Shouab4a26a22014-02-09 11:54:34 +0200708 props->port_cap_flags = IB_PORT_CM_SUP | IB_PORT_IP_BASED_GIDS;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200709 props->gid_tbl_len = mdev->dev->caps.gid_table_len[port];
710 props->max_msg_sz = mdev->dev->caps.max_msg_sz;
Eli Cohenfa417f72010-10-24 21:08:52 -0700711 props->pkey_tbl_len = 1;
Or Gerlitzbcacb892011-10-10 10:53:41 +0200712 props->max_mtu = IB_MTU_4096;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200713 props->max_vl_num = 2;
Eli Cohenfa417f72010-10-24 21:08:52 -0700714 props->state = IB_PORT_DOWN;
715 props->phys_state = state_to_phys_state(props->state);
716 props->active_mtu = IB_MTU_256;
Jack Morgensteindba3ad22014-08-21 14:28:41 +0300717 spin_lock_bh(&iboe->lock);
Eli Cohenfa417f72010-10-24 21:08:52 -0700718 ndev = iboe->netdevs[port - 1];
Moni Shoua5070cd22015-07-30 18:33:30 +0300719 if (ndev && is_bonded) {
720 rcu_read_lock(); /* required to get upper dev */
721 ndev = netdev_master_upper_dev_get_rcu(ndev);
722 rcu_read_unlock();
723 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700724 if (!ndev)
Or Gerlitza9c766b2012-01-11 19:00:29 +0200725 goto out_unlock;
Eli Cohenfa417f72010-10-24 21:08:52 -0700726
727 tmp = iboe_get_mtu(ndev->mtu);
728 props->active_mtu = tmp ? min(props->max_mtu, tmp) : IB_MTU_256;
729
Eli Cohen21d606092010-11-11 21:05:58 +0000730 props->state = (netif_running(ndev) && netif_carrier_ok(ndev)) ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700731 IB_PORT_ACTIVE : IB_PORT_DOWN;
732 props->phys_state = state_to_phys_state(props->state);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200733out_unlock:
Jack Morgensteindba3ad22014-08-21 14:28:41 +0300734 spin_unlock_bh(&iboe->lock);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200735out:
736 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
737 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700738}
739
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000740int __mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
741 struct ib_port_attr *props, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700742{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200743 int err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700744
745 memset(props, 0, sizeof *props);
746
Eli Cohenfa417f72010-10-24 21:08:52 -0700747 err = mlx4_ib_port_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND ?
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000748 ib_link_query_port(ibdev, port, props, netw_view) :
749 eth_link_query_port(ibdev, port, props, netw_view);
Roland Dreier225c7b12007-05-08 18:00:38 -0700750
751 return err;
752}
753
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000754static int mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
755 struct ib_port_attr *props)
756{
757 /* returns host view */
758 return __mlx4_ib_query_port(ibdev, port, props, 0);
759}
760
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000761int __mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
762 union ib_gid *gid, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700763{
764 struct ib_smp *in_mad = NULL;
765 struct ib_smp *out_mad = NULL;
766 int err = -ENOMEM;
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000767 struct mlx4_ib_dev *dev = to_mdev(ibdev);
768 int clear = 0;
769 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700770
771 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
772 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
773 if (!in_mad || !out_mad)
774 goto out;
775
776 init_query_mad(in_mad);
777 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
778 in_mad->attr_mod = cpu_to_be32(port);
779
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000780 if (mlx4_is_mfunc(dev->dev) && netw_view)
781 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
782
783 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700784 if (err)
785 goto out;
786
787 memcpy(gid->raw, out_mad->data + 8, 8);
788
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000789 if (mlx4_is_mfunc(dev->dev) && !netw_view) {
790 if (index) {
791 /* For any index > 0, return the null guid */
792 err = 0;
793 clear = 1;
794 goto out;
795 }
796 }
797
Roland Dreier225c7b12007-05-08 18:00:38 -0700798 init_query_mad(in_mad);
799 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
800 in_mad->attr_mod = cpu_to_be32(index / 8);
801
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000802 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000803 NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700804 if (err)
805 goto out;
806
807 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
808
809out:
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000810 if (clear)
811 memset(gid->raw + 8, 0, 8);
Roland Dreier225c7b12007-05-08 18:00:38 -0700812 kfree(in_mad);
813 kfree(out_mad);
814 return err;
815}
816
Eli Cohenfa417f72010-10-24 21:08:52 -0700817static int mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
818 union ib_gid *gid)
819{
Moni Shoua5070cd22015-07-30 18:33:30 +0300820 int ret;
821
822 if (rdma_protocol_ib(ibdev, port))
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000823 return __mlx4_ib_query_gid(ibdev, port, index, gid, 0);
Moni Shoua5070cd22015-07-30 18:33:30 +0300824
825 if (!rdma_protocol_roce(ibdev, port))
826 return -ENODEV;
827
828 if (!rdma_cap_roce_gid_table(ibdev, port))
829 return -ENODEV;
830
Matan Barak55ee3ab2015-10-15 18:38:45 +0300831 ret = ib_get_cached_gid(ibdev, port, index, gid, NULL);
Moni Shoua5070cd22015-07-30 18:33:30 +0300832 if (ret == -EAGAIN) {
833 memcpy(gid, &zgid, sizeof(*gid));
834 return 0;
835 }
836
837 return ret;
Eli Cohenfa417f72010-10-24 21:08:52 -0700838}
839
Jack Morgensteinfd10ed82016-09-12 19:16:21 +0300840static int mlx4_ib_query_sl2vl(struct ib_device *ibdev, u8 port, u64 *sl2vl_tbl)
841{
842 union sl2vl_tbl_to_u64 sl2vl64;
843 struct ib_smp *in_mad = NULL;
844 struct ib_smp *out_mad = NULL;
845 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
846 int err = -ENOMEM;
847 int jj;
848
849 if (mlx4_is_slave(to_mdev(ibdev)->dev)) {
850 *sl2vl_tbl = 0;
851 return 0;
852 }
853
854 in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL);
855 out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL);
856 if (!in_mad || !out_mad)
857 goto out;
858
859 init_query_mad(in_mad);
860 in_mad->attr_id = IB_SMP_ATTR_SL_TO_VL_TABLE;
861 in_mad->attr_mod = 0;
862
863 if (mlx4_is_mfunc(to_mdev(ibdev)->dev))
864 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
865
866 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
867 in_mad, out_mad);
868 if (err)
869 goto out;
870
871 for (jj = 0; jj < 8; jj++)
872 sl2vl64.sl8[jj] = ((struct ib_smp *)out_mad)->data[jj];
873 *sl2vl_tbl = sl2vl64.sl64;
874
875out:
876 kfree(in_mad);
877 kfree(out_mad);
878 return err;
879}
880
881static void mlx4_init_sl2vl_tbl(struct mlx4_ib_dev *mdev)
882{
883 u64 sl2vl;
884 int i;
885 int err;
886
887 for (i = 1; i <= mdev->dev->caps.num_ports; i++) {
888 if (mdev->dev->caps.port_type[i] == MLX4_PORT_TYPE_ETH)
889 continue;
890 err = mlx4_ib_query_sl2vl(&mdev->ib_dev, i, &sl2vl);
891 if (err) {
892 pr_err("Unable to get default sl to vl mapping for port %d. Using all zeroes (%d)\n",
893 i, err);
894 sl2vl = 0;
895 }
896 atomic64_set(&mdev->sl2vl[i - 1], sl2vl);
897 }
898}
899
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000900int __mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
901 u16 *pkey, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700902{
903 struct ib_smp *in_mad = NULL;
904 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000905 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700906 int err = -ENOMEM;
907
908 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
909 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
910 if (!in_mad || !out_mad)
911 goto out;
912
913 init_query_mad(in_mad);
914 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
915 in_mad->attr_mod = cpu_to_be32(index / 32);
916
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000917 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
918 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
919
920 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
921 in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700922 if (err)
923 goto out;
924
925 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
926
927out:
928 kfree(in_mad);
929 kfree(out_mad);
930 return err;
931}
932
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000933static int mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index, u16 *pkey)
934{
935 return __mlx4_ib_query_pkey(ibdev, port, index, pkey, 0);
936}
937
Roland Dreier225c7b12007-05-08 18:00:38 -0700938static int mlx4_ib_modify_device(struct ib_device *ibdev, int mask,
939 struct ib_device_modify *props)
940{
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000941 struct mlx4_cmd_mailbox *mailbox;
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000942 unsigned long flags;
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000943
Roland Dreier225c7b12007-05-08 18:00:38 -0700944 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
945 return -EOPNOTSUPP;
946
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000947 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
948 return 0;
949
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000950 if (mlx4_is_slave(to_mdev(ibdev)->dev))
951 return -EOPNOTSUPP;
952
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000953 spin_lock_irqsave(&to_mdev(ibdev)->sm_lock, flags);
Yuval Shaiabd99fde2016-08-25 10:57:07 -0700954 memcpy(ibdev->node_desc, props->node_desc, IB_DEVICE_NODE_DESC_MAX);
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000955 spin_unlock_irqrestore(&to_mdev(ibdev)->sm_lock, flags);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000956
957 /*
958 * If possible, pass node desc to FW, so it can generate
959 * a 144 trap. If cmd fails, just ignore.
960 */
961 mailbox = mlx4_alloc_cmd_mailbox(to_mdev(ibdev)->dev);
962 if (IS_ERR(mailbox))
963 return 0;
964
Yuval Shaiabd99fde2016-08-25 10:57:07 -0700965 memcpy(mailbox->buf, props->node_desc, IB_DEVICE_NODE_DESC_MAX);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000966 mlx4_cmd(to_mdev(ibdev)->dev, mailbox->dma, 1, 0,
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000967 MLX4_CMD_SET_NODE, MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000968
969 mlx4_free_cmd_mailbox(to_mdev(ibdev)->dev, mailbox);
Roland Dreier225c7b12007-05-08 18:00:38 -0700970
971 return 0;
972}
973
Jack Morgenstein61565012014-05-29 16:31:01 +0300974static int mlx4_ib_SET_PORT(struct mlx4_ib_dev *dev, u8 port, int reset_qkey_viols,
975 u32 cap_mask)
Roland Dreier225c7b12007-05-08 18:00:38 -0700976{
977 struct mlx4_cmd_mailbox *mailbox;
978 int err;
979
980 mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
981 if (IS_ERR(mailbox))
982 return PTR_ERR(mailbox);
983
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700984 if (dev->dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
985 *(u8 *) mailbox->buf = !!reset_qkey_viols << 6;
986 ((__be32 *) mailbox->buf)[2] = cpu_to_be32(cap_mask);
987 } else {
988 ((u8 *) mailbox->buf)[3] = !!reset_qkey_viols;
989 ((__be32 *) mailbox->buf)[1] = cpu_to_be32(cap_mask);
990 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700991
Ido Shamaya130b592015-04-02 16:31:19 +0300992 err = mlx4_cmd(dev->dev, mailbox->dma, port, MLX4_SET_PORT_IB_OPCODE,
993 MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
994 MLX4_CMD_WRAPPED);
Roland Dreier225c7b12007-05-08 18:00:38 -0700995
996 mlx4_free_cmd_mailbox(dev->dev, mailbox);
997 return err;
998}
999
1000static int mlx4_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
1001 struct ib_port_modify *props)
1002{
Jack Morgenstein61565012014-05-29 16:31:01 +03001003 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
1004 u8 is_eth = mdev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
Roland Dreier225c7b12007-05-08 18:00:38 -07001005 struct ib_port_attr attr;
1006 u32 cap_mask;
1007 int err;
1008
Jack Morgenstein61565012014-05-29 16:31:01 +03001009 /* return OK if this is RoCE. CM calls ib_modify_port() regardless
1010 * of whether port link layer is ETH or IB. For ETH ports, qkey
1011 * violations and port capabilities are not meaningful.
1012 */
1013 if (is_eth)
1014 return 0;
1015
1016 mutex_lock(&mdev->cap_mask_mutex);
Roland Dreier225c7b12007-05-08 18:00:38 -07001017
1018 err = mlx4_ib_query_port(ibdev, port, &attr);
1019 if (err)
1020 goto out;
1021
1022 cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
1023 ~props->clr_port_cap_mask;
1024
Jack Morgenstein61565012014-05-29 16:31:01 +03001025 err = mlx4_ib_SET_PORT(mdev, port,
1026 !!(mask & IB_PORT_RESET_QKEY_CNTR),
1027 cap_mask);
Roland Dreier225c7b12007-05-08 18:00:38 -07001028
1029out:
1030 mutex_unlock(&to_mdev(ibdev)->cap_mask_mutex);
1031 return err;
1032}
1033
1034static struct ib_ucontext *mlx4_ib_alloc_ucontext(struct ib_device *ibdev,
1035 struct ib_udata *udata)
1036{
1037 struct mlx4_ib_dev *dev = to_mdev(ibdev);
1038 struct mlx4_ib_ucontext *context;
Or Gerlitz08ff3232012-10-21 14:59:24 +00001039 struct mlx4_ib_alloc_ucontext_resp_v3 resp_v3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001040 struct mlx4_ib_alloc_ucontext_resp resp;
1041 int err;
1042
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07001043 if (!dev->ib_active)
1044 return ERR_PTR(-EAGAIN);
1045
Or Gerlitz08ff3232012-10-21 14:59:24 +00001046 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION) {
1047 resp_v3.qp_tab_size = dev->dev->caps.num_qps;
1048 resp_v3.bf_reg_size = dev->dev->caps.bf_reg_size;
1049 resp_v3.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
1050 } else {
1051 resp.dev_caps = dev->dev->caps.userspace_caps;
1052 resp.qp_tab_size = dev->dev->caps.num_qps;
1053 resp.bf_reg_size = dev->dev->caps.bf_reg_size;
1054 resp.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
1055 resp.cqe_size = dev->dev->caps.cqe_size;
1056 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001057
Yishai Hadasae184dd2015-08-13 18:32:06 +03001058 context = kzalloc(sizeof(*context), GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -07001059 if (!context)
1060 return ERR_PTR(-ENOMEM);
1061
1062 err = mlx4_uar_alloc(to_mdev(ibdev)->dev, &context->uar);
1063 if (err) {
1064 kfree(context);
1065 return ERR_PTR(err);
1066 }
1067
1068 INIT_LIST_HEAD(&context->db_page_list);
1069 mutex_init(&context->db_page_mutex);
1070
Or Gerlitz08ff3232012-10-21 14:59:24 +00001071 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION)
1072 err = ib_copy_to_udata(udata, &resp_v3, sizeof(resp_v3));
1073 else
1074 err = ib_copy_to_udata(udata, &resp, sizeof(resp));
1075
Roland Dreier225c7b12007-05-08 18:00:38 -07001076 if (err) {
1077 mlx4_uar_free(to_mdev(ibdev)->dev, &context->uar);
1078 kfree(context);
1079 return ERR_PTR(-EFAULT);
1080 }
1081
1082 return &context->ibucontext;
1083}
1084
1085static int mlx4_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
1086{
1087 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
1088
1089 mlx4_uar_free(to_mdev(ibcontext->device)->dev, &context->uar);
1090 kfree(context);
1091
1092 return 0;
1093}
1094
Yishai Hadasae184dd2015-08-13 18:32:06 +03001095static void mlx4_ib_vma_open(struct vm_area_struct *area)
1096{
1097 /* vma_open is called when a new VMA is created on top of our VMA.
1098 * This is done through either mremap flow or split_vma (usually due
1099 * to mlock, madvise, munmap, etc.). We do not support a clone of the
1100 * vma, as this VMA is strongly hardware related. Therefore we set the
1101 * vm_ops of the newly created/cloned VMA to NULL, to prevent it from
1102 * calling us again and trying to do incorrect actions. We assume that
1103 * the original vma size is exactly a single page that there will be no
1104 * "splitting" operations on.
1105 */
1106 area->vm_ops = NULL;
1107}
1108
1109static void mlx4_ib_vma_close(struct vm_area_struct *area)
1110{
1111 struct mlx4_ib_vma_private_data *mlx4_ib_vma_priv_data;
1112
1113 /* It's guaranteed that all VMAs opened on a FD are closed before the
1114 * file itself is closed, therefore no sync is needed with the regular
1115 * closing flow. (e.g. mlx4_ib_dealloc_ucontext) However need a sync
1116 * with accessing the vma as part of mlx4_ib_disassociate_ucontext.
1117 * The close operation is usually called under mm->mmap_sem except when
1118 * process is exiting. The exiting case is handled explicitly as part
1119 * of mlx4_ib_disassociate_ucontext.
1120 */
1121 mlx4_ib_vma_priv_data = (struct mlx4_ib_vma_private_data *)
1122 area->vm_private_data;
1123
1124 /* set the vma context pointer to null in the mlx4_ib driver's private
1125 * data to protect against a race condition in mlx4_ib_dissassociate_ucontext().
1126 */
1127 mlx4_ib_vma_priv_data->vma = NULL;
1128}
1129
1130static const struct vm_operations_struct mlx4_ib_vm_ops = {
1131 .open = mlx4_ib_vma_open,
1132 .close = mlx4_ib_vma_close
1133};
1134
1135static void mlx4_ib_disassociate_ucontext(struct ib_ucontext *ibcontext)
1136{
1137 int i;
1138 int ret = 0;
1139 struct vm_area_struct *vma;
1140 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
1141 struct task_struct *owning_process = NULL;
1142 struct mm_struct *owning_mm = NULL;
1143
1144 owning_process = get_pid_task(ibcontext->tgid, PIDTYPE_PID);
1145 if (!owning_process)
1146 return;
1147
1148 owning_mm = get_task_mm(owning_process);
1149 if (!owning_mm) {
1150 pr_info("no mm, disassociate ucontext is pending task termination\n");
1151 while (1) {
1152 /* make sure that task is dead before returning, it may
1153 * prevent a rare case of module down in parallel to a
1154 * call to mlx4_ib_vma_close.
1155 */
1156 put_task_struct(owning_process);
1157 msleep(1);
1158 owning_process = get_pid_task(ibcontext->tgid,
1159 PIDTYPE_PID);
1160 if (!owning_process ||
1161 owning_process->state == TASK_DEAD) {
1162 pr_info("disassociate ucontext done, task was terminated\n");
1163 /* in case task was dead need to release the task struct */
1164 if (owning_process)
1165 put_task_struct(owning_process);
1166 return;
1167 }
1168 }
1169 }
1170
1171 /* need to protect from a race on closing the vma as part of
1172 * mlx4_ib_vma_close().
1173 */
Maor Gottlieb0021b462017-03-29 06:03:00 +03001174 down_write(&owning_mm->mmap_sem);
Yishai Hadasae184dd2015-08-13 18:32:06 +03001175 for (i = 0; i < HW_BAR_COUNT; i++) {
1176 vma = context->hw_bar_info[i].vma;
1177 if (!vma)
1178 continue;
1179
1180 ret = zap_vma_ptes(context->hw_bar_info[i].vma,
1181 context->hw_bar_info[i].vma->vm_start,
1182 PAGE_SIZE);
1183 if (ret) {
1184 pr_err("Error: zap_vma_ptes failed for index=%d, ret=%d\n", i, ret);
1185 BUG_ON(1);
1186 }
1187
Maor Gottliebdf7aedb2017-03-29 06:03:01 +03001188 context->hw_bar_info[i].vma->vm_flags &=
1189 ~(VM_SHARED | VM_MAYSHARE);
Yishai Hadasae184dd2015-08-13 18:32:06 +03001190 /* context going to be destroyed, should not access ops any more */
1191 context->hw_bar_info[i].vma->vm_ops = NULL;
1192 }
1193
Maor Gottlieb0021b462017-03-29 06:03:00 +03001194 up_write(&owning_mm->mmap_sem);
Yishai Hadasae184dd2015-08-13 18:32:06 +03001195 mmput(owning_mm);
1196 put_task_struct(owning_process);
1197}
1198
1199static void mlx4_ib_set_vma_data(struct vm_area_struct *vma,
1200 struct mlx4_ib_vma_private_data *vma_private_data)
1201{
1202 vma_private_data->vma = vma;
1203 vma->vm_private_data = vma_private_data;
1204 vma->vm_ops = &mlx4_ib_vm_ops;
1205}
1206
Roland Dreier225c7b12007-05-08 18:00:38 -07001207static int mlx4_ib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
1208{
1209 struct mlx4_ib_dev *dev = to_mdev(context->device);
Yishai Hadasae184dd2015-08-13 18:32:06 +03001210 struct mlx4_ib_ucontext *mucontext = to_mucontext(context);
Roland Dreier225c7b12007-05-08 18:00:38 -07001211
1212 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
1213 return -EINVAL;
1214
1215 if (vma->vm_pgoff == 0) {
Yishai Hadasae184dd2015-08-13 18:32:06 +03001216 /* We prevent double mmaping on same context */
1217 if (mucontext->hw_bar_info[HW_BAR_DB].vma)
1218 return -EINVAL;
1219
Roland Dreier225c7b12007-05-08 18:00:38 -07001220 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1221
1222 if (io_remap_pfn_range(vma, vma->vm_start,
1223 to_mucontext(context)->uar.pfn,
1224 PAGE_SIZE, vma->vm_page_prot))
1225 return -EAGAIN;
Yishai Hadasae184dd2015-08-13 18:32:06 +03001226
1227 mlx4_ib_set_vma_data(vma, &mucontext->hw_bar_info[HW_BAR_DB]);
1228
Roland Dreier225c7b12007-05-08 18:00:38 -07001229 } else if (vma->vm_pgoff == 1 && dev->dev->caps.bf_reg_size != 0) {
Yishai Hadasae184dd2015-08-13 18:32:06 +03001230 /* We prevent double mmaping on same context */
1231 if (mucontext->hw_bar_info[HW_BAR_BF].vma)
1232 return -EINVAL;
1233
Roland Dreiere1d60ec2009-03-30 08:31:05 -07001234 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
Roland Dreier225c7b12007-05-08 18:00:38 -07001235
1236 if (io_remap_pfn_range(vma, vma->vm_start,
1237 to_mucontext(context)->uar.pfn +
1238 dev->dev->caps.num_uars,
1239 PAGE_SIZE, vma->vm_page_prot))
1240 return -EAGAIN;
Yishai Hadasae184dd2015-08-13 18:32:06 +03001241
1242 mlx4_ib_set_vma_data(vma, &mucontext->hw_bar_info[HW_BAR_BF]);
1243
Matan Barak52033cf2015-06-11 16:35:26 +03001244 } else if (vma->vm_pgoff == 3) {
1245 struct mlx4_clock_params params;
Yishai Hadasae184dd2015-08-13 18:32:06 +03001246 int ret;
1247
1248 /* We prevent double mmaping on same context */
1249 if (mucontext->hw_bar_info[HW_BAR_CLOCK].vma)
1250 return -EINVAL;
1251
1252 ret = mlx4_get_internal_clock_params(dev->dev, &params);
Matan Barak52033cf2015-06-11 16:35:26 +03001253
1254 if (ret)
1255 return ret;
1256
1257 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1258 if (io_remap_pfn_range(vma, vma->vm_start,
1259 (pci_resource_start(dev->dev->persist->pdev,
1260 params.bar) +
1261 params.offset)
1262 >> PAGE_SHIFT,
1263 PAGE_SIZE, vma->vm_page_prot))
1264 return -EAGAIN;
Yishai Hadasae184dd2015-08-13 18:32:06 +03001265
1266 mlx4_ib_set_vma_data(vma,
1267 &mucontext->hw_bar_info[HW_BAR_CLOCK]);
Matan Barak52033cf2015-06-11 16:35:26 +03001268 } else {
Roland Dreier225c7b12007-05-08 18:00:38 -07001269 return -EINVAL;
Matan Barak52033cf2015-06-11 16:35:26 +03001270 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001271
1272 return 0;
1273}
1274
1275static struct ib_pd *mlx4_ib_alloc_pd(struct ib_device *ibdev,
1276 struct ib_ucontext *context,
1277 struct ib_udata *udata)
1278{
1279 struct mlx4_ib_pd *pd;
1280 int err;
1281
1282 pd = kmalloc(sizeof *pd, GFP_KERNEL);
1283 if (!pd)
1284 return ERR_PTR(-ENOMEM);
1285
1286 err = mlx4_pd_alloc(to_mdev(ibdev)->dev, &pd->pdn);
1287 if (err) {
1288 kfree(pd);
1289 return ERR_PTR(err);
1290 }
1291
1292 if (context)
1293 if (ib_copy_to_udata(udata, &pd->pdn, sizeof (__u32))) {
1294 mlx4_pd_free(to_mdev(ibdev)->dev, pd->pdn);
1295 kfree(pd);
1296 return ERR_PTR(-EFAULT);
1297 }
1298
1299 return &pd->ibpd;
1300}
1301
1302static int mlx4_ib_dealloc_pd(struct ib_pd *pd)
1303{
1304 mlx4_pd_free(to_mdev(pd->device)->dev, to_mpd(pd)->pdn);
1305 kfree(pd);
1306
1307 return 0;
1308}
1309
Sean Hefty012a8ff2011-06-02 09:01:33 -07001310static struct ib_xrcd *mlx4_ib_alloc_xrcd(struct ib_device *ibdev,
1311 struct ib_ucontext *context,
1312 struct ib_udata *udata)
1313{
1314 struct mlx4_ib_xrcd *xrcd;
Matan Barak8e372102015-06-11 16:35:21 +03001315 struct ib_cq_init_attr cq_attr = {};
Sean Hefty012a8ff2011-06-02 09:01:33 -07001316 int err;
1317
1318 if (!(to_mdev(ibdev)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1319 return ERR_PTR(-ENOSYS);
1320
1321 xrcd = kmalloc(sizeof *xrcd, GFP_KERNEL);
1322 if (!xrcd)
1323 return ERR_PTR(-ENOMEM);
1324
1325 err = mlx4_xrcd_alloc(to_mdev(ibdev)->dev, &xrcd->xrcdn);
1326 if (err)
1327 goto err1;
1328
Christoph Hellwiged082d32016-09-05 12:56:17 +02001329 xrcd->pd = ib_alloc_pd(ibdev, 0);
Sean Hefty012a8ff2011-06-02 09:01:33 -07001330 if (IS_ERR(xrcd->pd)) {
1331 err = PTR_ERR(xrcd->pd);
1332 goto err2;
1333 }
1334
Matan Barak8e372102015-06-11 16:35:21 +03001335 cq_attr.cqe = 1;
1336 xrcd->cq = ib_create_cq(ibdev, NULL, NULL, xrcd, &cq_attr);
Sean Hefty012a8ff2011-06-02 09:01:33 -07001337 if (IS_ERR(xrcd->cq)) {
1338 err = PTR_ERR(xrcd->cq);
1339 goto err3;
1340 }
1341
1342 return &xrcd->ibxrcd;
1343
1344err3:
1345 ib_dealloc_pd(xrcd->pd);
1346err2:
1347 mlx4_xrcd_free(to_mdev(ibdev)->dev, xrcd->xrcdn);
1348err1:
1349 kfree(xrcd);
1350 return ERR_PTR(err);
1351}
1352
1353static int mlx4_ib_dealloc_xrcd(struct ib_xrcd *xrcd)
1354{
1355 ib_destroy_cq(to_mxrcd(xrcd)->cq);
1356 ib_dealloc_pd(to_mxrcd(xrcd)->pd);
1357 mlx4_xrcd_free(to_mdev(xrcd->device)->dev, to_mxrcd(xrcd)->xrcdn);
1358 kfree(xrcd);
1359
1360 return 0;
1361}
1362
Eli Cohenfa417f72010-10-24 21:08:52 -07001363static int add_gid_entry(struct ib_qp *ibqp, union ib_gid *gid)
1364{
1365 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
1366 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
1367 struct mlx4_ib_gid_entry *ge;
1368
1369 ge = kzalloc(sizeof *ge, GFP_KERNEL);
1370 if (!ge)
1371 return -ENOMEM;
1372
1373 ge->gid = *gid;
1374 if (mlx4_ib_add_mc(mdev, mqp, gid)) {
1375 ge->port = mqp->port;
1376 ge->added = 1;
1377 }
1378
1379 mutex_lock(&mqp->mutex);
1380 list_add_tail(&ge->list, &mqp->gid_list);
1381 mutex_unlock(&mqp->mutex);
1382
1383 return 0;
1384}
1385
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03001386static void mlx4_ib_delete_counters_table(struct mlx4_ib_dev *ibdev,
1387 struct mlx4_ib_counters *ctr_table)
1388{
1389 struct counter_index *counter, *tmp_count;
1390
1391 mutex_lock(&ctr_table->mutex);
1392 list_for_each_entry_safe(counter, tmp_count, &ctr_table->counters_list,
1393 list) {
1394 if (counter->allocated)
1395 mlx4_counter_free(ibdev->dev, counter->index);
1396 list_del(&counter->list);
1397 kfree(counter);
1398 }
1399 mutex_unlock(&ctr_table->mutex);
1400}
1401
Eli Cohenfa417f72010-10-24 21:08:52 -07001402int mlx4_ib_add_mc(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
1403 union ib_gid *gid)
1404{
Eli Cohenfa417f72010-10-24 21:08:52 -07001405 struct net_device *ndev;
1406 int ret = 0;
1407
1408 if (!mqp->port)
1409 return 0;
1410
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001411 spin_lock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001412 ndev = mdev->iboe.netdevs[mqp->port - 1];
1413 if (ndev)
1414 dev_hold(ndev);
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001415 spin_unlock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001416
1417 if (ndev) {
Eli Cohenfa417f72010-10-24 21:08:52 -07001418 ret = 1;
Eli Cohenfa417f72010-10-24 21:08:52 -07001419 dev_put(ndev);
1420 }
1421
1422 return ret;
1423}
1424
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001425struct mlx4_ib_steering {
1426 struct list_head list;
Moni Shoua146d6e12015-02-03 16:48:38 +02001427 struct mlx4_flow_reg_id reg_id;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001428 union ib_gid gid;
1429};
1430
Maor Gottlieb1f02a092016-08-30 16:58:30 +03001431#define LAST_ETH_FIELD vlan_tag
1432#define LAST_IB_FIELD sl
1433#define LAST_IPV4_FIELD dst_ip
1434#define LAST_TCP_UDP_FIELD src_port
1435
1436/* Field is the last supported field */
1437#define FIELDS_NOT_SUPPORTED(filter, field)\
1438 memchr_inv((void *)&filter.field +\
1439 sizeof(filter.field), 0,\
1440 sizeof(filter) -\
1441 offsetof(typeof(filter), field) -\
1442 sizeof(filter.field))
1443
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001444static int parse_flow_attr(struct mlx4_dev *dev,
Matan Baraka37a1a42013-11-07 15:25:16 +02001445 u32 qp_num,
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001446 union ib_flow_spec *ib_spec,
1447 struct _rule_hw *mlx4_spec)
1448{
1449 enum mlx4_net_trans_rule_id type;
1450
1451 switch (ib_spec->type) {
1452 case IB_FLOW_SPEC_ETH:
Maor Gottlieb1f02a092016-08-30 16:58:30 +03001453 if (FIELDS_NOT_SUPPORTED(ib_spec->eth.mask, LAST_ETH_FIELD))
1454 return -ENOTSUPP;
1455
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001456 type = MLX4_NET_TRANS_RULE_ID_ETH;
1457 memcpy(mlx4_spec->eth.dst_mac, ib_spec->eth.val.dst_mac,
1458 ETH_ALEN);
1459 memcpy(mlx4_spec->eth.dst_mac_msk, ib_spec->eth.mask.dst_mac,
1460 ETH_ALEN);
1461 mlx4_spec->eth.vlan_tag = ib_spec->eth.val.vlan_tag;
1462 mlx4_spec->eth.vlan_tag_msk = ib_spec->eth.mask.vlan_tag;
1463 break;
Matan Baraka37a1a42013-11-07 15:25:16 +02001464 case IB_FLOW_SPEC_IB:
Maor Gottlieb1f02a092016-08-30 16:58:30 +03001465 if (FIELDS_NOT_SUPPORTED(ib_spec->ib.mask, LAST_IB_FIELD))
1466 return -ENOTSUPP;
1467
Matan Baraka37a1a42013-11-07 15:25:16 +02001468 type = MLX4_NET_TRANS_RULE_ID_IB;
1469 mlx4_spec->ib.l3_qpn =
1470 cpu_to_be32(qp_num);
1471 mlx4_spec->ib.qpn_mask =
1472 cpu_to_be32(MLX4_IB_FLOW_QPN_MASK);
1473 break;
1474
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001475
1476 case IB_FLOW_SPEC_IPV4:
Maor Gottlieb1f02a092016-08-30 16:58:30 +03001477 if (FIELDS_NOT_SUPPORTED(ib_spec->ipv4.mask, LAST_IPV4_FIELD))
1478 return -ENOTSUPP;
1479
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001480 type = MLX4_NET_TRANS_RULE_ID_IPV4;
1481 mlx4_spec->ipv4.src_ip = ib_spec->ipv4.val.src_ip;
1482 mlx4_spec->ipv4.src_ip_msk = ib_spec->ipv4.mask.src_ip;
1483 mlx4_spec->ipv4.dst_ip = ib_spec->ipv4.val.dst_ip;
1484 mlx4_spec->ipv4.dst_ip_msk = ib_spec->ipv4.mask.dst_ip;
1485 break;
1486
1487 case IB_FLOW_SPEC_TCP:
1488 case IB_FLOW_SPEC_UDP:
Maor Gottlieb1f02a092016-08-30 16:58:30 +03001489 if (FIELDS_NOT_SUPPORTED(ib_spec->tcp_udp.mask, LAST_TCP_UDP_FIELD))
1490 return -ENOTSUPP;
1491
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001492 type = ib_spec->type == IB_FLOW_SPEC_TCP ?
1493 MLX4_NET_TRANS_RULE_ID_TCP :
1494 MLX4_NET_TRANS_RULE_ID_UDP;
1495 mlx4_spec->tcp_udp.dst_port = ib_spec->tcp_udp.val.dst_port;
1496 mlx4_spec->tcp_udp.dst_port_msk = ib_spec->tcp_udp.mask.dst_port;
1497 mlx4_spec->tcp_udp.src_port = ib_spec->tcp_udp.val.src_port;
1498 mlx4_spec->tcp_udp.src_port_msk = ib_spec->tcp_udp.mask.src_port;
1499 break;
1500
1501 default:
1502 return -EINVAL;
1503 }
1504 if (mlx4_map_sw_to_hw_steering_id(dev, type) < 0 ||
1505 mlx4_hw_rule_sz(dev, type) < 0)
1506 return -EINVAL;
1507 mlx4_spec->id = cpu_to_be16(mlx4_map_sw_to_hw_steering_id(dev, type));
1508 mlx4_spec->size = mlx4_hw_rule_sz(dev, type) >> 2;
1509 return mlx4_hw_rule_sz(dev, type);
1510}
1511
Matan Baraka37a1a42013-11-07 15:25:16 +02001512struct default_rules {
1513 __u32 mandatory_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
1514 __u32 mandatory_not_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
1515 __u32 rules_create_list[IB_FLOW_SPEC_SUPPORT_LAYERS];
1516 __u8 link_layer;
1517};
1518static const struct default_rules default_table[] = {
1519 {
1520 .mandatory_fields = {IB_FLOW_SPEC_IPV4},
1521 .mandatory_not_fields = {IB_FLOW_SPEC_ETH},
1522 .rules_create_list = {IB_FLOW_SPEC_IB},
1523 .link_layer = IB_LINK_LAYER_INFINIBAND
1524 }
1525};
1526
1527static int __mlx4_ib_default_rules_match(struct ib_qp *qp,
1528 struct ib_flow_attr *flow_attr)
1529{
1530 int i, j, k;
1531 void *ib_flow;
1532 const struct default_rules *pdefault_rules = default_table;
1533 u8 link_layer = rdma_port_get_link_layer(qp->device, flow_attr->port);
1534
Fabian Fredericka57f23f2014-08-12 19:20:07 -04001535 for (i = 0; i < ARRAY_SIZE(default_table); i++, pdefault_rules++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001536 __u32 field_types[IB_FLOW_SPEC_SUPPORT_LAYERS];
1537 memset(&field_types, 0, sizeof(field_types));
1538
1539 if (link_layer != pdefault_rules->link_layer)
1540 continue;
1541
1542 ib_flow = flow_attr + 1;
1543 /* we assume the specs are sorted */
1544 for (j = 0, k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS &&
1545 j < flow_attr->num_of_specs; k++) {
1546 union ib_flow_spec *current_flow =
1547 (union ib_flow_spec *)ib_flow;
1548
1549 /* same layer but different type */
1550 if (((current_flow->type & IB_FLOW_SPEC_LAYER_MASK) ==
1551 (pdefault_rules->mandatory_fields[k] &
1552 IB_FLOW_SPEC_LAYER_MASK)) &&
1553 (current_flow->type !=
1554 pdefault_rules->mandatory_fields[k]))
1555 goto out;
1556
1557 /* same layer, try match next one */
1558 if (current_flow->type ==
1559 pdefault_rules->mandatory_fields[k]) {
1560 j++;
1561 ib_flow +=
1562 ((union ib_flow_spec *)ib_flow)->size;
1563 }
1564 }
1565
1566 ib_flow = flow_attr + 1;
1567 for (j = 0; j < flow_attr->num_of_specs;
1568 j++, ib_flow += ((union ib_flow_spec *)ib_flow)->size)
1569 for (k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS; k++)
1570 /* same layer and same type */
1571 if (((union ib_flow_spec *)ib_flow)->type ==
1572 pdefault_rules->mandatory_not_fields[k])
1573 goto out;
1574
1575 return i;
1576 }
1577out:
1578 return -1;
1579}
1580
1581static int __mlx4_ib_create_default_rules(
1582 struct mlx4_ib_dev *mdev,
1583 struct ib_qp *qp,
1584 const struct default_rules *pdefault_rules,
1585 struct _rule_hw *mlx4_spec) {
1586 int size = 0;
1587 int i;
1588
Fabian Fredericka57f23f2014-08-12 19:20:07 -04001589 for (i = 0; i < ARRAY_SIZE(pdefault_rules->rules_create_list); i++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001590 int ret;
1591 union ib_flow_spec ib_spec;
1592 switch (pdefault_rules->rules_create_list[i]) {
1593 case 0:
1594 /* no rule */
1595 continue;
1596 case IB_FLOW_SPEC_IB:
1597 ib_spec.type = IB_FLOW_SPEC_IB;
1598 ib_spec.size = sizeof(struct ib_flow_spec_ib);
1599
1600 break;
1601 default:
1602 /* invalid rule */
1603 return -EINVAL;
1604 }
1605 /* We must put empty rule, qpn is being ignored */
1606 ret = parse_flow_attr(mdev->dev, 0, &ib_spec,
1607 mlx4_spec);
1608 if (ret < 0) {
1609 pr_info("invalid parsing\n");
1610 return -EINVAL;
1611 }
1612
1613 mlx4_spec = (void *)mlx4_spec + ret;
1614 size += ret;
1615 }
1616 return size;
1617}
1618
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001619static int __mlx4_ib_create_flow(struct ib_qp *qp, struct ib_flow_attr *flow_attr,
1620 int domain,
1621 enum mlx4_net_trans_promisc_mode flow_type,
1622 u64 *reg_id)
1623{
1624 int ret, i;
1625 int size = 0;
1626 void *ib_flow;
1627 struct mlx4_ib_dev *mdev = to_mdev(qp->device);
1628 struct mlx4_cmd_mailbox *mailbox;
1629 struct mlx4_net_trans_rule_hw_ctrl *ctrl;
Matan Baraka37a1a42013-11-07 15:25:16 +02001630 int default_flow;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001631
1632 static const u16 __mlx4_domain[] = {
1633 [IB_FLOW_DOMAIN_USER] = MLX4_DOMAIN_UVERBS,
1634 [IB_FLOW_DOMAIN_ETHTOOL] = MLX4_DOMAIN_ETHTOOL,
1635 [IB_FLOW_DOMAIN_RFS] = MLX4_DOMAIN_RFS,
1636 [IB_FLOW_DOMAIN_NIC] = MLX4_DOMAIN_NIC,
1637 };
1638
1639 if (flow_attr->priority > MLX4_IB_FLOW_MAX_PRIO) {
1640 pr_err("Invalid priority value %d\n", flow_attr->priority);
1641 return -EINVAL;
1642 }
1643
1644 if (domain >= IB_FLOW_DOMAIN_NUM) {
1645 pr_err("Invalid domain value %d\n", domain);
1646 return -EINVAL;
1647 }
1648
1649 if (mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type) < 0)
1650 return -EINVAL;
1651
1652 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
1653 if (IS_ERR(mailbox))
1654 return PTR_ERR(mailbox);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001655 ctrl = mailbox->buf;
1656
1657 ctrl->prio = cpu_to_be16(__mlx4_domain[domain] |
1658 flow_attr->priority);
1659 ctrl->type = mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type);
1660 ctrl->port = flow_attr->port;
1661 ctrl->qpn = cpu_to_be32(qp->qp_num);
1662
1663 ib_flow = flow_attr + 1;
1664 size += sizeof(struct mlx4_net_trans_rule_hw_ctrl);
Matan Baraka37a1a42013-11-07 15:25:16 +02001665 /* Add default flows */
1666 default_flow = __mlx4_ib_default_rules_match(qp, flow_attr);
1667 if (default_flow >= 0) {
1668 ret = __mlx4_ib_create_default_rules(
1669 mdev, qp, default_table + default_flow,
1670 mailbox->buf + size);
1671 if (ret < 0) {
1672 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1673 return -EINVAL;
1674 }
1675 size += ret;
1676 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001677 for (i = 0; i < flow_attr->num_of_specs; i++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001678 ret = parse_flow_attr(mdev->dev, qp->qp_num, ib_flow,
1679 mailbox->buf + size);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001680 if (ret < 0) {
1681 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1682 return -EINVAL;
1683 }
1684 ib_flow += ((union ib_flow_spec *) ib_flow)->size;
1685 size += ret;
1686 }
1687
Jack Morgenstein237652f2016-12-29 18:37:13 +02001688 if (mlx4_is_master(mdev->dev) && flow_type == MLX4_FS_REGULAR &&
1689 flow_attr->num_of_specs == 1) {
1690 struct _rule_hw *rule_header = (struct _rule_hw *)(ctrl + 1);
1691 enum ib_flow_spec_type header_spec =
1692 ((union ib_flow_spec *)(flow_attr + 1))->type;
1693
1694 if (header_spec == IB_FLOW_SPEC_ETH)
1695 mlx4_handle_eth_header_mcast_prio(ctrl, rule_header);
1696 }
1697
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001698 ret = mlx4_cmd_imm(mdev->dev, mailbox->dma, reg_id, size >> 2, 0,
1699 MLX4_QP_FLOW_STEERING_ATTACH, MLX4_CMD_TIME_CLASS_A,
Jack Morgenstein237652f2016-12-29 18:37:13 +02001700 MLX4_CMD_NATIVE);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001701 if (ret == -ENOMEM)
1702 pr_err("mcg table is full. Fail to register network rule.\n");
1703 else if (ret == -ENXIO)
1704 pr_err("Device managed flow steering is disabled. Fail to register network rule.\n");
1705 else if (ret)
Colin Ian King35fc7b72016-04-25 20:26:50 +01001706 pr_err("Invalid argument. Fail to register network rule.\n");
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001707
1708 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1709 return ret;
1710}
1711
1712static int __mlx4_ib_destroy_flow(struct mlx4_dev *dev, u64 reg_id)
1713{
1714 int err;
1715 err = mlx4_cmd(dev, reg_id, 0, 0,
1716 MLX4_QP_FLOW_STEERING_DETACH, MLX4_CMD_TIME_CLASS_A,
Jack Morgenstein237652f2016-12-29 18:37:13 +02001717 MLX4_CMD_NATIVE);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001718 if (err)
1719 pr_err("Fail to detach network rule. registration id = 0x%llx\n",
1720 reg_id);
1721 return err;
1722}
1723
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001724static int mlx4_ib_tunnel_steer_add(struct ib_qp *qp, struct ib_flow_attr *flow_attr,
1725 u64 *reg_id)
1726{
1727 void *ib_flow;
1728 union ib_flow_spec *ib_spec;
1729 struct mlx4_dev *dev = to_mdev(qp->device)->dev;
1730 int err = 0;
1731
Or Gerlitz5eff6da2015-01-15 15:28:54 +02001732 if (dev->caps.tunnel_offload_mode != MLX4_TUNNEL_OFFLOAD_MODE_VXLAN ||
1733 dev->caps.dmfs_high_steer_mode == MLX4_STEERING_DMFS_A0_STATIC)
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001734 return 0; /* do nothing */
1735
1736 ib_flow = flow_attr + 1;
1737 ib_spec = (union ib_flow_spec *)ib_flow;
1738
1739 if (ib_spec->type != IB_FLOW_SPEC_ETH || flow_attr->num_of_specs != 1)
1740 return 0; /* do nothing */
1741
1742 err = mlx4_tunnel_steer_add(to_mdev(qp->device)->dev, ib_spec->eth.val.dst_mac,
1743 flow_attr->port, qp->qp_num,
1744 MLX4_DOMAIN_UVERBS | (flow_attr->priority & 0xff),
1745 reg_id);
1746 return err;
1747}
1748
Marina Varshaver0e451e82016-02-18 18:31:06 +02001749static int mlx4_ib_add_dont_trap_rule(struct mlx4_dev *dev,
1750 struct ib_flow_attr *flow_attr,
1751 enum mlx4_net_trans_promisc_mode *type)
1752{
1753 int err = 0;
1754
1755 if (!(dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DMFS_UC_MC_SNIFFER) ||
1756 (dev->caps.dmfs_high_steer_mode == MLX4_STEERING_DMFS_A0_STATIC) ||
1757 (flow_attr->num_of_specs > 1) || (flow_attr->priority != 0)) {
1758 return -EOPNOTSUPP;
1759 }
1760
1761 if (flow_attr->num_of_specs == 0) {
1762 type[0] = MLX4_FS_MC_SNIFFER;
1763 type[1] = MLX4_FS_UC_SNIFFER;
1764 } else {
1765 union ib_flow_spec *ib_spec;
1766
1767 ib_spec = (union ib_flow_spec *)(flow_attr + 1);
1768 if (ib_spec->type != IB_FLOW_SPEC_ETH)
1769 return -EINVAL;
1770
1771 /* if all is zero than MC and UC */
1772 if (is_zero_ether_addr(ib_spec->eth.mask.dst_mac)) {
1773 type[0] = MLX4_FS_MC_SNIFFER;
1774 type[1] = MLX4_FS_UC_SNIFFER;
1775 } else {
1776 u8 mac[ETH_ALEN] = {ib_spec->eth.mask.dst_mac[0] ^ 0x01,
1777 ib_spec->eth.mask.dst_mac[1],
1778 ib_spec->eth.mask.dst_mac[2],
1779 ib_spec->eth.mask.dst_mac[3],
1780 ib_spec->eth.mask.dst_mac[4],
1781 ib_spec->eth.mask.dst_mac[5]};
1782
1783 /* Above xor was only on MC bit, non empty mask is valid
1784 * only if this bit is set and rest are zero.
1785 */
1786 if (!is_zero_ether_addr(&mac[0]))
1787 return -EINVAL;
1788
1789 if (is_multicast_ether_addr(ib_spec->eth.val.dst_mac))
1790 type[0] = MLX4_FS_MC_SNIFFER;
1791 else
1792 type[0] = MLX4_FS_UC_SNIFFER;
1793 }
1794 }
1795
1796 return err;
1797}
1798
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001799static struct ib_flow *mlx4_ib_create_flow(struct ib_qp *qp,
1800 struct ib_flow_attr *flow_attr,
1801 int domain)
1802{
Moni Shoua146d6e12015-02-03 16:48:38 +02001803 int err = 0, i = 0, j = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001804 struct mlx4_ib_flow *mflow;
1805 enum mlx4_net_trans_promisc_mode type[2];
Moni Shoua146d6e12015-02-03 16:48:38 +02001806 struct mlx4_dev *dev = (to_mdev(qp->device))->dev;
1807 int is_bonded = mlx4_is_bonded(dev);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001808
Yishai Hadas5533c182016-06-22 17:27:30 +03001809 if (flow_attr->port < 1 || flow_attr->port > qp->device->phys_port_cnt)
1810 return ERR_PTR(-EINVAL);
1811
Marina Varshaver0e451e82016-02-18 18:31:06 +02001812 if ((flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP) &&
1813 (flow_attr->type != IB_FLOW_ATTR_NORMAL))
Marina Varshavera3100a72016-02-18 18:31:05 +02001814 return ERR_PTR(-EOPNOTSUPP);
1815
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001816 memset(type, 0, sizeof(type));
1817
1818 mflow = kzalloc(sizeof(*mflow), GFP_KERNEL);
1819 if (!mflow) {
1820 err = -ENOMEM;
1821 goto err_free;
1822 }
1823
1824 switch (flow_attr->type) {
1825 case IB_FLOW_ATTR_NORMAL:
Marina Varshaver0e451e82016-02-18 18:31:06 +02001826 /* If dont trap flag (continue match) is set, under specific
1827 * condition traffic be replicated to given qp,
1828 * without stealing it
1829 */
1830 if (unlikely(flow_attr->flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP)) {
1831 err = mlx4_ib_add_dont_trap_rule(dev,
1832 flow_attr,
1833 type);
1834 if (err)
1835 goto err_free;
1836 } else {
1837 type[0] = MLX4_FS_REGULAR;
1838 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001839 break;
1840
1841 case IB_FLOW_ATTR_ALL_DEFAULT:
1842 type[0] = MLX4_FS_ALL_DEFAULT;
1843 break;
1844
1845 case IB_FLOW_ATTR_MC_DEFAULT:
1846 type[0] = MLX4_FS_MC_DEFAULT;
1847 break;
1848
1849 case IB_FLOW_ATTR_SNIFFER:
Marina Varshaver0e451e82016-02-18 18:31:06 +02001850 type[0] = MLX4_FS_MIRROR_RX_PORT;
1851 type[1] = MLX4_FS_MIRROR_SX_PORT;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001852 break;
1853
1854 default:
1855 err = -EINVAL;
1856 goto err_free;
1857 }
1858
1859 while (i < ARRAY_SIZE(type) && type[i]) {
1860 err = __mlx4_ib_create_flow(qp, flow_attr, domain, type[i],
Moni Shoua146d6e12015-02-03 16:48:38 +02001861 &mflow->reg_id[i].id);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001862 if (err)
Or Gerlitz571e1b22014-10-30 15:59:28 +02001863 goto err_create_flow;
Moni Shoua146d6e12015-02-03 16:48:38 +02001864 if (is_bonded) {
Moni Shoua824c25c2015-02-08 11:49:33 +02001865 /* Application always sees one port so the mirror rule
1866 * must be on port #2
1867 */
Moni Shoua146d6e12015-02-03 16:48:38 +02001868 flow_attr->port = 2;
1869 err = __mlx4_ib_create_flow(qp, flow_attr,
1870 domain, type[j],
1871 &mflow->reg_id[j].mirror);
1872 flow_attr->port = 1;
1873 if (err)
1874 goto err_create_flow;
1875 j++;
1876 }
1877
Roland Dreier11562562015-05-29 23:11:27 -07001878 i++;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001879 }
1880
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001881 if (i < ARRAY_SIZE(type) && flow_attr->type == IB_FLOW_ATTR_NORMAL) {
Moni Shoua146d6e12015-02-03 16:48:38 +02001882 err = mlx4_ib_tunnel_steer_add(qp, flow_attr,
1883 &mflow->reg_id[i].id);
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001884 if (err)
Or Gerlitz571e1b22014-10-30 15:59:28 +02001885 goto err_create_flow;
Roland Dreier11562562015-05-29 23:11:27 -07001886
Moni Shoua146d6e12015-02-03 16:48:38 +02001887 if (is_bonded) {
1888 flow_attr->port = 2;
1889 err = mlx4_ib_tunnel_steer_add(qp, flow_attr,
1890 &mflow->reg_id[j].mirror);
1891 flow_attr->port = 1;
1892 if (err)
1893 goto err_create_flow;
1894 j++;
1895 }
1896 /* function to create mirror rule */
Roland Dreier11562562015-05-29 23:11:27 -07001897 i++;
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001898 }
1899
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001900 return &mflow->ibflow;
1901
Or Gerlitz571e1b22014-10-30 15:59:28 +02001902err_create_flow:
1903 while (i) {
Moni Shoua146d6e12015-02-03 16:48:38 +02001904 (void)__mlx4_ib_destroy_flow(to_mdev(qp->device)->dev,
1905 mflow->reg_id[i].id);
Or Gerlitz571e1b22014-10-30 15:59:28 +02001906 i--;
1907 }
Moni Shoua146d6e12015-02-03 16:48:38 +02001908
1909 while (j) {
1910 (void)__mlx4_ib_destroy_flow(to_mdev(qp->device)->dev,
1911 mflow->reg_id[j].mirror);
1912 j--;
1913 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001914err_free:
1915 kfree(mflow);
1916 return ERR_PTR(err);
1917}
1918
1919static int mlx4_ib_destroy_flow(struct ib_flow *flow_id)
1920{
1921 int err, ret = 0;
1922 int i = 0;
1923 struct mlx4_ib_dev *mdev = to_mdev(flow_id->qp->device);
1924 struct mlx4_ib_flow *mflow = to_mflow(flow_id);
1925
Moni Shoua146d6e12015-02-03 16:48:38 +02001926 while (i < ARRAY_SIZE(mflow->reg_id) && mflow->reg_id[i].id) {
1927 err = __mlx4_ib_destroy_flow(mdev->dev, mflow->reg_id[i].id);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001928 if (err)
1929 ret = err;
Moni Shoua146d6e12015-02-03 16:48:38 +02001930 if (mflow->reg_id[i].mirror) {
1931 err = __mlx4_ib_destroy_flow(mdev->dev,
1932 mflow->reg_id[i].mirror);
1933 if (err)
1934 ret = err;
1935 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001936 i++;
1937 }
1938
1939 kfree(mflow);
1940 return ret;
1941}
1942
Roland Dreier225c7b12007-05-08 18:00:38 -07001943static int mlx4_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1944{
Eli Cohenfa417f72010-10-24 21:08:52 -07001945 int err;
1946 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
Moni Shoua146d6e12015-02-03 16:48:38 +02001947 struct mlx4_dev *dev = mdev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001948 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001949 struct mlx4_ib_steering *ib_steering = NULL;
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001950 enum mlx4_protocol prot = MLX4_PROT_IB_IPV6;
Moni Shoua146d6e12015-02-03 16:48:38 +02001951 struct mlx4_flow_reg_id reg_id;
Eli Cohenfa417f72010-10-24 21:08:52 -07001952
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001953 if (mdev->dev->caps.steering_mode ==
1954 MLX4_STEERING_MODE_DEVICE_MANAGED) {
1955 ib_steering = kmalloc(sizeof(*ib_steering), GFP_KERNEL);
1956 if (!ib_steering)
1957 return -ENOMEM;
1958 }
1959
1960 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw, mqp->port,
1961 !!(mqp->flags &
1962 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
Moni Shoua146d6e12015-02-03 16:48:38 +02001963 prot, &reg_id.id);
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001964 if (err) {
1965 pr_err("multicast attach op failed, err %d\n", err);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001966 goto err_malloc;
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001967 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001968
Moni Shoua146d6e12015-02-03 16:48:38 +02001969 reg_id.mirror = 0;
1970 if (mlx4_is_bonded(dev)) {
Moni Shoua824c25c2015-02-08 11:49:33 +02001971 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw,
1972 (mqp->port == 1) ? 2 : 1,
Moni Shoua146d6e12015-02-03 16:48:38 +02001973 !!(mqp->flags &
1974 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
1975 prot, &reg_id.mirror);
1976 if (err)
1977 goto err_add;
1978 }
1979
Eli Cohenfa417f72010-10-24 21:08:52 -07001980 err = add_gid_entry(ibqp, gid);
1981 if (err)
1982 goto err_add;
1983
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001984 if (ib_steering) {
1985 memcpy(ib_steering->gid.raw, gid->raw, 16);
1986 ib_steering->reg_id = reg_id;
1987 mutex_lock(&mqp->mutex);
1988 list_add(&ib_steering->list, &mqp->steering_rules);
1989 mutex_unlock(&mqp->mutex);
1990 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001991 return 0;
1992
1993err_add:
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001994 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shoua146d6e12015-02-03 16:48:38 +02001995 prot, reg_id.id);
1996 if (reg_id.mirror)
1997 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
1998 prot, reg_id.mirror);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001999err_malloc:
2000 kfree(ib_steering);
2001
Eli Cohenfa417f72010-10-24 21:08:52 -07002002 return err;
2003}
2004
2005static struct mlx4_ib_gid_entry *find_gid_entry(struct mlx4_ib_qp *qp, u8 *raw)
2006{
2007 struct mlx4_ib_gid_entry *ge;
2008 struct mlx4_ib_gid_entry *tmp;
2009 struct mlx4_ib_gid_entry *ret = NULL;
2010
2011 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
2012 if (!memcmp(raw, ge->gid.raw, 16)) {
2013 ret = ge;
2014 break;
2015 }
2016 }
2017
2018 return ret;
Roland Dreier225c7b12007-05-08 18:00:38 -07002019}
2020
2021static int mlx4_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
2022{
Eli Cohenfa417f72010-10-24 21:08:52 -07002023 int err;
2024 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
Moni Shoua146d6e12015-02-03 16:48:38 +02002025 struct mlx4_dev *dev = mdev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07002026 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Eli Cohenfa417f72010-10-24 21:08:52 -07002027 struct net_device *ndev;
2028 struct mlx4_ib_gid_entry *ge;
Moni Shoua146d6e12015-02-03 16:48:38 +02002029 struct mlx4_flow_reg_id reg_id = {0, 0};
Or Gerlitze9a7faf2014-12-17 16:17:34 +02002030 enum mlx4_protocol prot = MLX4_PROT_IB_IPV6;
Eli Cohenfa417f72010-10-24 21:08:52 -07002031
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00002032 if (mdev->dev->caps.steering_mode ==
2033 MLX4_STEERING_MODE_DEVICE_MANAGED) {
2034 struct mlx4_ib_steering *ib_steering;
2035
2036 mutex_lock(&mqp->mutex);
2037 list_for_each_entry(ib_steering, &mqp->steering_rules, list) {
2038 if (!memcmp(ib_steering->gid.raw, gid->raw, 16)) {
2039 list_del(&ib_steering->list);
2040 break;
2041 }
2042 }
2043 mutex_unlock(&mqp->mutex);
2044 if (&ib_steering->list == &mqp->steering_rules) {
2045 pr_err("Couldn't find reg_id for mgid. Steering rule is left attached\n");
2046 return -EINVAL;
2047 }
2048 reg_id = ib_steering->reg_id;
2049 kfree(ib_steering);
2050 }
2051
2052 err = mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shoua146d6e12015-02-03 16:48:38 +02002053 prot, reg_id.id);
Eli Cohenfa417f72010-10-24 21:08:52 -07002054 if (err)
2055 return err;
2056
Moni Shoua146d6e12015-02-03 16:48:38 +02002057 if (mlx4_is_bonded(dev)) {
2058 err = mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
2059 prot, reg_id.mirror);
2060 if (err)
2061 return err;
2062 }
2063
Eli Cohenfa417f72010-10-24 21:08:52 -07002064 mutex_lock(&mqp->mutex);
2065 ge = find_gid_entry(mqp, gid->raw);
2066 if (ge) {
Jack Morgensteindba3ad22014-08-21 14:28:41 +03002067 spin_lock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07002068 ndev = ge->added ? mdev->iboe.netdevs[ge->port - 1] : NULL;
2069 if (ndev)
2070 dev_hold(ndev);
Jack Morgensteindba3ad22014-08-21 14:28:41 +03002071 spin_unlock_bh(&mdev->iboe.lock);
Moni Shouad487ee72013-12-12 18:03:13 +02002072 if (ndev)
Eli Cohenfa417f72010-10-24 21:08:52 -07002073 dev_put(ndev);
Eli Cohenfa417f72010-10-24 21:08:52 -07002074 list_del(&ge->list);
2075 kfree(ge);
2076 } else
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002077 pr_warn("could not find mgid entry\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07002078
2079 mutex_unlock(&mqp->mutex);
2080
2081 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002082}
2083
2084static int init_node_data(struct mlx4_ib_dev *dev)
2085{
2086 struct ib_smp *in_mad = NULL;
2087 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00002088 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -07002089 int err = -ENOMEM;
2090
2091 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
2092 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
2093 if (!in_mad || !out_mad)
2094 goto out;
2095
2096 init_query_mad(in_mad);
2097 in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00002098 if (mlx4_is_master(dev->dev))
2099 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
Roland Dreier225c7b12007-05-08 18:00:38 -07002100
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00002101 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07002102 if (err)
2103 goto out;
2104
Yuval Shaiabd99fde2016-08-25 10:57:07 -07002105 memcpy(dev->ib_dev.node_desc, out_mad->data, IB_DEVICE_NODE_DESC_MAX);
Roland Dreier225c7b12007-05-08 18:00:38 -07002106
2107 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
2108
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00002109 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07002110 if (err)
2111 goto out;
2112
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002113 dev->dev->rev_id = be32_to_cpup((__be32 *) (out_mad->data + 32));
Roland Dreier225c7b12007-05-08 18:00:38 -07002114 memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
2115
2116out:
2117 kfree(in_mad);
2118 kfree(out_mad);
2119 return err;
2120}
2121
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002122static ssize_t show_hca(struct device *device, struct device_attribute *attr,
2123 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002124{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002125 struct mlx4_ib_dev *dev =
2126 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002127 return sprintf(buf, "MT%d\n", dev->dev->persist->pdev->device);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002128}
2129
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002130static ssize_t show_rev(struct device *device, struct device_attribute *attr,
2131 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002132{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002133 struct mlx4_ib_dev *dev =
2134 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002135 return sprintf(buf, "%x\n", dev->dev->rev_id);
2136}
2137
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002138static ssize_t show_board(struct device *device, struct device_attribute *attr,
2139 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002140{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002141 struct mlx4_ib_dev *dev =
2142 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
2143 return sprintf(buf, "%.*s\n", MLX4_BOARD_ID_LEN,
2144 dev->dev->board_id);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002145}
2146
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002147static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002148static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
2149static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002150
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002151static struct device_attribute *mlx4_class_attributes[] = {
2152 &dev_attr_hw_rev,
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002153 &dev_attr_hca_type,
2154 &dev_attr_board_id
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002155};
2156
Mark Bloch3f85f2a2016-07-19 20:54:58 +03002157struct diag_counter {
2158 const char *name;
2159 u32 offset;
2160};
2161
2162#define DIAG_COUNTER(_name, _offset) \
2163 { .name = #_name, .offset = _offset }
2164
2165static const struct diag_counter diag_basic[] = {
2166 DIAG_COUNTER(rq_num_lle, 0x00),
2167 DIAG_COUNTER(sq_num_lle, 0x04),
2168 DIAG_COUNTER(rq_num_lqpoe, 0x08),
2169 DIAG_COUNTER(sq_num_lqpoe, 0x0C),
2170 DIAG_COUNTER(rq_num_lpe, 0x18),
2171 DIAG_COUNTER(sq_num_lpe, 0x1C),
2172 DIAG_COUNTER(rq_num_wrfe, 0x20),
2173 DIAG_COUNTER(sq_num_wrfe, 0x24),
2174 DIAG_COUNTER(sq_num_mwbe, 0x2C),
2175 DIAG_COUNTER(sq_num_bre, 0x34),
2176 DIAG_COUNTER(sq_num_rire, 0x44),
2177 DIAG_COUNTER(rq_num_rire, 0x48),
2178 DIAG_COUNTER(sq_num_rae, 0x4C),
2179 DIAG_COUNTER(rq_num_rae, 0x50),
2180 DIAG_COUNTER(sq_num_roe, 0x54),
2181 DIAG_COUNTER(sq_num_tree, 0x5C),
2182 DIAG_COUNTER(sq_num_rree, 0x64),
2183 DIAG_COUNTER(rq_num_rnr, 0x68),
2184 DIAG_COUNTER(sq_num_rnr, 0x6C),
2185 DIAG_COUNTER(rq_num_oos, 0x100),
2186 DIAG_COUNTER(sq_num_oos, 0x104),
2187};
2188
2189static const struct diag_counter diag_ext[] = {
2190 DIAG_COUNTER(rq_num_dup, 0x130),
2191 DIAG_COUNTER(sq_num_to, 0x134),
2192};
2193
2194static const struct diag_counter diag_device_only[] = {
2195 DIAG_COUNTER(num_cqovf, 0x1A0),
2196 DIAG_COUNTER(rq_num_udsdprd, 0x118),
2197};
2198
2199static struct rdma_hw_stats *mlx4_ib_alloc_hw_stats(struct ib_device *ibdev,
2200 u8 port_num)
2201{
2202 struct mlx4_ib_dev *dev = to_mdev(ibdev);
2203 struct mlx4_ib_diag_counters *diag = dev->diag_counters;
2204
2205 if (!diag[!!port_num].name)
2206 return NULL;
2207
2208 return rdma_alloc_hw_stats_struct(diag[!!port_num].name,
2209 diag[!!port_num].num_counters,
2210 RDMA_HW_STATS_DEFAULT_LIFESPAN);
2211}
2212
2213static int mlx4_ib_get_hw_stats(struct ib_device *ibdev,
2214 struct rdma_hw_stats *stats,
2215 u8 port, int index)
2216{
2217 struct mlx4_ib_dev *dev = to_mdev(ibdev);
2218 struct mlx4_ib_diag_counters *diag = dev->diag_counters;
2219 u32 hw_value[ARRAY_SIZE(diag_device_only) +
2220 ARRAY_SIZE(diag_ext) + ARRAY_SIZE(diag_basic)] = {};
2221 int ret;
2222 int i;
2223
2224 ret = mlx4_query_diag_counters(dev->dev,
2225 MLX4_OP_MOD_QUERY_TRANSPORT_CI_ERRORS,
2226 diag[!!port].offset, hw_value,
2227 diag[!!port].num_counters, port);
2228
2229 if (ret)
2230 return ret;
2231
2232 for (i = 0; i < diag[!!port].num_counters; i++)
2233 stats->value[i] = hw_value[i];
2234
2235 return diag[!!port].num_counters;
2236}
2237
2238static int __mlx4_ib_alloc_diag_counters(struct mlx4_ib_dev *ibdev,
2239 const char ***name,
2240 u32 **offset,
2241 u32 *num,
2242 bool port)
2243{
2244 u32 num_counters;
2245
2246 num_counters = ARRAY_SIZE(diag_basic);
2247
2248 if (ibdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DIAG_PER_PORT)
2249 num_counters += ARRAY_SIZE(diag_ext);
2250
2251 if (!port)
2252 num_counters += ARRAY_SIZE(diag_device_only);
2253
2254 *name = kcalloc(num_counters, sizeof(**name), GFP_KERNEL);
2255 if (!*name)
2256 return -ENOMEM;
2257
2258 *offset = kcalloc(num_counters, sizeof(**offset), GFP_KERNEL);
2259 if (!*offset)
2260 goto err_name;
2261
2262 *num = num_counters;
2263
2264 return 0;
2265
2266err_name:
2267 kfree(*name);
2268 return -ENOMEM;
2269}
2270
2271static void mlx4_ib_fill_diag_counters(struct mlx4_ib_dev *ibdev,
2272 const char **name,
2273 u32 *offset,
2274 bool port)
2275{
2276 int i;
2277 int j;
2278
2279 for (i = 0, j = 0; i < ARRAY_SIZE(diag_basic); i++, j++) {
2280 name[i] = diag_basic[i].name;
2281 offset[i] = diag_basic[i].offset;
2282 }
2283
2284 if (ibdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DIAG_PER_PORT) {
2285 for (i = 0; i < ARRAY_SIZE(diag_ext); i++, j++) {
2286 name[j] = diag_ext[i].name;
2287 offset[j] = diag_ext[i].offset;
2288 }
2289 }
2290
2291 if (!port) {
2292 for (i = 0; i < ARRAY_SIZE(diag_device_only); i++, j++) {
2293 name[j] = diag_device_only[i].name;
2294 offset[j] = diag_device_only[i].offset;
2295 }
2296 }
2297}
2298
2299static int mlx4_ib_alloc_diag_counters(struct mlx4_ib_dev *ibdev)
2300{
2301 struct mlx4_ib_diag_counters *diag = ibdev->diag_counters;
2302 int i;
2303 int ret;
2304 bool per_port = !!(ibdev->dev->caps.flags2 &
2305 MLX4_DEV_CAP_FLAG2_DIAG_PER_PORT);
2306
Kamal Heib69d269d382016-09-12 19:16:22 +03002307 if (mlx4_is_slave(ibdev->dev))
2308 return 0;
2309
Mark Bloch3f85f2a2016-07-19 20:54:58 +03002310 for (i = 0; i < MLX4_DIAG_COUNTERS_TYPES; i++) {
2311 /* i == 1 means we are building port counters */
2312 if (i && !per_port)
2313 continue;
2314
2315 ret = __mlx4_ib_alloc_diag_counters(ibdev, &diag[i].name,
2316 &diag[i].offset,
2317 &diag[i].num_counters, i);
2318 if (ret)
2319 goto err_alloc;
2320
2321 mlx4_ib_fill_diag_counters(ibdev, diag[i].name,
2322 diag[i].offset, i);
2323 }
2324
2325 ibdev->ib_dev.get_hw_stats = mlx4_ib_get_hw_stats;
2326 ibdev->ib_dev.alloc_hw_stats = mlx4_ib_alloc_hw_stats;
2327
2328 return 0;
2329
2330err_alloc:
2331 if (i) {
2332 kfree(diag[i - 1].name);
2333 kfree(diag[i - 1].offset);
2334 }
2335
2336 return ret;
2337}
2338
2339static void mlx4_ib_diag_cleanup(struct mlx4_ib_dev *ibdev)
2340{
2341 int i;
2342
2343 for (i = 0; i < MLX4_DIAG_COUNTERS_TYPES; i++) {
2344 kfree(ibdev->diag_counters[i].offset);
2345 kfree(ibdev->diag_counters[i].name);
2346 }
2347}
2348
Matan Barak9433c182014-05-15 15:29:28 +03002349#define MLX4_IB_INVALID_MAC ((u64)-1)
2350static void mlx4_ib_update_qps(struct mlx4_ib_dev *ibdev,
2351 struct net_device *dev,
2352 int port)
2353{
2354 u64 new_smac = 0;
2355 u64 release_mac = MLX4_IB_INVALID_MAC;
2356 struct mlx4_ib_qp *qp;
2357
2358 read_lock(&dev_base_lock);
2359 new_smac = mlx4_mac_to_u64(dev->dev_addr);
2360 read_unlock(&dev_base_lock);
2361
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002362 atomic64_set(&ibdev->iboe.mac[port - 1], new_smac);
2363
Jack Morgensteind24d9f42014-09-11 14:11:18 +03002364 /* no need for update QP1 and mac registration in non-SRIOV */
2365 if (!mlx4_is_mfunc(ibdev->dev))
2366 return;
2367
Matan Barak9433c182014-05-15 15:29:28 +03002368 mutex_lock(&ibdev->qp1_proxy_lock[port - 1]);
2369 qp = ibdev->qp1_proxy[port - 1];
2370 if (qp) {
2371 int new_smac_index;
Jack Morgenstein25476b02014-09-11 14:11:20 +03002372 u64 old_smac;
Matan Barak9433c182014-05-15 15:29:28 +03002373 struct mlx4_update_qp_params update_params;
2374
Jack Morgenstein25476b02014-09-11 14:11:20 +03002375 mutex_lock(&qp->mutex);
2376 old_smac = qp->pri.smac;
Matan Barak9433c182014-05-15 15:29:28 +03002377 if (new_smac == old_smac)
2378 goto unlock;
2379
2380 new_smac_index = mlx4_register_mac(ibdev->dev, port, new_smac);
2381
2382 if (new_smac_index < 0)
2383 goto unlock;
2384
2385 update_params.smac_index = new_smac_index;
Matan Barak09e05c32014-09-10 16:41:56 +03002386 if (mlx4_update_qp(ibdev->dev, qp->mqp.qpn, MLX4_UPDATE_QP_SMAC,
Matan Barak9433c182014-05-15 15:29:28 +03002387 &update_params)) {
2388 release_mac = new_smac;
2389 goto unlock;
2390 }
Jack Morgenstein25476b02014-09-11 14:11:20 +03002391 /* if old port was zero, no mac was yet registered for this QP */
2392 if (qp->pri.smac_port)
2393 release_mac = old_smac;
Matan Barak9433c182014-05-15 15:29:28 +03002394 qp->pri.smac = new_smac;
Jack Morgenstein25476b02014-09-11 14:11:20 +03002395 qp->pri.smac_port = port;
Matan Barak9433c182014-05-15 15:29:28 +03002396 qp->pri.smac_index = new_smac_index;
Matan Barak9433c182014-05-15 15:29:28 +03002397 }
2398
2399unlock:
Matan Barak9433c182014-05-15 15:29:28 +03002400 if (release_mac != MLX4_IB_INVALID_MAC)
2401 mlx4_unregister_mac(ibdev->dev, port, release_mac);
Jack Morgenstein25476b02014-09-11 14:11:20 +03002402 if (qp)
2403 mutex_unlock(&qp->mutex);
2404 mutex_unlock(&ibdev->qp1_proxy_lock[port - 1]);
Matan Barak9433c182014-05-15 15:29:28 +03002405}
2406
Matan Barak9433c182014-05-15 15:29:28 +03002407static void mlx4_ib_scan_netdevs(struct mlx4_ib_dev *ibdev,
2408 struct net_device *dev,
2409 unsigned long event)
2410
Moni Shouad487ee72013-12-12 18:03:13 +02002411{
2412 struct mlx4_ib_iboe *iboe;
Matan Barak9433c182014-05-15 15:29:28 +03002413 int update_qps_port = -1;
Moni Shouad487ee72013-12-12 18:03:13 +02002414 int port;
2415
Moni Shoua5070cd22015-07-30 18:33:30 +03002416 ASSERT_RTNL();
2417
Moni Shouad487ee72013-12-12 18:03:13 +02002418 iboe = &ibdev->iboe;
2419
Jack Morgensteindba3ad22014-08-21 14:28:41 +03002420 spin_lock_bh(&iboe->lock);
Moni Shouad487ee72013-12-12 18:03:13 +02002421 mlx4_foreach_ib_transport_port(port, ibdev->dev) {
Moni Shouaad4885d22014-02-05 15:13:02 +02002422
Moni Shouad487ee72013-12-12 18:03:13 +02002423 iboe->netdevs[port - 1] =
2424 mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port);
Moni Shouad487ee72013-12-12 18:03:13 +02002425
Matan Barak9433c182014-05-15 15:29:28 +03002426 if (dev == iboe->netdevs[port - 1] &&
2427 (event == NETDEV_CHANGEADDR || event == NETDEV_REGISTER ||
2428 event == NETDEV_UP || event == NETDEV_CHANGE))
2429 update_qps_port = port;
2430
Moni Shouad487ee72013-12-12 18:03:13 +02002431 }
Jack Morgensteindba3ad22014-08-21 14:28:41 +03002432 spin_unlock_bh(&iboe->lock);
Matan Barak9433c182014-05-15 15:29:28 +03002433
2434 if (update_qps_port > 0)
2435 mlx4_ib_update_qps(ibdev, dev, update_qps_port);
Moni Shouad487ee72013-12-12 18:03:13 +02002436}
2437
2438static int mlx4_ib_netdev_event(struct notifier_block *this,
2439 unsigned long event, void *ptr)
2440{
Jiri Pirko351638e2013-05-28 01:30:21 +00002441 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eli Cohenfa417f72010-10-24 21:08:52 -07002442 struct mlx4_ib_dev *ibdev;
Eli Cohenfa417f72010-10-24 21:08:52 -07002443
2444 if (!net_eq(dev_net(dev), &init_net))
2445 return NOTIFY_DONE;
2446
2447 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb);
Matan Barak9433c182014-05-15 15:29:28 +03002448 mlx4_ib_scan_netdevs(ibdev, dev, event);
Eli Cohenfa417f72010-10-24 21:08:52 -07002449
2450 return NOTIFY_DONE;
2451}
2452
Jack Morgenstein54679e12012-08-03 08:40:43 +00002453static void init_pkeys(struct mlx4_ib_dev *ibdev)
2454{
2455 int port;
2456 int slave;
2457 int i;
2458
2459 if (mlx4_is_master(ibdev->dev)) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002460 for (slave = 0; slave <= ibdev->dev->persist->num_vfs;
2461 ++slave) {
Jack Morgenstein54679e12012-08-03 08:40:43 +00002462 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
2463 for (i = 0;
2464 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
2465 ++i) {
2466 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i] =
2467 /* master has the identity virt2phys pkey mapping */
2468 (slave == mlx4_master_func_num(ibdev->dev) || !i) ? i :
2469 ibdev->dev->phys_caps.pkey_phys_table_len[port] - 1;
2470 mlx4_sync_pkey_table(ibdev->dev, slave, port, i,
2471 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i]);
2472 }
2473 }
2474 }
2475 /* initialize pkey cache */
2476 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
2477 for (i = 0;
2478 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
2479 ++i)
2480 ibdev->pkeys.phys_pkey_cache[port-1][i] =
2481 (i) ? 0 : 0xFFFF;
2482 }
2483 }
2484}
2485
Shlomo Pongratze605b742012-04-29 17:04:27 +03002486static void mlx4_ib_alloc_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
2487{
Matan Barakc66fa192015-05-31 09:30:16 +03002488 int i, j, eq = 0, total_eqs = 0;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002489
Matan Barakc66fa192015-05-31 09:30:16 +03002490 ibdev->eq_table = kcalloc(dev->caps.num_comp_vectors,
2491 sizeof(ibdev->eq_table[0]), GFP_KERNEL);
Shlomo Pongratze605b742012-04-29 17:04:27 +03002492 if (!ibdev->eq_table)
2493 return;
2494
Matan Barakc66fa192015-05-31 09:30:16 +03002495 for (i = 1; i <= dev->caps.num_ports; i++) {
2496 for (j = 0; j < mlx4_get_eqs_per_port(dev, i);
2497 j++, total_eqs++) {
2498 if (i > 1 && mlx4_is_eq_shared(dev, total_eqs))
2499 continue;
2500 ibdev->eq_table[eq] = total_eqs;
2501 if (!mlx4_assign_eq(dev, i,
2502 &ibdev->eq_table[eq]))
2503 eq++;
2504 else
2505 ibdev->eq_table[eq] = -1;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002506 }
2507 }
2508
Matan Barakc66fa192015-05-31 09:30:16 +03002509 for (i = eq; i < dev->caps.num_comp_vectors;
2510 ibdev->eq_table[i++] = -1)
2511 ;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002512
2513 /* Advertise the new number of EQs to clients */
Matan Barakc66fa192015-05-31 09:30:16 +03002514 ibdev->ib_dev.num_comp_vectors = eq;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002515}
2516
2517static void mlx4_ib_free_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
2518{
2519 int i;
Matan Barakc66fa192015-05-31 09:30:16 +03002520 int total_eqs = ibdev->ib_dev.num_comp_vectors;
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03002521
Matan Barakc66fa192015-05-31 09:30:16 +03002522 /* no eqs were allocated */
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03002523 if (!ibdev->eq_table)
2524 return;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002525
2526 /* Reset the advertised EQ number */
Matan Barakc66fa192015-05-31 09:30:16 +03002527 ibdev->ib_dev.num_comp_vectors = 0;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002528
Matan Barakc66fa192015-05-31 09:30:16 +03002529 for (i = 0; i < total_eqs; i++)
Shlomo Pongratze605b742012-04-29 17:04:27 +03002530 mlx4_release_eq(dev, ibdev->eq_table[i]);
Shlomo Pongratze605b742012-04-29 17:04:27 +03002531
Shlomo Pongratze605b742012-04-29 17:04:27 +03002532 kfree(ibdev->eq_table);
Matan Barakc66fa192015-05-31 09:30:16 +03002533 ibdev->eq_table = NULL;
Shlomo Pongratze605b742012-04-29 17:04:27 +03002534}
2535
Ira Weiny77386132015-05-13 20:02:58 -04002536static int mlx4_port_immutable(struct ib_device *ibdev, u8 port_num,
2537 struct ib_port_immutable *immutable)
2538{
2539 struct ib_port_attr attr;
Matan Barak4ed088e2016-01-14 17:50:43 +02002540 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
Ira Weiny77386132015-05-13 20:02:58 -04002541 int err;
2542
2543 err = mlx4_ib_query_port(ibdev, port_num, &attr);
2544 if (err)
2545 return err;
2546
2547 immutable->pkey_tbl_len = attr.pkey_tbl_len;
2548 immutable->gid_tbl_len = attr.gid_tbl_len;
2549
Matan Barak4ed088e2016-01-14 17:50:43 +02002550 if (mlx4_ib_port_link_layer(ibdev, port_num) == IB_LINK_LAYER_INFINIBAND) {
Ira Weinyf9b22e32015-05-13 20:02:59 -04002551 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_IB;
Matan Barak4ed088e2016-01-14 17:50:43 +02002552 } else {
2553 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE)
2554 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE;
2555 if (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ROCE_V1_V2)
2556 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE |
2557 RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP;
2558 }
Ira Weinyf9b22e32015-05-13 20:02:59 -04002559
Ira Weiny337877a2015-06-06 14:38:29 -04002560 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
2561
Ira Weiny77386132015-05-13 20:02:58 -04002562 return 0;
2563}
2564
Ira Weinye9db59f2016-06-15 02:22:00 -04002565static void get_fw_ver_str(struct ib_device *device, char *str,
2566 size_t str_len)
2567{
2568 struct mlx4_ib_dev *dev =
2569 container_of(device, struct mlx4_ib_dev, ib_dev);
2570 snprintf(str, str_len, "%d.%d.%d",
2571 (int) (dev->dev->caps.fw_ver >> 32),
2572 (int) (dev->dev->caps.fw_ver >> 16) & 0xffff,
2573 (int) dev->dev->caps.fw_ver & 0xffff);
2574}
2575
Roland Dreier225c7b12007-05-08 18:00:38 -07002576static void *mlx4_ib_add(struct mlx4_dev *dev)
2577{
2578 struct mlx4_ib_dev *ibdev;
Roland Dreier22e7ef92009-01-09 13:22:29 -08002579 int num_ports = 0;
Jack Morgenstein035b1032012-05-10 23:28:09 +03002580 int i, j;
Eli Cohenfa417f72010-10-24 21:08:52 -07002581 int err;
2582 struct mlx4_ib_iboe *iboe;
Matan Barak41966702014-02-02 17:06:47 +02002583 int ib_num_ports = 0;
Moni Shouaa5750092015-02-03 16:48:37 +02002584 int num_req_counters;
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002585 int allocated;
2586 u32 counter_index;
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03002587 struct counter_index *new_counter_index = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -07002588
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002589 pr_info_once("%s", mlx4_ib_version);
Roland Dreier68f39482008-02-04 20:20:44 -08002590
Jack Morgenstein026149c2012-08-03 08:40:55 +00002591 num_ports = 0;
Eli Cohenfa417f72010-10-24 21:08:52 -07002592 mlx4_foreach_ib_transport_port(i, dev)
Roland Dreier22e7ef92009-01-09 13:22:29 -08002593 num_ports++;
2594
2595 /* No point in registering a device with no ports... */
2596 if (num_ports == 0)
2597 return NULL;
2598
Roland Dreier225c7b12007-05-08 18:00:38 -07002599 ibdev = (struct mlx4_ib_dev *) ib_alloc_device(sizeof *ibdev);
2600 if (!ibdev) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002601 dev_err(&dev->persist->pdev->dev,
2602 "Device struct alloc failed\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002603 return NULL;
2604 }
2605
Eli Cohenfa417f72010-10-24 21:08:52 -07002606 iboe = &ibdev->iboe;
2607
Roland Dreier225c7b12007-05-08 18:00:38 -07002608 if (mlx4_pd_alloc(dev, &ibdev->priv_pdn))
2609 goto err_dealloc;
2610
2611 if (mlx4_uar_alloc(dev, &ibdev->priv_uar))
2612 goto err_pd;
2613
Roland Dreier4979d182011-01-12 09:50:36 -08002614 ibdev->uar_map = ioremap((phys_addr_t) ibdev->priv_uar.pfn << PAGE_SHIFT,
2615 PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -07002616 if (!ibdev->uar_map)
2617 goto err_uar;
Jack Morgenstein26c6bc72007-05-13 17:18:23 +03002618 MLX4_INIT_DOORBELL_LOCK(&ibdev->uar_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07002619
Roland Dreier225c7b12007-05-08 18:00:38 -07002620 ibdev->dev = dev;
Moni Shouac6215742015-02-03 16:48:39 +02002621 ibdev->bond_next_port = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002622
2623 strlcpy(ibdev->ib_dev.name, "mlx4_%d", IB_DEVICE_NAME_MAX);
2624 ibdev->ib_dev.owner = THIS_MODULE;
2625 ibdev->ib_dev.node_type = RDMA_NODE_IB_CA;
Roland Dreier95d04f02008-07-23 08:12:26 -07002626 ibdev->ib_dev.local_dma_lkey = dev->caps.reserved_lkey;
Roland Dreier22e7ef92009-01-09 13:22:29 -08002627 ibdev->num_ports = num_ports;
Moni Shouaa5750092015-02-03 16:48:37 +02002628 ibdev->ib_dev.phys_port_cnt = mlx4_is_bonded(dev) ?
2629 1 : ibdev->num_ports;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -08002630 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002631 ibdev->ib_dev.dma_device = &dev->persist->pdev->dev;
Moni Shoua5070cd22015-07-30 18:33:30 +03002632 ibdev->ib_dev.get_netdev = mlx4_ib_get_netdev;
2633 ibdev->ib_dev.add_gid = mlx4_ib_add_gid;
2634 ibdev->ib_dev.del_gid = mlx4_ib_del_gid;
Roland Dreier225c7b12007-05-08 18:00:38 -07002635
Or Gerlitz08ff3232012-10-21 14:59:24 +00002636 if (dev->caps.userspace_caps)
2637 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION;
2638 else
2639 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION;
2640
Roland Dreier225c7b12007-05-08 18:00:38 -07002641 ibdev->ib_dev.uverbs_cmd_mask =
2642 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2643 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2644 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2645 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2646 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2647 (1ull << IB_USER_VERBS_CMD_REG_MR) |
Matan Barak93769322014-07-31 11:01:30 +03002648 (1ull << IB_USER_VERBS_CMD_REREG_MR) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002649 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2650 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2651 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07002652 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002653 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2654 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2655 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002656 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002657 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2658 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2659 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2660 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2661 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
Jack Morgenstein65541cb2007-06-21 13:03:11 +03002662 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
Sean Hefty18abd5e2011-06-02 10:43:26 -07002663 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
Sean Hefty42849b22011-08-11 13:57:43 -07002664 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
2665 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
Roland Dreier225c7b12007-05-08 18:00:38 -07002666
2667 ibdev->ib_dev.query_device = mlx4_ib_query_device;
2668 ibdev->ib_dev.query_port = mlx4_ib_query_port;
Eli Cohenfa417f72010-10-24 21:08:52 -07002669 ibdev->ib_dev.get_link_layer = mlx4_ib_port_link_layer;
Roland Dreier225c7b12007-05-08 18:00:38 -07002670 ibdev->ib_dev.query_gid = mlx4_ib_query_gid;
2671 ibdev->ib_dev.query_pkey = mlx4_ib_query_pkey;
2672 ibdev->ib_dev.modify_device = mlx4_ib_modify_device;
2673 ibdev->ib_dev.modify_port = mlx4_ib_modify_port;
2674 ibdev->ib_dev.alloc_ucontext = mlx4_ib_alloc_ucontext;
2675 ibdev->ib_dev.dealloc_ucontext = mlx4_ib_dealloc_ucontext;
2676 ibdev->ib_dev.mmap = mlx4_ib_mmap;
2677 ibdev->ib_dev.alloc_pd = mlx4_ib_alloc_pd;
2678 ibdev->ib_dev.dealloc_pd = mlx4_ib_dealloc_pd;
2679 ibdev->ib_dev.create_ah = mlx4_ib_create_ah;
2680 ibdev->ib_dev.query_ah = mlx4_ib_query_ah;
2681 ibdev->ib_dev.destroy_ah = mlx4_ib_destroy_ah;
2682 ibdev->ib_dev.create_srq = mlx4_ib_create_srq;
2683 ibdev->ib_dev.modify_srq = mlx4_ib_modify_srq;
Jack Morgenstein65541cb2007-06-21 13:03:11 +03002684 ibdev->ib_dev.query_srq = mlx4_ib_query_srq;
Roland Dreier225c7b12007-05-08 18:00:38 -07002685 ibdev->ib_dev.destroy_srq = mlx4_ib_destroy_srq;
2686 ibdev->ib_dev.post_srq_recv = mlx4_ib_post_srq_recv;
2687 ibdev->ib_dev.create_qp = mlx4_ib_create_qp;
2688 ibdev->ib_dev.modify_qp = mlx4_ib_modify_qp;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002689 ibdev->ib_dev.query_qp = mlx4_ib_query_qp;
Roland Dreier225c7b12007-05-08 18:00:38 -07002690 ibdev->ib_dev.destroy_qp = mlx4_ib_destroy_qp;
2691 ibdev->ib_dev.post_send = mlx4_ib_post_send;
2692 ibdev->ib_dev.post_recv = mlx4_ib_post_recv;
2693 ibdev->ib_dev.create_cq = mlx4_ib_create_cq;
Eli Cohen3fdcb972008-04-16 21:09:33 -07002694 ibdev->ib_dev.modify_cq = mlx4_ib_modify_cq;
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07002695 ibdev->ib_dev.resize_cq = mlx4_ib_resize_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07002696 ibdev->ib_dev.destroy_cq = mlx4_ib_destroy_cq;
2697 ibdev->ib_dev.poll_cq = mlx4_ib_poll_cq;
2698 ibdev->ib_dev.req_notify_cq = mlx4_ib_arm_cq;
2699 ibdev->ib_dev.get_dma_mr = mlx4_ib_get_dma_mr;
2700 ibdev->ib_dev.reg_user_mr = mlx4_ib_reg_user_mr;
Matan Barak93769322014-07-31 11:01:30 +03002701 ibdev->ib_dev.rereg_user_mr = mlx4_ib_rereg_user_mr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002702 ibdev->ib_dev.dereg_mr = mlx4_ib_dereg_mr;
Sagi Grimberg679e34d2015-07-30 10:32:42 +03002703 ibdev->ib_dev.alloc_mr = mlx4_ib_alloc_mr;
Sagi Grimberg1b2cd0f2015-10-13 19:11:27 +03002704 ibdev->ib_dev.map_mr_sg = mlx4_ib_map_mr_sg;
Roland Dreier225c7b12007-05-08 18:00:38 -07002705 ibdev->ib_dev.attach_mcast = mlx4_ib_mcg_attach;
2706 ibdev->ib_dev.detach_mcast = mlx4_ib_mcg_detach;
2707 ibdev->ib_dev.process_mad = mlx4_ib_process_mad;
Ira Weiny77386132015-05-13 20:02:58 -04002708 ibdev->ib_dev.get_port_immutable = mlx4_port_immutable;
Ira Weinye9db59f2016-06-15 02:22:00 -04002709 ibdev->ib_dev.get_dev_fw_str = get_fw_ver_str;
Yishai Hadasae184dd2015-08-13 18:32:06 +03002710 ibdev->ib_dev.disassociate_ucontext = mlx4_ib_disassociate_ucontext;
Roland Dreier225c7b12007-05-08 18:00:38 -07002711
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002712 if (!mlx4_is_slave(ibdev->dev)) {
2713 ibdev->ib_dev.alloc_fmr = mlx4_ib_fmr_alloc;
2714 ibdev->ib_dev.map_phys_fmr = mlx4_ib_map_phys_fmr;
2715 ibdev->ib_dev.unmap_fmr = mlx4_ib_unmap_fmr;
2716 ibdev->ib_dev.dealloc_fmr = mlx4_ib_fmr_dealloc;
2717 }
Jack Morgenstein8ad11fb2007-08-01 12:29:05 +03002718
Shani Michaelib4253882013-02-06 16:19:16 +00002719 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW ||
2720 dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
2721 ibdev->ib_dev.alloc_mw = mlx4_ib_alloc_mw;
Shani Michaelib4253882013-02-06 16:19:16 +00002722 ibdev->ib_dev.dealloc_mw = mlx4_ib_dealloc_mw;
2723
2724 ibdev->ib_dev.uverbs_cmd_mask |=
2725 (1ull << IB_USER_VERBS_CMD_ALLOC_MW) |
2726 (1ull << IB_USER_VERBS_CMD_DEALLOC_MW);
2727 }
2728
Sean Hefty012a8ff2011-06-02 09:01:33 -07002729 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) {
2730 ibdev->ib_dev.alloc_xrcd = mlx4_ib_alloc_xrcd;
2731 ibdev->ib_dev.dealloc_xrcd = mlx4_ib_dealloc_xrcd;
2732 ibdev->ib_dev.uverbs_cmd_mask |=
2733 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
2734 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
2735 }
2736
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002737 if (check_flow_steering_support(dev)) {
Matan Barak0a9b7d52013-11-07 15:25:15 +02002738 ibdev->steering_support = MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002739 ibdev->ib_dev.create_flow = mlx4_ib_create_flow;
2740 ibdev->ib_dev.destroy_flow = mlx4_ib_destroy_flow;
2741
Yann Droneaudf21519b2013-11-06 23:21:49 +01002742 ibdev->ib_dev.uverbs_ex_cmd_mask |=
2743 (1ull << IB_USER_VERBS_EX_CMD_CREATE_FLOW) |
2744 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_FLOW);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002745 }
2746
Matan Barak4b664c42015-06-11 16:35:27 +03002747 ibdev->ib_dev.uverbs_ex_cmd_mask |=
2748 (1ull << IB_USER_VERBS_EX_CMD_QUERY_DEVICE) |
Eran Ben Elishafbfb6622015-10-15 14:44:42 +03002749 (1ull << IB_USER_VERBS_EX_CMD_CREATE_CQ) |
2750 (1ull << IB_USER_VERBS_EX_CMD_CREATE_QP);
Matan Barak4b664c42015-06-11 16:35:27 +03002751
Shlomo Pongratze605b742012-04-29 17:04:27 +03002752 mlx4_ib_alloc_eqs(dev, ibdev);
2753
Eli Cohenfa417f72010-10-24 21:08:52 -07002754 spin_lock_init(&iboe->lock);
2755
Roland Dreier225c7b12007-05-08 18:00:38 -07002756 if (init_node_data(ibdev))
2757 goto err_map;
Jack Morgensteinfd10ed82016-09-12 19:16:21 +03002758 mlx4_init_sl2vl_tbl(ibdev);
Roland Dreier225c7b12007-05-08 18:00:38 -07002759
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03002760 for (i = 0; i < ibdev->num_ports; ++i) {
2761 mutex_init(&ibdev->counters_table[i].mutex);
2762 INIT_LIST_HEAD(&ibdev->counters_table[i].counters_list);
2763 }
2764
Moni Shouaa5750092015-02-03 16:48:37 +02002765 num_req_counters = mlx4_is_bonded(dev) ? 1 : ibdev->num_ports;
2766 for (i = 0; i < num_req_counters; ++i) {
Matan Barak9433c182014-05-15 15:29:28 +03002767 mutex_init(&ibdev->qp1_proxy_lock[i]);
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002768 allocated = 0;
Or Gerlitzcfcde112011-06-15 14:49:57 +00002769 if (mlx4_ib_port_link_layer(&ibdev->ib_dev, i + 1) ==
2770 IB_LINK_LAYER_ETHERNET) {
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002771 err = mlx4_counter_alloc(ibdev->dev, &counter_index);
2772 /* if failed to allocate a new counter, use default */
Or Gerlitzcfcde112011-06-15 14:49:57 +00002773 if (err)
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002774 counter_index =
2775 mlx4_get_default_counter_index(dev,
2776 i + 1);
2777 else
2778 allocated = 1;
2779 } else { /* IB_LINK_LAYER_INFINIBAND use the default counter */
2780 counter_index = mlx4_get_default_counter_index(dev,
2781 i + 1);
Dan Carpenter3839d8a2014-03-28 11:21:39 +03002782 }
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03002783 new_counter_index = kmalloc(sizeof(*new_counter_index),
2784 GFP_KERNEL);
2785 if (!new_counter_index) {
2786 if (allocated)
2787 mlx4_counter_free(ibdev->dev, counter_index);
2788 goto err_counter;
2789 }
2790 new_counter_index->index = counter_index;
2791 new_counter_index->allocated = allocated;
2792 list_add_tail(&new_counter_index->list,
2793 &ibdev->counters_table[i].counters_list);
2794 ibdev->counters_table[i].default_counter = counter_index;
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002795 pr_info("counter index %d for port %d allocated %d\n",
2796 counter_index, i + 1, allocated);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002797 }
Moni Shouaa5750092015-02-03 16:48:37 +02002798 if (mlx4_is_bonded(dev))
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002799 for (i = 1; i < ibdev->num_ports ; ++i) {
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03002800 new_counter_index =
2801 kmalloc(sizeof(struct counter_index),
2802 GFP_KERNEL);
2803 if (!new_counter_index)
2804 goto err_counter;
2805 new_counter_index->index = counter_index;
2806 new_counter_index->allocated = 0;
2807 list_add_tail(&new_counter_index->list,
2808 &ibdev->counters_table[i].counters_list);
2809 ibdev->counters_table[i].default_counter =
2810 counter_index;
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002811 }
Or Gerlitzcfcde112011-06-15 14:49:57 +00002812
Matan Barak41966702014-02-02 17:06:47 +02002813 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
2814 ib_num_ports++;
2815
Roland Dreier225c7b12007-05-08 18:00:38 -07002816 spin_lock_init(&ibdev->sm_lock);
2817 mutex_init(&ibdev->cap_mask_mutex);
Yishai Hadas35f05da2015-02-08 11:49:34 +02002818 INIT_LIST_HEAD(&ibdev->qp_list);
2819 spin_lock_init(&ibdev->reset_flow_resource_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07002820
Matan Barak41966702014-02-02 17:06:47 +02002821 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED &&
2822 ib_num_ports) {
Matan Barakc1c98502013-11-07 15:25:17 +02002823 ibdev->steer_qpn_count = MLX4_IB_UC_MAX_NUM_QPS;
2824 err = mlx4_qp_reserve_range(dev, ibdev->steer_qpn_count,
2825 MLX4_IB_UC_STEER_QPN_ALIGN,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02002826 &ibdev->steer_qpn_base, 0);
Matan Barakc1c98502013-11-07 15:25:17 +02002827 if (err)
2828 goto err_counter;
2829
2830 ibdev->ib_uc_qpns_bitmap =
2831 kmalloc(BITS_TO_LONGS(ibdev->steer_qpn_count) *
2832 sizeof(long),
2833 GFP_KERNEL);
2834 if (!ibdev->ib_uc_qpns_bitmap) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002835 dev_err(&dev->persist->pdev->dev,
2836 "bit map alloc failed\n");
Matan Barakc1c98502013-11-07 15:25:17 +02002837 goto err_steer_qp_release;
2838 }
2839
Eran Ben Elisha661600f2016-11-10 11:31:00 +02002840 if (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DMFS_IPOIB) {
2841 bitmap_zero(ibdev->ib_uc_qpns_bitmap,
2842 ibdev->steer_qpn_count);
2843 err = mlx4_FLOW_STEERING_IB_UC_QP_RANGE(
2844 dev, ibdev->steer_qpn_base,
2845 ibdev->steer_qpn_base +
2846 ibdev->steer_qpn_count - 1);
2847 if (err)
2848 goto err_steer_free_bitmap;
2849 } else {
2850 bitmap_fill(ibdev->ib_uc_qpns_bitmap,
2851 ibdev->steer_qpn_count);
2852 }
Matan Barakc1c98502013-11-07 15:25:17 +02002853 }
2854
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002855 for (j = 1; j <= ibdev->dev->caps.num_ports; j++)
2856 atomic64_set(&iboe->mac[j - 1], ibdev->dev->caps.def_mac[j]);
2857
Mark Bloch3f85f2a2016-07-19 20:54:58 +03002858 if (mlx4_ib_alloc_diag_counters(ibdev))
Matan Barakc1c98502013-11-07 15:25:17 +02002859 goto err_steer_free_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -07002860
Mark Bloch3f85f2a2016-07-19 20:54:58 +03002861 if (ib_register_device(&ibdev->ib_dev, NULL))
2862 goto err_diag_counters;
2863
Roland Dreier225c7b12007-05-08 18:00:38 -07002864 if (mlx4_ib_mad_init(ibdev))
2865 goto err_reg;
2866
Jack Morgensteinfc065732012-08-03 08:40:42 +00002867 if (mlx4_ib_init_sriov(ibdev))
2868 goto err_mad;
2869
Moni Shoua71a39bb2016-01-14 17:50:40 +02002870 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE ||
2871 dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ROCE_V1_V2) {
Moni Shouad487ee72013-12-12 18:03:13 +02002872 if (!iboe->nb.notifier_call) {
2873 iboe->nb.notifier_call = mlx4_ib_netdev_event;
2874 err = register_netdevice_notifier(&iboe->nb);
2875 if (err) {
2876 iboe->nb.notifier_call = NULL;
2877 goto err_notif;
2878 }
2879 }
Moni Shoua71a39bb2016-01-14 17:50:40 +02002880 if (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ROCE_V1_V2) {
2881 err = mlx4_config_roce_v2_port(dev, ROCE_V2_UDP_DPORT);
2882 if (err) {
2883 goto err_notif;
2884 }
2885 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002886 }
2887
Jack Morgenstein035b1032012-05-10 23:28:09 +03002888 for (j = 0; j < ARRAY_SIZE(mlx4_class_attributes); ++j) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002889 if (device_create_file(&ibdev->ib_dev.dev,
Jack Morgenstein035b1032012-05-10 23:28:09 +03002890 mlx4_class_attributes[j]))
Eli Cohenfa417f72010-10-24 21:08:52 -07002891 goto err_notif;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002892 }
2893
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002894 ibdev->ib_active = true;
Jiri Pirko09d4d082016-02-26 17:32:24 +01002895 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
2896 devlink_port_type_ib_set(mlx4_get_devlink_port(dev, i),
2897 &ibdev->ib_dev);
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002898
Jack Morgenstein54679e12012-08-03 08:40:43 +00002899 if (mlx4_is_mfunc(ibdev->dev))
2900 init_pkeys(ibdev);
2901
Jack Morgenstein3806d082012-08-03 08:40:58 +00002902 /* create paravirt contexts for any VFs which are active */
2903 if (mlx4_is_master(ibdev->dev)) {
2904 for (j = 0; j < MLX4_MFUNC_MAX; j++) {
2905 if (j == mlx4_master_func_num(ibdev->dev))
2906 continue;
2907 if (mlx4_is_slave_active(ibdev->dev, j))
2908 do_slave_init(ibdev, j, 1);
2909 }
2910 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002911 return ibdev;
2912
Eli Cohenfa417f72010-10-24 21:08:52 -07002913err_notif:
Moni Shouad487ee72013-12-12 18:03:13 +02002914 if (ibdev->iboe.nb.notifier_call) {
2915 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
2916 pr_warn("failure unregistering notifier\n");
2917 ibdev->iboe.nb.notifier_call = NULL;
2918 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002919 flush_workqueue(wq);
2920
Jack Morgensteinfc065732012-08-03 08:40:42 +00002921 mlx4_ib_close_sriov(ibdev);
2922
2923err_mad:
2924 mlx4_ib_mad_cleanup(ibdev);
2925
Roland Dreier225c7b12007-05-08 18:00:38 -07002926err_reg:
2927 ib_unregister_device(&ibdev->ib_dev);
2928
Mark Bloch3f85f2a2016-07-19 20:54:58 +03002929err_diag_counters:
2930 mlx4_ib_diag_cleanup(ibdev);
2931
Matan Barakc1c98502013-11-07 15:25:17 +02002932err_steer_free_bitmap:
2933 kfree(ibdev->ib_uc_qpns_bitmap);
2934
2935err_steer_qp_release:
Jack Morgensteinee3d9892018-01-12 07:58:40 +02002936 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
2937 ibdev->steer_qpn_count);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002938err_counter:
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03002939 for (i = 0; i < ibdev->num_ports; ++i)
2940 mlx4_ib_delete_counters_table(ibdev, &ibdev->counters_table[i]);
2941
Roland Dreier225c7b12007-05-08 18:00:38 -07002942err_map:
Jack Morgenstein9ae6b332017-03-21 12:57:05 +02002943 mlx4_ib_free_eqs(dev, ibdev);
Roland Dreier225c7b12007-05-08 18:00:38 -07002944 iounmap(ibdev->uar_map);
2945
2946err_uar:
2947 mlx4_uar_free(dev, &ibdev->priv_uar);
2948
2949err_pd:
2950 mlx4_pd_free(dev, ibdev->priv_pdn);
2951
2952err_dealloc:
2953 ib_dealloc_device(&ibdev->ib_dev);
2954
2955 return NULL;
2956}
2957
Matan Barakc1c98502013-11-07 15:25:17 +02002958int mlx4_ib_steer_qp_alloc(struct mlx4_ib_dev *dev, int count, int *qpn)
2959{
2960 int offset;
2961
2962 WARN_ON(!dev->ib_uc_qpns_bitmap);
2963
2964 offset = bitmap_find_free_region(dev->ib_uc_qpns_bitmap,
2965 dev->steer_qpn_count,
2966 get_count_order(count));
2967 if (offset < 0)
2968 return offset;
2969
2970 *qpn = dev->steer_qpn_base + offset;
2971 return 0;
2972}
2973
2974void mlx4_ib_steer_qp_free(struct mlx4_ib_dev *dev, u32 qpn, int count)
2975{
2976 if (!qpn ||
2977 dev->steering_support != MLX4_STEERING_MODE_DEVICE_MANAGED)
2978 return;
2979
2980 BUG_ON(qpn < dev->steer_qpn_base);
2981
2982 bitmap_release_region(dev->ib_uc_qpns_bitmap,
2983 qpn - dev->steer_qpn_base,
2984 get_count_order(count));
2985}
2986
2987int mlx4_ib_steer_qp_reg(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
2988 int is_attach)
2989{
2990 int err;
2991 size_t flow_size;
2992 struct ib_flow_attr *flow = NULL;
2993 struct ib_flow_spec_ib *ib_spec;
2994
2995 if (is_attach) {
2996 flow_size = sizeof(struct ib_flow_attr) +
2997 sizeof(struct ib_flow_spec_ib);
2998 flow = kzalloc(flow_size, GFP_KERNEL);
2999 if (!flow)
3000 return -ENOMEM;
3001 flow->port = mqp->port;
3002 flow->num_of_specs = 1;
3003 flow->size = flow_size;
3004 ib_spec = (struct ib_flow_spec_ib *)(flow + 1);
3005 ib_spec->type = IB_FLOW_SPEC_IB;
3006 ib_spec->size = sizeof(struct ib_flow_spec_ib);
3007 /* Add an empty rule for IB L2 */
3008 memset(&ib_spec->mask, 0, sizeof(ib_spec->mask));
3009
3010 err = __mlx4_ib_create_flow(&mqp->ibqp, flow,
3011 IB_FLOW_DOMAIN_NIC,
3012 MLX4_FS_REGULAR,
3013 &mqp->reg_id);
3014 } else {
3015 err = __mlx4_ib_destroy_flow(mdev->dev, mqp->reg_id);
3016 }
3017 kfree(flow);
3018 return err;
3019}
3020
Roland Dreier225c7b12007-05-08 18:00:38 -07003021static void mlx4_ib_remove(struct mlx4_dev *dev, void *ibdev_ptr)
3022{
3023 struct mlx4_ib_dev *ibdev = ibdev_ptr;
3024 int p;
Jiri Pirko09d4d082016-02-26 17:32:24 +01003025 int i;
Roland Dreier225c7b12007-05-08 18:00:38 -07003026
Jiri Pirko09d4d082016-02-26 17:32:24 +01003027 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
3028 devlink_port_type_clear(mlx4_get_devlink_port(dev, i));
Moni Shoua4bf97152014-08-21 14:28:42 +03003029 ibdev->ib_active = false;
3030 flush_workqueue(wq);
3031
Jack Morgensteinfc065732012-08-03 08:40:42 +00003032 mlx4_ib_close_sriov(ibdev);
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07003033 mlx4_ib_mad_cleanup(ibdev);
3034 ib_unregister_device(&ibdev->ib_dev);
Mark Bloch3f85f2a2016-07-19 20:54:58 +03003035 mlx4_ib_diag_cleanup(ibdev);
Eli Cohenfa417f72010-10-24 21:08:52 -07003036 if (ibdev->iboe.nb.notifier_call) {
3037 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03003038 pr_warn("failure unregistering notifier\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07003039 ibdev->iboe.nb.notifier_call = NULL;
3040 }
Matan Barakc1c98502013-11-07 15:25:17 +02003041
Jack Morgensteinee3d9892018-01-12 07:58:40 +02003042 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
3043 ibdev->steer_qpn_count);
3044 kfree(ibdev->ib_uc_qpns_bitmap);
Matan Barakc1c98502013-11-07 15:25:17 +02003045
Eli Cohenfa417f72010-10-24 21:08:52 -07003046 iounmap(ibdev->uar_map);
Or Gerlitzcfcde112011-06-15 14:49:57 +00003047 for (p = 0; p < ibdev->num_ports; ++p)
Eran Ben Elisha3ba8e312015-10-15 14:44:40 +03003048 mlx4_ib_delete_counters_table(ibdev, &ibdev->counters_table[p]);
3049
Eli Cohenfa417f72010-10-24 21:08:52 -07003050 mlx4_foreach_port(p, dev, MLX4_PORT_TYPE_IB)
Roland Dreier225c7b12007-05-08 18:00:38 -07003051 mlx4_CLOSE_PORT(dev, p);
3052
Shlomo Pongratze605b742012-04-29 17:04:27 +03003053 mlx4_ib_free_eqs(dev, ibdev);
3054
Roland Dreier225c7b12007-05-08 18:00:38 -07003055 mlx4_uar_free(dev, &ibdev->priv_uar);
3056 mlx4_pd_free(dev, ibdev->priv_pdn);
3057 ib_dealloc_device(&ibdev->ib_dev);
3058}
3059
Jack Morgensteinfc065732012-08-03 08:40:42 +00003060static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init)
3061{
3062 struct mlx4_ib_demux_work **dm = NULL;
3063 struct mlx4_dev *dev = ibdev->dev;
3064 int i;
3065 unsigned long flags;
Matan Barak449fc482014-03-19 18:11:52 +02003066 struct mlx4_active_ports actv_ports;
3067 unsigned int ports;
3068 unsigned int first_port;
Jack Morgensteinfc065732012-08-03 08:40:42 +00003069
3070 if (!mlx4_is_master(dev))
3071 return;
3072
Matan Barak449fc482014-03-19 18:11:52 +02003073 actv_ports = mlx4_get_active_ports(dev, slave);
3074 ports = bitmap_weight(actv_ports.ports, dev->caps.num_ports);
3075 first_port = find_first_bit(actv_ports.ports, dev->caps.num_ports);
3076
3077 dm = kcalloc(ports, sizeof(*dm), GFP_ATOMIC);
Jack Morgensteinfc065732012-08-03 08:40:42 +00003078 if (!dm) {
3079 pr_err("failed to allocate memory for tunneling qp update\n");
Maninder Singha39a98f2015-07-08 09:43:35 +05303080 return;
Jack Morgensteinfc065732012-08-03 08:40:42 +00003081 }
3082
Matan Barak449fc482014-03-19 18:11:52 +02003083 for (i = 0; i < ports; i++) {
Jack Morgensteinfc065732012-08-03 08:40:42 +00003084 dm[i] = kmalloc(sizeof (struct mlx4_ib_demux_work), GFP_ATOMIC);
3085 if (!dm[i]) {
3086 pr_err("failed to allocate memory for tunneling qp update work struct\n");
Maninder Singha39a98f2015-07-08 09:43:35 +05303087 while (--i >= 0)
3088 kfree(dm[i]);
Jack Morgensteinfc065732012-08-03 08:40:42 +00003089 goto out;
3090 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00003091 INIT_WORK(&dm[i]->work, mlx4_ib_tunnels_update_work);
Matan Barak449fc482014-03-19 18:11:52 +02003092 dm[i]->port = first_port + i + 1;
Jack Morgensteinfc065732012-08-03 08:40:42 +00003093 dm[i]->slave = slave;
3094 dm[i]->do_init = do_init;
3095 dm[i]->dev = ibdev;
Doug Ledfordd9a047a2015-07-09 10:21:08 -04003096 }
3097 /* initialize or tear down tunnel QPs for the slave */
3098 spin_lock_irqsave(&ibdev->sriov.going_down_lock, flags);
3099 if (!ibdev->sriov.is_going_down) {
3100 for (i = 0; i < ports; i++)
Jack Morgensteinfc065732012-08-03 08:40:42 +00003101 queue_work(ibdev->sriov.demux[i].ud_wq, &dm[i]->work);
3102 spin_unlock_irqrestore(&ibdev->sriov.going_down_lock, flags);
Doug Ledfordd9a047a2015-07-09 10:21:08 -04003103 } else {
3104 spin_unlock_irqrestore(&ibdev->sriov.going_down_lock, flags);
3105 for (i = 0; i < ports; i++)
3106 kfree(dm[i]);
Jack Morgensteinfc065732012-08-03 08:40:42 +00003107 }
3108out:
Syam Sidhardhanc89d1272013-02-24 23:20:05 +00003109 kfree(dm);
Jack Morgensteinfc065732012-08-03 08:40:42 +00003110 return;
3111}
3112
Yishai Hadas35f05da2015-02-08 11:49:34 +02003113static void mlx4_ib_handle_catas_error(struct mlx4_ib_dev *ibdev)
3114{
3115 struct mlx4_ib_qp *mqp;
3116 unsigned long flags_qp;
3117 unsigned long flags_cq;
3118 struct mlx4_ib_cq *send_mcq, *recv_mcq;
3119 struct list_head cq_notify_list;
3120 struct mlx4_cq *mcq;
3121 unsigned long flags;
3122
3123 pr_warn("mlx4_ib_handle_catas_error was started\n");
3124 INIT_LIST_HEAD(&cq_notify_list);
3125
3126 /* Go over qp list reside on that ibdev, sync with create/destroy qp.*/
3127 spin_lock_irqsave(&ibdev->reset_flow_resource_lock, flags);
3128
3129 list_for_each_entry(mqp, &ibdev->qp_list, qps_list) {
3130 spin_lock_irqsave(&mqp->sq.lock, flags_qp);
3131 if (mqp->sq.tail != mqp->sq.head) {
3132 send_mcq = to_mcq(mqp->ibqp.send_cq);
3133 spin_lock_irqsave(&send_mcq->lock, flags_cq);
3134 if (send_mcq->mcq.comp &&
3135 mqp->ibqp.send_cq->comp_handler) {
3136 if (!send_mcq->mcq.reset_notify_added) {
3137 send_mcq->mcq.reset_notify_added = 1;
3138 list_add_tail(&send_mcq->mcq.reset_notify,
3139 &cq_notify_list);
3140 }
3141 }
3142 spin_unlock_irqrestore(&send_mcq->lock, flags_cq);
3143 }
3144 spin_unlock_irqrestore(&mqp->sq.lock, flags_qp);
3145 /* Now, handle the QP's receive queue */
3146 spin_lock_irqsave(&mqp->rq.lock, flags_qp);
3147 /* no handling is needed for SRQ */
3148 if (!mqp->ibqp.srq) {
3149 if (mqp->rq.tail != mqp->rq.head) {
3150 recv_mcq = to_mcq(mqp->ibqp.recv_cq);
3151 spin_lock_irqsave(&recv_mcq->lock, flags_cq);
3152 if (recv_mcq->mcq.comp &&
3153 mqp->ibqp.recv_cq->comp_handler) {
3154 if (!recv_mcq->mcq.reset_notify_added) {
3155 recv_mcq->mcq.reset_notify_added = 1;
3156 list_add_tail(&recv_mcq->mcq.reset_notify,
3157 &cq_notify_list);
3158 }
3159 }
3160 spin_unlock_irqrestore(&recv_mcq->lock,
3161 flags_cq);
3162 }
3163 }
3164 spin_unlock_irqrestore(&mqp->rq.lock, flags_qp);
3165 }
3166
3167 list_for_each_entry(mcq, &cq_notify_list, reset_notify) {
3168 mcq->comp(mcq);
3169 }
3170 spin_unlock_irqrestore(&ibdev->reset_flow_resource_lock, flags);
3171 pr_warn("mlx4_ib_handle_catas_error ended\n");
3172}
3173
Moni Shouaa5750092015-02-03 16:48:37 +02003174static void handle_bonded_port_state_event(struct work_struct *work)
3175{
3176 struct ib_event_work *ew =
3177 container_of(work, struct ib_event_work, work);
3178 struct mlx4_ib_dev *ibdev = ew->ib_dev;
3179 enum ib_port_state bonded_port_state = IB_PORT_NOP;
3180 int i;
3181 struct ib_event ibev;
3182
3183 kfree(ew);
3184 spin_lock_bh(&ibdev->iboe.lock);
3185 for (i = 0; i < MLX4_MAX_PORTS; ++i) {
3186 struct net_device *curr_netdev = ibdev->iboe.netdevs[i];
Moni Shoua217e8b12015-03-18 16:51:35 +02003187 enum ib_port_state curr_port_state;
Moni Shouaa5750092015-02-03 16:48:37 +02003188
Moni Shoua217e8b12015-03-18 16:51:35 +02003189 if (!curr_netdev)
3190 continue;
3191
3192 curr_port_state =
Moni Shouaa5750092015-02-03 16:48:37 +02003193 (netif_running(curr_netdev) &&
3194 netif_carrier_ok(curr_netdev)) ?
3195 IB_PORT_ACTIVE : IB_PORT_DOWN;
3196
3197 bonded_port_state = (bonded_port_state != IB_PORT_ACTIVE) ?
3198 curr_port_state : IB_PORT_ACTIVE;
3199 }
3200 spin_unlock_bh(&ibdev->iboe.lock);
3201
3202 ibev.device = &ibdev->ib_dev;
3203 ibev.element.port_num = 1;
3204 ibev.event = (bonded_port_state == IB_PORT_ACTIVE) ?
3205 IB_EVENT_PORT_ACTIVE : IB_EVENT_PORT_ERR;
3206
3207 ib_dispatch_event(&ibev);
3208}
3209
Jack Morgensteinfd10ed82016-09-12 19:16:21 +03003210void mlx4_ib_sl2vl_update(struct mlx4_ib_dev *mdev, int port)
3211{
3212 u64 sl2vl;
3213 int err;
3214
3215 err = mlx4_ib_query_sl2vl(&mdev->ib_dev, port, &sl2vl);
3216 if (err) {
3217 pr_err("Unable to get current sl to vl mapping for port %d. Using all zeroes (%d)\n",
3218 port, err);
3219 sl2vl = 0;
3220 }
3221 atomic64_set(&mdev->sl2vl[port - 1], sl2vl);
3222}
3223
3224static void ib_sl2vl_update_work(struct work_struct *work)
3225{
3226 struct ib_event_work *ew = container_of(work, struct ib_event_work, work);
3227 struct mlx4_ib_dev *mdev = ew->ib_dev;
3228 int port = ew->port;
3229
3230 mlx4_ib_sl2vl_update(mdev, port);
3231
3232 kfree(ew);
3233}
3234
3235void mlx4_sched_ib_sl2vl_update_work(struct mlx4_ib_dev *ibdev,
3236 int port)
3237{
3238 struct ib_event_work *ew;
3239
3240 ew = kmalloc(sizeof(*ew), GFP_ATOMIC);
3241 if (ew) {
3242 INIT_WORK(&ew->work, ib_sl2vl_update_work);
3243 ew->port = port;
3244 ew->ib_dev = ibdev;
3245 queue_work(wq, &ew->work);
3246 } else {
3247 pr_err("failed to allocate memory for sl2vl update work\n");
3248 }
3249}
3250
Roland Dreier225c7b12007-05-08 18:00:38 -07003251static void mlx4_ib_event(struct mlx4_dev *dev, void *ibdev_ptr,
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003252 enum mlx4_dev_event event, unsigned long param)
Roland Dreier225c7b12007-05-08 18:00:38 -07003253{
3254 struct ib_event ibev;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07003255 struct mlx4_ib_dev *ibdev = to_mdev((struct ib_device *) ibdev_ptr);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003256 struct mlx4_eqe *eqe = NULL;
3257 struct ib_event_work *ew;
Jack Morgensteinfc065732012-08-03 08:40:42 +00003258 int p = 0;
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003259
Moni Shouaa5750092015-02-03 16:48:37 +02003260 if (mlx4_is_bonded(dev) &&
3261 ((event == MLX4_DEV_EVENT_PORT_UP) ||
3262 (event == MLX4_DEV_EVENT_PORT_DOWN))) {
3263 ew = kmalloc(sizeof(*ew), GFP_ATOMIC);
3264 if (!ew)
3265 return;
3266 INIT_WORK(&ew->work, handle_bonded_port_state_event);
3267 ew->ib_dev = ibdev;
3268 queue_work(wq, &ew->work);
3269 return;
3270 }
3271
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003272 if (event == MLX4_DEV_EVENT_PORT_MGMT_CHANGE)
3273 eqe = (struct mlx4_eqe *)param;
3274 else
Jack Morgensteinfc065732012-08-03 08:40:42 +00003275 p = (int) param;
Roland Dreier225c7b12007-05-08 18:00:38 -07003276
3277 switch (event) {
Roland Dreier37608ee2008-04-16 21:01:08 -07003278 case MLX4_DEV_EVENT_PORT_UP:
Jack Morgensteinfc065732012-08-03 08:40:42 +00003279 if (p > ibdev->num_ports)
3280 return;
Jack Morgensteinfd10ed82016-09-12 19:16:21 +03003281 if (!mlx4_is_slave(dev) &&
Jack Morgensteina0c64a12012-08-03 08:40:49 +00003282 rdma_port_get_link_layer(&ibdev->ib_dev, p) ==
3283 IB_LINK_LAYER_INFINIBAND) {
Jack Morgensteinfd10ed82016-09-12 19:16:21 +03003284 if (mlx4_is_master(dev))
3285 mlx4_ib_invalidate_all_guid_record(ibdev, p);
3286 if (ibdev->dev->flags & MLX4_FLAG_SECURE_HOST &&
3287 !(ibdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_SL_TO_VL_CHANGE_EVENT))
3288 mlx4_sched_ib_sl2vl_update_work(ibdev, p);
Jack Morgensteina0c64a12012-08-03 08:40:49 +00003289 }
Roland Dreier37608ee2008-04-16 21:01:08 -07003290 ibev.event = IB_EVENT_PORT_ACTIVE;
Roland Dreier225c7b12007-05-08 18:00:38 -07003291 break;
3292
Roland Dreier37608ee2008-04-16 21:01:08 -07003293 case MLX4_DEV_EVENT_PORT_DOWN:
Jack Morgensteinfc065732012-08-03 08:40:42 +00003294 if (p > ibdev->num_ports)
3295 return;
Roland Dreier37608ee2008-04-16 21:01:08 -07003296 ibev.event = IB_EVENT_PORT_ERR;
3297 break;
3298
3299 case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07003300 ibdev->ib_active = false;
Roland Dreier225c7b12007-05-08 18:00:38 -07003301 ibev.event = IB_EVENT_DEVICE_FATAL;
Yishai Hadas35f05da2015-02-08 11:49:34 +02003302 mlx4_ib_handle_catas_error(ibdev);
Roland Dreier225c7b12007-05-08 18:00:38 -07003303 break;
3304
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003305 case MLX4_DEV_EVENT_PORT_MGMT_CHANGE:
3306 ew = kmalloc(sizeof *ew, GFP_ATOMIC);
3307 if (!ew) {
3308 pr_err("failed to allocate memory for events work\n");
3309 break;
3310 }
3311
3312 INIT_WORK(&ew->work, handle_port_mgmt_change_event);
3313 memcpy(&ew->ib_eqe, eqe, sizeof *eqe);
3314 ew->ib_dev = ibdev;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00003315 /* need to queue only for port owner, which uses GEN_EQE */
3316 if (mlx4_is_master(dev))
3317 queue_work(wq, &ew->work);
3318 else
3319 handle_port_mgmt_change_event(&ew->work);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03003320 return;
3321
Jack Morgensteinfc065732012-08-03 08:40:42 +00003322 case MLX4_DEV_EVENT_SLAVE_INIT:
3323 /* here, p is the slave id */
3324 do_slave_init(ibdev, p, 1);
Yishai Hadasee59fa02015-03-03 17:28:49 +02003325 if (mlx4_is_master(dev)) {
3326 int i;
3327
3328 for (i = 1; i <= ibdev->num_ports; i++) {
3329 if (rdma_port_get_link_layer(&ibdev->ib_dev, i)
3330 == IB_LINK_LAYER_INFINIBAND)
3331 mlx4_ib_slave_alias_guid_event(ibdev,
3332 p, i,
3333 1);
3334 }
3335 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00003336 return;
3337
3338 case MLX4_DEV_EVENT_SLAVE_SHUTDOWN:
Yishai Hadasee59fa02015-03-03 17:28:49 +02003339 if (mlx4_is_master(dev)) {
3340 int i;
3341
3342 for (i = 1; i <= ibdev->num_ports; i++) {
3343 if (rdma_port_get_link_layer(&ibdev->ib_dev, i)
3344 == IB_LINK_LAYER_INFINIBAND)
3345 mlx4_ib_slave_alias_guid_event(ibdev,
3346 p, i,
3347 0);
3348 }
3349 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00003350 /* here, p is the slave id */
3351 do_slave_init(ibdev, p, 0);
3352 return;
3353
Roland Dreier225c7b12007-05-08 18:00:38 -07003354 default:
3355 return;
3356 }
3357
3358 ibev.device = ibdev_ptr;
Moni Shouaa5750092015-02-03 16:48:37 +02003359 ibev.element.port_num = mlx4_is_bonded(ibdev->dev) ? 1 : (u8)p;
Roland Dreier225c7b12007-05-08 18:00:38 -07003360
3361 ib_dispatch_event(&ibev);
3362}
3363
3364static struct mlx4_interface mlx4_ib_interface = {
Eli Cohenfa417f72010-10-24 21:08:52 -07003365 .add = mlx4_ib_add,
3366 .remove = mlx4_ib_remove,
3367 .event = mlx4_ib_event,
Moni Shouaa5750092015-02-03 16:48:37 +02003368 .protocol = MLX4_PROT_IB_IPV6,
3369 .flags = MLX4_INTFF_BONDING
Roland Dreier225c7b12007-05-08 18:00:38 -07003370};
3371
3372static int __init mlx4_ib_init(void)
3373{
Eli Cohenfa417f72010-10-24 21:08:52 -07003374 int err;
3375
Bhaktipriya Shridhar41cd3942016-08-15 23:42:48 +05303376 wq = alloc_ordered_workqueue("mlx4_ib", WQ_MEM_RECLAIM);
Eli Cohenfa417f72010-10-24 21:08:52 -07003377 if (!wq)
3378 return -ENOMEM;
3379
Oren Duerb9c5d6a2012-08-03 08:40:46 +00003380 err = mlx4_ib_mcg_init();
3381 if (err)
3382 goto clean_wq;
3383
Eli Cohenfa417f72010-10-24 21:08:52 -07003384 err = mlx4_register_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00003385 if (err)
3386 goto clean_mcg;
Eli Cohenfa417f72010-10-24 21:08:52 -07003387
3388 return 0;
Oren Duerb9c5d6a2012-08-03 08:40:46 +00003389
3390clean_mcg:
3391 mlx4_ib_mcg_destroy();
3392
3393clean_wq:
3394 destroy_workqueue(wq);
3395 return err;
Roland Dreier225c7b12007-05-08 18:00:38 -07003396}
3397
3398static void __exit mlx4_ib_cleanup(void)
3399{
3400 mlx4_unregister_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00003401 mlx4_ib_mcg_destroy();
Eli Cohenfa417f72010-10-24 21:08:52 -07003402 destroy_workqueue(wq);
Roland Dreier225c7b12007-05-08 18:00:38 -07003403}
3404
3405module_init(mlx4_ib_init);
3406module_exit(mlx4_ib_cleanup);