blob: 1437ed5d5a8f84c17ca78ed0699aaebc893c3ca1 [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>
Roland Dreier225c7b12007-05-08 18:00:38 -070044
45#include <rdma/ib_smi.h>
46#include <rdma/ib_user_verbs.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070047#include <rdma/ib_addr.h>
Moni Shouae26be1b2015-07-30 18:33:29 +030048#include <rdma/ib_cache.h>
49
50#include <net/bonding.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070051
52#include <linux/mlx4/driver.h>
53#include <linux/mlx4/cmd.h>
Matan Barak9433c182014-05-15 15:29:28 +030054#include <linux/mlx4/qp.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070055
56#include "mlx4_ib.h"
57#include "user.h"
58
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +030059#define DRV_NAME MLX4_IB_DRV_NAME
Amir Vadai169a1d82014-02-19 17:47:31 +020060#define DRV_VERSION "2.2-1"
61#define DRV_RELDATE "Feb 2014"
Roland Dreier225c7b12007-05-08 18:00:38 -070062
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030063#define MLX4_IB_FLOW_MAX_PRIO 0xFFF
Matan Baraka37a1a42013-11-07 15:25:16 +020064#define MLX4_IB_FLOW_QPN_MASK 0xFFFFFF
Markus Stockhausen50e2ec92014-08-13 14:07:30 +000065#define MLX4_IB_CARD_REV_A0 0xA0
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030066
Roland Dreier225c7b12007-05-08 18:00:38 -070067MODULE_AUTHOR("Roland Dreier");
68MODULE_DESCRIPTION("Mellanox ConnectX HCA InfiniBand driver");
69MODULE_LICENSE("Dual BSD/GPL");
70MODULE_VERSION(DRV_VERSION);
71
Yishai Hadas56c1d232015-02-12 09:49:43 +020072int mlx4_ib_sm_guid_assign = 0;
Jack Morgensteina0c64a12012-08-03 08:40:49 +000073module_param_named(sm_guid_assign, mlx4_ib_sm_guid_assign, int, 0444);
Yishai Hadas56c1d232015-02-12 09:49:43 +020074MODULE_PARM_DESC(sm_guid_assign, "Enable SM alias_GUID assignment if sm_guid_assign > 0 (Default: 0)");
Jack Morgensteina0c64a12012-08-03 08:40:49 +000075
Roland Dreier68f39482008-02-04 20:20:44 -080076static const char mlx4_ib_version[] =
Roland Dreier225c7b12007-05-08 18:00:38 -070077 DRV_NAME ": Mellanox ConnectX InfiniBand driver v"
78 DRV_VERSION " (" DRV_RELDATE ")\n";
79
Jack Morgenstein3806d082012-08-03 08:40:58 +000080static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init);
81
Eli Cohenfa417f72010-10-24 21:08:52 -070082static struct workqueue_struct *wq;
83
Roland Dreier225c7b12007-05-08 18:00:38 -070084static void init_query_mad(struct ib_smp *mad)
85{
86 mad->base_version = 1;
87 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
88 mad->class_version = 1;
89 mad->method = IB_MGMT_METHOD_GET;
90}
91
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030092static int check_flow_steering_support(struct mlx4_dev *dev)
93{
Matan Barak0a9b7d52013-11-07 15:25:15 +020094 int eth_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030095 int ib_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030096
Matan Barak0a9b7d52013-11-07 15:25:15 +020097 int dmfs = dev->caps.steering_mode == MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030098
Matan Barak0a9b7d52013-11-07 15:25:15 +020099 if (dmfs) {
100 int i;
101 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
102 eth_num_ports++;
103 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
104 ib_num_ports++;
105 dmfs &= (!ib_num_ports ||
106 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DMFS_IPOIB)) &&
107 (!eth_num_ports ||
108 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_FS_EN));
109 if (ib_num_ports && mlx4_is_mfunc(dev)) {
110 pr_warn("Device managed flow steering is unavailable for IB port in multifunction env.\n");
111 dmfs = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300112 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300113 }
Matan Barak0a9b7d52013-11-07 15:25:15 +0200114 return dmfs;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300115}
116
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300117static int num_ib_ports(struct mlx4_dev *dev)
118{
119 int ib_ports = 0;
120 int i;
121
122 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
123 ib_ports++;
124
125 return ib_ports;
126}
127
Moni Shouae26be1b2015-07-30 18:33:29 +0300128static struct net_device *mlx4_ib_get_netdev(struct ib_device *device, u8 port_num)
129{
130 struct mlx4_ib_dev *ibdev = to_mdev(device);
131 struct net_device *dev;
132
133 rcu_read_lock();
134 dev = mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port_num);
135
136 if (dev) {
137 if (mlx4_is_bonded(ibdev->dev)) {
138 struct net_device *upper = NULL;
139
140 upper = netdev_master_upper_dev_get_rcu(dev);
141 if (upper) {
142 struct net_device *active;
143
144 active = bond_option_active_slave_get_rcu(netdev_priv(upper));
145 if (active)
146 dev = active;
147 }
148 }
149 }
150 if (dev)
151 dev_hold(dev);
152
153 rcu_read_unlock();
154 return dev;
155}
156
157static int mlx4_ib_update_gids(struct gid_entry *gids,
158 struct mlx4_ib_dev *ibdev,
159 u8 port_num)
160{
161 struct mlx4_cmd_mailbox *mailbox;
162 int err;
163 struct mlx4_dev *dev = ibdev->dev;
164 int i;
165 union ib_gid *gid_tbl;
166
167 mailbox = mlx4_alloc_cmd_mailbox(dev);
168 if (IS_ERR(mailbox))
169 return -ENOMEM;
170
171 gid_tbl = mailbox->buf;
172
173 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i)
174 memcpy(&gid_tbl[i], &gids[i].gid, sizeof(union ib_gid));
175
176 err = mlx4_cmd(dev, mailbox->dma,
177 MLX4_SET_PORT_GID_TABLE << 8 | port_num,
178 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
179 MLX4_CMD_WRAPPED);
180 if (mlx4_is_bonded(dev))
181 err += mlx4_cmd(dev, mailbox->dma,
182 MLX4_SET_PORT_GID_TABLE << 8 | 2,
183 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
184 MLX4_CMD_WRAPPED);
185
186 mlx4_free_cmd_mailbox(dev, mailbox);
187 return err;
188}
189
190static int mlx4_ib_add_gid(struct ib_device *device,
191 u8 port_num,
192 unsigned int index,
193 const union ib_gid *gid,
194 const struct ib_gid_attr *attr,
195 void **context)
196{
197 struct mlx4_ib_dev *ibdev = to_mdev(device);
198 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
199 struct mlx4_port_gid_table *port_gid_table;
200 int free = -1, found = -1;
201 int ret = 0;
202 int hw_update = 0;
203 int i;
204 struct gid_entry *gids = NULL;
205
206 if (!rdma_cap_roce_gid_table(device, port_num))
207 return -EINVAL;
208
209 if (port_num > MLX4_MAX_PORTS)
210 return -EINVAL;
211
212 if (!context)
213 return -EINVAL;
214
215 port_gid_table = &iboe->gids[port_num - 1];
216 spin_lock_bh(&iboe->lock);
217 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i) {
218 if (!memcmp(&port_gid_table->gids[i].gid, gid, sizeof(*gid))) {
219 found = i;
220 break;
221 }
222 if (free < 0 && !memcmp(&port_gid_table->gids[i].gid, &zgid, sizeof(*gid)))
223 free = i; /* HW has space */
224 }
225
226 if (found < 0) {
227 if (free < 0) {
228 ret = -ENOSPC;
229 } else {
230 port_gid_table->gids[free].ctx = kmalloc(sizeof(*port_gid_table->gids[free].ctx), GFP_ATOMIC);
231 if (!port_gid_table->gids[free].ctx) {
232 ret = -ENOMEM;
233 } else {
234 *context = port_gid_table->gids[free].ctx;
235 memcpy(&port_gid_table->gids[free].gid, gid, sizeof(*gid));
236 port_gid_table->gids[free].ctx->real_index = free;
237 port_gid_table->gids[free].ctx->refcount = 1;
238 hw_update = 1;
239 }
240 }
241 } else {
242 struct gid_cache_context *ctx = port_gid_table->gids[found].ctx;
243 *context = ctx;
244 ctx->refcount++;
245 }
246 if (!ret && hw_update) {
247 gids = kmalloc(sizeof(*gids) * MLX4_MAX_PORT_GIDS, GFP_ATOMIC);
248 if (!gids) {
249 ret = -ENOMEM;
250 } else {
251 for (i = 0; i < MLX4_MAX_PORT_GIDS; i++)
252 memcpy(&gids[i].gid, &port_gid_table->gids[i].gid, sizeof(union ib_gid));
253 }
254 }
255 spin_unlock_bh(&iboe->lock);
256
257 if (!ret && hw_update) {
258 ret = mlx4_ib_update_gids(gids, ibdev, port_num);
259 kfree(gids);
260 }
261
262 return ret;
263}
264
265static int mlx4_ib_del_gid(struct ib_device *device,
266 u8 port_num,
267 unsigned int index,
268 void **context)
269{
270 struct gid_cache_context *ctx = *context;
271 struct mlx4_ib_dev *ibdev = to_mdev(device);
272 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
273 struct mlx4_port_gid_table *port_gid_table;
274 int ret = 0;
275 int hw_update = 0;
276 struct gid_entry *gids = NULL;
277
278 if (!rdma_cap_roce_gid_table(device, port_num))
279 return -EINVAL;
280
281 if (port_num > MLX4_MAX_PORTS)
282 return -EINVAL;
283
284 port_gid_table = &iboe->gids[port_num - 1];
285 spin_lock_bh(&iboe->lock);
286 if (ctx) {
287 ctx->refcount--;
288 if (!ctx->refcount) {
289 unsigned int real_index = ctx->real_index;
290
291 memcpy(&port_gid_table->gids[real_index].gid, &zgid, sizeof(zgid));
292 kfree(port_gid_table->gids[real_index].ctx);
293 port_gid_table->gids[real_index].ctx = NULL;
294 hw_update = 1;
295 }
296 }
297 if (!ret && hw_update) {
298 int i;
299
300 gids = kmalloc(sizeof(*gids) * MLX4_MAX_PORT_GIDS, GFP_ATOMIC);
301 if (!gids) {
302 ret = -ENOMEM;
303 } else {
304 for (i = 0; i < MLX4_MAX_PORT_GIDS; i++)
305 memcpy(&gids[i].gid, &port_gid_table->gids[i].gid, sizeof(union ib_gid));
306 }
307 }
308 spin_unlock_bh(&iboe->lock);
309
310 if (!ret && hw_update) {
311 ret = mlx4_ib_update_gids(gids, ibdev, port_num);
312 kfree(gids);
313 }
314 return ret;
315}
316
317int mlx4_ib_gid_index_to_real_index(struct mlx4_ib_dev *ibdev,
318 u8 port_num, int index)
319{
320 struct mlx4_ib_iboe *iboe = &ibdev->iboe;
321 struct gid_cache_context *ctx = NULL;
322 union ib_gid gid;
323 struct mlx4_port_gid_table *port_gid_table;
324 int real_index = -EINVAL;
325 int i;
326 int ret;
327 unsigned long flags;
328
329 if (port_num > MLX4_MAX_PORTS)
330 return -EINVAL;
331
332 if (mlx4_is_bonded(ibdev->dev))
333 port_num = 1;
334
335 if (!rdma_cap_roce_gid_table(&ibdev->ib_dev, port_num))
336 return index;
337
338 ret = ib_get_cached_gid(&ibdev->ib_dev, port_num, index, &gid);
339 if (ret)
340 return ret;
341
342 if (!memcmp(&gid, &zgid, sizeof(gid)))
343 return -EINVAL;
344
345 spin_lock_irqsave(&iboe->lock, flags);
346 port_gid_table = &iboe->gids[port_num - 1];
347
348 for (i = 0; i < MLX4_MAX_PORT_GIDS; ++i)
349 if (!memcmp(&port_gid_table->gids[i].gid, &gid, sizeof(gid))) {
350 ctx = port_gid_table->gids[i].ctx;
351 break;
352 }
353 if (ctx)
354 real_index = ctx->real_index;
355 spin_unlock_irqrestore(&iboe->lock, flags);
356 return real_index;
357}
358
Roland Dreier225c7b12007-05-08 18:00:38 -0700359static int mlx4_ib_query_device(struct ib_device *ibdev,
Matan Barak2528e332015-06-11 16:35:25 +0300360 struct ib_device_attr *props,
361 struct ib_udata *uhw)
Roland Dreier225c7b12007-05-08 18:00:38 -0700362{
363 struct mlx4_ib_dev *dev = to_mdev(ibdev);
364 struct ib_smp *in_mad = NULL;
365 struct ib_smp *out_mad = NULL;
366 int err = -ENOMEM;
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300367 int have_ib_ports;
Matan Barak4b664c42015-06-11 16:35:27 +0300368 struct mlx4_uverbs_ex_query_device cmd;
369 struct mlx4_uverbs_ex_query_device_resp resp = {.comp_mask = 0};
370 struct mlx4_clock_params clock_params;
Roland Dreier225c7b12007-05-08 18:00:38 -0700371
Matan Barak4b664c42015-06-11 16:35:27 +0300372 if (uhw->inlen) {
373 if (uhw->inlen < sizeof(cmd))
374 return -EINVAL;
Matan Barak2528e332015-06-11 16:35:25 +0300375
Matan Barak4b664c42015-06-11 16:35:27 +0300376 err = ib_copy_from_udata(&cmd, uhw, sizeof(cmd));
377 if (err)
378 return err;
379
380 if (cmd.comp_mask)
381 return -EINVAL;
382
383 if (cmd.reserved)
384 return -EINVAL;
385 }
386
387 resp.response_length = offsetof(typeof(resp), response_length) +
388 sizeof(resp.response_length);
Roland Dreier225c7b12007-05-08 18:00:38 -0700389 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
390 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
391 if (!in_mad || !out_mad)
392 goto out;
393
394 init_query_mad(in_mad);
395 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
396
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000397 err = mlx4_MAD_IFC(to_mdev(ibdev), MLX4_MAD_IFC_IGNORE_KEYS,
398 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700399 if (err)
400 goto out;
401
402 memset(props, 0, sizeof *props);
403
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300404 have_ib_ports = num_ib_ports(dev->dev);
405
Roland Dreier225c7b12007-05-08 18:00:38 -0700406 props->fw_ver = dev->dev->caps.fw_ver;
407 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
408 IB_DEVICE_PORT_ACTIVE_EVENT |
409 IB_DEVICE_SYS_IMAGE_GUID |
Ron Livne521e5752008-07-14 23:48:48 -0700410 IB_DEVICE_RC_RNR_NAK_GEN |
411 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
Roland Dreier225c7b12007-05-08 18:00:38 -0700412 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR)
413 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
414 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR)
415 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
Jack Morgenstein3dec4872014-09-11 14:11:19 +0300416 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_APM && have_ib_ports)
Roland Dreier225c7b12007-05-08 18:00:38 -0700417 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
418 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UD_AV_PORT)
419 props->device_cap_flags |= IB_DEVICE_UD_AV_PORT_ENFORCE;
Eli Cohen8ff095e2008-04-16 21:01:10 -0700420 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_IPOIB_CSUM)
421 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
Markus Stockhausen50e2ec92014-08-13 14:07:30 +0000422 if (dev->dev->caps.max_gso_sz &&
423 (dev->dev->rev_id != MLX4_IB_CARD_REV_A0) &&
424 (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BLH))
Eli Cohenb832be12008-04-16 21:09:27 -0700425 props->device_cap_flags |= IB_DEVICE_UD_TSO;
Roland Dreier95d04f02008-07-23 08:12:26 -0700426 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_RESERVED_LKEY)
427 props->device_cap_flags |= IB_DEVICE_LOCAL_DMA_LKEY;
428 if ((dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_LOCAL_INV) &&
429 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_REMOTE_INV) &&
430 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_FAST_REG_WR))
431 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
Sean Hefty0a1405d2011-06-02 11:32:15 -0700432 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC)
433 props->device_cap_flags |= IB_DEVICE_XRC;
Shani Michaelib4253882013-02-06 16:19:16 +0000434 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW)
435 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW;
436 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
437 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_WIN_TYPE_2B)
438 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2B;
439 else
440 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2A;
Matan Barak0a9b7d52013-11-07 15:25:15 +0200441 if (dev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED)
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300442 props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
Shani Michaelib4253882013-02-06 16:19:16 +0000443 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700444
445 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
446 0xffffff;
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200447 props->vendor_part_id = dev->dev->persist->pdev->device;
Roland Dreier225c7b12007-05-08 18:00:38 -0700448 props->hw_ver = be32_to_cpup((__be32 *) (out_mad->data + 32));
449 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
450
451 props->max_mr_size = ~0ull;
452 props->page_size_cap = dev->dev->caps.page_size_cap;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200453 props->max_qp = dev->dev->quotas.qp;
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300454 props->max_qp_wr = dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE;
Roland Dreier225c7b12007-05-08 18:00:38 -0700455 props->max_sge = min(dev->dev->caps.max_sq_sg,
456 dev->dev->caps.max_rq_sg);
Sagi Grimberg18ebd402015-07-27 18:10:01 -0500457 props->max_sge_rd = props->max_sge;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200458 props->max_cq = dev->dev->quotas.cq;
Roland Dreier225c7b12007-05-08 18:00:38 -0700459 props->max_cqe = dev->dev->caps.max_cqes;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200460 props->max_mr = dev->dev->quotas.mpt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700461 props->max_pd = dev->dev->caps.num_pds - dev->dev->caps.reserved_pds;
462 props->max_qp_rd_atom = dev->dev->caps.max_qp_dest_rdma;
463 props->max_qp_init_rd_atom = dev->dev->caps.max_qp_init_rdma;
464 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200465 props->max_srq = dev->dev->quotas.srq;
Jack Morgensteinc8681f12007-06-21 13:39:10 -0700466 props->max_srq_wr = dev->dev->caps.max_srq_wqes - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700467 props->max_srq_sge = dev->dev->caps.max_srq_sge;
Eli Cohen5a0fd092010-10-07 16:24:16 +0200468 props->max_fast_reg_page_list_len = MLX4_MAX_FAST_REG_PAGES;
Roland Dreier225c7b12007-05-08 18:00:38 -0700469 props->local_ca_ack_delay = dev->dev->caps.local_ca_ack_delay;
470 props->atomic_cap = dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_ATOMIC ?
471 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
Dotan Barak47e956b2012-07-11 15:39:29 +0000472 props->masked_atomic_cap = props->atomic_cap;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700473 props->max_pkeys = dev->dev->caps.pkey_table_len[1];
Roland Dreier225c7b12007-05-08 18:00:38 -0700474 props->max_mcast_grp = dev->dev->caps.num_mgms + dev->dev->caps.num_amgms;
475 props->max_mcast_qp_attach = dev->dev->caps.num_qp_per_mgm;
476 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
477 props->max_mcast_grp;
Eli Cohena5bbe892012-02-09 18:10:06 +0200478 props->max_map_per_fmr = dev->dev->caps.max_fmr_maps;
Matan Barak4b664c42015-06-11 16:35:27 +0300479 props->hca_core_clock = dev->dev->caps.hca_core_clock * 1000UL;
480 props->timestamp_mask = 0xFFFFFFFFFFFFULL;
Roland Dreier225c7b12007-05-08 18:00:38 -0700481
Matan Barak8a7ff142015-07-01 14:31:02 +0300482 if (!mlx4_is_slave(dev->dev))
483 err = mlx4_get_internal_clock_params(dev->dev, &clock_params);
Matan Barak4b664c42015-06-11 16:35:27 +0300484
485 if (uhw->outlen >= resp.response_length + sizeof(resp.hca_core_clock_offset)) {
Matan Barak4b664c42015-06-11 16:35:27 +0300486 resp.response_length += sizeof(resp.hca_core_clock_offset);
Matan Barak8a7ff142015-07-01 14:31:02 +0300487 if (!err && !mlx4_is_slave(dev->dev)) {
488 resp.comp_mask |= QUERY_DEVICE_RESP_MASK_TIMESTAMP;
489 resp.hca_core_clock_offset = clock_params.offset % PAGE_SIZE;
490 }
Matan Barak4b664c42015-06-11 16:35:27 +0300491 }
492
493 if (uhw->outlen) {
494 err = ib_copy_to_udata(uhw, &resp, resp.response_length);
495 if (err)
496 goto out;
497 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700498out:
499 kfree(in_mad);
500 kfree(out_mad);
501
502 return err;
503}
504
Eli Cohenfa417f72010-10-24 21:08:52 -0700505static enum rdma_link_layer
506mlx4_ib_port_link_layer(struct ib_device *device, u8 port_num)
507{
508 struct mlx4_dev *dev = to_mdev(device)->dev;
509
Jack Morgenstein65dab252011-12-13 04:10:41 +0000510 return dev->caps.port_mask[port_num] == MLX4_PORT_TYPE_IB ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700511 IB_LINK_LAYER_INFINIBAND : IB_LINK_LAYER_ETHERNET;
512}
513
514static int ib_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000515 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700516{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200517 struct ib_smp *in_mad = NULL;
518 struct ib_smp *out_mad = NULL;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300519 int ext_active_speed;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000520 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200521 int err = -ENOMEM;
522
523 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
524 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
525 if (!in_mad || !out_mad)
526 goto out;
527
528 init_query_mad(in_mad);
529 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
530 in_mad->attr_mod = cpu_to_be32(port);
531
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000532 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
533 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
534
535 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
Or Gerlitza9c766b2012-01-11 19:00:29 +0200536 in_mad, out_mad);
537 if (err)
538 goto out;
539
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300540
Eli Cohenfa417f72010-10-24 21:08:52 -0700541 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
542 props->lmc = out_mad->data[34] & 0x7;
543 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
544 props->sm_sl = out_mad->data[36] & 0xf;
545 props->state = out_mad->data[32] & 0xf;
546 props->phys_state = out_mad->data[33] >> 4;
547 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000548 if (netw_view)
549 props->gid_tbl_len = out_mad->data[50];
550 else
551 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
Eli Cohenfa417f72010-10-24 21:08:52 -0700552 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
553 props->pkey_tbl_len = to_mdev(ibdev)->dev->caps.pkey_table_len[port];
554 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
555 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
556 props->active_width = out_mad->data[31] & 0xf;
557 props->active_speed = out_mad->data[35] >> 4;
558 props->max_mtu = out_mad->data[41] & 0xf;
559 props->active_mtu = out_mad->data[36] >> 4;
560 props->subnet_timeout = out_mad->data[51] & 0x1f;
561 props->max_vl_num = out_mad->data[37] >> 4;
562 props->init_type_reply = out_mad->data[41] >> 4;
563
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300564 /* Check if extended speeds (EDR/FDR/...) are supported */
565 if (props->port_cap_flags & IB_PORT_EXTENDED_SPEEDS_SUP) {
566 ext_active_speed = out_mad->data[62] >> 4;
567
568 switch (ext_active_speed) {
569 case 1:
Or Gerlitz2e966912012-02-28 18:49:50 +0200570 props->active_speed = IB_SPEED_FDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300571 break;
572 case 2:
Or Gerlitz2e966912012-02-28 18:49:50 +0200573 props->active_speed = IB_SPEED_EDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300574 break;
575 }
576 }
577
578 /* If reported active speed is QDR, check if is FDR-10 */
Or Gerlitz2e966912012-02-28 18:49:50 +0200579 if (props->active_speed == IB_SPEED_QDR) {
Or Gerlitz8154c072012-03-06 15:50:50 +0200580 init_query_mad(in_mad);
581 in_mad->attr_id = MLX4_ATTR_EXTENDED_PORT_INFO;
582 in_mad->attr_mod = cpu_to_be32(port);
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300583
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000584 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port,
Or Gerlitz8154c072012-03-06 15:50:50 +0200585 NULL, NULL, in_mad, out_mad);
586 if (err)
Jesper Juhlbf6b47d2012-04-11 23:43:29 +0200587 goto out;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300588
Or Gerlitz8154c072012-03-06 15:50:50 +0200589 /* Checking LinkSpeedActive for FDR-10 */
590 if (out_mad->data[15] & 0x1)
591 props->active_speed = IB_SPEED_FDR10;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300592 }
Or Gerlitzd2ef4062012-04-02 17:45:20 +0300593
594 /* Avoid wrong speed value returned by FW if the IB link is down. */
595 if (props->state == IB_PORT_DOWN)
596 props->active_speed = IB_SPEED_SDR;
597
Or Gerlitza9c766b2012-01-11 19:00:29 +0200598out:
599 kfree(in_mad);
600 kfree(out_mad);
601 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700602}
603
604static u8 state_to_phys_state(enum ib_port_state state)
605{
606 return state == IB_PORT_ACTIVE ? 5 : 3;
607}
608
609static int eth_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000610 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700611{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200612
613 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
614 struct mlx4_ib_iboe *iboe = &mdev->iboe;
Eli Cohenfa417f72010-10-24 21:08:52 -0700615 struct net_device *ndev;
616 enum ib_mtu tmp;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200617 struct mlx4_cmd_mailbox *mailbox;
618 int err = 0;
Moni Shouaa5750092015-02-03 16:48:37 +0200619 int is_bonded = mlx4_is_bonded(mdev->dev);
Eli Cohenfa417f72010-10-24 21:08:52 -0700620
Or Gerlitza9c766b2012-01-11 19:00:29 +0200621 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
622 if (IS_ERR(mailbox))
623 return PTR_ERR(mailbox);
624
625 err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0,
626 MLX4_CMD_QUERY_PORT, MLX4_CMD_TIME_CLASS_B,
627 MLX4_CMD_WRAPPED);
628 if (err)
629 goto out;
630
631 props->active_width = (((u8 *)mailbox->buf)[5] == 0x40) ?
632 IB_WIDTH_4X : IB_WIDTH_1X;
Or Gerlitz2e966912012-02-28 18:49:50 +0200633 props->active_speed = IB_SPEED_QDR;
Moni Shouab4a26a22014-02-09 11:54:34 +0200634 props->port_cap_flags = IB_PORT_CM_SUP | IB_PORT_IP_BASED_GIDS;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200635 props->gid_tbl_len = mdev->dev->caps.gid_table_len[port];
636 props->max_msg_sz = mdev->dev->caps.max_msg_sz;
Eli Cohenfa417f72010-10-24 21:08:52 -0700637 props->pkey_tbl_len = 1;
Or Gerlitzbcacb892011-10-10 10:53:41 +0200638 props->max_mtu = IB_MTU_4096;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200639 props->max_vl_num = 2;
Eli Cohenfa417f72010-10-24 21:08:52 -0700640 props->state = IB_PORT_DOWN;
641 props->phys_state = state_to_phys_state(props->state);
642 props->active_mtu = IB_MTU_256;
Jack Morgensteindba3ad22014-08-21 14:28:41 +0300643 spin_lock_bh(&iboe->lock);
Eli Cohenfa417f72010-10-24 21:08:52 -0700644 ndev = iboe->netdevs[port - 1];
Moni Shoua5070cd22015-07-30 18:33:30 +0300645 if (ndev && is_bonded) {
646 rcu_read_lock(); /* required to get upper dev */
647 ndev = netdev_master_upper_dev_get_rcu(ndev);
648 rcu_read_unlock();
649 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700650 if (!ndev)
Or Gerlitza9c766b2012-01-11 19:00:29 +0200651 goto out_unlock;
Eli Cohenfa417f72010-10-24 21:08:52 -0700652
653 tmp = iboe_get_mtu(ndev->mtu);
654 props->active_mtu = tmp ? min(props->max_mtu, tmp) : IB_MTU_256;
655
Eli Cohen21d606092010-11-11 21:05:58 +0000656 props->state = (netif_running(ndev) && netif_carrier_ok(ndev)) ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700657 IB_PORT_ACTIVE : IB_PORT_DOWN;
658 props->phys_state = state_to_phys_state(props->state);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200659out_unlock:
Jack Morgensteindba3ad22014-08-21 14:28:41 +0300660 spin_unlock_bh(&iboe->lock);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200661out:
662 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
663 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700664}
665
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000666int __mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
667 struct ib_port_attr *props, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700668{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200669 int err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700670
671 memset(props, 0, sizeof *props);
672
Eli Cohenfa417f72010-10-24 21:08:52 -0700673 err = mlx4_ib_port_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND ?
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000674 ib_link_query_port(ibdev, port, props, netw_view) :
675 eth_link_query_port(ibdev, port, props, netw_view);
Roland Dreier225c7b12007-05-08 18:00:38 -0700676
677 return err;
678}
679
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000680static int mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
681 struct ib_port_attr *props)
682{
683 /* returns host view */
684 return __mlx4_ib_query_port(ibdev, port, props, 0);
685}
686
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000687int __mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
688 union ib_gid *gid, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700689{
690 struct ib_smp *in_mad = NULL;
691 struct ib_smp *out_mad = NULL;
692 int err = -ENOMEM;
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000693 struct mlx4_ib_dev *dev = to_mdev(ibdev);
694 int clear = 0;
695 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700696
697 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
698 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
699 if (!in_mad || !out_mad)
700 goto out;
701
702 init_query_mad(in_mad);
703 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
704 in_mad->attr_mod = cpu_to_be32(port);
705
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000706 if (mlx4_is_mfunc(dev->dev) && netw_view)
707 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
708
709 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700710 if (err)
711 goto out;
712
713 memcpy(gid->raw, out_mad->data + 8, 8);
714
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000715 if (mlx4_is_mfunc(dev->dev) && !netw_view) {
716 if (index) {
717 /* For any index > 0, return the null guid */
718 err = 0;
719 clear = 1;
720 goto out;
721 }
722 }
723
Roland Dreier225c7b12007-05-08 18:00:38 -0700724 init_query_mad(in_mad);
725 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
726 in_mad->attr_mod = cpu_to_be32(index / 8);
727
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000728 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000729 NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700730 if (err)
731 goto out;
732
733 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
734
735out:
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000736 if (clear)
737 memset(gid->raw + 8, 0, 8);
Roland Dreier225c7b12007-05-08 18:00:38 -0700738 kfree(in_mad);
739 kfree(out_mad);
740 return err;
741}
742
Eli Cohenfa417f72010-10-24 21:08:52 -0700743static int mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
744 union ib_gid *gid)
745{
Moni Shoua5070cd22015-07-30 18:33:30 +0300746 int ret;
747
748 if (rdma_protocol_ib(ibdev, port))
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000749 return __mlx4_ib_query_gid(ibdev, port, index, gid, 0);
Moni Shoua5070cd22015-07-30 18:33:30 +0300750
751 if (!rdma_protocol_roce(ibdev, port))
752 return -ENODEV;
753
754 if (!rdma_cap_roce_gid_table(ibdev, port))
755 return -ENODEV;
756
757 ret = ib_get_cached_gid(ibdev, port, index, gid);
758 if (ret == -EAGAIN) {
759 memcpy(gid, &zgid, sizeof(*gid));
760 return 0;
761 }
762
763 return ret;
Eli Cohenfa417f72010-10-24 21:08:52 -0700764}
765
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000766int __mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
767 u16 *pkey, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700768{
769 struct ib_smp *in_mad = NULL;
770 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000771 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700772 int err = -ENOMEM;
773
774 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
775 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
776 if (!in_mad || !out_mad)
777 goto out;
778
779 init_query_mad(in_mad);
780 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
781 in_mad->attr_mod = cpu_to_be32(index / 32);
782
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000783 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
784 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
785
786 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
787 in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700788 if (err)
789 goto out;
790
791 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
792
793out:
794 kfree(in_mad);
795 kfree(out_mad);
796 return err;
797}
798
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000799static int mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index, u16 *pkey)
800{
801 return __mlx4_ib_query_pkey(ibdev, port, index, pkey, 0);
802}
803
Roland Dreier225c7b12007-05-08 18:00:38 -0700804static int mlx4_ib_modify_device(struct ib_device *ibdev, int mask,
805 struct ib_device_modify *props)
806{
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000807 struct mlx4_cmd_mailbox *mailbox;
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000808 unsigned long flags;
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000809
Roland Dreier225c7b12007-05-08 18:00:38 -0700810 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
811 return -EOPNOTSUPP;
812
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000813 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
814 return 0;
815
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000816 if (mlx4_is_slave(to_mdev(ibdev)->dev))
817 return -EOPNOTSUPP;
818
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000819 spin_lock_irqsave(&to_mdev(ibdev)->sm_lock, flags);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000820 memcpy(ibdev->node_desc, props->node_desc, 64);
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000821 spin_unlock_irqrestore(&to_mdev(ibdev)->sm_lock, flags);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000822
823 /*
824 * If possible, pass node desc to FW, so it can generate
825 * a 144 trap. If cmd fails, just ignore.
826 */
827 mailbox = mlx4_alloc_cmd_mailbox(to_mdev(ibdev)->dev);
828 if (IS_ERR(mailbox))
829 return 0;
830
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000831 memcpy(mailbox->buf, props->node_desc, 64);
832 mlx4_cmd(to_mdev(ibdev)->dev, mailbox->dma, 1, 0,
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000833 MLX4_CMD_SET_NODE, MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000834
835 mlx4_free_cmd_mailbox(to_mdev(ibdev)->dev, mailbox);
Roland Dreier225c7b12007-05-08 18:00:38 -0700836
837 return 0;
838}
839
Jack Morgenstein61565012014-05-29 16:31:01 +0300840static int mlx4_ib_SET_PORT(struct mlx4_ib_dev *dev, u8 port, int reset_qkey_viols,
841 u32 cap_mask)
Roland Dreier225c7b12007-05-08 18:00:38 -0700842{
843 struct mlx4_cmd_mailbox *mailbox;
844 int err;
845
846 mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
847 if (IS_ERR(mailbox))
848 return PTR_ERR(mailbox);
849
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700850 if (dev->dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
851 *(u8 *) mailbox->buf = !!reset_qkey_viols << 6;
852 ((__be32 *) mailbox->buf)[2] = cpu_to_be32(cap_mask);
853 } else {
854 ((u8 *) mailbox->buf)[3] = !!reset_qkey_viols;
855 ((__be32 *) mailbox->buf)[1] = cpu_to_be32(cap_mask);
856 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700857
Ido Shamaya130b592015-04-02 16:31:19 +0300858 err = mlx4_cmd(dev->dev, mailbox->dma, port, MLX4_SET_PORT_IB_OPCODE,
859 MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
860 MLX4_CMD_WRAPPED);
Roland Dreier225c7b12007-05-08 18:00:38 -0700861
862 mlx4_free_cmd_mailbox(dev->dev, mailbox);
863 return err;
864}
865
866static int mlx4_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
867 struct ib_port_modify *props)
868{
Jack Morgenstein61565012014-05-29 16:31:01 +0300869 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
870 u8 is_eth = mdev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
Roland Dreier225c7b12007-05-08 18:00:38 -0700871 struct ib_port_attr attr;
872 u32 cap_mask;
873 int err;
874
Jack Morgenstein61565012014-05-29 16:31:01 +0300875 /* return OK if this is RoCE. CM calls ib_modify_port() regardless
876 * of whether port link layer is ETH or IB. For ETH ports, qkey
877 * violations and port capabilities are not meaningful.
878 */
879 if (is_eth)
880 return 0;
881
882 mutex_lock(&mdev->cap_mask_mutex);
Roland Dreier225c7b12007-05-08 18:00:38 -0700883
884 err = mlx4_ib_query_port(ibdev, port, &attr);
885 if (err)
886 goto out;
887
888 cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
889 ~props->clr_port_cap_mask;
890
Jack Morgenstein61565012014-05-29 16:31:01 +0300891 err = mlx4_ib_SET_PORT(mdev, port,
892 !!(mask & IB_PORT_RESET_QKEY_CNTR),
893 cap_mask);
Roland Dreier225c7b12007-05-08 18:00:38 -0700894
895out:
896 mutex_unlock(&to_mdev(ibdev)->cap_mask_mutex);
897 return err;
898}
899
900static struct ib_ucontext *mlx4_ib_alloc_ucontext(struct ib_device *ibdev,
901 struct ib_udata *udata)
902{
903 struct mlx4_ib_dev *dev = to_mdev(ibdev);
904 struct mlx4_ib_ucontext *context;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000905 struct mlx4_ib_alloc_ucontext_resp_v3 resp_v3;
Roland Dreier225c7b12007-05-08 18:00:38 -0700906 struct mlx4_ib_alloc_ucontext_resp resp;
907 int err;
908
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -0700909 if (!dev->ib_active)
910 return ERR_PTR(-EAGAIN);
911
Or Gerlitz08ff3232012-10-21 14:59:24 +0000912 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION) {
913 resp_v3.qp_tab_size = dev->dev->caps.num_qps;
914 resp_v3.bf_reg_size = dev->dev->caps.bf_reg_size;
915 resp_v3.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
916 } else {
917 resp.dev_caps = dev->dev->caps.userspace_caps;
918 resp.qp_tab_size = dev->dev->caps.num_qps;
919 resp.bf_reg_size = dev->dev->caps.bf_reg_size;
920 resp.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
921 resp.cqe_size = dev->dev->caps.cqe_size;
922 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700923
924 context = kmalloc(sizeof *context, GFP_KERNEL);
925 if (!context)
926 return ERR_PTR(-ENOMEM);
927
928 err = mlx4_uar_alloc(to_mdev(ibdev)->dev, &context->uar);
929 if (err) {
930 kfree(context);
931 return ERR_PTR(err);
932 }
933
934 INIT_LIST_HEAD(&context->db_page_list);
935 mutex_init(&context->db_page_mutex);
936
Or Gerlitz08ff3232012-10-21 14:59:24 +0000937 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION)
938 err = ib_copy_to_udata(udata, &resp_v3, sizeof(resp_v3));
939 else
940 err = ib_copy_to_udata(udata, &resp, sizeof(resp));
941
Roland Dreier225c7b12007-05-08 18:00:38 -0700942 if (err) {
943 mlx4_uar_free(to_mdev(ibdev)->dev, &context->uar);
944 kfree(context);
945 return ERR_PTR(-EFAULT);
946 }
947
948 return &context->ibucontext;
949}
950
951static int mlx4_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
952{
953 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
954
955 mlx4_uar_free(to_mdev(ibcontext->device)->dev, &context->uar);
956 kfree(context);
957
958 return 0;
959}
960
961static int mlx4_ib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
962{
963 struct mlx4_ib_dev *dev = to_mdev(context->device);
964
965 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
966 return -EINVAL;
967
968 if (vma->vm_pgoff == 0) {
969 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
970
971 if (io_remap_pfn_range(vma, vma->vm_start,
972 to_mucontext(context)->uar.pfn,
973 PAGE_SIZE, vma->vm_page_prot))
974 return -EAGAIN;
975 } else if (vma->vm_pgoff == 1 && dev->dev->caps.bf_reg_size != 0) {
Roland Dreiere1d60ec2009-03-30 08:31:05 -0700976 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700977
978 if (io_remap_pfn_range(vma, vma->vm_start,
979 to_mucontext(context)->uar.pfn +
980 dev->dev->caps.num_uars,
981 PAGE_SIZE, vma->vm_page_prot))
982 return -EAGAIN;
Matan Barak52033cf2015-06-11 16:35:26 +0300983 } else if (vma->vm_pgoff == 3) {
984 struct mlx4_clock_params params;
985 int ret = mlx4_get_internal_clock_params(dev->dev, &params);
986
987 if (ret)
988 return ret;
989
990 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
991 if (io_remap_pfn_range(vma, vma->vm_start,
992 (pci_resource_start(dev->dev->persist->pdev,
993 params.bar) +
994 params.offset)
995 >> PAGE_SHIFT,
996 PAGE_SIZE, vma->vm_page_prot))
997 return -EAGAIN;
998 } else {
Roland Dreier225c7b12007-05-08 18:00:38 -0700999 return -EINVAL;
Matan Barak52033cf2015-06-11 16:35:26 +03001000 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001001
1002 return 0;
1003}
1004
1005static struct ib_pd *mlx4_ib_alloc_pd(struct ib_device *ibdev,
1006 struct ib_ucontext *context,
1007 struct ib_udata *udata)
1008{
1009 struct mlx4_ib_pd *pd;
1010 int err;
1011
1012 pd = kmalloc(sizeof *pd, GFP_KERNEL);
1013 if (!pd)
1014 return ERR_PTR(-ENOMEM);
1015
1016 err = mlx4_pd_alloc(to_mdev(ibdev)->dev, &pd->pdn);
1017 if (err) {
1018 kfree(pd);
1019 return ERR_PTR(err);
1020 }
1021
1022 if (context)
1023 if (ib_copy_to_udata(udata, &pd->pdn, sizeof (__u32))) {
1024 mlx4_pd_free(to_mdev(ibdev)->dev, pd->pdn);
1025 kfree(pd);
1026 return ERR_PTR(-EFAULT);
1027 }
1028
1029 return &pd->ibpd;
1030}
1031
1032static int mlx4_ib_dealloc_pd(struct ib_pd *pd)
1033{
1034 mlx4_pd_free(to_mdev(pd->device)->dev, to_mpd(pd)->pdn);
1035 kfree(pd);
1036
1037 return 0;
1038}
1039
Sean Hefty012a8ff2011-06-02 09:01:33 -07001040static struct ib_xrcd *mlx4_ib_alloc_xrcd(struct ib_device *ibdev,
1041 struct ib_ucontext *context,
1042 struct ib_udata *udata)
1043{
1044 struct mlx4_ib_xrcd *xrcd;
Matan Barak8e372102015-06-11 16:35:21 +03001045 struct ib_cq_init_attr cq_attr = {};
Sean Hefty012a8ff2011-06-02 09:01:33 -07001046 int err;
1047
1048 if (!(to_mdev(ibdev)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1049 return ERR_PTR(-ENOSYS);
1050
1051 xrcd = kmalloc(sizeof *xrcd, GFP_KERNEL);
1052 if (!xrcd)
1053 return ERR_PTR(-ENOMEM);
1054
1055 err = mlx4_xrcd_alloc(to_mdev(ibdev)->dev, &xrcd->xrcdn);
1056 if (err)
1057 goto err1;
1058
1059 xrcd->pd = ib_alloc_pd(ibdev);
1060 if (IS_ERR(xrcd->pd)) {
1061 err = PTR_ERR(xrcd->pd);
1062 goto err2;
1063 }
1064
Matan Barak8e372102015-06-11 16:35:21 +03001065 cq_attr.cqe = 1;
1066 xrcd->cq = ib_create_cq(ibdev, NULL, NULL, xrcd, &cq_attr);
Sean Hefty012a8ff2011-06-02 09:01:33 -07001067 if (IS_ERR(xrcd->cq)) {
1068 err = PTR_ERR(xrcd->cq);
1069 goto err3;
1070 }
1071
1072 return &xrcd->ibxrcd;
1073
1074err3:
1075 ib_dealloc_pd(xrcd->pd);
1076err2:
1077 mlx4_xrcd_free(to_mdev(ibdev)->dev, xrcd->xrcdn);
1078err1:
1079 kfree(xrcd);
1080 return ERR_PTR(err);
1081}
1082
1083static int mlx4_ib_dealloc_xrcd(struct ib_xrcd *xrcd)
1084{
1085 ib_destroy_cq(to_mxrcd(xrcd)->cq);
1086 ib_dealloc_pd(to_mxrcd(xrcd)->pd);
1087 mlx4_xrcd_free(to_mdev(xrcd->device)->dev, to_mxrcd(xrcd)->xrcdn);
1088 kfree(xrcd);
1089
1090 return 0;
1091}
1092
Eli Cohenfa417f72010-10-24 21:08:52 -07001093static int add_gid_entry(struct ib_qp *ibqp, union ib_gid *gid)
1094{
1095 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
1096 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
1097 struct mlx4_ib_gid_entry *ge;
1098
1099 ge = kzalloc(sizeof *ge, GFP_KERNEL);
1100 if (!ge)
1101 return -ENOMEM;
1102
1103 ge->gid = *gid;
1104 if (mlx4_ib_add_mc(mdev, mqp, gid)) {
1105 ge->port = mqp->port;
1106 ge->added = 1;
1107 }
1108
1109 mutex_lock(&mqp->mutex);
1110 list_add_tail(&ge->list, &mqp->gid_list);
1111 mutex_unlock(&mqp->mutex);
1112
1113 return 0;
1114}
1115
1116int mlx4_ib_add_mc(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
1117 union ib_gid *gid)
1118{
Eli Cohenfa417f72010-10-24 21:08:52 -07001119 struct net_device *ndev;
1120 int ret = 0;
1121
1122 if (!mqp->port)
1123 return 0;
1124
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001125 spin_lock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001126 ndev = mdev->iboe.netdevs[mqp->port - 1];
1127 if (ndev)
1128 dev_hold(ndev);
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001129 spin_unlock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001130
1131 if (ndev) {
Eli Cohenfa417f72010-10-24 21:08:52 -07001132 ret = 1;
Eli Cohenfa417f72010-10-24 21:08:52 -07001133 dev_put(ndev);
1134 }
1135
1136 return ret;
1137}
1138
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001139struct mlx4_ib_steering {
1140 struct list_head list;
Moni Shoua146d6e12015-02-03 16:48:38 +02001141 struct mlx4_flow_reg_id reg_id;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001142 union ib_gid gid;
1143};
1144
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001145static int parse_flow_attr(struct mlx4_dev *dev,
Matan Baraka37a1a42013-11-07 15:25:16 +02001146 u32 qp_num,
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001147 union ib_flow_spec *ib_spec,
1148 struct _rule_hw *mlx4_spec)
1149{
1150 enum mlx4_net_trans_rule_id type;
1151
1152 switch (ib_spec->type) {
1153 case IB_FLOW_SPEC_ETH:
1154 type = MLX4_NET_TRANS_RULE_ID_ETH;
1155 memcpy(mlx4_spec->eth.dst_mac, ib_spec->eth.val.dst_mac,
1156 ETH_ALEN);
1157 memcpy(mlx4_spec->eth.dst_mac_msk, ib_spec->eth.mask.dst_mac,
1158 ETH_ALEN);
1159 mlx4_spec->eth.vlan_tag = ib_spec->eth.val.vlan_tag;
1160 mlx4_spec->eth.vlan_tag_msk = ib_spec->eth.mask.vlan_tag;
1161 break;
Matan Baraka37a1a42013-11-07 15:25:16 +02001162 case IB_FLOW_SPEC_IB:
1163 type = MLX4_NET_TRANS_RULE_ID_IB;
1164 mlx4_spec->ib.l3_qpn =
1165 cpu_to_be32(qp_num);
1166 mlx4_spec->ib.qpn_mask =
1167 cpu_to_be32(MLX4_IB_FLOW_QPN_MASK);
1168 break;
1169
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001170
1171 case IB_FLOW_SPEC_IPV4:
1172 type = MLX4_NET_TRANS_RULE_ID_IPV4;
1173 mlx4_spec->ipv4.src_ip = ib_spec->ipv4.val.src_ip;
1174 mlx4_spec->ipv4.src_ip_msk = ib_spec->ipv4.mask.src_ip;
1175 mlx4_spec->ipv4.dst_ip = ib_spec->ipv4.val.dst_ip;
1176 mlx4_spec->ipv4.dst_ip_msk = ib_spec->ipv4.mask.dst_ip;
1177 break;
1178
1179 case IB_FLOW_SPEC_TCP:
1180 case IB_FLOW_SPEC_UDP:
1181 type = ib_spec->type == IB_FLOW_SPEC_TCP ?
1182 MLX4_NET_TRANS_RULE_ID_TCP :
1183 MLX4_NET_TRANS_RULE_ID_UDP;
1184 mlx4_spec->tcp_udp.dst_port = ib_spec->tcp_udp.val.dst_port;
1185 mlx4_spec->tcp_udp.dst_port_msk = ib_spec->tcp_udp.mask.dst_port;
1186 mlx4_spec->tcp_udp.src_port = ib_spec->tcp_udp.val.src_port;
1187 mlx4_spec->tcp_udp.src_port_msk = ib_spec->tcp_udp.mask.src_port;
1188 break;
1189
1190 default:
1191 return -EINVAL;
1192 }
1193 if (mlx4_map_sw_to_hw_steering_id(dev, type) < 0 ||
1194 mlx4_hw_rule_sz(dev, type) < 0)
1195 return -EINVAL;
1196 mlx4_spec->id = cpu_to_be16(mlx4_map_sw_to_hw_steering_id(dev, type));
1197 mlx4_spec->size = mlx4_hw_rule_sz(dev, type) >> 2;
1198 return mlx4_hw_rule_sz(dev, type);
1199}
1200
Matan Baraka37a1a42013-11-07 15:25:16 +02001201struct default_rules {
1202 __u32 mandatory_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
1203 __u32 mandatory_not_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
1204 __u32 rules_create_list[IB_FLOW_SPEC_SUPPORT_LAYERS];
1205 __u8 link_layer;
1206};
1207static const struct default_rules default_table[] = {
1208 {
1209 .mandatory_fields = {IB_FLOW_SPEC_IPV4},
1210 .mandatory_not_fields = {IB_FLOW_SPEC_ETH},
1211 .rules_create_list = {IB_FLOW_SPEC_IB},
1212 .link_layer = IB_LINK_LAYER_INFINIBAND
1213 }
1214};
1215
1216static int __mlx4_ib_default_rules_match(struct ib_qp *qp,
1217 struct ib_flow_attr *flow_attr)
1218{
1219 int i, j, k;
1220 void *ib_flow;
1221 const struct default_rules *pdefault_rules = default_table;
1222 u8 link_layer = rdma_port_get_link_layer(qp->device, flow_attr->port);
1223
Fabian Fredericka57f23f2014-08-12 19:20:07 -04001224 for (i = 0; i < ARRAY_SIZE(default_table); i++, pdefault_rules++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001225 __u32 field_types[IB_FLOW_SPEC_SUPPORT_LAYERS];
1226 memset(&field_types, 0, sizeof(field_types));
1227
1228 if (link_layer != pdefault_rules->link_layer)
1229 continue;
1230
1231 ib_flow = flow_attr + 1;
1232 /* we assume the specs are sorted */
1233 for (j = 0, k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS &&
1234 j < flow_attr->num_of_specs; k++) {
1235 union ib_flow_spec *current_flow =
1236 (union ib_flow_spec *)ib_flow;
1237
1238 /* same layer but different type */
1239 if (((current_flow->type & IB_FLOW_SPEC_LAYER_MASK) ==
1240 (pdefault_rules->mandatory_fields[k] &
1241 IB_FLOW_SPEC_LAYER_MASK)) &&
1242 (current_flow->type !=
1243 pdefault_rules->mandatory_fields[k]))
1244 goto out;
1245
1246 /* same layer, try match next one */
1247 if (current_flow->type ==
1248 pdefault_rules->mandatory_fields[k]) {
1249 j++;
1250 ib_flow +=
1251 ((union ib_flow_spec *)ib_flow)->size;
1252 }
1253 }
1254
1255 ib_flow = flow_attr + 1;
1256 for (j = 0; j < flow_attr->num_of_specs;
1257 j++, ib_flow += ((union ib_flow_spec *)ib_flow)->size)
1258 for (k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS; k++)
1259 /* same layer and same type */
1260 if (((union ib_flow_spec *)ib_flow)->type ==
1261 pdefault_rules->mandatory_not_fields[k])
1262 goto out;
1263
1264 return i;
1265 }
1266out:
1267 return -1;
1268}
1269
1270static int __mlx4_ib_create_default_rules(
1271 struct mlx4_ib_dev *mdev,
1272 struct ib_qp *qp,
1273 const struct default_rules *pdefault_rules,
1274 struct _rule_hw *mlx4_spec) {
1275 int size = 0;
1276 int i;
1277
Fabian Fredericka57f23f2014-08-12 19:20:07 -04001278 for (i = 0; i < ARRAY_SIZE(pdefault_rules->rules_create_list); i++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001279 int ret;
1280 union ib_flow_spec ib_spec;
1281 switch (pdefault_rules->rules_create_list[i]) {
1282 case 0:
1283 /* no rule */
1284 continue;
1285 case IB_FLOW_SPEC_IB:
1286 ib_spec.type = IB_FLOW_SPEC_IB;
1287 ib_spec.size = sizeof(struct ib_flow_spec_ib);
1288
1289 break;
1290 default:
1291 /* invalid rule */
1292 return -EINVAL;
1293 }
1294 /* We must put empty rule, qpn is being ignored */
1295 ret = parse_flow_attr(mdev->dev, 0, &ib_spec,
1296 mlx4_spec);
1297 if (ret < 0) {
1298 pr_info("invalid parsing\n");
1299 return -EINVAL;
1300 }
1301
1302 mlx4_spec = (void *)mlx4_spec + ret;
1303 size += ret;
1304 }
1305 return size;
1306}
1307
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001308static int __mlx4_ib_create_flow(struct ib_qp *qp, struct ib_flow_attr *flow_attr,
1309 int domain,
1310 enum mlx4_net_trans_promisc_mode flow_type,
1311 u64 *reg_id)
1312{
1313 int ret, i;
1314 int size = 0;
1315 void *ib_flow;
1316 struct mlx4_ib_dev *mdev = to_mdev(qp->device);
1317 struct mlx4_cmd_mailbox *mailbox;
1318 struct mlx4_net_trans_rule_hw_ctrl *ctrl;
Matan Baraka37a1a42013-11-07 15:25:16 +02001319 int default_flow;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001320
1321 static const u16 __mlx4_domain[] = {
1322 [IB_FLOW_DOMAIN_USER] = MLX4_DOMAIN_UVERBS,
1323 [IB_FLOW_DOMAIN_ETHTOOL] = MLX4_DOMAIN_ETHTOOL,
1324 [IB_FLOW_DOMAIN_RFS] = MLX4_DOMAIN_RFS,
1325 [IB_FLOW_DOMAIN_NIC] = MLX4_DOMAIN_NIC,
1326 };
1327
1328 if (flow_attr->priority > MLX4_IB_FLOW_MAX_PRIO) {
1329 pr_err("Invalid priority value %d\n", flow_attr->priority);
1330 return -EINVAL;
1331 }
1332
1333 if (domain >= IB_FLOW_DOMAIN_NUM) {
1334 pr_err("Invalid domain value %d\n", domain);
1335 return -EINVAL;
1336 }
1337
1338 if (mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type) < 0)
1339 return -EINVAL;
1340
1341 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
1342 if (IS_ERR(mailbox))
1343 return PTR_ERR(mailbox);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001344 ctrl = mailbox->buf;
1345
1346 ctrl->prio = cpu_to_be16(__mlx4_domain[domain] |
1347 flow_attr->priority);
1348 ctrl->type = mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type);
1349 ctrl->port = flow_attr->port;
1350 ctrl->qpn = cpu_to_be32(qp->qp_num);
1351
1352 ib_flow = flow_attr + 1;
1353 size += sizeof(struct mlx4_net_trans_rule_hw_ctrl);
Matan Baraka37a1a42013-11-07 15:25:16 +02001354 /* Add default flows */
1355 default_flow = __mlx4_ib_default_rules_match(qp, flow_attr);
1356 if (default_flow >= 0) {
1357 ret = __mlx4_ib_create_default_rules(
1358 mdev, qp, default_table + default_flow,
1359 mailbox->buf + size);
1360 if (ret < 0) {
1361 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1362 return -EINVAL;
1363 }
1364 size += ret;
1365 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001366 for (i = 0; i < flow_attr->num_of_specs; i++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001367 ret = parse_flow_attr(mdev->dev, qp->qp_num, ib_flow,
1368 mailbox->buf + size);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001369 if (ret < 0) {
1370 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1371 return -EINVAL;
1372 }
1373 ib_flow += ((union ib_flow_spec *) ib_flow)->size;
1374 size += ret;
1375 }
1376
1377 ret = mlx4_cmd_imm(mdev->dev, mailbox->dma, reg_id, size >> 2, 0,
1378 MLX4_QP_FLOW_STEERING_ATTACH, MLX4_CMD_TIME_CLASS_A,
Matan Barak48564132015-05-31 09:30:15 +03001379 MLX4_CMD_WRAPPED);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001380 if (ret == -ENOMEM)
1381 pr_err("mcg table is full. Fail to register network rule.\n");
1382 else if (ret == -ENXIO)
1383 pr_err("Device managed flow steering is disabled. Fail to register network rule.\n");
1384 else if (ret)
1385 pr_err("Invalid argumant. Fail to register network rule.\n");
1386
1387 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1388 return ret;
1389}
1390
1391static int __mlx4_ib_destroy_flow(struct mlx4_dev *dev, u64 reg_id)
1392{
1393 int err;
1394 err = mlx4_cmd(dev, reg_id, 0, 0,
1395 MLX4_QP_FLOW_STEERING_DETACH, MLX4_CMD_TIME_CLASS_A,
Matan Barak48564132015-05-31 09:30:15 +03001396 MLX4_CMD_WRAPPED);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001397 if (err)
1398 pr_err("Fail to detach network rule. registration id = 0x%llx\n",
1399 reg_id);
1400 return err;
1401}
1402
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001403static int mlx4_ib_tunnel_steer_add(struct ib_qp *qp, struct ib_flow_attr *flow_attr,
1404 u64 *reg_id)
1405{
1406 void *ib_flow;
1407 union ib_flow_spec *ib_spec;
1408 struct mlx4_dev *dev = to_mdev(qp->device)->dev;
1409 int err = 0;
1410
Or Gerlitz5eff6da2015-01-15 15:28:54 +02001411 if (dev->caps.tunnel_offload_mode != MLX4_TUNNEL_OFFLOAD_MODE_VXLAN ||
1412 dev->caps.dmfs_high_steer_mode == MLX4_STEERING_DMFS_A0_STATIC)
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001413 return 0; /* do nothing */
1414
1415 ib_flow = flow_attr + 1;
1416 ib_spec = (union ib_flow_spec *)ib_flow;
1417
1418 if (ib_spec->type != IB_FLOW_SPEC_ETH || flow_attr->num_of_specs != 1)
1419 return 0; /* do nothing */
1420
1421 err = mlx4_tunnel_steer_add(to_mdev(qp->device)->dev, ib_spec->eth.val.dst_mac,
1422 flow_attr->port, qp->qp_num,
1423 MLX4_DOMAIN_UVERBS | (flow_attr->priority & 0xff),
1424 reg_id);
1425 return err;
1426}
1427
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001428static struct ib_flow *mlx4_ib_create_flow(struct ib_qp *qp,
1429 struct ib_flow_attr *flow_attr,
1430 int domain)
1431{
Moni Shoua146d6e12015-02-03 16:48:38 +02001432 int err = 0, i = 0, j = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001433 struct mlx4_ib_flow *mflow;
1434 enum mlx4_net_trans_promisc_mode type[2];
Moni Shoua146d6e12015-02-03 16:48:38 +02001435 struct mlx4_dev *dev = (to_mdev(qp->device))->dev;
1436 int is_bonded = mlx4_is_bonded(dev);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001437
1438 memset(type, 0, sizeof(type));
1439
1440 mflow = kzalloc(sizeof(*mflow), GFP_KERNEL);
1441 if (!mflow) {
1442 err = -ENOMEM;
1443 goto err_free;
1444 }
1445
1446 switch (flow_attr->type) {
1447 case IB_FLOW_ATTR_NORMAL:
1448 type[0] = MLX4_FS_REGULAR;
1449 break;
1450
1451 case IB_FLOW_ATTR_ALL_DEFAULT:
1452 type[0] = MLX4_FS_ALL_DEFAULT;
1453 break;
1454
1455 case IB_FLOW_ATTR_MC_DEFAULT:
1456 type[0] = MLX4_FS_MC_DEFAULT;
1457 break;
1458
1459 case IB_FLOW_ATTR_SNIFFER:
1460 type[0] = MLX4_FS_UC_SNIFFER;
1461 type[1] = MLX4_FS_MC_SNIFFER;
1462 break;
1463
1464 default:
1465 err = -EINVAL;
1466 goto err_free;
1467 }
1468
1469 while (i < ARRAY_SIZE(type) && type[i]) {
1470 err = __mlx4_ib_create_flow(qp, flow_attr, domain, type[i],
Moni Shoua146d6e12015-02-03 16:48:38 +02001471 &mflow->reg_id[i].id);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001472 if (err)
Or Gerlitz571e1b22014-10-30 15:59:28 +02001473 goto err_create_flow;
Moni Shoua146d6e12015-02-03 16:48:38 +02001474 if (is_bonded) {
Moni Shoua824c25c2015-02-08 11:49:33 +02001475 /* Application always sees one port so the mirror rule
1476 * must be on port #2
1477 */
Moni Shoua146d6e12015-02-03 16:48:38 +02001478 flow_attr->port = 2;
1479 err = __mlx4_ib_create_flow(qp, flow_attr,
1480 domain, type[j],
1481 &mflow->reg_id[j].mirror);
1482 flow_attr->port = 1;
1483 if (err)
1484 goto err_create_flow;
1485 j++;
1486 }
1487
Roland Dreier11562562015-05-29 23:11:27 -07001488 i++;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001489 }
1490
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001491 if (i < ARRAY_SIZE(type) && flow_attr->type == IB_FLOW_ATTR_NORMAL) {
Moni Shoua146d6e12015-02-03 16:48:38 +02001492 err = mlx4_ib_tunnel_steer_add(qp, flow_attr,
1493 &mflow->reg_id[i].id);
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001494 if (err)
Or Gerlitz571e1b22014-10-30 15:59:28 +02001495 goto err_create_flow;
Roland Dreier11562562015-05-29 23:11:27 -07001496
Moni Shoua146d6e12015-02-03 16:48:38 +02001497 if (is_bonded) {
1498 flow_attr->port = 2;
1499 err = mlx4_ib_tunnel_steer_add(qp, flow_attr,
1500 &mflow->reg_id[j].mirror);
1501 flow_attr->port = 1;
1502 if (err)
1503 goto err_create_flow;
1504 j++;
1505 }
1506 /* function to create mirror rule */
Roland Dreier11562562015-05-29 23:11:27 -07001507 i++;
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001508 }
1509
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001510 return &mflow->ibflow;
1511
Or Gerlitz571e1b22014-10-30 15:59:28 +02001512err_create_flow:
1513 while (i) {
Moni Shoua146d6e12015-02-03 16:48:38 +02001514 (void)__mlx4_ib_destroy_flow(to_mdev(qp->device)->dev,
1515 mflow->reg_id[i].id);
Or Gerlitz571e1b22014-10-30 15:59:28 +02001516 i--;
1517 }
Moni Shoua146d6e12015-02-03 16:48:38 +02001518
1519 while (j) {
1520 (void)__mlx4_ib_destroy_flow(to_mdev(qp->device)->dev,
1521 mflow->reg_id[j].mirror);
1522 j--;
1523 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001524err_free:
1525 kfree(mflow);
1526 return ERR_PTR(err);
1527}
1528
1529static int mlx4_ib_destroy_flow(struct ib_flow *flow_id)
1530{
1531 int err, ret = 0;
1532 int i = 0;
1533 struct mlx4_ib_dev *mdev = to_mdev(flow_id->qp->device);
1534 struct mlx4_ib_flow *mflow = to_mflow(flow_id);
1535
Moni Shoua146d6e12015-02-03 16:48:38 +02001536 while (i < ARRAY_SIZE(mflow->reg_id) && mflow->reg_id[i].id) {
1537 err = __mlx4_ib_destroy_flow(mdev->dev, mflow->reg_id[i].id);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001538 if (err)
1539 ret = err;
Moni Shoua146d6e12015-02-03 16:48:38 +02001540 if (mflow->reg_id[i].mirror) {
1541 err = __mlx4_ib_destroy_flow(mdev->dev,
1542 mflow->reg_id[i].mirror);
1543 if (err)
1544 ret = err;
1545 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001546 i++;
1547 }
1548
1549 kfree(mflow);
1550 return ret;
1551}
1552
Roland Dreier225c7b12007-05-08 18:00:38 -07001553static int mlx4_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1554{
Eli Cohenfa417f72010-10-24 21:08:52 -07001555 int err;
1556 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
Moni Shoua146d6e12015-02-03 16:48:38 +02001557 struct mlx4_dev *dev = mdev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001558 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001559 struct mlx4_ib_steering *ib_steering = NULL;
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001560 enum mlx4_protocol prot = MLX4_PROT_IB_IPV6;
Moni Shoua146d6e12015-02-03 16:48:38 +02001561 struct mlx4_flow_reg_id reg_id;
Eli Cohenfa417f72010-10-24 21:08:52 -07001562
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001563 if (mdev->dev->caps.steering_mode ==
1564 MLX4_STEERING_MODE_DEVICE_MANAGED) {
1565 ib_steering = kmalloc(sizeof(*ib_steering), GFP_KERNEL);
1566 if (!ib_steering)
1567 return -ENOMEM;
1568 }
1569
1570 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw, mqp->port,
1571 !!(mqp->flags &
1572 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
Moni Shoua146d6e12015-02-03 16:48:38 +02001573 prot, &reg_id.id);
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001574 if (err) {
1575 pr_err("multicast attach op failed, err %d\n", err);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001576 goto err_malloc;
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001577 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001578
Moni Shoua146d6e12015-02-03 16:48:38 +02001579 reg_id.mirror = 0;
1580 if (mlx4_is_bonded(dev)) {
Moni Shoua824c25c2015-02-08 11:49:33 +02001581 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw,
1582 (mqp->port == 1) ? 2 : 1,
Moni Shoua146d6e12015-02-03 16:48:38 +02001583 !!(mqp->flags &
1584 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
1585 prot, &reg_id.mirror);
1586 if (err)
1587 goto err_add;
1588 }
1589
Eli Cohenfa417f72010-10-24 21:08:52 -07001590 err = add_gid_entry(ibqp, gid);
1591 if (err)
1592 goto err_add;
1593
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001594 if (ib_steering) {
1595 memcpy(ib_steering->gid.raw, gid->raw, 16);
1596 ib_steering->reg_id = reg_id;
1597 mutex_lock(&mqp->mutex);
1598 list_add(&ib_steering->list, &mqp->steering_rules);
1599 mutex_unlock(&mqp->mutex);
1600 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001601 return 0;
1602
1603err_add:
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001604 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shoua146d6e12015-02-03 16:48:38 +02001605 prot, reg_id.id);
1606 if (reg_id.mirror)
1607 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
1608 prot, reg_id.mirror);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001609err_malloc:
1610 kfree(ib_steering);
1611
Eli Cohenfa417f72010-10-24 21:08:52 -07001612 return err;
1613}
1614
1615static struct mlx4_ib_gid_entry *find_gid_entry(struct mlx4_ib_qp *qp, u8 *raw)
1616{
1617 struct mlx4_ib_gid_entry *ge;
1618 struct mlx4_ib_gid_entry *tmp;
1619 struct mlx4_ib_gid_entry *ret = NULL;
1620
1621 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1622 if (!memcmp(raw, ge->gid.raw, 16)) {
1623 ret = ge;
1624 break;
1625 }
1626 }
1627
1628 return ret;
Roland Dreier225c7b12007-05-08 18:00:38 -07001629}
1630
1631static int mlx4_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1632{
Eli Cohenfa417f72010-10-24 21:08:52 -07001633 int err;
1634 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
Moni Shoua146d6e12015-02-03 16:48:38 +02001635 struct mlx4_dev *dev = mdev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001636 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Eli Cohenfa417f72010-10-24 21:08:52 -07001637 struct net_device *ndev;
1638 struct mlx4_ib_gid_entry *ge;
Moni Shoua146d6e12015-02-03 16:48:38 +02001639 struct mlx4_flow_reg_id reg_id = {0, 0};
Or Gerlitze9a7faf2014-12-17 16:17:34 +02001640 enum mlx4_protocol prot = MLX4_PROT_IB_IPV6;
Eli Cohenfa417f72010-10-24 21:08:52 -07001641
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001642 if (mdev->dev->caps.steering_mode ==
1643 MLX4_STEERING_MODE_DEVICE_MANAGED) {
1644 struct mlx4_ib_steering *ib_steering;
1645
1646 mutex_lock(&mqp->mutex);
1647 list_for_each_entry(ib_steering, &mqp->steering_rules, list) {
1648 if (!memcmp(ib_steering->gid.raw, gid->raw, 16)) {
1649 list_del(&ib_steering->list);
1650 break;
1651 }
1652 }
1653 mutex_unlock(&mqp->mutex);
1654 if (&ib_steering->list == &mqp->steering_rules) {
1655 pr_err("Couldn't find reg_id for mgid. Steering rule is left attached\n");
1656 return -EINVAL;
1657 }
1658 reg_id = ib_steering->reg_id;
1659 kfree(ib_steering);
1660 }
1661
1662 err = mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shoua146d6e12015-02-03 16:48:38 +02001663 prot, reg_id.id);
Eli Cohenfa417f72010-10-24 21:08:52 -07001664 if (err)
1665 return err;
1666
Moni Shoua146d6e12015-02-03 16:48:38 +02001667 if (mlx4_is_bonded(dev)) {
1668 err = mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
1669 prot, reg_id.mirror);
1670 if (err)
1671 return err;
1672 }
1673
Eli Cohenfa417f72010-10-24 21:08:52 -07001674 mutex_lock(&mqp->mutex);
1675 ge = find_gid_entry(mqp, gid->raw);
1676 if (ge) {
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001677 spin_lock_bh(&mdev->iboe.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001678 ndev = ge->added ? mdev->iboe.netdevs[ge->port - 1] : NULL;
1679 if (ndev)
1680 dev_hold(ndev);
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001681 spin_unlock_bh(&mdev->iboe.lock);
Moni Shouad487ee72013-12-12 18:03:13 +02001682 if (ndev)
Eli Cohenfa417f72010-10-24 21:08:52 -07001683 dev_put(ndev);
Eli Cohenfa417f72010-10-24 21:08:52 -07001684 list_del(&ge->list);
1685 kfree(ge);
1686 } else
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001687 pr_warn("could not find mgid entry\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07001688
1689 mutex_unlock(&mqp->mutex);
1690
1691 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001692}
1693
1694static int init_node_data(struct mlx4_ib_dev *dev)
1695{
1696 struct ib_smp *in_mad = NULL;
1697 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001698 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -07001699 int err = -ENOMEM;
1700
1701 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
1702 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
1703 if (!in_mad || !out_mad)
1704 goto out;
1705
1706 init_query_mad(in_mad);
1707 in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001708 if (mlx4_is_master(dev->dev))
1709 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
Roland Dreier225c7b12007-05-08 18:00:38 -07001710
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001711 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07001712 if (err)
1713 goto out;
1714
1715 memcpy(dev->ib_dev.node_desc, out_mad->data, 64);
1716
1717 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
1718
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001719 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07001720 if (err)
1721 goto out;
1722
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00001723 dev->dev->rev_id = be32_to_cpup((__be32 *) (out_mad->data + 32));
Roland Dreier225c7b12007-05-08 18:00:38 -07001724 memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
1725
1726out:
1727 kfree(in_mad);
1728 kfree(out_mad);
1729 return err;
1730}
1731
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001732static ssize_t show_hca(struct device *device, struct device_attribute *attr,
1733 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001734{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001735 struct mlx4_ib_dev *dev =
1736 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Yishai Hadas872bf2f2015-01-25 16:59:35 +02001737 return sprintf(buf, "MT%d\n", dev->dev->persist->pdev->device);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001738}
1739
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001740static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
1741 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001742{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001743 struct mlx4_ib_dev *dev =
1744 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001745 return sprintf(buf, "%d.%d.%d\n", (int) (dev->dev->caps.fw_ver >> 32),
1746 (int) (dev->dev->caps.fw_ver >> 16) & 0xffff,
1747 (int) dev->dev->caps.fw_ver & 0xffff);
1748}
1749
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001750static ssize_t show_rev(struct device *device, struct device_attribute *attr,
1751 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001752{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001753 struct mlx4_ib_dev *dev =
1754 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001755 return sprintf(buf, "%x\n", dev->dev->rev_id);
1756}
1757
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001758static ssize_t show_board(struct device *device, struct device_attribute *attr,
1759 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001760{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001761 struct mlx4_ib_dev *dev =
1762 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
1763 return sprintf(buf, "%.*s\n", MLX4_BOARD_ID_LEN,
1764 dev->dev->board_id);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001765}
1766
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001767static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
1768static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
1769static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
1770static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001771
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001772static struct device_attribute *mlx4_class_attributes[] = {
1773 &dev_attr_hw_rev,
1774 &dev_attr_fw_ver,
1775 &dev_attr_hca_type,
1776 &dev_attr_board_id
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001777};
1778
Matan Barak9433c182014-05-15 15:29:28 +03001779#define MLX4_IB_INVALID_MAC ((u64)-1)
1780static void mlx4_ib_update_qps(struct mlx4_ib_dev *ibdev,
1781 struct net_device *dev,
1782 int port)
1783{
1784 u64 new_smac = 0;
1785 u64 release_mac = MLX4_IB_INVALID_MAC;
1786 struct mlx4_ib_qp *qp;
1787
1788 read_lock(&dev_base_lock);
1789 new_smac = mlx4_mac_to_u64(dev->dev_addr);
1790 read_unlock(&dev_base_lock);
1791
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03001792 atomic64_set(&ibdev->iboe.mac[port - 1], new_smac);
1793
Jack Morgensteind24d9f42014-09-11 14:11:18 +03001794 /* no need for update QP1 and mac registration in non-SRIOV */
1795 if (!mlx4_is_mfunc(ibdev->dev))
1796 return;
1797
Matan Barak9433c182014-05-15 15:29:28 +03001798 mutex_lock(&ibdev->qp1_proxy_lock[port - 1]);
1799 qp = ibdev->qp1_proxy[port - 1];
1800 if (qp) {
1801 int new_smac_index;
Jack Morgenstein25476b02014-09-11 14:11:20 +03001802 u64 old_smac;
Matan Barak9433c182014-05-15 15:29:28 +03001803 struct mlx4_update_qp_params update_params;
1804
Jack Morgenstein25476b02014-09-11 14:11:20 +03001805 mutex_lock(&qp->mutex);
1806 old_smac = qp->pri.smac;
Matan Barak9433c182014-05-15 15:29:28 +03001807 if (new_smac == old_smac)
1808 goto unlock;
1809
1810 new_smac_index = mlx4_register_mac(ibdev->dev, port, new_smac);
1811
1812 if (new_smac_index < 0)
1813 goto unlock;
1814
1815 update_params.smac_index = new_smac_index;
Matan Barak09e05c32014-09-10 16:41:56 +03001816 if (mlx4_update_qp(ibdev->dev, qp->mqp.qpn, MLX4_UPDATE_QP_SMAC,
Matan Barak9433c182014-05-15 15:29:28 +03001817 &update_params)) {
1818 release_mac = new_smac;
1819 goto unlock;
1820 }
Jack Morgenstein25476b02014-09-11 14:11:20 +03001821 /* if old port was zero, no mac was yet registered for this QP */
1822 if (qp->pri.smac_port)
1823 release_mac = old_smac;
Matan Barak9433c182014-05-15 15:29:28 +03001824 qp->pri.smac = new_smac;
Jack Morgenstein25476b02014-09-11 14:11:20 +03001825 qp->pri.smac_port = port;
Matan Barak9433c182014-05-15 15:29:28 +03001826 qp->pri.smac_index = new_smac_index;
Matan Barak9433c182014-05-15 15:29:28 +03001827 }
1828
1829unlock:
Matan Barak9433c182014-05-15 15:29:28 +03001830 if (release_mac != MLX4_IB_INVALID_MAC)
1831 mlx4_unregister_mac(ibdev->dev, port, release_mac);
Jack Morgenstein25476b02014-09-11 14:11:20 +03001832 if (qp)
1833 mutex_unlock(&qp->mutex);
1834 mutex_unlock(&ibdev->qp1_proxy_lock[port - 1]);
Matan Barak9433c182014-05-15 15:29:28 +03001835}
1836
Matan Barak9433c182014-05-15 15:29:28 +03001837static void mlx4_ib_scan_netdevs(struct mlx4_ib_dev *ibdev,
1838 struct net_device *dev,
1839 unsigned long event)
1840
Moni Shouad487ee72013-12-12 18:03:13 +02001841{
1842 struct mlx4_ib_iboe *iboe;
Matan Barak9433c182014-05-15 15:29:28 +03001843 int update_qps_port = -1;
Moni Shouad487ee72013-12-12 18:03:13 +02001844 int port;
1845
Moni Shoua5070cd22015-07-30 18:33:30 +03001846 ASSERT_RTNL();
1847
Moni Shouad487ee72013-12-12 18:03:13 +02001848 iboe = &ibdev->iboe;
1849
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001850 spin_lock_bh(&iboe->lock);
Moni Shouad487ee72013-12-12 18:03:13 +02001851 mlx4_foreach_ib_transport_port(port, ibdev->dev) {
Moni Shouaad4885d22014-02-05 15:13:02 +02001852
Moni Shouad487ee72013-12-12 18:03:13 +02001853 iboe->netdevs[port - 1] =
1854 mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port);
Moni Shouad487ee72013-12-12 18:03:13 +02001855
Matan Barak9433c182014-05-15 15:29:28 +03001856 if (dev == iboe->netdevs[port - 1] &&
1857 (event == NETDEV_CHANGEADDR || event == NETDEV_REGISTER ||
1858 event == NETDEV_UP || event == NETDEV_CHANGE))
1859 update_qps_port = port;
1860
Moni Shouad487ee72013-12-12 18:03:13 +02001861 }
Jack Morgensteindba3ad22014-08-21 14:28:41 +03001862 spin_unlock_bh(&iboe->lock);
Matan Barak9433c182014-05-15 15:29:28 +03001863
1864 if (update_qps_port > 0)
1865 mlx4_ib_update_qps(ibdev, dev, update_qps_port);
Moni Shouad487ee72013-12-12 18:03:13 +02001866}
1867
1868static int mlx4_ib_netdev_event(struct notifier_block *this,
1869 unsigned long event, void *ptr)
1870{
Jiri Pirko351638e2013-05-28 01:30:21 +00001871 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eli Cohenfa417f72010-10-24 21:08:52 -07001872 struct mlx4_ib_dev *ibdev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001873
1874 if (!net_eq(dev_net(dev), &init_net))
1875 return NOTIFY_DONE;
1876
1877 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb);
Matan Barak9433c182014-05-15 15:29:28 +03001878 mlx4_ib_scan_netdevs(ibdev, dev, event);
Eli Cohenfa417f72010-10-24 21:08:52 -07001879
1880 return NOTIFY_DONE;
1881}
1882
Jack Morgenstein54679e12012-08-03 08:40:43 +00001883static void init_pkeys(struct mlx4_ib_dev *ibdev)
1884{
1885 int port;
1886 int slave;
1887 int i;
1888
1889 if (mlx4_is_master(ibdev->dev)) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02001890 for (slave = 0; slave <= ibdev->dev->persist->num_vfs;
1891 ++slave) {
Jack Morgenstein54679e12012-08-03 08:40:43 +00001892 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
1893 for (i = 0;
1894 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
1895 ++i) {
1896 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i] =
1897 /* master has the identity virt2phys pkey mapping */
1898 (slave == mlx4_master_func_num(ibdev->dev) || !i) ? i :
1899 ibdev->dev->phys_caps.pkey_phys_table_len[port] - 1;
1900 mlx4_sync_pkey_table(ibdev->dev, slave, port, i,
1901 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i]);
1902 }
1903 }
1904 }
1905 /* initialize pkey cache */
1906 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
1907 for (i = 0;
1908 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
1909 ++i)
1910 ibdev->pkeys.phys_pkey_cache[port-1][i] =
1911 (i) ? 0 : 0xFFFF;
1912 }
1913 }
1914}
1915
Shlomo Pongratze605b742012-04-29 17:04:27 +03001916static void mlx4_ib_alloc_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
1917{
Matan Barakc66fa192015-05-31 09:30:16 +03001918 int i, j, eq = 0, total_eqs = 0;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001919
Matan Barakc66fa192015-05-31 09:30:16 +03001920 ibdev->eq_table = kcalloc(dev->caps.num_comp_vectors,
1921 sizeof(ibdev->eq_table[0]), GFP_KERNEL);
Shlomo Pongratze605b742012-04-29 17:04:27 +03001922 if (!ibdev->eq_table)
1923 return;
1924
Matan Barakc66fa192015-05-31 09:30:16 +03001925 for (i = 1; i <= dev->caps.num_ports; i++) {
1926 for (j = 0; j < mlx4_get_eqs_per_port(dev, i);
1927 j++, total_eqs++) {
1928 if (i > 1 && mlx4_is_eq_shared(dev, total_eqs))
1929 continue;
1930 ibdev->eq_table[eq] = total_eqs;
1931 if (!mlx4_assign_eq(dev, i,
1932 &ibdev->eq_table[eq]))
1933 eq++;
1934 else
1935 ibdev->eq_table[eq] = -1;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001936 }
1937 }
1938
Matan Barakc66fa192015-05-31 09:30:16 +03001939 for (i = eq; i < dev->caps.num_comp_vectors;
1940 ibdev->eq_table[i++] = -1)
1941 ;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001942
1943 /* Advertise the new number of EQs to clients */
Matan Barakc66fa192015-05-31 09:30:16 +03001944 ibdev->ib_dev.num_comp_vectors = eq;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001945}
1946
1947static void mlx4_ib_free_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
1948{
1949 int i;
Matan Barakc66fa192015-05-31 09:30:16 +03001950 int total_eqs = ibdev->ib_dev.num_comp_vectors;
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03001951
Matan Barakc66fa192015-05-31 09:30:16 +03001952 /* no eqs were allocated */
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03001953 if (!ibdev->eq_table)
1954 return;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001955
1956 /* Reset the advertised EQ number */
Matan Barakc66fa192015-05-31 09:30:16 +03001957 ibdev->ib_dev.num_comp_vectors = 0;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001958
Matan Barakc66fa192015-05-31 09:30:16 +03001959 for (i = 0; i < total_eqs; i++)
Shlomo Pongratze605b742012-04-29 17:04:27 +03001960 mlx4_release_eq(dev, ibdev->eq_table[i]);
Shlomo Pongratze605b742012-04-29 17:04:27 +03001961
Shlomo Pongratze605b742012-04-29 17:04:27 +03001962 kfree(ibdev->eq_table);
Matan Barakc66fa192015-05-31 09:30:16 +03001963 ibdev->eq_table = NULL;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001964}
1965
Ira Weiny77386132015-05-13 20:02:58 -04001966static int mlx4_port_immutable(struct ib_device *ibdev, u8 port_num,
1967 struct ib_port_immutable *immutable)
1968{
1969 struct ib_port_attr attr;
1970 int err;
1971
1972 err = mlx4_ib_query_port(ibdev, port_num, &attr);
1973 if (err)
1974 return err;
1975
1976 immutable->pkey_tbl_len = attr.pkey_tbl_len;
1977 immutable->gid_tbl_len = attr.gid_tbl_len;
1978
Ira Weinyf9b22e32015-05-13 20:02:59 -04001979 if (mlx4_ib_port_link_layer(ibdev, port_num) == IB_LINK_LAYER_INFINIBAND)
1980 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_IB;
1981 else
1982 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE;
1983
Ira Weiny337877a2015-06-06 14:38:29 -04001984 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
1985
Ira Weiny77386132015-05-13 20:02:58 -04001986 return 0;
1987}
1988
Roland Dreier225c7b12007-05-08 18:00:38 -07001989static void *mlx4_ib_add(struct mlx4_dev *dev)
1990{
1991 struct mlx4_ib_dev *ibdev;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001992 int num_ports = 0;
Jack Morgenstein035b1032012-05-10 23:28:09 +03001993 int i, j;
Eli Cohenfa417f72010-10-24 21:08:52 -07001994 int err;
1995 struct mlx4_ib_iboe *iboe;
Matan Barak41966702014-02-02 17:06:47 +02001996 int ib_num_ports = 0;
Moni Shouaa5750092015-02-03 16:48:37 +02001997 int num_req_counters;
Eran Ben Elishac3abb512015-06-15 17:59:03 +03001998 int allocated;
1999 u32 counter_index;
Roland Dreier225c7b12007-05-08 18:00:38 -07002000
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002001 pr_info_once("%s", mlx4_ib_version);
Roland Dreier68f39482008-02-04 20:20:44 -08002002
Jack Morgenstein026149c2012-08-03 08:40:55 +00002003 num_ports = 0;
Eli Cohenfa417f72010-10-24 21:08:52 -07002004 mlx4_foreach_ib_transport_port(i, dev)
Roland Dreier22e7ef92009-01-09 13:22:29 -08002005 num_ports++;
2006
2007 /* No point in registering a device with no ports... */
2008 if (num_ports == 0)
2009 return NULL;
2010
Roland Dreier225c7b12007-05-08 18:00:38 -07002011 ibdev = (struct mlx4_ib_dev *) ib_alloc_device(sizeof *ibdev);
2012 if (!ibdev) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002013 dev_err(&dev->persist->pdev->dev,
2014 "Device struct alloc failed\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002015 return NULL;
2016 }
2017
Eli Cohenfa417f72010-10-24 21:08:52 -07002018 iboe = &ibdev->iboe;
2019
Roland Dreier225c7b12007-05-08 18:00:38 -07002020 if (mlx4_pd_alloc(dev, &ibdev->priv_pdn))
2021 goto err_dealloc;
2022
2023 if (mlx4_uar_alloc(dev, &ibdev->priv_uar))
2024 goto err_pd;
2025
Roland Dreier4979d182011-01-12 09:50:36 -08002026 ibdev->uar_map = ioremap((phys_addr_t) ibdev->priv_uar.pfn << PAGE_SHIFT,
2027 PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -07002028 if (!ibdev->uar_map)
2029 goto err_uar;
Jack Morgenstein26c6bc72007-05-13 17:18:23 +03002030 MLX4_INIT_DOORBELL_LOCK(&ibdev->uar_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07002031
Roland Dreier225c7b12007-05-08 18:00:38 -07002032 ibdev->dev = dev;
Moni Shouac6215742015-02-03 16:48:39 +02002033 ibdev->bond_next_port = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002034
2035 strlcpy(ibdev->ib_dev.name, "mlx4_%d", IB_DEVICE_NAME_MAX);
2036 ibdev->ib_dev.owner = THIS_MODULE;
2037 ibdev->ib_dev.node_type = RDMA_NODE_IB_CA;
Roland Dreier95d04f02008-07-23 08:12:26 -07002038 ibdev->ib_dev.local_dma_lkey = dev->caps.reserved_lkey;
Roland Dreier22e7ef92009-01-09 13:22:29 -08002039 ibdev->num_ports = num_ports;
Moni Shouaa5750092015-02-03 16:48:37 +02002040 ibdev->ib_dev.phys_port_cnt = mlx4_is_bonded(dev) ?
2041 1 : ibdev->num_ports;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -08002042 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002043 ibdev->ib_dev.dma_device = &dev->persist->pdev->dev;
Moni Shoua5070cd22015-07-30 18:33:30 +03002044 ibdev->ib_dev.get_netdev = mlx4_ib_get_netdev;
2045 ibdev->ib_dev.add_gid = mlx4_ib_add_gid;
2046 ibdev->ib_dev.del_gid = mlx4_ib_del_gid;
Roland Dreier225c7b12007-05-08 18:00:38 -07002047
Or Gerlitz08ff3232012-10-21 14:59:24 +00002048 if (dev->caps.userspace_caps)
2049 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION;
2050 else
2051 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION;
2052
Roland Dreier225c7b12007-05-08 18:00:38 -07002053 ibdev->ib_dev.uverbs_cmd_mask =
2054 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2055 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2056 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2057 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2058 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2059 (1ull << IB_USER_VERBS_CMD_REG_MR) |
Matan Barak93769322014-07-31 11:01:30 +03002060 (1ull << IB_USER_VERBS_CMD_REREG_MR) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002061 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2062 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2063 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07002064 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002065 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2066 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2067 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002068 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002069 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2070 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2071 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2072 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2073 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
Jack Morgenstein65541cb2007-06-21 13:03:11 +03002074 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
Sean Hefty18abd5e2011-06-02 10:43:26 -07002075 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
Sean Hefty42849b22011-08-11 13:57:43 -07002076 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
2077 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
Roland Dreier225c7b12007-05-08 18:00:38 -07002078
2079 ibdev->ib_dev.query_device = mlx4_ib_query_device;
2080 ibdev->ib_dev.query_port = mlx4_ib_query_port;
Eli Cohenfa417f72010-10-24 21:08:52 -07002081 ibdev->ib_dev.get_link_layer = mlx4_ib_port_link_layer;
Roland Dreier225c7b12007-05-08 18:00:38 -07002082 ibdev->ib_dev.query_gid = mlx4_ib_query_gid;
2083 ibdev->ib_dev.query_pkey = mlx4_ib_query_pkey;
2084 ibdev->ib_dev.modify_device = mlx4_ib_modify_device;
2085 ibdev->ib_dev.modify_port = mlx4_ib_modify_port;
2086 ibdev->ib_dev.alloc_ucontext = mlx4_ib_alloc_ucontext;
2087 ibdev->ib_dev.dealloc_ucontext = mlx4_ib_dealloc_ucontext;
2088 ibdev->ib_dev.mmap = mlx4_ib_mmap;
2089 ibdev->ib_dev.alloc_pd = mlx4_ib_alloc_pd;
2090 ibdev->ib_dev.dealloc_pd = mlx4_ib_dealloc_pd;
2091 ibdev->ib_dev.create_ah = mlx4_ib_create_ah;
2092 ibdev->ib_dev.query_ah = mlx4_ib_query_ah;
2093 ibdev->ib_dev.destroy_ah = mlx4_ib_destroy_ah;
2094 ibdev->ib_dev.create_srq = mlx4_ib_create_srq;
2095 ibdev->ib_dev.modify_srq = mlx4_ib_modify_srq;
Jack Morgenstein65541cb2007-06-21 13:03:11 +03002096 ibdev->ib_dev.query_srq = mlx4_ib_query_srq;
Roland Dreier225c7b12007-05-08 18:00:38 -07002097 ibdev->ib_dev.destroy_srq = mlx4_ib_destroy_srq;
2098 ibdev->ib_dev.post_srq_recv = mlx4_ib_post_srq_recv;
2099 ibdev->ib_dev.create_qp = mlx4_ib_create_qp;
2100 ibdev->ib_dev.modify_qp = mlx4_ib_modify_qp;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002101 ibdev->ib_dev.query_qp = mlx4_ib_query_qp;
Roland Dreier225c7b12007-05-08 18:00:38 -07002102 ibdev->ib_dev.destroy_qp = mlx4_ib_destroy_qp;
2103 ibdev->ib_dev.post_send = mlx4_ib_post_send;
2104 ibdev->ib_dev.post_recv = mlx4_ib_post_recv;
2105 ibdev->ib_dev.create_cq = mlx4_ib_create_cq;
Eli Cohen3fdcb972008-04-16 21:09:33 -07002106 ibdev->ib_dev.modify_cq = mlx4_ib_modify_cq;
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07002107 ibdev->ib_dev.resize_cq = mlx4_ib_resize_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07002108 ibdev->ib_dev.destroy_cq = mlx4_ib_destroy_cq;
2109 ibdev->ib_dev.poll_cq = mlx4_ib_poll_cq;
2110 ibdev->ib_dev.req_notify_cq = mlx4_ib_arm_cq;
2111 ibdev->ib_dev.get_dma_mr = mlx4_ib_get_dma_mr;
2112 ibdev->ib_dev.reg_user_mr = mlx4_ib_reg_user_mr;
Matan Barak93769322014-07-31 11:01:30 +03002113 ibdev->ib_dev.rereg_user_mr = mlx4_ib_rereg_user_mr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002114 ibdev->ib_dev.dereg_mr = mlx4_ib_dereg_mr;
Sagi Grimberg679e34d2015-07-30 10:32:42 +03002115 ibdev->ib_dev.alloc_mr = mlx4_ib_alloc_mr;
Roland Dreier95d04f02008-07-23 08:12:26 -07002116 ibdev->ib_dev.alloc_fast_reg_page_list = mlx4_ib_alloc_fast_reg_page_list;
2117 ibdev->ib_dev.free_fast_reg_page_list = mlx4_ib_free_fast_reg_page_list;
Roland Dreier225c7b12007-05-08 18:00:38 -07002118 ibdev->ib_dev.attach_mcast = mlx4_ib_mcg_attach;
2119 ibdev->ib_dev.detach_mcast = mlx4_ib_mcg_detach;
2120 ibdev->ib_dev.process_mad = mlx4_ib_process_mad;
Ira Weiny77386132015-05-13 20:02:58 -04002121 ibdev->ib_dev.get_port_immutable = mlx4_port_immutable;
Roland Dreier225c7b12007-05-08 18:00:38 -07002122
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002123 if (!mlx4_is_slave(ibdev->dev)) {
2124 ibdev->ib_dev.alloc_fmr = mlx4_ib_fmr_alloc;
2125 ibdev->ib_dev.map_phys_fmr = mlx4_ib_map_phys_fmr;
2126 ibdev->ib_dev.unmap_fmr = mlx4_ib_unmap_fmr;
2127 ibdev->ib_dev.dealloc_fmr = mlx4_ib_fmr_dealloc;
2128 }
Jack Morgenstein8ad11fb2007-08-01 12:29:05 +03002129
Shani Michaelib4253882013-02-06 16:19:16 +00002130 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW ||
2131 dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
2132 ibdev->ib_dev.alloc_mw = mlx4_ib_alloc_mw;
2133 ibdev->ib_dev.bind_mw = mlx4_ib_bind_mw;
2134 ibdev->ib_dev.dealloc_mw = mlx4_ib_dealloc_mw;
2135
2136 ibdev->ib_dev.uverbs_cmd_mask |=
2137 (1ull << IB_USER_VERBS_CMD_ALLOC_MW) |
2138 (1ull << IB_USER_VERBS_CMD_DEALLOC_MW);
2139 }
2140
Sean Hefty012a8ff2011-06-02 09:01:33 -07002141 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) {
2142 ibdev->ib_dev.alloc_xrcd = mlx4_ib_alloc_xrcd;
2143 ibdev->ib_dev.dealloc_xrcd = mlx4_ib_dealloc_xrcd;
2144 ibdev->ib_dev.uverbs_cmd_mask |=
2145 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
2146 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
2147 }
2148
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002149 if (check_flow_steering_support(dev)) {
Matan Barak0a9b7d52013-11-07 15:25:15 +02002150 ibdev->steering_support = MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002151 ibdev->ib_dev.create_flow = mlx4_ib_create_flow;
2152 ibdev->ib_dev.destroy_flow = mlx4_ib_destroy_flow;
2153
Yann Droneaudf21519b2013-11-06 23:21:49 +01002154 ibdev->ib_dev.uverbs_ex_cmd_mask |=
2155 (1ull << IB_USER_VERBS_EX_CMD_CREATE_FLOW) |
2156 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_FLOW);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03002157 }
2158
Matan Barak4b664c42015-06-11 16:35:27 +03002159 ibdev->ib_dev.uverbs_ex_cmd_mask |=
2160 (1ull << IB_USER_VERBS_EX_CMD_QUERY_DEVICE) |
2161 (1ull << IB_USER_VERBS_EX_CMD_CREATE_CQ);
2162
Shlomo Pongratze605b742012-04-29 17:04:27 +03002163 mlx4_ib_alloc_eqs(dev, ibdev);
2164
Eli Cohenfa417f72010-10-24 21:08:52 -07002165 spin_lock_init(&iboe->lock);
2166
Roland Dreier225c7b12007-05-08 18:00:38 -07002167 if (init_node_data(ibdev))
2168 goto err_map;
2169
Moni Shouaa5750092015-02-03 16:48:37 +02002170 num_req_counters = mlx4_is_bonded(dev) ? 1 : ibdev->num_ports;
2171 for (i = 0; i < num_req_counters; ++i) {
Matan Barak9433c182014-05-15 15:29:28 +03002172 mutex_init(&ibdev->qp1_proxy_lock[i]);
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002173 allocated = 0;
Or Gerlitzcfcde112011-06-15 14:49:57 +00002174 if (mlx4_ib_port_link_layer(&ibdev->ib_dev, i + 1) ==
2175 IB_LINK_LAYER_ETHERNET) {
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002176 err = mlx4_counter_alloc(ibdev->dev, &counter_index);
2177 /* if failed to allocate a new counter, use default */
Or Gerlitzcfcde112011-06-15 14:49:57 +00002178 if (err)
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002179 counter_index =
2180 mlx4_get_default_counter_index(dev,
2181 i + 1);
2182 else
2183 allocated = 1;
2184 } else { /* IB_LINK_LAYER_INFINIBAND use the default counter */
2185 counter_index = mlx4_get_default_counter_index(dev,
2186 i + 1);
Dan Carpenter3839d8a2014-03-28 11:21:39 +03002187 }
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002188 ibdev->counters[i].index = counter_index;
2189 ibdev->counters[i].allocated = allocated;
2190 pr_info("counter index %d for port %d allocated %d\n",
2191 counter_index, i + 1, allocated);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002192 }
Moni Shouaa5750092015-02-03 16:48:37 +02002193 if (mlx4_is_bonded(dev))
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002194 for (i = 1; i < ibdev->num_ports ; ++i) {
2195 ibdev->counters[i].index = ibdev->counters[0].index;
2196 ibdev->counters[i].allocated = 0;
2197 }
Or Gerlitzcfcde112011-06-15 14:49:57 +00002198
Matan Barak41966702014-02-02 17:06:47 +02002199 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
2200 ib_num_ports++;
2201
Roland Dreier225c7b12007-05-08 18:00:38 -07002202 spin_lock_init(&ibdev->sm_lock);
2203 mutex_init(&ibdev->cap_mask_mutex);
Yishai Hadas35f05da2015-02-08 11:49:34 +02002204 INIT_LIST_HEAD(&ibdev->qp_list);
2205 spin_lock_init(&ibdev->reset_flow_resource_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07002206
Matan Barak41966702014-02-02 17:06:47 +02002207 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED &&
2208 ib_num_ports) {
Matan Barakc1c98502013-11-07 15:25:17 +02002209 ibdev->steer_qpn_count = MLX4_IB_UC_MAX_NUM_QPS;
2210 err = mlx4_qp_reserve_range(dev, ibdev->steer_qpn_count,
2211 MLX4_IB_UC_STEER_QPN_ALIGN,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02002212 &ibdev->steer_qpn_base, 0);
Matan Barakc1c98502013-11-07 15:25:17 +02002213 if (err)
2214 goto err_counter;
2215
2216 ibdev->ib_uc_qpns_bitmap =
2217 kmalloc(BITS_TO_LONGS(ibdev->steer_qpn_count) *
2218 sizeof(long),
2219 GFP_KERNEL);
2220 if (!ibdev->ib_uc_qpns_bitmap) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +02002221 dev_err(&dev->persist->pdev->dev,
2222 "bit map alloc failed\n");
Matan Barakc1c98502013-11-07 15:25:17 +02002223 goto err_steer_qp_release;
2224 }
2225
2226 bitmap_zero(ibdev->ib_uc_qpns_bitmap, ibdev->steer_qpn_count);
2227
2228 err = mlx4_FLOW_STEERING_IB_UC_QP_RANGE(
2229 dev, ibdev->steer_qpn_base,
2230 ibdev->steer_qpn_base +
2231 ibdev->steer_qpn_count - 1);
2232 if (err)
2233 goto err_steer_free_bitmap;
2234 }
2235
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002236 for (j = 1; j <= ibdev->dev->caps.num_ports; j++)
2237 atomic64_set(&iboe->mac[j - 1], ibdev->dev->caps.def_mac[j]);
2238
Ralph Campbell9a6edb62010-05-06 17:03:25 -07002239 if (ib_register_device(&ibdev->ib_dev, NULL))
Matan Barakc1c98502013-11-07 15:25:17 +02002240 goto err_steer_free_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -07002241
2242 if (mlx4_ib_mad_init(ibdev))
2243 goto err_reg;
2244
Jack Morgensteinfc065732012-08-03 08:40:42 +00002245 if (mlx4_ib_init_sriov(ibdev))
2246 goto err_mad;
2247
Moni Shouad487ee72013-12-12 18:03:13 +02002248 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE) {
2249 if (!iboe->nb.notifier_call) {
2250 iboe->nb.notifier_call = mlx4_ib_netdev_event;
2251 err = register_netdevice_notifier(&iboe->nb);
2252 if (err) {
2253 iboe->nb.notifier_call = NULL;
2254 goto err_notif;
2255 }
2256 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002257 }
2258
Jack Morgenstein035b1032012-05-10 23:28:09 +03002259 for (j = 0; j < ARRAY_SIZE(mlx4_class_attributes); ++j) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002260 if (device_create_file(&ibdev->ib_dev.dev,
Jack Morgenstein035b1032012-05-10 23:28:09 +03002261 mlx4_class_attributes[j]))
Eli Cohenfa417f72010-10-24 21:08:52 -07002262 goto err_notif;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002263 }
2264
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002265 ibdev->ib_active = true;
2266
Jack Morgenstein54679e12012-08-03 08:40:43 +00002267 if (mlx4_is_mfunc(ibdev->dev))
2268 init_pkeys(ibdev);
2269
Jack Morgenstein3806d082012-08-03 08:40:58 +00002270 /* create paravirt contexts for any VFs which are active */
2271 if (mlx4_is_master(ibdev->dev)) {
2272 for (j = 0; j < MLX4_MFUNC_MAX; j++) {
2273 if (j == mlx4_master_func_num(ibdev->dev))
2274 continue;
2275 if (mlx4_is_slave_active(ibdev->dev, j))
2276 do_slave_init(ibdev, j, 1);
2277 }
2278 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002279 return ibdev;
2280
Eli Cohenfa417f72010-10-24 21:08:52 -07002281err_notif:
Moni Shouad487ee72013-12-12 18:03:13 +02002282 if (ibdev->iboe.nb.notifier_call) {
2283 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
2284 pr_warn("failure unregistering notifier\n");
2285 ibdev->iboe.nb.notifier_call = NULL;
2286 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002287 flush_workqueue(wq);
2288
Jack Morgensteinfc065732012-08-03 08:40:42 +00002289 mlx4_ib_close_sriov(ibdev);
2290
2291err_mad:
2292 mlx4_ib_mad_cleanup(ibdev);
2293
Roland Dreier225c7b12007-05-08 18:00:38 -07002294err_reg:
2295 ib_unregister_device(&ibdev->ib_dev);
2296
Matan Barakc1c98502013-11-07 15:25:17 +02002297err_steer_free_bitmap:
2298 kfree(ibdev->ib_uc_qpns_bitmap);
2299
2300err_steer_qp_release:
2301 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED)
2302 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
2303 ibdev->steer_qpn_count);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002304err_counter:
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002305 for (i = 0; i < ibdev->num_ports; ++i) {
2306 if (ibdev->counters[i].index != -1 &&
2307 ibdev->counters[i].allocated)
2308 mlx4_counter_free(ibdev->dev,
2309 ibdev->counters[i].index);
2310 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002311err_map:
2312 iounmap(ibdev->uar_map);
2313
2314err_uar:
2315 mlx4_uar_free(dev, &ibdev->priv_uar);
2316
2317err_pd:
2318 mlx4_pd_free(dev, ibdev->priv_pdn);
2319
2320err_dealloc:
2321 ib_dealloc_device(&ibdev->ib_dev);
2322
2323 return NULL;
2324}
2325
Matan Barakc1c98502013-11-07 15:25:17 +02002326int mlx4_ib_steer_qp_alloc(struct mlx4_ib_dev *dev, int count, int *qpn)
2327{
2328 int offset;
2329
2330 WARN_ON(!dev->ib_uc_qpns_bitmap);
2331
2332 offset = bitmap_find_free_region(dev->ib_uc_qpns_bitmap,
2333 dev->steer_qpn_count,
2334 get_count_order(count));
2335 if (offset < 0)
2336 return offset;
2337
2338 *qpn = dev->steer_qpn_base + offset;
2339 return 0;
2340}
2341
2342void mlx4_ib_steer_qp_free(struct mlx4_ib_dev *dev, u32 qpn, int count)
2343{
2344 if (!qpn ||
2345 dev->steering_support != MLX4_STEERING_MODE_DEVICE_MANAGED)
2346 return;
2347
2348 BUG_ON(qpn < dev->steer_qpn_base);
2349
2350 bitmap_release_region(dev->ib_uc_qpns_bitmap,
2351 qpn - dev->steer_qpn_base,
2352 get_count_order(count));
2353}
2354
2355int mlx4_ib_steer_qp_reg(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
2356 int is_attach)
2357{
2358 int err;
2359 size_t flow_size;
2360 struct ib_flow_attr *flow = NULL;
2361 struct ib_flow_spec_ib *ib_spec;
2362
2363 if (is_attach) {
2364 flow_size = sizeof(struct ib_flow_attr) +
2365 sizeof(struct ib_flow_spec_ib);
2366 flow = kzalloc(flow_size, GFP_KERNEL);
2367 if (!flow)
2368 return -ENOMEM;
2369 flow->port = mqp->port;
2370 flow->num_of_specs = 1;
2371 flow->size = flow_size;
2372 ib_spec = (struct ib_flow_spec_ib *)(flow + 1);
2373 ib_spec->type = IB_FLOW_SPEC_IB;
2374 ib_spec->size = sizeof(struct ib_flow_spec_ib);
2375 /* Add an empty rule for IB L2 */
2376 memset(&ib_spec->mask, 0, sizeof(ib_spec->mask));
2377
2378 err = __mlx4_ib_create_flow(&mqp->ibqp, flow,
2379 IB_FLOW_DOMAIN_NIC,
2380 MLX4_FS_REGULAR,
2381 &mqp->reg_id);
2382 } else {
2383 err = __mlx4_ib_destroy_flow(mdev->dev, mqp->reg_id);
2384 }
2385 kfree(flow);
2386 return err;
2387}
2388
Roland Dreier225c7b12007-05-08 18:00:38 -07002389static void mlx4_ib_remove(struct mlx4_dev *dev, void *ibdev_ptr)
2390{
2391 struct mlx4_ib_dev *ibdev = ibdev_ptr;
2392 int p;
2393
Moni Shoua4bf97152014-08-21 14:28:42 +03002394 ibdev->ib_active = false;
2395 flush_workqueue(wq);
2396
Jack Morgensteinfc065732012-08-03 08:40:42 +00002397 mlx4_ib_close_sriov(ibdev);
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07002398 mlx4_ib_mad_cleanup(ibdev);
2399 ib_unregister_device(&ibdev->ib_dev);
Eli Cohenfa417f72010-10-24 21:08:52 -07002400 if (ibdev->iboe.nb.notifier_call) {
2401 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002402 pr_warn("failure unregistering notifier\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07002403 ibdev->iboe.nb.notifier_call = NULL;
2404 }
Matan Barakc1c98502013-11-07 15:25:17 +02002405
2406 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED) {
2407 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
2408 ibdev->steer_qpn_count);
2409 kfree(ibdev->ib_uc_qpns_bitmap);
2410 }
2411
Eli Cohenfa417f72010-10-24 21:08:52 -07002412 iounmap(ibdev->uar_map);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002413 for (p = 0; p < ibdev->num_ports; ++p)
Eran Ben Elishac3abb512015-06-15 17:59:03 +03002414 if (ibdev->counters[p].index != -1 &&
2415 ibdev->counters[p].allocated)
2416 mlx4_counter_free(ibdev->dev, ibdev->counters[p].index);
Eli Cohenfa417f72010-10-24 21:08:52 -07002417 mlx4_foreach_port(p, dev, MLX4_PORT_TYPE_IB)
Roland Dreier225c7b12007-05-08 18:00:38 -07002418 mlx4_CLOSE_PORT(dev, p);
2419
Shlomo Pongratze605b742012-04-29 17:04:27 +03002420 mlx4_ib_free_eqs(dev, ibdev);
2421
Roland Dreier225c7b12007-05-08 18:00:38 -07002422 mlx4_uar_free(dev, &ibdev->priv_uar);
2423 mlx4_pd_free(dev, ibdev->priv_pdn);
2424 ib_dealloc_device(&ibdev->ib_dev);
2425}
2426
Jack Morgensteinfc065732012-08-03 08:40:42 +00002427static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init)
2428{
2429 struct mlx4_ib_demux_work **dm = NULL;
2430 struct mlx4_dev *dev = ibdev->dev;
2431 int i;
2432 unsigned long flags;
Matan Barak449fc482014-03-19 18:11:52 +02002433 struct mlx4_active_ports actv_ports;
2434 unsigned int ports;
2435 unsigned int first_port;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002436
2437 if (!mlx4_is_master(dev))
2438 return;
2439
Matan Barak449fc482014-03-19 18:11:52 +02002440 actv_ports = mlx4_get_active_ports(dev, slave);
2441 ports = bitmap_weight(actv_ports.ports, dev->caps.num_ports);
2442 first_port = find_first_bit(actv_ports.ports, dev->caps.num_ports);
2443
2444 dm = kcalloc(ports, sizeof(*dm), GFP_ATOMIC);
Jack Morgensteinfc065732012-08-03 08:40:42 +00002445 if (!dm) {
2446 pr_err("failed to allocate memory for tunneling qp update\n");
Maninder Singha39a98f2015-07-08 09:43:35 +05302447 return;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002448 }
2449
Matan Barak449fc482014-03-19 18:11:52 +02002450 for (i = 0; i < ports; i++) {
Jack Morgensteinfc065732012-08-03 08:40:42 +00002451 dm[i] = kmalloc(sizeof (struct mlx4_ib_demux_work), GFP_ATOMIC);
2452 if (!dm[i]) {
2453 pr_err("failed to allocate memory for tunneling qp update work struct\n");
Maninder Singha39a98f2015-07-08 09:43:35 +05302454 while (--i >= 0)
2455 kfree(dm[i]);
Jack Morgensteinfc065732012-08-03 08:40:42 +00002456 goto out;
2457 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00002458 INIT_WORK(&dm[i]->work, mlx4_ib_tunnels_update_work);
Matan Barak449fc482014-03-19 18:11:52 +02002459 dm[i]->port = first_port + i + 1;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002460 dm[i]->slave = slave;
2461 dm[i]->do_init = do_init;
2462 dm[i]->dev = ibdev;
Doug Ledfordd9a047a2015-07-09 10:21:08 -04002463 }
2464 /* initialize or tear down tunnel QPs for the slave */
2465 spin_lock_irqsave(&ibdev->sriov.going_down_lock, flags);
2466 if (!ibdev->sriov.is_going_down) {
2467 for (i = 0; i < ports; i++)
Jack Morgensteinfc065732012-08-03 08:40:42 +00002468 queue_work(ibdev->sriov.demux[i].ud_wq, &dm[i]->work);
2469 spin_unlock_irqrestore(&ibdev->sriov.going_down_lock, flags);
Doug Ledfordd9a047a2015-07-09 10:21:08 -04002470 } else {
2471 spin_unlock_irqrestore(&ibdev->sriov.going_down_lock, flags);
2472 for (i = 0; i < ports; i++)
2473 kfree(dm[i]);
Jack Morgensteinfc065732012-08-03 08:40:42 +00002474 }
2475out:
Syam Sidhardhanc89d1272013-02-24 23:20:05 +00002476 kfree(dm);
Jack Morgensteinfc065732012-08-03 08:40:42 +00002477 return;
2478}
2479
Yishai Hadas35f05da2015-02-08 11:49:34 +02002480static void mlx4_ib_handle_catas_error(struct mlx4_ib_dev *ibdev)
2481{
2482 struct mlx4_ib_qp *mqp;
2483 unsigned long flags_qp;
2484 unsigned long flags_cq;
2485 struct mlx4_ib_cq *send_mcq, *recv_mcq;
2486 struct list_head cq_notify_list;
2487 struct mlx4_cq *mcq;
2488 unsigned long flags;
2489
2490 pr_warn("mlx4_ib_handle_catas_error was started\n");
2491 INIT_LIST_HEAD(&cq_notify_list);
2492
2493 /* Go over qp list reside on that ibdev, sync with create/destroy qp.*/
2494 spin_lock_irqsave(&ibdev->reset_flow_resource_lock, flags);
2495
2496 list_for_each_entry(mqp, &ibdev->qp_list, qps_list) {
2497 spin_lock_irqsave(&mqp->sq.lock, flags_qp);
2498 if (mqp->sq.tail != mqp->sq.head) {
2499 send_mcq = to_mcq(mqp->ibqp.send_cq);
2500 spin_lock_irqsave(&send_mcq->lock, flags_cq);
2501 if (send_mcq->mcq.comp &&
2502 mqp->ibqp.send_cq->comp_handler) {
2503 if (!send_mcq->mcq.reset_notify_added) {
2504 send_mcq->mcq.reset_notify_added = 1;
2505 list_add_tail(&send_mcq->mcq.reset_notify,
2506 &cq_notify_list);
2507 }
2508 }
2509 spin_unlock_irqrestore(&send_mcq->lock, flags_cq);
2510 }
2511 spin_unlock_irqrestore(&mqp->sq.lock, flags_qp);
2512 /* Now, handle the QP's receive queue */
2513 spin_lock_irqsave(&mqp->rq.lock, flags_qp);
2514 /* no handling is needed for SRQ */
2515 if (!mqp->ibqp.srq) {
2516 if (mqp->rq.tail != mqp->rq.head) {
2517 recv_mcq = to_mcq(mqp->ibqp.recv_cq);
2518 spin_lock_irqsave(&recv_mcq->lock, flags_cq);
2519 if (recv_mcq->mcq.comp &&
2520 mqp->ibqp.recv_cq->comp_handler) {
2521 if (!recv_mcq->mcq.reset_notify_added) {
2522 recv_mcq->mcq.reset_notify_added = 1;
2523 list_add_tail(&recv_mcq->mcq.reset_notify,
2524 &cq_notify_list);
2525 }
2526 }
2527 spin_unlock_irqrestore(&recv_mcq->lock,
2528 flags_cq);
2529 }
2530 }
2531 spin_unlock_irqrestore(&mqp->rq.lock, flags_qp);
2532 }
2533
2534 list_for_each_entry(mcq, &cq_notify_list, reset_notify) {
2535 mcq->comp(mcq);
2536 }
2537 spin_unlock_irqrestore(&ibdev->reset_flow_resource_lock, flags);
2538 pr_warn("mlx4_ib_handle_catas_error ended\n");
2539}
2540
Moni Shouaa5750092015-02-03 16:48:37 +02002541static void handle_bonded_port_state_event(struct work_struct *work)
2542{
2543 struct ib_event_work *ew =
2544 container_of(work, struct ib_event_work, work);
2545 struct mlx4_ib_dev *ibdev = ew->ib_dev;
2546 enum ib_port_state bonded_port_state = IB_PORT_NOP;
2547 int i;
2548 struct ib_event ibev;
2549
2550 kfree(ew);
2551 spin_lock_bh(&ibdev->iboe.lock);
2552 for (i = 0; i < MLX4_MAX_PORTS; ++i) {
2553 struct net_device *curr_netdev = ibdev->iboe.netdevs[i];
Moni Shoua217e8b12015-03-18 16:51:35 +02002554 enum ib_port_state curr_port_state;
Moni Shouaa5750092015-02-03 16:48:37 +02002555
Moni Shoua217e8b12015-03-18 16:51:35 +02002556 if (!curr_netdev)
2557 continue;
2558
2559 curr_port_state =
Moni Shouaa5750092015-02-03 16:48:37 +02002560 (netif_running(curr_netdev) &&
2561 netif_carrier_ok(curr_netdev)) ?
2562 IB_PORT_ACTIVE : IB_PORT_DOWN;
2563
2564 bonded_port_state = (bonded_port_state != IB_PORT_ACTIVE) ?
2565 curr_port_state : IB_PORT_ACTIVE;
2566 }
2567 spin_unlock_bh(&ibdev->iboe.lock);
2568
2569 ibev.device = &ibdev->ib_dev;
2570 ibev.element.port_num = 1;
2571 ibev.event = (bonded_port_state == IB_PORT_ACTIVE) ?
2572 IB_EVENT_PORT_ACTIVE : IB_EVENT_PORT_ERR;
2573
2574 ib_dispatch_event(&ibev);
2575}
2576
Roland Dreier225c7b12007-05-08 18:00:38 -07002577static void mlx4_ib_event(struct mlx4_dev *dev, void *ibdev_ptr,
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002578 enum mlx4_dev_event event, unsigned long param)
Roland Dreier225c7b12007-05-08 18:00:38 -07002579{
2580 struct ib_event ibev;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07002581 struct mlx4_ib_dev *ibdev = to_mdev((struct ib_device *) ibdev_ptr);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002582 struct mlx4_eqe *eqe = NULL;
2583 struct ib_event_work *ew;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002584 int p = 0;
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002585
Moni Shouaa5750092015-02-03 16:48:37 +02002586 if (mlx4_is_bonded(dev) &&
2587 ((event == MLX4_DEV_EVENT_PORT_UP) ||
2588 (event == MLX4_DEV_EVENT_PORT_DOWN))) {
2589 ew = kmalloc(sizeof(*ew), GFP_ATOMIC);
2590 if (!ew)
2591 return;
2592 INIT_WORK(&ew->work, handle_bonded_port_state_event);
2593 ew->ib_dev = ibdev;
2594 queue_work(wq, &ew->work);
2595 return;
2596 }
2597
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002598 if (event == MLX4_DEV_EVENT_PORT_MGMT_CHANGE)
2599 eqe = (struct mlx4_eqe *)param;
2600 else
Jack Morgensteinfc065732012-08-03 08:40:42 +00002601 p = (int) param;
Roland Dreier225c7b12007-05-08 18:00:38 -07002602
2603 switch (event) {
Roland Dreier37608ee2008-04-16 21:01:08 -07002604 case MLX4_DEV_EVENT_PORT_UP:
Jack Morgensteinfc065732012-08-03 08:40:42 +00002605 if (p > ibdev->num_ports)
2606 return;
Jack Morgensteina0c64a12012-08-03 08:40:49 +00002607 if (mlx4_is_master(dev) &&
2608 rdma_port_get_link_layer(&ibdev->ib_dev, p) ==
2609 IB_LINK_LAYER_INFINIBAND) {
2610 mlx4_ib_invalidate_all_guid_record(ibdev, p);
2611 }
Roland Dreier37608ee2008-04-16 21:01:08 -07002612 ibev.event = IB_EVENT_PORT_ACTIVE;
Roland Dreier225c7b12007-05-08 18:00:38 -07002613 break;
2614
Roland Dreier37608ee2008-04-16 21:01:08 -07002615 case MLX4_DEV_EVENT_PORT_DOWN:
Jack Morgensteinfc065732012-08-03 08:40:42 +00002616 if (p > ibdev->num_ports)
2617 return;
Roland Dreier37608ee2008-04-16 21:01:08 -07002618 ibev.event = IB_EVENT_PORT_ERR;
2619 break;
2620
2621 case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002622 ibdev->ib_active = false;
Roland Dreier225c7b12007-05-08 18:00:38 -07002623 ibev.event = IB_EVENT_DEVICE_FATAL;
Yishai Hadas35f05da2015-02-08 11:49:34 +02002624 mlx4_ib_handle_catas_error(ibdev);
Roland Dreier225c7b12007-05-08 18:00:38 -07002625 break;
2626
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002627 case MLX4_DEV_EVENT_PORT_MGMT_CHANGE:
2628 ew = kmalloc(sizeof *ew, GFP_ATOMIC);
2629 if (!ew) {
2630 pr_err("failed to allocate memory for events work\n");
2631 break;
2632 }
2633
2634 INIT_WORK(&ew->work, handle_port_mgmt_change_event);
2635 memcpy(&ew->ib_eqe, eqe, sizeof *eqe);
2636 ew->ib_dev = ibdev;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002637 /* need to queue only for port owner, which uses GEN_EQE */
2638 if (mlx4_is_master(dev))
2639 queue_work(wq, &ew->work);
2640 else
2641 handle_port_mgmt_change_event(&ew->work);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002642 return;
2643
Jack Morgensteinfc065732012-08-03 08:40:42 +00002644 case MLX4_DEV_EVENT_SLAVE_INIT:
2645 /* here, p is the slave id */
2646 do_slave_init(ibdev, p, 1);
Yishai Hadasee59fa02015-03-03 17:28:49 +02002647 if (mlx4_is_master(dev)) {
2648 int i;
2649
2650 for (i = 1; i <= ibdev->num_ports; i++) {
2651 if (rdma_port_get_link_layer(&ibdev->ib_dev, i)
2652 == IB_LINK_LAYER_INFINIBAND)
2653 mlx4_ib_slave_alias_guid_event(ibdev,
2654 p, i,
2655 1);
2656 }
2657 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00002658 return;
2659
2660 case MLX4_DEV_EVENT_SLAVE_SHUTDOWN:
Yishai Hadasee59fa02015-03-03 17:28:49 +02002661 if (mlx4_is_master(dev)) {
2662 int i;
2663
2664 for (i = 1; i <= ibdev->num_ports; i++) {
2665 if (rdma_port_get_link_layer(&ibdev->ib_dev, i)
2666 == IB_LINK_LAYER_INFINIBAND)
2667 mlx4_ib_slave_alias_guid_event(ibdev,
2668 p, i,
2669 0);
2670 }
2671 }
Jack Morgensteinfc065732012-08-03 08:40:42 +00002672 /* here, p is the slave id */
2673 do_slave_init(ibdev, p, 0);
2674 return;
2675
Roland Dreier225c7b12007-05-08 18:00:38 -07002676 default:
2677 return;
2678 }
2679
2680 ibev.device = ibdev_ptr;
Moni Shouaa5750092015-02-03 16:48:37 +02002681 ibev.element.port_num = mlx4_is_bonded(ibdev->dev) ? 1 : (u8)p;
Roland Dreier225c7b12007-05-08 18:00:38 -07002682
2683 ib_dispatch_event(&ibev);
2684}
2685
2686static struct mlx4_interface mlx4_ib_interface = {
Eli Cohenfa417f72010-10-24 21:08:52 -07002687 .add = mlx4_ib_add,
2688 .remove = mlx4_ib_remove,
2689 .event = mlx4_ib_event,
Moni Shouaa5750092015-02-03 16:48:37 +02002690 .protocol = MLX4_PROT_IB_IPV6,
2691 .flags = MLX4_INTFF_BONDING
Roland Dreier225c7b12007-05-08 18:00:38 -07002692};
2693
2694static int __init mlx4_ib_init(void)
2695{
Eli Cohenfa417f72010-10-24 21:08:52 -07002696 int err;
2697
2698 wq = create_singlethread_workqueue("mlx4_ib");
2699 if (!wq)
2700 return -ENOMEM;
2701
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002702 err = mlx4_ib_mcg_init();
2703 if (err)
2704 goto clean_wq;
2705
Eli Cohenfa417f72010-10-24 21:08:52 -07002706 err = mlx4_register_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002707 if (err)
2708 goto clean_mcg;
Eli Cohenfa417f72010-10-24 21:08:52 -07002709
2710 return 0;
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002711
2712clean_mcg:
2713 mlx4_ib_mcg_destroy();
2714
2715clean_wq:
2716 destroy_workqueue(wq);
2717 return err;
Roland Dreier225c7b12007-05-08 18:00:38 -07002718}
2719
2720static void __exit mlx4_ib_cleanup(void)
2721{
2722 mlx4_unregister_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002723 mlx4_ib_mcg_destroy();
Eli Cohenfa417f72010-10-24 21:08:52 -07002724 destroy_workqueue(wq);
Roland Dreier225c7b12007-05-08 18:00:38 -07002725}
2726
2727module_init(mlx4_ib_init);
2728module_exit(mlx4_ib_cleanup);