blob: 8736bd836dc014f5170bbd86a905900647344791 [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>
Roland Dreier225c7b12007-05-08 18:00:38 -070042
43#include <rdma/ib_smi.h>
44#include <rdma/ib_user_verbs.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070045#include <rdma/ib_addr.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070046
47#include <linux/mlx4/driver.h>
48#include <linux/mlx4/cmd.h>
49
50#include "mlx4_ib.h"
51#include "user.h"
52
53#define DRV_NAME "mlx4_ib"
Jack Morgenstein068c4ea2008-04-16 21:09:35 -070054#define DRV_VERSION "1.0"
55#define DRV_RELDATE "April 4, 2008"
Roland Dreier225c7b12007-05-08 18:00:38 -070056
57MODULE_AUTHOR("Roland Dreier");
58MODULE_DESCRIPTION("Mellanox ConnectX HCA InfiniBand driver");
59MODULE_LICENSE("Dual BSD/GPL");
60MODULE_VERSION(DRV_VERSION);
61
Roland Dreier68f39482008-02-04 20:20:44 -080062static const char mlx4_ib_version[] =
Roland Dreier225c7b12007-05-08 18:00:38 -070063 DRV_NAME ": Mellanox ConnectX InfiniBand driver v"
64 DRV_VERSION " (" DRV_RELDATE ")\n";
65
Eli Cohenfa417f72010-10-24 21:08:52 -070066struct update_gid_work {
67 struct work_struct work;
68 union ib_gid gids[128];
69 struct mlx4_ib_dev *dev;
70 int port;
71};
72
73static struct workqueue_struct *wq;
74
Roland Dreier225c7b12007-05-08 18:00:38 -070075static void init_query_mad(struct ib_smp *mad)
76{
77 mad->base_version = 1;
78 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
79 mad->class_version = 1;
80 mad->method = IB_MGMT_METHOD_GET;
81}
82
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030083static union ib_gid zgid;
84
Roland Dreier225c7b12007-05-08 18:00:38 -070085static int mlx4_ib_query_device(struct ib_device *ibdev,
86 struct ib_device_attr *props)
87{
88 struct mlx4_ib_dev *dev = to_mdev(ibdev);
89 struct ib_smp *in_mad = NULL;
90 struct ib_smp *out_mad = NULL;
91 int err = -ENOMEM;
92
93 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
94 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
95 if (!in_mad || !out_mad)
96 goto out;
97
98 init_query_mad(in_mad);
99 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
100
101 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, 1, NULL, NULL, in_mad, out_mad);
102 if (err)
103 goto out;
104
105 memset(props, 0, sizeof *props);
106
107 props->fw_ver = dev->dev->caps.fw_ver;
108 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
109 IB_DEVICE_PORT_ACTIVE_EVENT |
110 IB_DEVICE_SYS_IMAGE_GUID |
Ron Livne521e5752008-07-14 23:48:48 -0700111 IB_DEVICE_RC_RNR_NAK_GEN |
112 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
Roland Dreier225c7b12007-05-08 18:00:38 -0700113 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR)
114 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
115 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR)
116 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
117 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_APM)
118 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
119 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UD_AV_PORT)
120 props->device_cap_flags |= IB_DEVICE_UD_AV_PORT_ENFORCE;
Eli Cohen8ff095e2008-04-16 21:01:10 -0700121 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_IPOIB_CSUM)
122 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
Eli Cohen417608c2009-11-12 11:19:44 -0800123 if (dev->dev->caps.max_gso_sz && dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BLH)
Eli Cohenb832be12008-04-16 21:09:27 -0700124 props->device_cap_flags |= IB_DEVICE_UD_TSO;
Roland Dreier95d04f02008-07-23 08:12:26 -0700125 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_RESERVED_LKEY)
126 props->device_cap_flags |= IB_DEVICE_LOCAL_DMA_LKEY;
127 if ((dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_LOCAL_INV) &&
128 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_REMOTE_INV) &&
129 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_FAST_REG_WR))
130 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700131
132 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
133 0xffffff;
134 props->vendor_part_id = be16_to_cpup((__be16 *) (out_mad->data + 30));
135 props->hw_ver = be32_to_cpup((__be32 *) (out_mad->data + 32));
136 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
137
138 props->max_mr_size = ~0ull;
139 props->page_size_cap = dev->dev->caps.page_size_cap;
140 props->max_qp = dev->dev->caps.num_qps - dev->dev->caps.reserved_qps;
141 props->max_qp_wr = dev->dev->caps.max_wqes;
142 props->max_sge = min(dev->dev->caps.max_sq_sg,
143 dev->dev->caps.max_rq_sg);
144 props->max_cq = dev->dev->caps.num_cqs - dev->dev->caps.reserved_cqs;
145 props->max_cqe = dev->dev->caps.max_cqes;
146 props->max_mr = dev->dev->caps.num_mpts - dev->dev->caps.reserved_mrws;
147 props->max_pd = dev->dev->caps.num_pds - dev->dev->caps.reserved_pds;
148 props->max_qp_rd_atom = dev->dev->caps.max_qp_dest_rdma;
149 props->max_qp_init_rd_atom = dev->dev->caps.max_qp_init_rdma;
150 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
151 props->max_srq = dev->dev->caps.num_srqs - dev->dev->caps.reserved_srqs;
Jack Morgensteinc8681f12007-06-21 13:39:10 -0700152 props->max_srq_wr = dev->dev->caps.max_srq_wqes - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700153 props->max_srq_sge = dev->dev->caps.max_srq_sge;
Roland Dreier95d04f02008-07-23 08:12:26 -0700154 props->max_fast_reg_page_list_len = PAGE_SIZE / sizeof (u64);
Roland Dreier225c7b12007-05-08 18:00:38 -0700155 props->local_ca_ack_delay = dev->dev->caps.local_ca_ack_delay;
156 props->atomic_cap = dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_ATOMIC ?
157 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +0300158 props->masked_atomic_cap = IB_ATOMIC_HCA;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700159 props->max_pkeys = dev->dev->caps.pkey_table_len[1];
Roland Dreier225c7b12007-05-08 18:00:38 -0700160 props->max_mcast_grp = dev->dev->caps.num_mgms + dev->dev->caps.num_amgms;
161 props->max_mcast_qp_attach = dev->dev->caps.num_qp_per_mgm;
162 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
163 props->max_mcast_grp;
164 props->max_map_per_fmr = (1 << (32 - ilog2(dev->dev->caps.num_mpts))) - 1;
165
166out:
167 kfree(in_mad);
168 kfree(out_mad);
169
170 return err;
171}
172
Eli Cohenfa417f72010-10-24 21:08:52 -0700173static enum rdma_link_layer
174mlx4_ib_port_link_layer(struct ib_device *device, u8 port_num)
175{
176 struct mlx4_dev *dev = to_mdev(device)->dev;
177
178 return dev->caps.port_mask & (1 << (port_num - 1)) ?
179 IB_LINK_LAYER_INFINIBAND : IB_LINK_LAYER_ETHERNET;
180}
181
182static int ib_link_query_port(struct ib_device *ibdev, u8 port,
183 struct ib_port_attr *props,
184 struct ib_smp *out_mad)
185{
186 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
187 props->lmc = out_mad->data[34] & 0x7;
188 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
189 props->sm_sl = out_mad->data[36] & 0xf;
190 props->state = out_mad->data[32] & 0xf;
191 props->phys_state = out_mad->data[33] >> 4;
192 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
193 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
194 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
195 props->pkey_tbl_len = to_mdev(ibdev)->dev->caps.pkey_table_len[port];
196 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
197 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
198 props->active_width = out_mad->data[31] & 0xf;
199 props->active_speed = out_mad->data[35] >> 4;
200 props->max_mtu = out_mad->data[41] & 0xf;
201 props->active_mtu = out_mad->data[36] >> 4;
202 props->subnet_timeout = out_mad->data[51] & 0x1f;
203 props->max_vl_num = out_mad->data[37] >> 4;
204 props->init_type_reply = out_mad->data[41] >> 4;
205
206 return 0;
207}
208
209static u8 state_to_phys_state(enum ib_port_state state)
210{
211 return state == IB_PORT_ACTIVE ? 5 : 3;
212}
213
214static int eth_link_query_port(struct ib_device *ibdev, u8 port,
215 struct ib_port_attr *props,
216 struct ib_smp *out_mad)
217{
218 struct mlx4_ib_iboe *iboe = &to_mdev(ibdev)->iboe;
219 struct net_device *ndev;
220 enum ib_mtu tmp;
221
222 props->active_width = IB_WIDTH_4X;
223 props->active_speed = 4;
224 props->port_cap_flags = IB_PORT_CM_SUP;
225 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
226 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
227 props->pkey_tbl_len = 1;
228 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
229 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
230 props->max_mtu = IB_MTU_2048;
231 props->subnet_timeout = 0;
232 props->max_vl_num = out_mad->data[37] >> 4;
233 props->init_type_reply = 0;
234 props->state = IB_PORT_DOWN;
235 props->phys_state = state_to_phys_state(props->state);
236 props->active_mtu = IB_MTU_256;
237 spin_lock(&iboe->lock);
238 ndev = iboe->netdevs[port - 1];
239 if (!ndev)
240 goto out;
241
242 tmp = iboe_get_mtu(ndev->mtu);
243 props->active_mtu = tmp ? min(props->max_mtu, tmp) : IB_MTU_256;
244
245 props->state = netif_running(ndev) && netif_oper_up(ndev) ?
246 IB_PORT_ACTIVE : IB_PORT_DOWN;
247 props->phys_state = state_to_phys_state(props->state);
248
249out:
250 spin_unlock(&iboe->lock);
251 return 0;
252}
253
Roland Dreier225c7b12007-05-08 18:00:38 -0700254static int mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
255 struct ib_port_attr *props)
256{
257 struct ib_smp *in_mad = NULL;
258 struct ib_smp *out_mad = NULL;
259 int err = -ENOMEM;
260
261 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
262 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
263 if (!in_mad || !out_mad)
264 goto out;
265
266 memset(props, 0, sizeof *props);
267
268 init_query_mad(in_mad);
269 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
270 in_mad->attr_mod = cpu_to_be32(port);
271
272 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
273 if (err)
274 goto out;
275
Eli Cohenfa417f72010-10-24 21:08:52 -0700276 err = mlx4_ib_port_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND ?
277 ib_link_query_port(ibdev, port, props, out_mad) :
278 eth_link_query_port(ibdev, port, props, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700279
280out:
281 kfree(in_mad);
282 kfree(out_mad);
283
284 return err;
285}
286
Eli Cohenfa417f72010-10-24 21:08:52 -0700287static int __mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
288 union ib_gid *gid)
Roland Dreier225c7b12007-05-08 18:00:38 -0700289{
290 struct ib_smp *in_mad = NULL;
291 struct ib_smp *out_mad = NULL;
292 int err = -ENOMEM;
293
294 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
295 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
296 if (!in_mad || !out_mad)
297 goto out;
298
299 init_query_mad(in_mad);
300 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
301 in_mad->attr_mod = cpu_to_be32(port);
302
303 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
304 if (err)
305 goto out;
306
307 memcpy(gid->raw, out_mad->data + 8, 8);
308
309 init_query_mad(in_mad);
310 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
311 in_mad->attr_mod = cpu_to_be32(index / 8);
312
313 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
314 if (err)
315 goto out;
316
317 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
318
319out:
320 kfree(in_mad);
321 kfree(out_mad);
322 return err;
323}
324
Eli Cohenfa417f72010-10-24 21:08:52 -0700325static int iboe_query_gid(struct ib_device *ibdev, u8 port, int index,
326 union ib_gid *gid)
327{
328 struct mlx4_ib_dev *dev = to_mdev(ibdev);
329
330 *gid = dev->iboe.gid_table[port - 1][index];
331
332 return 0;
333}
334
335static int mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
336 union ib_gid *gid)
337{
338 if (rdma_port_get_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND)
339 return __mlx4_ib_query_gid(ibdev, port, index, gid);
340 else
341 return iboe_query_gid(ibdev, port, index, gid);
342}
343
Roland Dreier225c7b12007-05-08 18:00:38 -0700344static int mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
345 u16 *pkey)
346{
347 struct ib_smp *in_mad = NULL;
348 struct ib_smp *out_mad = NULL;
349 int err = -ENOMEM;
350
351 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
352 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
353 if (!in_mad || !out_mad)
354 goto out;
355
356 init_query_mad(in_mad);
357 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
358 in_mad->attr_mod = cpu_to_be32(index / 32);
359
360 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
361 if (err)
362 goto out;
363
364 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
365
366out:
367 kfree(in_mad);
368 kfree(out_mad);
369 return err;
370}
371
372static int mlx4_ib_modify_device(struct ib_device *ibdev, int mask,
373 struct ib_device_modify *props)
374{
375 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
376 return -EOPNOTSUPP;
377
378 if (mask & IB_DEVICE_MODIFY_NODE_DESC) {
379 spin_lock(&to_mdev(ibdev)->sm_lock);
380 memcpy(ibdev->node_desc, props->node_desc, 64);
381 spin_unlock(&to_mdev(ibdev)->sm_lock);
382 }
383
384 return 0;
385}
386
387static int mlx4_SET_PORT(struct mlx4_ib_dev *dev, u8 port, int reset_qkey_viols,
388 u32 cap_mask)
389{
390 struct mlx4_cmd_mailbox *mailbox;
391 int err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700392 u8 is_eth = dev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
Roland Dreier225c7b12007-05-08 18:00:38 -0700393
394 mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
395 if (IS_ERR(mailbox))
396 return PTR_ERR(mailbox);
397
398 memset(mailbox->buf, 0, 256);
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700399
400 if (dev->dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
401 *(u8 *) mailbox->buf = !!reset_qkey_viols << 6;
402 ((__be32 *) mailbox->buf)[2] = cpu_to_be32(cap_mask);
403 } else {
404 ((u8 *) mailbox->buf)[3] = !!reset_qkey_viols;
405 ((__be32 *) mailbox->buf)[1] = cpu_to_be32(cap_mask);
406 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700407
Eli Cohenfa417f72010-10-24 21:08:52 -0700408 err = mlx4_cmd(dev->dev, mailbox->dma, port, is_eth, MLX4_CMD_SET_PORT,
Roland Dreier225c7b12007-05-08 18:00:38 -0700409 MLX4_CMD_TIME_CLASS_B);
410
411 mlx4_free_cmd_mailbox(dev->dev, mailbox);
412 return err;
413}
414
415static int mlx4_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
416 struct ib_port_modify *props)
417{
418 struct ib_port_attr attr;
419 u32 cap_mask;
420 int err;
421
422 mutex_lock(&to_mdev(ibdev)->cap_mask_mutex);
423
424 err = mlx4_ib_query_port(ibdev, port, &attr);
425 if (err)
426 goto out;
427
428 cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
429 ~props->clr_port_cap_mask;
430
431 err = mlx4_SET_PORT(to_mdev(ibdev), port,
432 !!(mask & IB_PORT_RESET_QKEY_CNTR),
433 cap_mask);
434
435out:
436 mutex_unlock(&to_mdev(ibdev)->cap_mask_mutex);
437 return err;
438}
439
440static struct ib_ucontext *mlx4_ib_alloc_ucontext(struct ib_device *ibdev,
441 struct ib_udata *udata)
442{
443 struct mlx4_ib_dev *dev = to_mdev(ibdev);
444 struct mlx4_ib_ucontext *context;
445 struct mlx4_ib_alloc_ucontext_resp resp;
446 int err;
447
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -0700448 if (!dev->ib_active)
449 return ERR_PTR(-EAGAIN);
450
Roland Dreier225c7b12007-05-08 18:00:38 -0700451 resp.qp_tab_size = dev->dev->caps.num_qps;
452 resp.bf_reg_size = dev->dev->caps.bf_reg_size;
453 resp.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
454
455 context = kmalloc(sizeof *context, GFP_KERNEL);
456 if (!context)
457 return ERR_PTR(-ENOMEM);
458
459 err = mlx4_uar_alloc(to_mdev(ibdev)->dev, &context->uar);
460 if (err) {
461 kfree(context);
462 return ERR_PTR(err);
463 }
464
465 INIT_LIST_HEAD(&context->db_page_list);
466 mutex_init(&context->db_page_mutex);
467
468 err = ib_copy_to_udata(udata, &resp, sizeof resp);
469 if (err) {
470 mlx4_uar_free(to_mdev(ibdev)->dev, &context->uar);
471 kfree(context);
472 return ERR_PTR(-EFAULT);
473 }
474
475 return &context->ibucontext;
476}
477
478static int mlx4_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
479{
480 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
481
482 mlx4_uar_free(to_mdev(ibcontext->device)->dev, &context->uar);
483 kfree(context);
484
485 return 0;
486}
487
488static int mlx4_ib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
489{
490 struct mlx4_ib_dev *dev = to_mdev(context->device);
491
492 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
493 return -EINVAL;
494
495 if (vma->vm_pgoff == 0) {
496 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
497
498 if (io_remap_pfn_range(vma, vma->vm_start,
499 to_mucontext(context)->uar.pfn,
500 PAGE_SIZE, vma->vm_page_prot))
501 return -EAGAIN;
502 } else if (vma->vm_pgoff == 1 && dev->dev->caps.bf_reg_size != 0) {
Roland Dreiere1d60ec2009-03-30 08:31:05 -0700503 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700504
505 if (io_remap_pfn_range(vma, vma->vm_start,
506 to_mucontext(context)->uar.pfn +
507 dev->dev->caps.num_uars,
508 PAGE_SIZE, vma->vm_page_prot))
509 return -EAGAIN;
510 } else
511 return -EINVAL;
512
513 return 0;
514}
515
516static struct ib_pd *mlx4_ib_alloc_pd(struct ib_device *ibdev,
517 struct ib_ucontext *context,
518 struct ib_udata *udata)
519{
520 struct mlx4_ib_pd *pd;
521 int err;
522
523 pd = kmalloc(sizeof *pd, GFP_KERNEL);
524 if (!pd)
525 return ERR_PTR(-ENOMEM);
526
527 err = mlx4_pd_alloc(to_mdev(ibdev)->dev, &pd->pdn);
528 if (err) {
529 kfree(pd);
530 return ERR_PTR(err);
531 }
532
533 if (context)
534 if (ib_copy_to_udata(udata, &pd->pdn, sizeof (__u32))) {
535 mlx4_pd_free(to_mdev(ibdev)->dev, pd->pdn);
536 kfree(pd);
537 return ERR_PTR(-EFAULT);
538 }
539
540 return &pd->ibpd;
541}
542
543static int mlx4_ib_dealloc_pd(struct ib_pd *pd)
544{
545 mlx4_pd_free(to_mdev(pd->device)->dev, to_mpd(pd)->pdn);
546 kfree(pd);
547
548 return 0;
549}
550
Eli Cohenfa417f72010-10-24 21:08:52 -0700551static int add_gid_entry(struct ib_qp *ibqp, union ib_gid *gid)
552{
553 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
554 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
555 struct mlx4_ib_gid_entry *ge;
556
557 ge = kzalloc(sizeof *ge, GFP_KERNEL);
558 if (!ge)
559 return -ENOMEM;
560
561 ge->gid = *gid;
562 if (mlx4_ib_add_mc(mdev, mqp, gid)) {
563 ge->port = mqp->port;
564 ge->added = 1;
565 }
566
567 mutex_lock(&mqp->mutex);
568 list_add_tail(&ge->list, &mqp->gid_list);
569 mutex_unlock(&mqp->mutex);
570
571 return 0;
572}
573
574int mlx4_ib_add_mc(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
575 union ib_gid *gid)
576{
577 u8 mac[6];
578 struct net_device *ndev;
579 int ret = 0;
580
581 if (!mqp->port)
582 return 0;
583
584 spin_lock(&mdev->iboe.lock);
585 ndev = mdev->iboe.netdevs[mqp->port - 1];
586 if (ndev)
587 dev_hold(ndev);
588 spin_unlock(&mdev->iboe.lock);
589
590 if (ndev) {
591 rdma_get_mcast_mac((struct in6_addr *)gid, mac);
592 rtnl_lock();
593 dev_mc_add(mdev->iboe.netdevs[mqp->port - 1], mac);
594 ret = 1;
595 rtnl_unlock();
596 dev_put(ndev);
597 }
598
599 return ret;
600}
601
Roland Dreier225c7b12007-05-08 18:00:38 -0700602static int mlx4_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
603{
Eli Cohenfa417f72010-10-24 21:08:52 -0700604 int err;
605 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
606 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
607
608 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw, !!(mqp->flags &
609 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK));
610 if (err)
611 return err;
612
613 err = add_gid_entry(ibqp, gid);
614 if (err)
615 goto err_add;
616
617 return 0;
618
619err_add:
620 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw);
621 return err;
622}
623
624static struct mlx4_ib_gid_entry *find_gid_entry(struct mlx4_ib_qp *qp, u8 *raw)
625{
626 struct mlx4_ib_gid_entry *ge;
627 struct mlx4_ib_gid_entry *tmp;
628 struct mlx4_ib_gid_entry *ret = NULL;
629
630 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
631 if (!memcmp(raw, ge->gid.raw, 16)) {
632 ret = ge;
633 break;
634 }
635 }
636
637 return ret;
Roland Dreier225c7b12007-05-08 18:00:38 -0700638}
639
640static int mlx4_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
641{
Eli Cohenfa417f72010-10-24 21:08:52 -0700642 int err;
643 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
644 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
645 u8 mac[6];
646 struct net_device *ndev;
647 struct mlx4_ib_gid_entry *ge;
648
649 err = mlx4_multicast_detach(mdev->dev,
650 &mqp->mqp, gid->raw);
651 if (err)
652 return err;
653
654 mutex_lock(&mqp->mutex);
655 ge = find_gid_entry(mqp, gid->raw);
656 if (ge) {
657 spin_lock(&mdev->iboe.lock);
658 ndev = ge->added ? mdev->iboe.netdevs[ge->port - 1] : NULL;
659 if (ndev)
660 dev_hold(ndev);
661 spin_unlock(&mdev->iboe.lock);
662 rdma_get_mcast_mac((struct in6_addr *)gid, mac);
663 if (ndev) {
664 rtnl_lock();
665 dev_mc_del(mdev->iboe.netdevs[ge->port - 1], mac);
666 rtnl_unlock();
667 dev_put(ndev);
668 }
669 list_del(&ge->list);
670 kfree(ge);
671 } else
672 printk(KERN_WARNING "could not find mgid entry\n");
673
674 mutex_unlock(&mqp->mutex);
675
676 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700677}
678
679static int init_node_data(struct mlx4_ib_dev *dev)
680{
681 struct ib_smp *in_mad = NULL;
682 struct ib_smp *out_mad = NULL;
683 int err = -ENOMEM;
684
685 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
686 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
687 if (!in_mad || !out_mad)
688 goto out;
689
690 init_query_mad(in_mad);
691 in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
692
693 err = mlx4_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
694 if (err)
695 goto out;
696
697 memcpy(dev->ib_dev.node_desc, out_mad->data, 64);
698
699 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
700
701 err = mlx4_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
702 if (err)
703 goto out;
704
Jack Morgenstein893da752008-01-27 18:13:25 +0200705 dev->dev->rev_id = be32_to_cpup((__be32 *) (out_mad->data + 32));
Roland Dreier225c7b12007-05-08 18:00:38 -0700706 memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
707
708out:
709 kfree(in_mad);
710 kfree(out_mad);
711 return err;
712}
713
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100714static ssize_t show_hca(struct device *device, struct device_attribute *attr,
715 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200716{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100717 struct mlx4_ib_dev *dev =
718 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200719 return sprintf(buf, "MT%d\n", dev->dev->pdev->device);
720}
721
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100722static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
723 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200724{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100725 struct mlx4_ib_dev *dev =
726 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200727 return sprintf(buf, "%d.%d.%d\n", (int) (dev->dev->caps.fw_ver >> 32),
728 (int) (dev->dev->caps.fw_ver >> 16) & 0xffff,
729 (int) dev->dev->caps.fw_ver & 0xffff);
730}
731
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100732static ssize_t show_rev(struct device *device, struct device_attribute *attr,
733 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200734{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100735 struct mlx4_ib_dev *dev =
736 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200737 return sprintf(buf, "%x\n", dev->dev->rev_id);
738}
739
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100740static ssize_t show_board(struct device *device, struct device_attribute *attr,
741 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200742{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100743 struct mlx4_ib_dev *dev =
744 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
745 return sprintf(buf, "%.*s\n", MLX4_BOARD_ID_LEN,
746 dev->dev->board_id);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200747}
748
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100749static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
750static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
751static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
752static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200753
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100754static struct device_attribute *mlx4_class_attributes[] = {
755 &dev_attr_hw_rev,
756 &dev_attr_fw_ver,
757 &dev_attr_hca_type,
758 &dev_attr_board_id
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200759};
760
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300761static void mlx4_addrconf_ifid_eui48(u8 *eui, u16 vlan_id, struct net_device *dev)
Eli Cohenfa417f72010-10-24 21:08:52 -0700762{
763 memcpy(eui, dev->dev_addr, 3);
764 memcpy(eui + 5, dev->dev_addr + 3, 3);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300765 if (vlan_id < 0x1000) {
766 eui[3] = vlan_id >> 8;
767 eui[4] = vlan_id & 0xff;
768 } else {
769 eui[3] = 0xff;
770 eui[4] = 0xfe;
771 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700772 eui[0] ^= 2;
773}
774
775static void update_gids_task(struct work_struct *work)
776{
777 struct update_gid_work *gw = container_of(work, struct update_gid_work, work);
778 struct mlx4_cmd_mailbox *mailbox;
779 union ib_gid *gids;
780 int err;
781 struct mlx4_dev *dev = gw->dev->dev;
782 struct ib_event event;
783
784 mailbox = mlx4_alloc_cmd_mailbox(dev);
785 if (IS_ERR(mailbox)) {
786 printk(KERN_WARNING "update gid table failed %ld\n", PTR_ERR(mailbox));
787 return;
788 }
789
790 gids = mailbox->buf;
791 memcpy(gids, gw->gids, sizeof gw->gids);
792
793 err = mlx4_cmd(dev, mailbox->dma, MLX4_SET_PORT_GID_TABLE << 8 | gw->port,
794 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B);
795 if (err)
796 printk(KERN_WARNING "set port command failed\n");
797 else {
798 memcpy(gw->dev->iboe.gid_table[gw->port - 1], gw->gids, sizeof gw->gids);
799 event.device = &gw->dev->ib_dev;
800 event.element.port_num = gw->port;
801 event.event = IB_EVENT_LID_CHANGE;
802 ib_dispatch_event(&event);
803 }
804
805 mlx4_free_cmd_mailbox(dev, mailbox);
806 kfree(gw);
807}
808
809static int update_ipv6_gids(struct mlx4_ib_dev *dev, int port, int clear)
810{
811 struct net_device *ndev = dev->iboe.netdevs[port - 1];
812 struct update_gid_work *work;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300813 struct net_device *tmp;
814 int i;
815 u8 *hits;
816 int ret;
817 union ib_gid gid;
818 int free;
819 int found;
820 int need_update = 0;
821 u16 vid;
Eli Cohenfa417f72010-10-24 21:08:52 -0700822
823 work = kzalloc(sizeof *work, GFP_ATOMIC);
824 if (!work)
825 return -ENOMEM;
826
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300827 hits = kzalloc(128, GFP_ATOMIC);
828 if (!hits) {
829 ret = -ENOMEM;
830 goto out;
Eli Cohenfa417f72010-10-24 21:08:52 -0700831 }
832
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300833 read_lock(&dev_base_lock);
834 for_each_netdev(&init_net, tmp) {
835 if (ndev && (tmp == ndev || rdma_vlan_dev_real_dev(tmp) == ndev)) {
836 gid.global.subnet_prefix = cpu_to_be64(0xfe80000000000000LL);
837 vid = rdma_vlan_dev_vlan_id(tmp);
838 mlx4_addrconf_ifid_eui48(&gid.raw[8], vid, ndev);
839 found = 0;
840 free = -1;
841 for (i = 0; i < 128; ++i) {
842 if (free < 0 &&
843 !memcmp(&dev->iboe.gid_table[port - 1][i], &zgid, sizeof zgid))
844 free = i;
845 if (!memcmp(&dev->iboe.gid_table[port - 1][i], &gid, sizeof gid)) {
846 hits[i] = 1;
847 found = 1;
848 break;
849 }
850 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700851
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300852 if (!found) {
853 if (tmp == ndev &&
854 (memcmp(&dev->iboe.gid_table[port - 1][0],
855 &gid, sizeof gid) ||
856 !memcmp(&dev->iboe.gid_table[port - 1][0],
857 &zgid, sizeof gid))) {
858 dev->iboe.gid_table[port - 1][0] = gid;
859 ++need_update;
860 hits[0] = 1;
861 } else if (free >= 0) {
862 dev->iboe.gid_table[port - 1][free] = gid;
863 hits[free] = 1;
864 ++need_update;
865 }
866 }
867 }
868 }
869 read_unlock(&dev_base_lock);
870
871 for (i = 0; i < 128; ++i)
872 if (!hits[i]) {
873 if (memcmp(&dev->iboe.gid_table[port - 1][i], &zgid, sizeof zgid))
874 ++need_update;
875 dev->iboe.gid_table[port - 1][i] = zgid;
876 }
877
878 if (need_update) {
879 memcpy(work->gids, dev->iboe.gid_table[port - 1], sizeof work->gids);
880 INIT_WORK(&work->work, update_gids_task);
881 work->port = port;
882 work->dev = dev;
883 queue_work(wq, &work->work);
884 } else
885 kfree(work);
886
887 kfree(hits);
Eli Cohenfa417f72010-10-24 21:08:52 -0700888 return 0;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300889
890out:
891 kfree(work);
892 return ret;
Eli Cohenfa417f72010-10-24 21:08:52 -0700893}
894
895static void handle_en_event(struct mlx4_ib_dev *dev, int port, unsigned long event)
896{
897 switch (event) {
898 case NETDEV_UP:
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300899 case NETDEV_CHANGEADDR:
Eli Cohenfa417f72010-10-24 21:08:52 -0700900 update_ipv6_gids(dev, port, 0);
901 break;
902
903 case NETDEV_DOWN:
904 update_ipv6_gids(dev, port, 1);
905 dev->iboe.netdevs[port - 1] = NULL;
906 }
907}
908
909static void netdev_added(struct mlx4_ib_dev *dev, int port)
910{
911 update_ipv6_gids(dev, port, 0);
912}
913
914static void netdev_removed(struct mlx4_ib_dev *dev, int port)
915{
916 update_ipv6_gids(dev, port, 1);
917}
918
919static int mlx4_ib_netdev_event(struct notifier_block *this, unsigned long event,
920 void *ptr)
921{
922 struct net_device *dev = ptr;
923 struct mlx4_ib_dev *ibdev;
924 struct net_device *oldnd;
925 struct mlx4_ib_iboe *iboe;
926 int port;
927
928 if (!net_eq(dev_net(dev), &init_net))
929 return NOTIFY_DONE;
930
931 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb);
932 iboe = &ibdev->iboe;
933
934 spin_lock(&iboe->lock);
935 mlx4_foreach_ib_transport_port(port, ibdev->dev) {
936 oldnd = iboe->netdevs[port - 1];
937 iboe->netdevs[port - 1] =
938 mlx4_get_protocol_dev(ibdev->dev, MLX4_PROTOCOL_EN, port);
939 if (oldnd != iboe->netdevs[port - 1]) {
940 if (iboe->netdevs[port - 1])
941 netdev_added(ibdev, port);
942 else
943 netdev_removed(ibdev, port);
944 }
945 }
946
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300947 if (dev == iboe->netdevs[0] ||
948 (iboe->netdevs[0] && rdma_vlan_dev_real_dev(dev) == iboe->netdevs[0]))
Eli Cohenfa417f72010-10-24 21:08:52 -0700949 handle_en_event(ibdev, 1, event);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300950 else if (dev == iboe->netdevs[1]
951 || (iboe->netdevs[1] && rdma_vlan_dev_real_dev(dev) == iboe->netdevs[1]))
Eli Cohenfa417f72010-10-24 21:08:52 -0700952 handle_en_event(ibdev, 2, event);
953
954 spin_unlock(&iboe->lock);
955
956 return NOTIFY_DONE;
957}
958
Roland Dreier225c7b12007-05-08 18:00:38 -0700959static void *mlx4_ib_add(struct mlx4_dev *dev)
960{
961 struct mlx4_ib_dev *ibdev;
Roland Dreier22e7ef92009-01-09 13:22:29 -0800962 int num_ports = 0;
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200963 int i;
Eli Cohenfa417f72010-10-24 21:08:52 -0700964 int err;
965 struct mlx4_ib_iboe *iboe;
Roland Dreier225c7b12007-05-08 18:00:38 -0700966
Marcin Slusarzf1aa78b2009-09-05 20:24:24 -0700967 printk_once(KERN_INFO "%s", mlx4_ib_version);
Roland Dreier68f39482008-02-04 20:20:44 -0800968
Eli Cohenfa417f72010-10-24 21:08:52 -0700969 mlx4_foreach_ib_transport_port(i, dev)
Roland Dreier22e7ef92009-01-09 13:22:29 -0800970 num_ports++;
971
972 /* No point in registering a device with no ports... */
973 if (num_ports == 0)
974 return NULL;
975
Roland Dreier225c7b12007-05-08 18:00:38 -0700976 ibdev = (struct mlx4_ib_dev *) ib_alloc_device(sizeof *ibdev);
977 if (!ibdev) {
978 dev_err(&dev->pdev->dev, "Device struct alloc failed\n");
979 return NULL;
980 }
981
Eli Cohenfa417f72010-10-24 21:08:52 -0700982 iboe = &ibdev->iboe;
983
Roland Dreier225c7b12007-05-08 18:00:38 -0700984 if (mlx4_pd_alloc(dev, &ibdev->priv_pdn))
985 goto err_dealloc;
986
987 if (mlx4_uar_alloc(dev, &ibdev->priv_uar))
988 goto err_pd;
989
990 ibdev->uar_map = ioremap(ibdev->priv_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
991 if (!ibdev->uar_map)
992 goto err_uar;
Jack Morgenstein26c6bc72007-05-13 17:18:23 +0300993 MLX4_INIT_DOORBELL_LOCK(&ibdev->uar_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -0700994
Roland Dreier225c7b12007-05-08 18:00:38 -0700995 ibdev->dev = dev;
996
997 strlcpy(ibdev->ib_dev.name, "mlx4_%d", IB_DEVICE_NAME_MAX);
998 ibdev->ib_dev.owner = THIS_MODULE;
999 ibdev->ib_dev.node_type = RDMA_NODE_IB_CA;
Roland Dreier95d04f02008-07-23 08:12:26 -07001000 ibdev->ib_dev.local_dma_lkey = dev->caps.reserved_lkey;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001001 ibdev->num_ports = num_ports;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001002 ibdev->ib_dev.phys_port_cnt = ibdev->num_ports;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -08001003 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
Roland Dreier225c7b12007-05-08 18:00:38 -07001004 ibdev->ib_dev.dma_device = &dev->pdev->dev;
1005
1006 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION;
1007 ibdev->ib_dev.uverbs_cmd_mask =
1008 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
1009 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
1010 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
1011 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
1012 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
1013 (1ull << IB_USER_VERBS_CMD_REG_MR) |
1014 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
1015 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
1016 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001017 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001018 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
1019 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
1020 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001021 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001022 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
1023 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
1024 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
1025 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
1026 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001027 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001028 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ);
1029
1030 ibdev->ib_dev.query_device = mlx4_ib_query_device;
1031 ibdev->ib_dev.query_port = mlx4_ib_query_port;
Eli Cohenfa417f72010-10-24 21:08:52 -07001032 ibdev->ib_dev.get_link_layer = mlx4_ib_port_link_layer;
Roland Dreier225c7b12007-05-08 18:00:38 -07001033 ibdev->ib_dev.query_gid = mlx4_ib_query_gid;
1034 ibdev->ib_dev.query_pkey = mlx4_ib_query_pkey;
1035 ibdev->ib_dev.modify_device = mlx4_ib_modify_device;
1036 ibdev->ib_dev.modify_port = mlx4_ib_modify_port;
1037 ibdev->ib_dev.alloc_ucontext = mlx4_ib_alloc_ucontext;
1038 ibdev->ib_dev.dealloc_ucontext = mlx4_ib_dealloc_ucontext;
1039 ibdev->ib_dev.mmap = mlx4_ib_mmap;
1040 ibdev->ib_dev.alloc_pd = mlx4_ib_alloc_pd;
1041 ibdev->ib_dev.dealloc_pd = mlx4_ib_dealloc_pd;
1042 ibdev->ib_dev.create_ah = mlx4_ib_create_ah;
1043 ibdev->ib_dev.query_ah = mlx4_ib_query_ah;
1044 ibdev->ib_dev.destroy_ah = mlx4_ib_destroy_ah;
1045 ibdev->ib_dev.create_srq = mlx4_ib_create_srq;
1046 ibdev->ib_dev.modify_srq = mlx4_ib_modify_srq;
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001047 ibdev->ib_dev.query_srq = mlx4_ib_query_srq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001048 ibdev->ib_dev.destroy_srq = mlx4_ib_destroy_srq;
1049 ibdev->ib_dev.post_srq_recv = mlx4_ib_post_srq_recv;
1050 ibdev->ib_dev.create_qp = mlx4_ib_create_qp;
1051 ibdev->ib_dev.modify_qp = mlx4_ib_modify_qp;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001052 ibdev->ib_dev.query_qp = mlx4_ib_query_qp;
Roland Dreier225c7b12007-05-08 18:00:38 -07001053 ibdev->ib_dev.destroy_qp = mlx4_ib_destroy_qp;
1054 ibdev->ib_dev.post_send = mlx4_ib_post_send;
1055 ibdev->ib_dev.post_recv = mlx4_ib_post_recv;
1056 ibdev->ib_dev.create_cq = mlx4_ib_create_cq;
Eli Cohen3fdcb972008-04-16 21:09:33 -07001057 ibdev->ib_dev.modify_cq = mlx4_ib_modify_cq;
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001058 ibdev->ib_dev.resize_cq = mlx4_ib_resize_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001059 ibdev->ib_dev.destroy_cq = mlx4_ib_destroy_cq;
1060 ibdev->ib_dev.poll_cq = mlx4_ib_poll_cq;
1061 ibdev->ib_dev.req_notify_cq = mlx4_ib_arm_cq;
1062 ibdev->ib_dev.get_dma_mr = mlx4_ib_get_dma_mr;
1063 ibdev->ib_dev.reg_user_mr = mlx4_ib_reg_user_mr;
1064 ibdev->ib_dev.dereg_mr = mlx4_ib_dereg_mr;
Roland Dreier95d04f02008-07-23 08:12:26 -07001065 ibdev->ib_dev.alloc_fast_reg_mr = mlx4_ib_alloc_fast_reg_mr;
1066 ibdev->ib_dev.alloc_fast_reg_page_list = mlx4_ib_alloc_fast_reg_page_list;
1067 ibdev->ib_dev.free_fast_reg_page_list = mlx4_ib_free_fast_reg_page_list;
Roland Dreier225c7b12007-05-08 18:00:38 -07001068 ibdev->ib_dev.attach_mcast = mlx4_ib_mcg_attach;
1069 ibdev->ib_dev.detach_mcast = mlx4_ib_mcg_detach;
1070 ibdev->ib_dev.process_mad = mlx4_ib_process_mad;
1071
Jack Morgenstein8ad11fb2007-08-01 12:29:05 +03001072 ibdev->ib_dev.alloc_fmr = mlx4_ib_fmr_alloc;
1073 ibdev->ib_dev.map_phys_fmr = mlx4_ib_map_phys_fmr;
1074 ibdev->ib_dev.unmap_fmr = mlx4_ib_unmap_fmr;
1075 ibdev->ib_dev.dealloc_fmr = mlx4_ib_fmr_dealloc;
1076
Eli Cohenfa417f72010-10-24 21:08:52 -07001077 spin_lock_init(&iboe->lock);
1078
Roland Dreier225c7b12007-05-08 18:00:38 -07001079 if (init_node_data(ibdev))
1080 goto err_map;
1081
1082 spin_lock_init(&ibdev->sm_lock);
1083 mutex_init(&ibdev->cap_mask_mutex);
1084
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001085 if (ib_register_device(&ibdev->ib_dev, NULL))
Roland Dreier225c7b12007-05-08 18:00:38 -07001086 goto err_map;
1087
1088 if (mlx4_ib_mad_init(ibdev))
1089 goto err_reg;
1090
Eli Cohenfa417f72010-10-24 21:08:52 -07001091 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE && !iboe->nb.notifier_call) {
1092 iboe->nb.notifier_call = mlx4_ib_netdev_event;
1093 err = register_netdevice_notifier(&iboe->nb);
1094 if (err)
1095 goto err_reg;
1096 }
1097
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001098 for (i = 0; i < ARRAY_SIZE(mlx4_class_attributes); ++i) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001099 if (device_create_file(&ibdev->ib_dev.dev,
1100 mlx4_class_attributes[i]))
Eli Cohenfa417f72010-10-24 21:08:52 -07001101 goto err_notif;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001102 }
1103
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07001104 ibdev->ib_active = true;
1105
Roland Dreier225c7b12007-05-08 18:00:38 -07001106 return ibdev;
1107
Eli Cohenfa417f72010-10-24 21:08:52 -07001108err_notif:
1109 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
1110 printk(KERN_WARNING "failure unregistering notifier\n");
1111 flush_workqueue(wq);
1112
Roland Dreier225c7b12007-05-08 18:00:38 -07001113err_reg:
1114 ib_unregister_device(&ibdev->ib_dev);
1115
1116err_map:
1117 iounmap(ibdev->uar_map);
1118
1119err_uar:
1120 mlx4_uar_free(dev, &ibdev->priv_uar);
1121
1122err_pd:
1123 mlx4_pd_free(dev, ibdev->priv_pdn);
1124
1125err_dealloc:
1126 ib_dealloc_device(&ibdev->ib_dev);
1127
1128 return NULL;
1129}
1130
1131static void mlx4_ib_remove(struct mlx4_dev *dev, void *ibdev_ptr)
1132{
1133 struct mlx4_ib_dev *ibdev = ibdev_ptr;
1134 int p;
1135
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07001136 mlx4_ib_mad_cleanup(ibdev);
1137 ib_unregister_device(&ibdev->ib_dev);
Eli Cohenfa417f72010-10-24 21:08:52 -07001138 if (ibdev->iboe.nb.notifier_call) {
1139 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
1140 printk(KERN_WARNING "failure unregistering notifier\n");
1141 ibdev->iboe.nb.notifier_call = NULL;
1142 }
1143 iounmap(ibdev->uar_map);
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07001144
Eli Cohenfa417f72010-10-24 21:08:52 -07001145 mlx4_foreach_port(p, dev, MLX4_PORT_TYPE_IB)
Roland Dreier225c7b12007-05-08 18:00:38 -07001146 mlx4_CLOSE_PORT(dev, p);
1147
Roland Dreier225c7b12007-05-08 18:00:38 -07001148 mlx4_uar_free(dev, &ibdev->priv_uar);
1149 mlx4_pd_free(dev, ibdev->priv_pdn);
1150 ib_dealloc_device(&ibdev->ib_dev);
1151}
1152
1153static void mlx4_ib_event(struct mlx4_dev *dev, void *ibdev_ptr,
Roland Dreier37608ee2008-04-16 21:01:08 -07001154 enum mlx4_dev_event event, int port)
Roland Dreier225c7b12007-05-08 18:00:38 -07001155{
1156 struct ib_event ibev;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001157 struct mlx4_ib_dev *ibdev = to_mdev((struct ib_device *) ibdev_ptr);
1158
1159 if (port > ibdev->num_ports)
1160 return;
Roland Dreier225c7b12007-05-08 18:00:38 -07001161
1162 switch (event) {
Roland Dreier37608ee2008-04-16 21:01:08 -07001163 case MLX4_DEV_EVENT_PORT_UP:
1164 ibev.event = IB_EVENT_PORT_ACTIVE;
Roland Dreier225c7b12007-05-08 18:00:38 -07001165 break;
1166
Roland Dreier37608ee2008-04-16 21:01:08 -07001167 case MLX4_DEV_EVENT_PORT_DOWN:
1168 ibev.event = IB_EVENT_PORT_ERR;
1169 break;
1170
1171 case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07001172 ibdev->ib_active = false;
Roland Dreier225c7b12007-05-08 18:00:38 -07001173 ibev.event = IB_EVENT_DEVICE_FATAL;
1174 break;
1175
1176 default:
1177 return;
1178 }
1179
1180 ibev.device = ibdev_ptr;
1181 ibev.element.port_num = port;
1182
1183 ib_dispatch_event(&ibev);
1184}
1185
1186static struct mlx4_interface mlx4_ib_interface = {
Eli Cohenfa417f72010-10-24 21:08:52 -07001187 .add = mlx4_ib_add,
1188 .remove = mlx4_ib_remove,
1189 .event = mlx4_ib_event,
1190 .protocol = MLX4_PROTOCOL_IB
Roland Dreier225c7b12007-05-08 18:00:38 -07001191};
1192
1193static int __init mlx4_ib_init(void)
1194{
Eli Cohenfa417f72010-10-24 21:08:52 -07001195 int err;
1196
1197 wq = create_singlethread_workqueue("mlx4_ib");
1198 if (!wq)
1199 return -ENOMEM;
1200
1201 err = mlx4_register_interface(&mlx4_ib_interface);
1202 if (err) {
1203 destroy_workqueue(wq);
1204 return err;
1205 }
1206
1207 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001208}
1209
1210static void __exit mlx4_ib_cleanup(void)
1211{
1212 mlx4_unregister_interface(&mlx4_ib_interface);
Eli Cohenfa417f72010-10-24 21:08:52 -07001213 destroy_workqueue(wq);
Roland Dreier225c7b12007-05-08 18:00:38 -07001214}
1215
1216module_init(mlx4_ib_init);
1217module_exit(mlx4_ib_cleanup);