blob: 1349cb1b597ad3e9c7a502f73c9953790aeb4789 [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;
Sean Hefty0a1405d2011-06-02 11:32:15 -0700131 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC)
132 props->device_cap_flags |= IB_DEVICE_XRC;
Roland Dreier225c7b12007-05-08 18:00:38 -0700133
134 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
135 0xffffff;
136 props->vendor_part_id = be16_to_cpup((__be16 *) (out_mad->data + 30));
137 props->hw_ver = be32_to_cpup((__be32 *) (out_mad->data + 32));
138 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
139
140 props->max_mr_size = ~0ull;
141 props->page_size_cap = dev->dev->caps.page_size_cap;
142 props->max_qp = dev->dev->caps.num_qps - dev->dev->caps.reserved_qps;
143 props->max_qp_wr = dev->dev->caps.max_wqes;
144 props->max_sge = min(dev->dev->caps.max_sq_sg,
145 dev->dev->caps.max_rq_sg);
146 props->max_cq = dev->dev->caps.num_cqs - dev->dev->caps.reserved_cqs;
147 props->max_cqe = dev->dev->caps.max_cqes;
148 props->max_mr = dev->dev->caps.num_mpts - dev->dev->caps.reserved_mrws;
149 props->max_pd = dev->dev->caps.num_pds - dev->dev->caps.reserved_pds;
150 props->max_qp_rd_atom = dev->dev->caps.max_qp_dest_rdma;
151 props->max_qp_init_rd_atom = dev->dev->caps.max_qp_init_rdma;
152 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
153 props->max_srq = dev->dev->caps.num_srqs - dev->dev->caps.reserved_srqs;
Jack Morgensteinc8681f12007-06-21 13:39:10 -0700154 props->max_srq_wr = dev->dev->caps.max_srq_wqes - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700155 props->max_srq_sge = dev->dev->caps.max_srq_sge;
Eli Cohen5a0fd092010-10-07 16:24:16 +0200156 props->max_fast_reg_page_list_len = MLX4_MAX_FAST_REG_PAGES;
Roland Dreier225c7b12007-05-08 18:00:38 -0700157 props->local_ca_ack_delay = dev->dev->caps.local_ca_ack_delay;
158 props->atomic_cap = dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_ATOMIC ?
159 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +0300160 props->masked_atomic_cap = IB_ATOMIC_HCA;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700161 props->max_pkeys = dev->dev->caps.pkey_table_len[1];
Roland Dreier225c7b12007-05-08 18:00:38 -0700162 props->max_mcast_grp = dev->dev->caps.num_mgms + dev->dev->caps.num_amgms;
163 props->max_mcast_qp_attach = dev->dev->caps.num_qp_per_mgm;
164 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
165 props->max_mcast_grp;
Eli Cohena5bbe892012-02-09 18:10:06 +0200166 props->max_map_per_fmr = dev->dev->caps.max_fmr_maps;
Roland Dreier225c7b12007-05-08 18:00:38 -0700167
168out:
169 kfree(in_mad);
170 kfree(out_mad);
171
172 return err;
173}
174
Eli Cohenfa417f72010-10-24 21:08:52 -0700175static enum rdma_link_layer
176mlx4_ib_port_link_layer(struct ib_device *device, u8 port_num)
177{
178 struct mlx4_dev *dev = to_mdev(device)->dev;
179
Jack Morgenstein65dab252011-12-13 04:10:41 +0000180 return dev->caps.port_mask[port_num] == MLX4_PORT_TYPE_IB ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700181 IB_LINK_LAYER_INFINIBAND : IB_LINK_LAYER_ETHERNET;
182}
183
184static int ib_link_query_port(struct ib_device *ibdev, u8 port,
Or Gerlitza9c766b2012-01-11 19:00:29 +0200185 struct ib_port_attr *props)
Eli Cohenfa417f72010-10-24 21:08:52 -0700186{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200187 struct ib_smp *in_mad = NULL;
188 struct ib_smp *out_mad = NULL;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300189 int ext_active_speed;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200190 int err = -ENOMEM;
191
192 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
193 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
194 if (!in_mad || !out_mad)
195 goto out;
196
197 init_query_mad(in_mad);
198 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
199 in_mad->attr_mod = cpu_to_be32(port);
200
201 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL,
202 in_mad, out_mad);
203 if (err)
204 goto out;
205
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300206
Eli Cohenfa417f72010-10-24 21:08:52 -0700207 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
208 props->lmc = out_mad->data[34] & 0x7;
209 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
210 props->sm_sl = out_mad->data[36] & 0xf;
211 props->state = out_mad->data[32] & 0xf;
212 props->phys_state = out_mad->data[33] >> 4;
213 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
214 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
215 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
216 props->pkey_tbl_len = to_mdev(ibdev)->dev->caps.pkey_table_len[port];
217 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
218 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
219 props->active_width = out_mad->data[31] & 0xf;
220 props->active_speed = out_mad->data[35] >> 4;
221 props->max_mtu = out_mad->data[41] & 0xf;
222 props->active_mtu = out_mad->data[36] >> 4;
223 props->subnet_timeout = out_mad->data[51] & 0x1f;
224 props->max_vl_num = out_mad->data[37] >> 4;
225 props->init_type_reply = out_mad->data[41] >> 4;
226
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300227 /* Check if extended speeds (EDR/FDR/...) are supported */
228 if (props->port_cap_flags & IB_PORT_EXTENDED_SPEEDS_SUP) {
229 ext_active_speed = out_mad->data[62] >> 4;
230
231 switch (ext_active_speed) {
232 case 1:
233 props->active_speed = 16; /* FDR */
234 break;
235 case 2:
236 props->active_speed = 32; /* EDR */
237 break;
238 }
239 }
240
241 /* If reported active speed is QDR, check if is FDR-10 */
242 if (props->active_speed == 4) {
243 if (to_mdev(ibdev)->dev->caps.ext_port_cap[port] &
244 MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO) {
245 init_query_mad(in_mad);
246 in_mad->attr_id = MLX4_ATTR_EXTENDED_PORT_INFO;
247 in_mad->attr_mod = cpu_to_be32(port);
248
249 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port,
250 NULL, NULL, in_mad, out_mad);
251 if (err)
Or Gerlitza9c766b2012-01-11 19:00:29 +0200252 goto out;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300253
254 /* Checking LinkSpeedActive for FDR-10 */
255 if (out_mad->data[15] & 0x1)
256 props->active_speed = 8;
257 }
258 }
Or Gerlitza9c766b2012-01-11 19:00:29 +0200259out:
260 kfree(in_mad);
261 kfree(out_mad);
262 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700263}
264
265static u8 state_to_phys_state(enum ib_port_state state)
266{
267 return state == IB_PORT_ACTIVE ? 5 : 3;
268}
269
270static int eth_link_query_port(struct ib_device *ibdev, u8 port,
Or Gerlitza9c766b2012-01-11 19:00:29 +0200271 struct ib_port_attr *props)
Eli Cohenfa417f72010-10-24 21:08:52 -0700272{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200273
274 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
275 struct mlx4_ib_iboe *iboe = &mdev->iboe;
Eli Cohenfa417f72010-10-24 21:08:52 -0700276 struct net_device *ndev;
277 enum ib_mtu tmp;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200278 struct mlx4_cmd_mailbox *mailbox;
279 int err = 0;
Eli Cohenfa417f72010-10-24 21:08:52 -0700280
Or Gerlitza9c766b2012-01-11 19:00:29 +0200281 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
282 if (IS_ERR(mailbox))
283 return PTR_ERR(mailbox);
284
285 err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0,
286 MLX4_CMD_QUERY_PORT, MLX4_CMD_TIME_CLASS_B,
287 MLX4_CMD_WRAPPED);
288 if (err)
289 goto out;
290
291 props->active_width = (((u8 *)mailbox->buf)[5] == 0x40) ?
292 IB_WIDTH_4X : IB_WIDTH_1X;
Eli Cohenfa417f72010-10-24 21:08:52 -0700293 props->active_speed = 4;
294 props->port_cap_flags = IB_PORT_CM_SUP;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200295 props->gid_tbl_len = mdev->dev->caps.gid_table_len[port];
296 props->max_msg_sz = mdev->dev->caps.max_msg_sz;
Eli Cohenfa417f72010-10-24 21:08:52 -0700297 props->pkey_tbl_len = 1;
Or Gerlitzbcacb892011-10-10 10:53:41 +0200298 props->max_mtu = IB_MTU_4096;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200299 props->max_vl_num = 2;
Eli Cohenfa417f72010-10-24 21:08:52 -0700300 props->state = IB_PORT_DOWN;
301 props->phys_state = state_to_phys_state(props->state);
302 props->active_mtu = IB_MTU_256;
303 spin_lock(&iboe->lock);
304 ndev = iboe->netdevs[port - 1];
305 if (!ndev)
Or Gerlitza9c766b2012-01-11 19:00:29 +0200306 goto out_unlock;
Eli Cohenfa417f72010-10-24 21:08:52 -0700307
308 tmp = iboe_get_mtu(ndev->mtu);
309 props->active_mtu = tmp ? min(props->max_mtu, tmp) : IB_MTU_256;
310
Eli Cohen21d606092010-11-11 21:05:58 +0000311 props->state = (netif_running(ndev) && netif_carrier_ok(ndev)) ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700312 IB_PORT_ACTIVE : IB_PORT_DOWN;
313 props->phys_state = state_to_phys_state(props->state);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200314out_unlock:
Eli Cohenfa417f72010-10-24 21:08:52 -0700315 spin_unlock(&iboe->lock);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200316out:
317 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
318 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700319}
320
Roland Dreier225c7b12007-05-08 18:00:38 -0700321static int mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
322 struct ib_port_attr *props)
323{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200324 int err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700325
326 memset(props, 0, sizeof *props);
327
Eli Cohenfa417f72010-10-24 21:08:52 -0700328 err = mlx4_ib_port_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND ?
Or Gerlitza9c766b2012-01-11 19:00:29 +0200329 ib_link_query_port(ibdev, port, props) :
330 eth_link_query_port(ibdev, port, props);
Roland Dreier225c7b12007-05-08 18:00:38 -0700331
332 return err;
333}
334
Eli Cohenfa417f72010-10-24 21:08:52 -0700335static int __mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
336 union ib_gid *gid)
Roland Dreier225c7b12007-05-08 18:00:38 -0700337{
338 struct ib_smp *in_mad = NULL;
339 struct ib_smp *out_mad = NULL;
340 int err = -ENOMEM;
341
342 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
343 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
344 if (!in_mad || !out_mad)
345 goto out;
346
347 init_query_mad(in_mad);
348 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
349 in_mad->attr_mod = cpu_to_be32(port);
350
351 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
352 if (err)
353 goto out;
354
355 memcpy(gid->raw, out_mad->data + 8, 8);
356
357 init_query_mad(in_mad);
358 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
359 in_mad->attr_mod = cpu_to_be32(index / 8);
360
361 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
362 if (err)
363 goto out;
364
365 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
366
367out:
368 kfree(in_mad);
369 kfree(out_mad);
370 return err;
371}
372
Eli Cohenfa417f72010-10-24 21:08:52 -0700373static int iboe_query_gid(struct ib_device *ibdev, u8 port, int index,
374 union ib_gid *gid)
375{
376 struct mlx4_ib_dev *dev = to_mdev(ibdev);
377
378 *gid = dev->iboe.gid_table[port - 1][index];
379
380 return 0;
381}
382
383static int mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
384 union ib_gid *gid)
385{
386 if (rdma_port_get_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND)
387 return __mlx4_ib_query_gid(ibdev, port, index, gid);
388 else
389 return iboe_query_gid(ibdev, port, index, gid);
390}
391
Roland Dreier225c7b12007-05-08 18:00:38 -0700392static int mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
393 u16 *pkey)
394{
395 struct ib_smp *in_mad = NULL;
396 struct ib_smp *out_mad = NULL;
397 int err = -ENOMEM;
398
399 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
400 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
401 if (!in_mad || !out_mad)
402 goto out;
403
404 init_query_mad(in_mad);
405 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
406 in_mad->attr_mod = cpu_to_be32(index / 32);
407
408 err = mlx4_MAD_IFC(to_mdev(ibdev), 1, 1, port, NULL, NULL, in_mad, out_mad);
409 if (err)
410 goto out;
411
412 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
413
414out:
415 kfree(in_mad);
416 kfree(out_mad);
417 return err;
418}
419
420static int mlx4_ib_modify_device(struct ib_device *ibdev, int mask,
421 struct ib_device_modify *props)
422{
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000423 struct mlx4_cmd_mailbox *mailbox;
424
Roland Dreier225c7b12007-05-08 18:00:38 -0700425 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
426 return -EOPNOTSUPP;
427
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000428 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
429 return 0;
430
431 spin_lock(&to_mdev(ibdev)->sm_lock);
432 memcpy(ibdev->node_desc, props->node_desc, 64);
433 spin_unlock(&to_mdev(ibdev)->sm_lock);
434
435 /*
436 * If possible, pass node desc to FW, so it can generate
437 * a 144 trap. If cmd fails, just ignore.
438 */
439 mailbox = mlx4_alloc_cmd_mailbox(to_mdev(ibdev)->dev);
440 if (IS_ERR(mailbox))
441 return 0;
442
443 memset(mailbox->buf, 0, 256);
444 memcpy(mailbox->buf, props->node_desc, 64);
445 mlx4_cmd(to_mdev(ibdev)->dev, mailbox->dma, 1, 0,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000446 MLX4_CMD_SET_NODE, MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000447
448 mlx4_free_cmd_mailbox(to_mdev(ibdev)->dev, mailbox);
Roland Dreier225c7b12007-05-08 18:00:38 -0700449
450 return 0;
451}
452
453static int mlx4_SET_PORT(struct mlx4_ib_dev *dev, u8 port, int reset_qkey_viols,
454 u32 cap_mask)
455{
456 struct mlx4_cmd_mailbox *mailbox;
457 int err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700458 u8 is_eth = dev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
Roland Dreier225c7b12007-05-08 18:00:38 -0700459
460 mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
461 if (IS_ERR(mailbox))
462 return PTR_ERR(mailbox);
463
464 memset(mailbox->buf, 0, 256);
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700465
466 if (dev->dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
467 *(u8 *) mailbox->buf = !!reset_qkey_viols << 6;
468 ((__be32 *) mailbox->buf)[2] = cpu_to_be32(cap_mask);
469 } else {
470 ((u8 *) mailbox->buf)[3] = !!reset_qkey_viols;
471 ((__be32 *) mailbox->buf)[1] = cpu_to_be32(cap_mask);
472 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700473
Eli Cohenfa417f72010-10-24 21:08:52 -0700474 err = mlx4_cmd(dev->dev, mailbox->dma, port, is_eth, MLX4_CMD_SET_PORT,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000475 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700476
477 mlx4_free_cmd_mailbox(dev->dev, mailbox);
478 return err;
479}
480
481static int mlx4_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
482 struct ib_port_modify *props)
483{
484 struct ib_port_attr attr;
485 u32 cap_mask;
486 int err;
487
488 mutex_lock(&to_mdev(ibdev)->cap_mask_mutex);
489
490 err = mlx4_ib_query_port(ibdev, port, &attr);
491 if (err)
492 goto out;
493
494 cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
495 ~props->clr_port_cap_mask;
496
497 err = mlx4_SET_PORT(to_mdev(ibdev), port,
498 !!(mask & IB_PORT_RESET_QKEY_CNTR),
499 cap_mask);
500
501out:
502 mutex_unlock(&to_mdev(ibdev)->cap_mask_mutex);
503 return err;
504}
505
506static struct ib_ucontext *mlx4_ib_alloc_ucontext(struct ib_device *ibdev,
507 struct ib_udata *udata)
508{
509 struct mlx4_ib_dev *dev = to_mdev(ibdev);
510 struct mlx4_ib_ucontext *context;
511 struct mlx4_ib_alloc_ucontext_resp resp;
512 int err;
513
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -0700514 if (!dev->ib_active)
515 return ERR_PTR(-EAGAIN);
516
Roland Dreier225c7b12007-05-08 18:00:38 -0700517 resp.qp_tab_size = dev->dev->caps.num_qps;
518 resp.bf_reg_size = dev->dev->caps.bf_reg_size;
519 resp.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
520
521 context = kmalloc(sizeof *context, GFP_KERNEL);
522 if (!context)
523 return ERR_PTR(-ENOMEM);
524
525 err = mlx4_uar_alloc(to_mdev(ibdev)->dev, &context->uar);
526 if (err) {
527 kfree(context);
528 return ERR_PTR(err);
529 }
530
531 INIT_LIST_HEAD(&context->db_page_list);
532 mutex_init(&context->db_page_mutex);
533
534 err = ib_copy_to_udata(udata, &resp, sizeof resp);
535 if (err) {
536 mlx4_uar_free(to_mdev(ibdev)->dev, &context->uar);
537 kfree(context);
538 return ERR_PTR(-EFAULT);
539 }
540
541 return &context->ibucontext;
542}
543
544static int mlx4_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
545{
546 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
547
548 mlx4_uar_free(to_mdev(ibcontext->device)->dev, &context->uar);
549 kfree(context);
550
551 return 0;
552}
553
554static int mlx4_ib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
555{
556 struct mlx4_ib_dev *dev = to_mdev(context->device);
557
558 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
559 return -EINVAL;
560
561 if (vma->vm_pgoff == 0) {
562 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
563
564 if (io_remap_pfn_range(vma, vma->vm_start,
565 to_mucontext(context)->uar.pfn,
566 PAGE_SIZE, vma->vm_page_prot))
567 return -EAGAIN;
568 } else if (vma->vm_pgoff == 1 && dev->dev->caps.bf_reg_size != 0) {
Roland Dreiere1d60ec2009-03-30 08:31:05 -0700569 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700570
571 if (io_remap_pfn_range(vma, vma->vm_start,
572 to_mucontext(context)->uar.pfn +
573 dev->dev->caps.num_uars,
574 PAGE_SIZE, vma->vm_page_prot))
575 return -EAGAIN;
576 } else
577 return -EINVAL;
578
579 return 0;
580}
581
582static struct ib_pd *mlx4_ib_alloc_pd(struct ib_device *ibdev,
583 struct ib_ucontext *context,
584 struct ib_udata *udata)
585{
586 struct mlx4_ib_pd *pd;
587 int err;
588
589 pd = kmalloc(sizeof *pd, GFP_KERNEL);
590 if (!pd)
591 return ERR_PTR(-ENOMEM);
592
593 err = mlx4_pd_alloc(to_mdev(ibdev)->dev, &pd->pdn);
594 if (err) {
595 kfree(pd);
596 return ERR_PTR(err);
597 }
598
599 if (context)
600 if (ib_copy_to_udata(udata, &pd->pdn, sizeof (__u32))) {
601 mlx4_pd_free(to_mdev(ibdev)->dev, pd->pdn);
602 kfree(pd);
603 return ERR_PTR(-EFAULT);
604 }
605
606 return &pd->ibpd;
607}
608
609static int mlx4_ib_dealloc_pd(struct ib_pd *pd)
610{
611 mlx4_pd_free(to_mdev(pd->device)->dev, to_mpd(pd)->pdn);
612 kfree(pd);
613
614 return 0;
615}
616
Sean Hefty012a8ff2011-06-02 09:01:33 -0700617static struct ib_xrcd *mlx4_ib_alloc_xrcd(struct ib_device *ibdev,
618 struct ib_ucontext *context,
619 struct ib_udata *udata)
620{
621 struct mlx4_ib_xrcd *xrcd;
622 int err;
623
624 if (!(to_mdev(ibdev)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
625 return ERR_PTR(-ENOSYS);
626
627 xrcd = kmalloc(sizeof *xrcd, GFP_KERNEL);
628 if (!xrcd)
629 return ERR_PTR(-ENOMEM);
630
631 err = mlx4_xrcd_alloc(to_mdev(ibdev)->dev, &xrcd->xrcdn);
632 if (err)
633 goto err1;
634
635 xrcd->pd = ib_alloc_pd(ibdev);
636 if (IS_ERR(xrcd->pd)) {
637 err = PTR_ERR(xrcd->pd);
638 goto err2;
639 }
640
641 xrcd->cq = ib_create_cq(ibdev, NULL, NULL, xrcd, 1, 0);
642 if (IS_ERR(xrcd->cq)) {
643 err = PTR_ERR(xrcd->cq);
644 goto err3;
645 }
646
647 return &xrcd->ibxrcd;
648
649err3:
650 ib_dealloc_pd(xrcd->pd);
651err2:
652 mlx4_xrcd_free(to_mdev(ibdev)->dev, xrcd->xrcdn);
653err1:
654 kfree(xrcd);
655 return ERR_PTR(err);
656}
657
658static int mlx4_ib_dealloc_xrcd(struct ib_xrcd *xrcd)
659{
660 ib_destroy_cq(to_mxrcd(xrcd)->cq);
661 ib_dealloc_pd(to_mxrcd(xrcd)->pd);
662 mlx4_xrcd_free(to_mdev(xrcd->device)->dev, to_mxrcd(xrcd)->xrcdn);
663 kfree(xrcd);
664
665 return 0;
666}
667
Eli Cohenfa417f72010-10-24 21:08:52 -0700668static int add_gid_entry(struct ib_qp *ibqp, union ib_gid *gid)
669{
670 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
671 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
672 struct mlx4_ib_gid_entry *ge;
673
674 ge = kzalloc(sizeof *ge, GFP_KERNEL);
675 if (!ge)
676 return -ENOMEM;
677
678 ge->gid = *gid;
679 if (mlx4_ib_add_mc(mdev, mqp, gid)) {
680 ge->port = mqp->port;
681 ge->added = 1;
682 }
683
684 mutex_lock(&mqp->mutex);
685 list_add_tail(&ge->list, &mqp->gid_list);
686 mutex_unlock(&mqp->mutex);
687
688 return 0;
689}
690
691int mlx4_ib_add_mc(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
692 union ib_gid *gid)
693{
694 u8 mac[6];
695 struct net_device *ndev;
696 int ret = 0;
697
698 if (!mqp->port)
699 return 0;
700
701 spin_lock(&mdev->iboe.lock);
702 ndev = mdev->iboe.netdevs[mqp->port - 1];
703 if (ndev)
704 dev_hold(ndev);
705 spin_unlock(&mdev->iboe.lock);
706
707 if (ndev) {
708 rdma_get_mcast_mac((struct in6_addr *)gid, mac);
709 rtnl_lock();
710 dev_mc_add(mdev->iboe.netdevs[mqp->port - 1], mac);
711 ret = 1;
712 rtnl_unlock();
713 dev_put(ndev);
714 }
715
716 return ret;
717}
718
Roland Dreier225c7b12007-05-08 18:00:38 -0700719static int mlx4_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
720{
Eli Cohenfa417f72010-10-24 21:08:52 -0700721 int err;
722 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
723 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
724
Aleksey Seninda995a82010-12-02 11:44:49 +0000725 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw,
726 !!(mqp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
Yevgeny Petrilin03455842011-03-22 22:38:17 +0000727 MLX4_PROT_IB_IPV6);
Eli Cohenfa417f72010-10-24 21:08:52 -0700728 if (err)
729 return err;
730
731 err = add_gid_entry(ibqp, gid);
732 if (err)
733 goto err_add;
734
735 return 0;
736
737err_add:
Yevgeny Petrilin03455842011-03-22 22:38:17 +0000738 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw, MLX4_PROT_IB_IPV6);
Eli Cohenfa417f72010-10-24 21:08:52 -0700739 return err;
740}
741
742static struct mlx4_ib_gid_entry *find_gid_entry(struct mlx4_ib_qp *qp, u8 *raw)
743{
744 struct mlx4_ib_gid_entry *ge;
745 struct mlx4_ib_gid_entry *tmp;
746 struct mlx4_ib_gid_entry *ret = NULL;
747
748 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
749 if (!memcmp(raw, ge->gid.raw, 16)) {
750 ret = ge;
751 break;
752 }
753 }
754
755 return ret;
Roland Dreier225c7b12007-05-08 18:00:38 -0700756}
757
758static int mlx4_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
759{
Eli Cohenfa417f72010-10-24 21:08:52 -0700760 int err;
761 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
762 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
763 u8 mac[6];
764 struct net_device *ndev;
765 struct mlx4_ib_gid_entry *ge;
766
767 err = mlx4_multicast_detach(mdev->dev,
Yevgeny Petrilin03455842011-03-22 22:38:17 +0000768 &mqp->mqp, gid->raw, MLX4_PROT_IB_IPV6);
Eli Cohenfa417f72010-10-24 21:08:52 -0700769 if (err)
770 return err;
771
772 mutex_lock(&mqp->mutex);
773 ge = find_gid_entry(mqp, gid->raw);
774 if (ge) {
775 spin_lock(&mdev->iboe.lock);
776 ndev = ge->added ? mdev->iboe.netdevs[ge->port - 1] : NULL;
777 if (ndev)
778 dev_hold(ndev);
779 spin_unlock(&mdev->iboe.lock);
780 rdma_get_mcast_mac((struct in6_addr *)gid, mac);
781 if (ndev) {
782 rtnl_lock();
783 dev_mc_del(mdev->iboe.netdevs[ge->port - 1], mac);
784 rtnl_unlock();
785 dev_put(ndev);
786 }
787 list_del(&ge->list);
788 kfree(ge);
789 } else
790 printk(KERN_WARNING "could not find mgid entry\n");
791
792 mutex_unlock(&mqp->mutex);
793
794 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700795}
796
797static int init_node_data(struct mlx4_ib_dev *dev)
798{
799 struct ib_smp *in_mad = NULL;
800 struct ib_smp *out_mad = NULL;
801 int err = -ENOMEM;
802
803 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
804 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
805 if (!in_mad || !out_mad)
806 goto out;
807
808 init_query_mad(in_mad);
809 in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
810
811 err = mlx4_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
812 if (err)
813 goto out;
814
815 memcpy(dev->ib_dev.node_desc, out_mad->data, 64);
816
817 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
818
819 err = mlx4_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
820 if (err)
821 goto out;
822
823 memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
824
825out:
826 kfree(in_mad);
827 kfree(out_mad);
828 return err;
829}
830
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100831static ssize_t show_hca(struct device *device, struct device_attribute *attr,
832 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200833{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100834 struct mlx4_ib_dev *dev =
835 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200836 return sprintf(buf, "MT%d\n", dev->dev->pdev->device);
837}
838
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100839static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
840 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200841{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100842 struct mlx4_ib_dev *dev =
843 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200844 return sprintf(buf, "%d.%d.%d\n", (int) (dev->dev->caps.fw_ver >> 32),
845 (int) (dev->dev->caps.fw_ver >> 16) & 0xffff,
846 (int) dev->dev->caps.fw_ver & 0xffff);
847}
848
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100849static ssize_t show_rev(struct device *device, struct device_attribute *attr,
850 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200851{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100852 struct mlx4_ib_dev *dev =
853 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200854 return sprintf(buf, "%x\n", dev->dev->rev_id);
855}
856
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100857static ssize_t show_board(struct device *device, struct device_attribute *attr,
858 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200859{
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100860 struct mlx4_ib_dev *dev =
861 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
862 return sprintf(buf, "%.*s\n", MLX4_BOARD_ID_LEN,
863 dev->dev->board_id);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200864}
865
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100866static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
867static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
868static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
869static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200870
Tony Jonesf4e91eb2008-02-22 00:13:36 +0100871static struct device_attribute *mlx4_class_attributes[] = {
872 &dev_attr_hw_rev,
873 &dev_attr_fw_ver,
874 &dev_attr_hca_type,
875 &dev_attr_board_id
Jack Morgensteincd9281d2007-09-18 09:14:18 +0200876};
877
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300878static void mlx4_addrconf_ifid_eui48(u8 *eui, u16 vlan_id, struct net_device *dev)
Eli Cohenfa417f72010-10-24 21:08:52 -0700879{
880 memcpy(eui, dev->dev_addr, 3);
881 memcpy(eui + 5, dev->dev_addr + 3, 3);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300882 if (vlan_id < 0x1000) {
883 eui[3] = vlan_id >> 8;
884 eui[4] = vlan_id & 0xff;
885 } else {
886 eui[3] = 0xff;
887 eui[4] = 0xfe;
888 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700889 eui[0] ^= 2;
890}
891
892static void update_gids_task(struct work_struct *work)
893{
894 struct update_gid_work *gw = container_of(work, struct update_gid_work, work);
895 struct mlx4_cmd_mailbox *mailbox;
896 union ib_gid *gids;
897 int err;
898 struct mlx4_dev *dev = gw->dev->dev;
899 struct ib_event event;
900
901 mailbox = mlx4_alloc_cmd_mailbox(dev);
902 if (IS_ERR(mailbox)) {
903 printk(KERN_WARNING "update gid table failed %ld\n", PTR_ERR(mailbox));
904 return;
905 }
906
907 gids = mailbox->buf;
908 memcpy(gids, gw->gids, sizeof gw->gids);
909
910 err = mlx4_cmd(dev, mailbox->dma, MLX4_SET_PORT_GID_TABLE << 8 | gw->port,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000911 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
912 MLX4_CMD_NATIVE);
Eli Cohenfa417f72010-10-24 21:08:52 -0700913 if (err)
914 printk(KERN_WARNING "set port command failed\n");
915 else {
916 memcpy(gw->dev->iboe.gid_table[gw->port - 1], gw->gids, sizeof gw->gids);
917 event.device = &gw->dev->ib_dev;
918 event.element.port_num = gw->port;
Or Gerlitz6451c712011-06-15 14:40:29 +0000919 event.event = IB_EVENT_GID_CHANGE;
Eli Cohenfa417f72010-10-24 21:08:52 -0700920 ib_dispatch_event(&event);
921 }
922
923 mlx4_free_cmd_mailbox(dev, mailbox);
924 kfree(gw);
925}
926
927static int update_ipv6_gids(struct mlx4_ib_dev *dev, int port, int clear)
928{
929 struct net_device *ndev = dev->iboe.netdevs[port - 1];
930 struct update_gid_work *work;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300931 struct net_device *tmp;
932 int i;
933 u8 *hits;
934 int ret;
935 union ib_gid gid;
936 int free;
937 int found;
938 int need_update = 0;
939 u16 vid;
Eli Cohenfa417f72010-10-24 21:08:52 -0700940
941 work = kzalloc(sizeof *work, GFP_ATOMIC);
942 if (!work)
943 return -ENOMEM;
944
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300945 hits = kzalloc(128, GFP_ATOMIC);
946 if (!hits) {
947 ret = -ENOMEM;
948 goto out;
Eli Cohenfa417f72010-10-24 21:08:52 -0700949 }
950
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800951 rcu_read_lock();
952 for_each_netdev_rcu(&init_net, tmp) {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300953 if (ndev && (tmp == ndev || rdma_vlan_dev_real_dev(tmp) == ndev)) {
954 gid.global.subnet_prefix = cpu_to_be64(0xfe80000000000000LL);
955 vid = rdma_vlan_dev_vlan_id(tmp);
956 mlx4_addrconf_ifid_eui48(&gid.raw[8], vid, ndev);
957 found = 0;
958 free = -1;
959 for (i = 0; i < 128; ++i) {
960 if (free < 0 &&
961 !memcmp(&dev->iboe.gid_table[port - 1][i], &zgid, sizeof zgid))
962 free = i;
963 if (!memcmp(&dev->iboe.gid_table[port - 1][i], &gid, sizeof gid)) {
964 hits[i] = 1;
965 found = 1;
966 break;
967 }
968 }
Eli Cohenfa417f72010-10-24 21:08:52 -0700969
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300970 if (!found) {
971 if (tmp == ndev &&
972 (memcmp(&dev->iboe.gid_table[port - 1][0],
973 &gid, sizeof gid) ||
974 !memcmp(&dev->iboe.gid_table[port - 1][0],
975 &zgid, sizeof gid))) {
976 dev->iboe.gid_table[port - 1][0] = gid;
977 ++need_update;
978 hits[0] = 1;
979 } else if (free >= 0) {
980 dev->iboe.gid_table[port - 1][free] = gid;
981 hits[free] = 1;
982 ++need_update;
983 }
984 }
985 }
986 }
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800987 rcu_read_unlock();
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300988
989 for (i = 0; i < 128; ++i)
990 if (!hits[i]) {
991 if (memcmp(&dev->iboe.gid_table[port - 1][i], &zgid, sizeof zgid))
992 ++need_update;
993 dev->iboe.gid_table[port - 1][i] = zgid;
994 }
995
996 if (need_update) {
997 memcpy(work->gids, dev->iboe.gid_table[port - 1], sizeof work->gids);
998 INIT_WORK(&work->work, update_gids_task);
999 work->port = port;
1000 work->dev = dev;
1001 queue_work(wq, &work->work);
1002 } else
1003 kfree(work);
1004
1005 kfree(hits);
Eli Cohenfa417f72010-10-24 21:08:52 -07001006 return 0;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001007
1008out:
1009 kfree(work);
1010 return ret;
Eli Cohenfa417f72010-10-24 21:08:52 -07001011}
1012
1013static void handle_en_event(struct mlx4_ib_dev *dev, int port, unsigned long event)
1014{
1015 switch (event) {
1016 case NETDEV_UP:
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001017 case NETDEV_CHANGEADDR:
Eli Cohenfa417f72010-10-24 21:08:52 -07001018 update_ipv6_gids(dev, port, 0);
1019 break;
1020
1021 case NETDEV_DOWN:
1022 update_ipv6_gids(dev, port, 1);
1023 dev->iboe.netdevs[port - 1] = NULL;
1024 }
1025}
1026
1027static void netdev_added(struct mlx4_ib_dev *dev, int port)
1028{
1029 update_ipv6_gids(dev, port, 0);
1030}
1031
1032static void netdev_removed(struct mlx4_ib_dev *dev, int port)
1033{
1034 update_ipv6_gids(dev, port, 1);
1035}
1036
1037static int mlx4_ib_netdev_event(struct notifier_block *this, unsigned long event,
1038 void *ptr)
1039{
1040 struct net_device *dev = ptr;
1041 struct mlx4_ib_dev *ibdev;
1042 struct net_device *oldnd;
1043 struct mlx4_ib_iboe *iboe;
1044 int port;
1045
1046 if (!net_eq(dev_net(dev), &init_net))
1047 return NOTIFY_DONE;
1048
1049 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb);
1050 iboe = &ibdev->iboe;
1051
1052 spin_lock(&iboe->lock);
1053 mlx4_foreach_ib_transport_port(port, ibdev->dev) {
1054 oldnd = iboe->netdevs[port - 1];
1055 iboe->netdevs[port - 1] =
Yevgeny Petrilin03455842011-03-22 22:38:17 +00001056 mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port);
Eli Cohenfa417f72010-10-24 21:08:52 -07001057 if (oldnd != iboe->netdevs[port - 1]) {
1058 if (iboe->netdevs[port - 1])
1059 netdev_added(ibdev, port);
1060 else
1061 netdev_removed(ibdev, port);
1062 }
1063 }
1064
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001065 if (dev == iboe->netdevs[0] ||
1066 (iboe->netdevs[0] && rdma_vlan_dev_real_dev(dev) == iboe->netdevs[0]))
Eli Cohenfa417f72010-10-24 21:08:52 -07001067 handle_en_event(ibdev, 1, event);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001068 else if (dev == iboe->netdevs[1]
1069 || (iboe->netdevs[1] && rdma_vlan_dev_real_dev(dev) == iboe->netdevs[1]))
Eli Cohenfa417f72010-10-24 21:08:52 -07001070 handle_en_event(ibdev, 2, event);
1071
1072 spin_unlock(&iboe->lock);
1073
1074 return NOTIFY_DONE;
1075}
1076
Roland Dreier225c7b12007-05-08 18:00:38 -07001077static void *mlx4_ib_add(struct mlx4_dev *dev)
1078{
1079 struct mlx4_ib_dev *ibdev;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001080 int num_ports = 0;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001081 int i;
Eli Cohenfa417f72010-10-24 21:08:52 -07001082 int err;
1083 struct mlx4_ib_iboe *iboe;
Roland Dreier225c7b12007-05-08 18:00:38 -07001084
Marcin Slusarzf1aa78b2009-09-05 20:24:24 -07001085 printk_once(KERN_INFO "%s", mlx4_ib_version);
Roland Dreier68f39482008-02-04 20:20:44 -08001086
Jack Morgenstein8e59d252011-12-13 04:15:46 +00001087 if (mlx4_is_mfunc(dev)) {
1088 printk(KERN_WARNING "IB not yet supported in SRIOV\n");
1089 return NULL;
1090 }
1091
Eli Cohenfa417f72010-10-24 21:08:52 -07001092 mlx4_foreach_ib_transport_port(i, dev)
Roland Dreier22e7ef92009-01-09 13:22:29 -08001093 num_ports++;
1094
1095 /* No point in registering a device with no ports... */
1096 if (num_ports == 0)
1097 return NULL;
1098
Roland Dreier225c7b12007-05-08 18:00:38 -07001099 ibdev = (struct mlx4_ib_dev *) ib_alloc_device(sizeof *ibdev);
1100 if (!ibdev) {
1101 dev_err(&dev->pdev->dev, "Device struct alloc failed\n");
1102 return NULL;
1103 }
1104
Eli Cohenfa417f72010-10-24 21:08:52 -07001105 iboe = &ibdev->iboe;
1106
Roland Dreier225c7b12007-05-08 18:00:38 -07001107 if (mlx4_pd_alloc(dev, &ibdev->priv_pdn))
1108 goto err_dealloc;
1109
1110 if (mlx4_uar_alloc(dev, &ibdev->priv_uar))
1111 goto err_pd;
1112
Roland Dreier4979d182011-01-12 09:50:36 -08001113 ibdev->uar_map = ioremap((phys_addr_t) ibdev->priv_uar.pfn << PAGE_SHIFT,
1114 PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -07001115 if (!ibdev->uar_map)
1116 goto err_uar;
Jack Morgenstein26c6bc72007-05-13 17:18:23 +03001117 MLX4_INIT_DOORBELL_LOCK(&ibdev->uar_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07001118
Roland Dreier225c7b12007-05-08 18:00:38 -07001119 ibdev->dev = dev;
1120
1121 strlcpy(ibdev->ib_dev.name, "mlx4_%d", IB_DEVICE_NAME_MAX);
1122 ibdev->ib_dev.owner = THIS_MODULE;
1123 ibdev->ib_dev.node_type = RDMA_NODE_IB_CA;
Roland Dreier95d04f02008-07-23 08:12:26 -07001124 ibdev->ib_dev.local_dma_lkey = dev->caps.reserved_lkey;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001125 ibdev->num_ports = num_ports;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001126 ibdev->ib_dev.phys_port_cnt = ibdev->num_ports;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -08001127 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
Roland Dreier225c7b12007-05-08 18:00:38 -07001128 ibdev->ib_dev.dma_device = &dev->pdev->dev;
1129
1130 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION;
1131 ibdev->ib_dev.uverbs_cmd_mask =
1132 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
1133 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
1134 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
1135 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
1136 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
1137 (1ull << IB_USER_VERBS_CMD_REG_MR) |
1138 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
1139 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
1140 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001141 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001142 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
1143 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
1144 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001145 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001146 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
1147 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
1148 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
1149 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
1150 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001151 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
Sean Hefty18abd5e2011-06-02 10:43:26 -07001152 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
Sean Hefty42849b22011-08-11 13:57:43 -07001153 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
1154 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
Roland Dreier225c7b12007-05-08 18:00:38 -07001155
1156 ibdev->ib_dev.query_device = mlx4_ib_query_device;
1157 ibdev->ib_dev.query_port = mlx4_ib_query_port;
Eli Cohenfa417f72010-10-24 21:08:52 -07001158 ibdev->ib_dev.get_link_layer = mlx4_ib_port_link_layer;
Roland Dreier225c7b12007-05-08 18:00:38 -07001159 ibdev->ib_dev.query_gid = mlx4_ib_query_gid;
1160 ibdev->ib_dev.query_pkey = mlx4_ib_query_pkey;
1161 ibdev->ib_dev.modify_device = mlx4_ib_modify_device;
1162 ibdev->ib_dev.modify_port = mlx4_ib_modify_port;
1163 ibdev->ib_dev.alloc_ucontext = mlx4_ib_alloc_ucontext;
1164 ibdev->ib_dev.dealloc_ucontext = mlx4_ib_dealloc_ucontext;
1165 ibdev->ib_dev.mmap = mlx4_ib_mmap;
1166 ibdev->ib_dev.alloc_pd = mlx4_ib_alloc_pd;
1167 ibdev->ib_dev.dealloc_pd = mlx4_ib_dealloc_pd;
1168 ibdev->ib_dev.create_ah = mlx4_ib_create_ah;
1169 ibdev->ib_dev.query_ah = mlx4_ib_query_ah;
1170 ibdev->ib_dev.destroy_ah = mlx4_ib_destroy_ah;
1171 ibdev->ib_dev.create_srq = mlx4_ib_create_srq;
1172 ibdev->ib_dev.modify_srq = mlx4_ib_modify_srq;
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001173 ibdev->ib_dev.query_srq = mlx4_ib_query_srq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001174 ibdev->ib_dev.destroy_srq = mlx4_ib_destroy_srq;
1175 ibdev->ib_dev.post_srq_recv = mlx4_ib_post_srq_recv;
1176 ibdev->ib_dev.create_qp = mlx4_ib_create_qp;
1177 ibdev->ib_dev.modify_qp = mlx4_ib_modify_qp;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001178 ibdev->ib_dev.query_qp = mlx4_ib_query_qp;
Roland Dreier225c7b12007-05-08 18:00:38 -07001179 ibdev->ib_dev.destroy_qp = mlx4_ib_destroy_qp;
1180 ibdev->ib_dev.post_send = mlx4_ib_post_send;
1181 ibdev->ib_dev.post_recv = mlx4_ib_post_recv;
1182 ibdev->ib_dev.create_cq = mlx4_ib_create_cq;
Eli Cohen3fdcb972008-04-16 21:09:33 -07001183 ibdev->ib_dev.modify_cq = mlx4_ib_modify_cq;
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001184 ibdev->ib_dev.resize_cq = mlx4_ib_resize_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001185 ibdev->ib_dev.destroy_cq = mlx4_ib_destroy_cq;
1186 ibdev->ib_dev.poll_cq = mlx4_ib_poll_cq;
1187 ibdev->ib_dev.req_notify_cq = mlx4_ib_arm_cq;
1188 ibdev->ib_dev.get_dma_mr = mlx4_ib_get_dma_mr;
1189 ibdev->ib_dev.reg_user_mr = mlx4_ib_reg_user_mr;
1190 ibdev->ib_dev.dereg_mr = mlx4_ib_dereg_mr;
Roland Dreier95d04f02008-07-23 08:12:26 -07001191 ibdev->ib_dev.alloc_fast_reg_mr = mlx4_ib_alloc_fast_reg_mr;
1192 ibdev->ib_dev.alloc_fast_reg_page_list = mlx4_ib_alloc_fast_reg_page_list;
1193 ibdev->ib_dev.free_fast_reg_page_list = mlx4_ib_free_fast_reg_page_list;
Roland Dreier225c7b12007-05-08 18:00:38 -07001194 ibdev->ib_dev.attach_mcast = mlx4_ib_mcg_attach;
1195 ibdev->ib_dev.detach_mcast = mlx4_ib_mcg_detach;
1196 ibdev->ib_dev.process_mad = mlx4_ib_process_mad;
1197
Jack Morgenstein8ad11fb2007-08-01 12:29:05 +03001198 ibdev->ib_dev.alloc_fmr = mlx4_ib_fmr_alloc;
1199 ibdev->ib_dev.map_phys_fmr = mlx4_ib_map_phys_fmr;
1200 ibdev->ib_dev.unmap_fmr = mlx4_ib_unmap_fmr;
1201 ibdev->ib_dev.dealloc_fmr = mlx4_ib_fmr_dealloc;
1202
Sean Hefty012a8ff2011-06-02 09:01:33 -07001203 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) {
1204 ibdev->ib_dev.alloc_xrcd = mlx4_ib_alloc_xrcd;
1205 ibdev->ib_dev.dealloc_xrcd = mlx4_ib_dealloc_xrcd;
1206 ibdev->ib_dev.uverbs_cmd_mask |=
1207 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
1208 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
1209 }
1210
Eli Cohenfa417f72010-10-24 21:08:52 -07001211 spin_lock_init(&iboe->lock);
1212
Roland Dreier225c7b12007-05-08 18:00:38 -07001213 if (init_node_data(ibdev))
1214 goto err_map;
1215
Or Gerlitzcfcde112011-06-15 14:49:57 +00001216 for (i = 0; i < ibdev->num_ports; ++i) {
1217 if (mlx4_ib_port_link_layer(&ibdev->ib_dev, i + 1) ==
1218 IB_LINK_LAYER_ETHERNET) {
1219 err = mlx4_counter_alloc(ibdev->dev, &ibdev->counters[i]);
1220 if (err)
1221 ibdev->counters[i] = -1;
1222 } else
1223 ibdev->counters[i] = -1;
1224 }
1225
Roland Dreier225c7b12007-05-08 18:00:38 -07001226 spin_lock_init(&ibdev->sm_lock);
1227 mutex_init(&ibdev->cap_mask_mutex);
1228
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001229 if (ib_register_device(&ibdev->ib_dev, NULL))
Or Gerlitzcfcde112011-06-15 14:49:57 +00001230 goto err_counter;
Roland Dreier225c7b12007-05-08 18:00:38 -07001231
1232 if (mlx4_ib_mad_init(ibdev))
1233 goto err_reg;
1234
Eli Cohenfa417f72010-10-24 21:08:52 -07001235 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE && !iboe->nb.notifier_call) {
1236 iboe->nb.notifier_call = mlx4_ib_netdev_event;
1237 err = register_netdevice_notifier(&iboe->nb);
1238 if (err)
1239 goto err_reg;
1240 }
1241
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001242 for (i = 0; i < ARRAY_SIZE(mlx4_class_attributes); ++i) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001243 if (device_create_file(&ibdev->ib_dev.dev,
1244 mlx4_class_attributes[i]))
Eli Cohenfa417f72010-10-24 21:08:52 -07001245 goto err_notif;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001246 }
1247
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07001248 ibdev->ib_active = true;
1249
Roland Dreier225c7b12007-05-08 18:00:38 -07001250 return ibdev;
1251
Eli Cohenfa417f72010-10-24 21:08:52 -07001252err_notif:
1253 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
1254 printk(KERN_WARNING "failure unregistering notifier\n");
1255 flush_workqueue(wq);
1256
Roland Dreier225c7b12007-05-08 18:00:38 -07001257err_reg:
1258 ib_unregister_device(&ibdev->ib_dev);
1259
Or Gerlitzcfcde112011-06-15 14:49:57 +00001260err_counter:
1261 for (; i; --i)
Roland Dreier4af3ce02011-12-06 10:47:37 -08001262 if (ibdev->counters[i - 1] != -1)
1263 mlx4_counter_free(ibdev->dev, ibdev->counters[i - 1]);
Or Gerlitzcfcde112011-06-15 14:49:57 +00001264
Roland Dreier225c7b12007-05-08 18:00:38 -07001265err_map:
1266 iounmap(ibdev->uar_map);
1267
1268err_uar:
1269 mlx4_uar_free(dev, &ibdev->priv_uar);
1270
1271err_pd:
1272 mlx4_pd_free(dev, ibdev->priv_pdn);
1273
1274err_dealloc:
1275 ib_dealloc_device(&ibdev->ib_dev);
1276
1277 return NULL;
1278}
1279
1280static void mlx4_ib_remove(struct mlx4_dev *dev, void *ibdev_ptr)
1281{
1282 struct mlx4_ib_dev *ibdev = ibdev_ptr;
1283 int p;
1284
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07001285 mlx4_ib_mad_cleanup(ibdev);
1286 ib_unregister_device(&ibdev->ib_dev);
Eli Cohenfa417f72010-10-24 21:08:52 -07001287 if (ibdev->iboe.nb.notifier_call) {
1288 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
1289 printk(KERN_WARNING "failure unregistering notifier\n");
1290 ibdev->iboe.nb.notifier_call = NULL;
1291 }
1292 iounmap(ibdev->uar_map);
Or Gerlitzcfcde112011-06-15 14:49:57 +00001293 for (p = 0; p < ibdev->num_ports; ++p)
Roland Dreier4af3ce02011-12-06 10:47:37 -08001294 if (ibdev->counters[p] != -1)
1295 mlx4_counter_free(ibdev->dev, ibdev->counters[p]);
Eli Cohenfa417f72010-10-24 21:08:52 -07001296 mlx4_foreach_port(p, dev, MLX4_PORT_TYPE_IB)
Roland Dreier225c7b12007-05-08 18:00:38 -07001297 mlx4_CLOSE_PORT(dev, p);
1298
Roland Dreier225c7b12007-05-08 18:00:38 -07001299 mlx4_uar_free(dev, &ibdev->priv_uar);
1300 mlx4_pd_free(dev, ibdev->priv_pdn);
1301 ib_dealloc_device(&ibdev->ib_dev);
1302}
1303
1304static void mlx4_ib_event(struct mlx4_dev *dev, void *ibdev_ptr,
Roland Dreier37608ee2008-04-16 21:01:08 -07001305 enum mlx4_dev_event event, int port)
Roland Dreier225c7b12007-05-08 18:00:38 -07001306{
1307 struct ib_event ibev;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001308 struct mlx4_ib_dev *ibdev = to_mdev((struct ib_device *) ibdev_ptr);
1309
1310 if (port > ibdev->num_ports)
1311 return;
Roland Dreier225c7b12007-05-08 18:00:38 -07001312
1313 switch (event) {
Roland Dreier37608ee2008-04-16 21:01:08 -07001314 case MLX4_DEV_EVENT_PORT_UP:
1315 ibev.event = IB_EVENT_PORT_ACTIVE;
Roland Dreier225c7b12007-05-08 18:00:38 -07001316 break;
1317
Roland Dreier37608ee2008-04-16 21:01:08 -07001318 case MLX4_DEV_EVENT_PORT_DOWN:
1319 ibev.event = IB_EVENT_PORT_ERR;
1320 break;
1321
1322 case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07001323 ibdev->ib_active = false;
Roland Dreier225c7b12007-05-08 18:00:38 -07001324 ibev.event = IB_EVENT_DEVICE_FATAL;
1325 break;
1326
1327 default:
1328 return;
1329 }
1330
1331 ibev.device = ibdev_ptr;
1332 ibev.element.port_num = port;
1333
1334 ib_dispatch_event(&ibev);
1335}
1336
1337static struct mlx4_interface mlx4_ib_interface = {
Eli Cohenfa417f72010-10-24 21:08:52 -07001338 .add = mlx4_ib_add,
1339 .remove = mlx4_ib_remove,
1340 .event = mlx4_ib_event,
Yevgeny Petrilin03455842011-03-22 22:38:17 +00001341 .protocol = MLX4_PROT_IB_IPV6
Roland Dreier225c7b12007-05-08 18:00:38 -07001342};
1343
1344static int __init mlx4_ib_init(void)
1345{
Eli Cohenfa417f72010-10-24 21:08:52 -07001346 int err;
1347
1348 wq = create_singlethread_workqueue("mlx4_ib");
1349 if (!wq)
1350 return -ENOMEM;
1351
1352 err = mlx4_register_interface(&mlx4_ib_interface);
1353 if (err) {
1354 destroy_workqueue(wq);
1355 return err;
1356 }
1357
1358 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001359}
1360
1361static void __exit mlx4_ib_cleanup(void)
1362{
1363 mlx4_unregister_interface(&mlx4_ib_interface);
Eli Cohenfa417f72010-10-24 21:08:52 -07001364 destroy_workqueue(wq);
Roland Dreier225c7b12007-05-08 18:00:38 -07001365}
1366
1367module_init(mlx4_ib_init);
1368module_exit(mlx4_ib_cleanup);