blob: c2702f549f10aae4f7ef115fc25a238fb65c25bd [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07003 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#include <linux/module.h>
35#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070037#include <linux/errno.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070038#include <linux/netdevice.h>
39#include <linux/inetdevice.h>
40#include <linux/rtnetlink.h>
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030041#include <linux/if_vlan.h>
Moni Shouad487ee72013-12-12 18:03:13 +020042#include <net/ipv6.h>
43#include <net/addrconf.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070044
45#include <rdma/ib_smi.h>
46#include <rdma/ib_user_verbs.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070047#include <rdma/ib_addr.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070048
49#include <linux/mlx4/driver.h>
50#include <linux/mlx4/cmd.h>
51
52#include "mlx4_ib.h"
53#include "user.h"
54
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +030055#define DRV_NAME MLX4_IB_DRV_NAME
Jack Morgenstein068c4ea2008-04-16 21:09:35 -070056#define DRV_VERSION "1.0"
57#define DRV_RELDATE "April 4, 2008"
Roland Dreier225c7b12007-05-08 18:00:38 -070058
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030059#define MLX4_IB_FLOW_MAX_PRIO 0xFFF
Matan Baraka37a1a42013-11-07 15:25:16 +020060#define MLX4_IB_FLOW_QPN_MASK 0xFFFFFF
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030061
Roland Dreier225c7b12007-05-08 18:00:38 -070062MODULE_AUTHOR("Roland Dreier");
63MODULE_DESCRIPTION("Mellanox ConnectX HCA InfiniBand driver");
64MODULE_LICENSE("Dual BSD/GPL");
65MODULE_VERSION(DRV_VERSION);
66
Jack Morgensteina0c64a12012-08-03 08:40:49 +000067int mlx4_ib_sm_guid_assign = 1;
68module_param_named(sm_guid_assign, mlx4_ib_sm_guid_assign, int, 0444);
69MODULE_PARM_DESC(sm_guid_assign, "Enable SM alias_GUID assignment if sm_guid_assign > 0 (Default: 1)");
70
Roland Dreier68f39482008-02-04 20:20:44 -080071static const char mlx4_ib_version[] =
Roland Dreier225c7b12007-05-08 18:00:38 -070072 DRV_NAME ": Mellanox ConnectX InfiniBand driver v"
73 DRV_VERSION " (" DRV_RELDATE ")\n";
74
Eli Cohenfa417f72010-10-24 21:08:52 -070075struct update_gid_work {
76 struct work_struct work;
77 union ib_gid gids[128];
78 struct mlx4_ib_dev *dev;
79 int port;
80};
81
Jack Morgenstein3806d082012-08-03 08:40:58 +000082static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init);
83
Eli Cohenfa417f72010-10-24 21:08:52 -070084static struct workqueue_struct *wq;
85
Roland Dreier225c7b12007-05-08 18:00:38 -070086static void init_query_mad(struct ib_smp *mad)
87{
88 mad->base_version = 1;
89 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
90 mad->class_version = 1;
91 mad->method = IB_MGMT_METHOD_GET;
92}
93
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030094static union ib_gid zgid;
95
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030096static int check_flow_steering_support(struct mlx4_dev *dev)
97{
Matan Barak0a9b7d52013-11-07 15:25:15 +020098 int eth_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +030099 int ib_num_ports = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300100
Matan Barak0a9b7d52013-11-07 15:25:15 +0200101 int dmfs = dev->caps.steering_mode == MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300102
Matan Barak0a9b7d52013-11-07 15:25:15 +0200103 if (dmfs) {
104 int i;
105 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
106 eth_num_ports++;
107 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
108 ib_num_ports++;
109 dmfs &= (!ib_num_ports ||
110 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_DMFS_IPOIB)) &&
111 (!eth_num_ports ||
112 (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_FS_EN));
113 if (ib_num_ports && mlx4_is_mfunc(dev)) {
114 pr_warn("Device managed flow steering is unavailable for IB port in multifunction env.\n");
115 dmfs = 0;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300116 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300117 }
Matan Barak0a9b7d52013-11-07 15:25:15 +0200118 return dmfs;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300119}
120
Roland Dreier225c7b12007-05-08 18:00:38 -0700121static int mlx4_ib_query_device(struct ib_device *ibdev,
122 struct ib_device_attr *props)
123{
124 struct mlx4_ib_dev *dev = to_mdev(ibdev);
125 struct ib_smp *in_mad = NULL;
126 struct ib_smp *out_mad = NULL;
127 int err = -ENOMEM;
128
129 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
130 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
131 if (!in_mad || !out_mad)
132 goto out;
133
134 init_query_mad(in_mad);
135 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
136
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000137 err = mlx4_MAD_IFC(to_mdev(ibdev), MLX4_MAD_IFC_IGNORE_KEYS,
138 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700139 if (err)
140 goto out;
141
142 memset(props, 0, sizeof *props);
143
144 props->fw_ver = dev->dev->caps.fw_ver;
145 props->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
146 IB_DEVICE_PORT_ACTIVE_EVENT |
147 IB_DEVICE_SYS_IMAGE_GUID |
Ron Livne521e5752008-07-14 23:48:48 -0700148 IB_DEVICE_RC_RNR_NAK_GEN |
149 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
Roland Dreier225c7b12007-05-08 18:00:38 -0700150 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR)
151 props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
152 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR)
153 props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
154 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_APM)
155 props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
156 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UD_AV_PORT)
157 props->device_cap_flags |= IB_DEVICE_UD_AV_PORT_ENFORCE;
Eli Cohen8ff095e2008-04-16 21:01:10 -0700158 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_IPOIB_CSUM)
159 props->device_cap_flags |= IB_DEVICE_UD_IP_CSUM;
Eli Cohen417608c2009-11-12 11:19:44 -0800160 if (dev->dev->caps.max_gso_sz && dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_BLH)
Eli Cohenb832be12008-04-16 21:09:27 -0700161 props->device_cap_flags |= IB_DEVICE_UD_TSO;
Roland Dreier95d04f02008-07-23 08:12:26 -0700162 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_RESERVED_LKEY)
163 props->device_cap_flags |= IB_DEVICE_LOCAL_DMA_LKEY;
164 if ((dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_LOCAL_INV) &&
165 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_REMOTE_INV) &&
166 (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_FAST_REG_WR))
167 props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
Sean Hefty0a1405d2011-06-02 11:32:15 -0700168 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC)
169 props->device_cap_flags |= IB_DEVICE_XRC;
Shani Michaelib4253882013-02-06 16:19:16 +0000170 if (dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW)
171 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW;
172 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
173 if (dev->dev->caps.bmme_flags & MLX4_BMME_FLAG_WIN_TYPE_2B)
174 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2B;
175 else
176 props->device_cap_flags |= IB_DEVICE_MEM_WINDOW_TYPE_2A;
Matan Barak0a9b7d52013-11-07 15:25:15 +0200177 if (dev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED)
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300178 props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
Shani Michaelib4253882013-02-06 16:19:16 +0000179 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700180
181 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
182 0xffffff;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000183 props->vendor_part_id = dev->dev->pdev->device;
Roland Dreier225c7b12007-05-08 18:00:38 -0700184 props->hw_ver = be32_to_cpup((__be32 *) (out_mad->data + 32));
185 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
186
187 props->max_mr_size = ~0ull;
188 props->page_size_cap = dev->dev->caps.page_size_cap;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200189 props->max_qp = dev->dev->quotas.qp;
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300190 props->max_qp_wr = dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE;
Roland Dreier225c7b12007-05-08 18:00:38 -0700191 props->max_sge = min(dev->dev->caps.max_sq_sg,
192 dev->dev->caps.max_rq_sg);
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200193 props->max_cq = dev->dev->quotas.cq;
Roland Dreier225c7b12007-05-08 18:00:38 -0700194 props->max_cqe = dev->dev->caps.max_cqes;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200195 props->max_mr = dev->dev->quotas.mpt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700196 props->max_pd = dev->dev->caps.num_pds - dev->dev->caps.reserved_pds;
197 props->max_qp_rd_atom = dev->dev->caps.max_qp_dest_rdma;
198 props->max_qp_init_rd_atom = dev->dev->caps.max_qp_init_rdma;
199 props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200200 props->max_srq = dev->dev->quotas.srq;
Jack Morgensteinc8681f12007-06-21 13:39:10 -0700201 props->max_srq_wr = dev->dev->caps.max_srq_wqes - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700202 props->max_srq_sge = dev->dev->caps.max_srq_sge;
Eli Cohen5a0fd092010-10-07 16:24:16 +0200203 props->max_fast_reg_page_list_len = MLX4_MAX_FAST_REG_PAGES;
Roland Dreier225c7b12007-05-08 18:00:38 -0700204 props->local_ca_ack_delay = dev->dev->caps.local_ca_ack_delay;
205 props->atomic_cap = dev->dev->caps.flags & MLX4_DEV_CAP_FLAG_ATOMIC ?
206 IB_ATOMIC_HCA : IB_ATOMIC_NONE;
Dotan Barak47e956b2012-07-11 15:39:29 +0000207 props->masked_atomic_cap = props->atomic_cap;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700208 props->max_pkeys = dev->dev->caps.pkey_table_len[1];
Roland Dreier225c7b12007-05-08 18:00:38 -0700209 props->max_mcast_grp = dev->dev->caps.num_mgms + dev->dev->caps.num_amgms;
210 props->max_mcast_qp_attach = dev->dev->caps.num_qp_per_mgm;
211 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
212 props->max_mcast_grp;
Eli Cohena5bbe892012-02-09 18:10:06 +0200213 props->max_map_per_fmr = dev->dev->caps.max_fmr_maps;
Roland Dreier225c7b12007-05-08 18:00:38 -0700214
215out:
216 kfree(in_mad);
217 kfree(out_mad);
218
219 return err;
220}
221
Eli Cohenfa417f72010-10-24 21:08:52 -0700222static enum rdma_link_layer
223mlx4_ib_port_link_layer(struct ib_device *device, u8 port_num)
224{
225 struct mlx4_dev *dev = to_mdev(device)->dev;
226
Jack Morgenstein65dab252011-12-13 04:10:41 +0000227 return dev->caps.port_mask[port_num] == MLX4_PORT_TYPE_IB ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700228 IB_LINK_LAYER_INFINIBAND : IB_LINK_LAYER_ETHERNET;
229}
230
231static int ib_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000232 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700233{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200234 struct ib_smp *in_mad = NULL;
235 struct ib_smp *out_mad = NULL;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300236 int ext_active_speed;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000237 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200238 int err = -ENOMEM;
239
240 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
241 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
242 if (!in_mad || !out_mad)
243 goto out;
244
245 init_query_mad(in_mad);
246 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
247 in_mad->attr_mod = cpu_to_be32(port);
248
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000249 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
250 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
251
252 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
Or Gerlitza9c766b2012-01-11 19:00:29 +0200253 in_mad, out_mad);
254 if (err)
255 goto out;
256
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300257
Eli Cohenfa417f72010-10-24 21:08:52 -0700258 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
259 props->lmc = out_mad->data[34] & 0x7;
260 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
261 props->sm_sl = out_mad->data[36] & 0xf;
262 props->state = out_mad->data[32] & 0xf;
263 props->phys_state = out_mad->data[33] >> 4;
264 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000265 if (netw_view)
266 props->gid_tbl_len = out_mad->data[50];
267 else
268 props->gid_tbl_len = to_mdev(ibdev)->dev->caps.gid_table_len[port];
Eli Cohenfa417f72010-10-24 21:08:52 -0700269 props->max_msg_sz = to_mdev(ibdev)->dev->caps.max_msg_sz;
270 props->pkey_tbl_len = to_mdev(ibdev)->dev->caps.pkey_table_len[port];
271 props->bad_pkey_cntr = be16_to_cpup((__be16 *) (out_mad->data + 46));
272 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
273 props->active_width = out_mad->data[31] & 0xf;
274 props->active_speed = out_mad->data[35] >> 4;
275 props->max_mtu = out_mad->data[41] & 0xf;
276 props->active_mtu = out_mad->data[36] >> 4;
277 props->subnet_timeout = out_mad->data[51] & 0x1f;
278 props->max_vl_num = out_mad->data[37] >> 4;
279 props->init_type_reply = out_mad->data[41] >> 4;
280
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300281 /* Check if extended speeds (EDR/FDR/...) are supported */
282 if (props->port_cap_flags & IB_PORT_EXTENDED_SPEEDS_SUP) {
283 ext_active_speed = out_mad->data[62] >> 4;
284
285 switch (ext_active_speed) {
286 case 1:
Or Gerlitz2e966912012-02-28 18:49:50 +0200287 props->active_speed = IB_SPEED_FDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300288 break;
289 case 2:
Or Gerlitz2e966912012-02-28 18:49:50 +0200290 props->active_speed = IB_SPEED_EDR;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300291 break;
292 }
293 }
294
295 /* If reported active speed is QDR, check if is FDR-10 */
Or Gerlitz2e966912012-02-28 18:49:50 +0200296 if (props->active_speed == IB_SPEED_QDR) {
Or Gerlitz8154c072012-03-06 15:50:50 +0200297 init_query_mad(in_mad);
298 in_mad->attr_id = MLX4_ATTR_EXTENDED_PORT_INFO;
299 in_mad->attr_mod = cpu_to_be32(port);
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300300
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000301 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port,
Or Gerlitz8154c072012-03-06 15:50:50 +0200302 NULL, NULL, in_mad, out_mad);
303 if (err)
Jesper Juhlbf6b47d2012-04-11 23:43:29 +0200304 goto out;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300305
Or Gerlitz8154c072012-03-06 15:50:50 +0200306 /* Checking LinkSpeedActive for FDR-10 */
307 if (out_mad->data[15] & 0x1)
308 props->active_speed = IB_SPEED_FDR10;
Marcel Apfelbauma5e12df2011-10-03 19:04:20 +0300309 }
Or Gerlitzd2ef4062012-04-02 17:45:20 +0300310
311 /* Avoid wrong speed value returned by FW if the IB link is down. */
312 if (props->state == IB_PORT_DOWN)
313 props->active_speed = IB_SPEED_SDR;
314
Or Gerlitza9c766b2012-01-11 19:00:29 +0200315out:
316 kfree(in_mad);
317 kfree(out_mad);
318 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700319}
320
321static u8 state_to_phys_state(enum ib_port_state state)
322{
323 return state == IB_PORT_ACTIVE ? 5 : 3;
324}
325
326static int eth_link_query_port(struct ib_device *ibdev, u8 port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000327 struct ib_port_attr *props, int netw_view)
Eli Cohenfa417f72010-10-24 21:08:52 -0700328{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200329
330 struct mlx4_ib_dev *mdev = to_mdev(ibdev);
331 struct mlx4_ib_iboe *iboe = &mdev->iboe;
Eli Cohenfa417f72010-10-24 21:08:52 -0700332 struct net_device *ndev;
333 enum ib_mtu tmp;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200334 struct mlx4_cmd_mailbox *mailbox;
335 int err = 0;
Eli Cohenfa417f72010-10-24 21:08:52 -0700336
Or Gerlitza9c766b2012-01-11 19:00:29 +0200337 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
338 if (IS_ERR(mailbox))
339 return PTR_ERR(mailbox);
340
341 err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0,
342 MLX4_CMD_QUERY_PORT, MLX4_CMD_TIME_CLASS_B,
343 MLX4_CMD_WRAPPED);
344 if (err)
345 goto out;
346
347 props->active_width = (((u8 *)mailbox->buf)[5] == 0x40) ?
348 IB_WIDTH_4X : IB_WIDTH_1X;
Or Gerlitz2e966912012-02-28 18:49:50 +0200349 props->active_speed = IB_SPEED_QDR;
Eli Cohenfa417f72010-10-24 21:08:52 -0700350 props->port_cap_flags = IB_PORT_CM_SUP;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200351 props->gid_tbl_len = mdev->dev->caps.gid_table_len[port];
352 props->max_msg_sz = mdev->dev->caps.max_msg_sz;
Eli Cohenfa417f72010-10-24 21:08:52 -0700353 props->pkey_tbl_len = 1;
Or Gerlitzbcacb892011-10-10 10:53:41 +0200354 props->max_mtu = IB_MTU_4096;
Or Gerlitza9c766b2012-01-11 19:00:29 +0200355 props->max_vl_num = 2;
Eli Cohenfa417f72010-10-24 21:08:52 -0700356 props->state = IB_PORT_DOWN;
357 props->phys_state = state_to_phys_state(props->state);
358 props->active_mtu = IB_MTU_256;
359 spin_lock(&iboe->lock);
360 ndev = iboe->netdevs[port - 1];
361 if (!ndev)
Or Gerlitza9c766b2012-01-11 19:00:29 +0200362 goto out_unlock;
Eli Cohenfa417f72010-10-24 21:08:52 -0700363
364 tmp = iboe_get_mtu(ndev->mtu);
365 props->active_mtu = tmp ? min(props->max_mtu, tmp) : IB_MTU_256;
366
Eli Cohen21d606092010-11-11 21:05:58 +0000367 props->state = (netif_running(ndev) && netif_carrier_ok(ndev)) ?
Eli Cohenfa417f72010-10-24 21:08:52 -0700368 IB_PORT_ACTIVE : IB_PORT_DOWN;
369 props->phys_state = state_to_phys_state(props->state);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200370out_unlock:
Eli Cohenfa417f72010-10-24 21:08:52 -0700371 spin_unlock(&iboe->lock);
Or Gerlitza9c766b2012-01-11 19:00:29 +0200372out:
373 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
374 return err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700375}
376
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000377int __mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
378 struct ib_port_attr *props, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700379{
Or Gerlitza9c766b2012-01-11 19:00:29 +0200380 int err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700381
382 memset(props, 0, sizeof *props);
383
Eli Cohenfa417f72010-10-24 21:08:52 -0700384 err = mlx4_ib_port_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND ?
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000385 ib_link_query_port(ibdev, port, props, netw_view) :
386 eth_link_query_port(ibdev, port, props, netw_view);
Roland Dreier225c7b12007-05-08 18:00:38 -0700387
388 return err;
389}
390
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000391static int mlx4_ib_query_port(struct ib_device *ibdev, u8 port,
392 struct ib_port_attr *props)
393{
394 /* returns host view */
395 return __mlx4_ib_query_port(ibdev, port, props, 0);
396}
397
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000398int __mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
399 union ib_gid *gid, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700400{
401 struct ib_smp *in_mad = NULL;
402 struct ib_smp *out_mad = NULL;
403 int err = -ENOMEM;
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000404 struct mlx4_ib_dev *dev = to_mdev(ibdev);
405 int clear = 0;
406 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700407
408 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
409 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
410 if (!in_mad || !out_mad)
411 goto out;
412
413 init_query_mad(in_mad);
414 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
415 in_mad->attr_mod = cpu_to_be32(port);
416
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000417 if (mlx4_is_mfunc(dev->dev) && netw_view)
418 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
419
420 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700421 if (err)
422 goto out;
423
424 memcpy(gid->raw, out_mad->data + 8, 8);
425
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000426 if (mlx4_is_mfunc(dev->dev) && !netw_view) {
427 if (index) {
428 /* For any index > 0, return the null guid */
429 err = 0;
430 clear = 1;
431 goto out;
432 }
433 }
434
Roland Dreier225c7b12007-05-08 18:00:38 -0700435 init_query_mad(in_mad);
436 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
437 in_mad->attr_mod = cpu_to_be32(index / 8);
438
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000439 err = mlx4_MAD_IFC(dev, mad_ifc_flags, port,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000440 NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700441 if (err)
442 goto out;
443
444 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
445
446out:
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000447 if (clear)
448 memset(gid->raw + 8, 0, 8);
Roland Dreier225c7b12007-05-08 18:00:38 -0700449 kfree(in_mad);
450 kfree(out_mad);
451 return err;
452}
453
Eli Cohenfa417f72010-10-24 21:08:52 -0700454static int iboe_query_gid(struct ib_device *ibdev, u8 port, int index,
455 union ib_gid *gid)
456{
457 struct mlx4_ib_dev *dev = to_mdev(ibdev);
458
459 *gid = dev->iboe.gid_table[port - 1][index];
460
461 return 0;
462}
463
464static int mlx4_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
465 union ib_gid *gid)
466{
467 if (rdma_port_get_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND)
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000468 return __mlx4_ib_query_gid(ibdev, port, index, gid, 0);
Eli Cohenfa417f72010-10-24 21:08:52 -0700469 else
470 return iboe_query_gid(ibdev, port, index, gid);
471}
472
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000473int __mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
474 u16 *pkey, int netw_view)
Roland Dreier225c7b12007-05-08 18:00:38 -0700475{
476 struct ib_smp *in_mad = NULL;
477 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000478 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -0700479 int err = -ENOMEM;
480
481 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
482 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
483 if (!in_mad || !out_mad)
484 goto out;
485
486 init_query_mad(in_mad);
487 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
488 in_mad->attr_mod = cpu_to_be32(index / 32);
489
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000490 if (mlx4_is_mfunc(to_mdev(ibdev)->dev) && netw_view)
491 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
492
493 err = mlx4_MAD_IFC(to_mdev(ibdev), mad_ifc_flags, port, NULL, NULL,
494 in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -0700495 if (err)
496 goto out;
497
498 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
499
500out:
501 kfree(in_mad);
502 kfree(out_mad);
503 return err;
504}
505
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000506static int mlx4_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index, u16 *pkey)
507{
508 return __mlx4_ib_query_pkey(ibdev, port, index, pkey, 0);
509}
510
Roland Dreier225c7b12007-05-08 18:00:38 -0700511static int mlx4_ib_modify_device(struct ib_device *ibdev, int mask,
512 struct ib_device_modify *props)
513{
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000514 struct mlx4_cmd_mailbox *mailbox;
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000515 unsigned long flags;
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000516
Roland Dreier225c7b12007-05-08 18:00:38 -0700517 if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
518 return -EOPNOTSUPP;
519
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000520 if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
521 return 0;
522
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000523 if (mlx4_is_slave(to_mdev(ibdev)->dev))
524 return -EOPNOTSUPP;
525
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000526 spin_lock_irqsave(&to_mdev(ibdev)->sm_lock, flags);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000527 memcpy(ibdev->node_desc, props->node_desc, 64);
Jack Morgensteindf7fba62012-08-03 08:26:45 +0000528 spin_unlock_irqrestore(&to_mdev(ibdev)->sm_lock, flags);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000529
530 /*
531 * If possible, pass node desc to FW, so it can generate
532 * a 144 trap. If cmd fails, just ignore.
533 */
534 mailbox = mlx4_alloc_cmd_mailbox(to_mdev(ibdev)->dev);
535 if (IS_ERR(mailbox))
536 return 0;
537
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000538 memcpy(mailbox->buf, props->node_desc, 64);
539 mlx4_cmd(to_mdev(ibdev)->dev, mailbox->dma, 1, 0,
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000540 MLX4_CMD_SET_NODE, MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
Jack Morgensteind0d68b82010-10-04 12:11:34 +0000541
542 mlx4_free_cmd_mailbox(to_mdev(ibdev)->dev, mailbox);
Roland Dreier225c7b12007-05-08 18:00:38 -0700543
544 return 0;
545}
546
547static int mlx4_SET_PORT(struct mlx4_ib_dev *dev, u8 port, int reset_qkey_viols,
548 u32 cap_mask)
549{
550 struct mlx4_cmd_mailbox *mailbox;
551 int err;
Eli Cohenfa417f72010-10-24 21:08:52 -0700552 u8 is_eth = dev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
Roland Dreier225c7b12007-05-08 18:00:38 -0700553
554 mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
555 if (IS_ERR(mailbox))
556 return PTR_ERR(mailbox);
557
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700558 if (dev->dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
559 *(u8 *) mailbox->buf = !!reset_qkey_viols << 6;
560 ((__be32 *) mailbox->buf)[2] = cpu_to_be32(cap_mask);
561 } else {
562 ((u8 *) mailbox->buf)[3] = !!reset_qkey_viols;
563 ((__be32 *) mailbox->buf)[1] = cpu_to_be32(cap_mask);
564 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700565
Eli Cohenfa417f72010-10-24 21:08:52 -0700566 err = mlx4_cmd(dev->dev, mailbox->dma, port, is_eth, MLX4_CMD_SET_PORT,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000567 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700568
569 mlx4_free_cmd_mailbox(dev->dev, mailbox);
570 return err;
571}
572
573static int mlx4_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
574 struct ib_port_modify *props)
575{
576 struct ib_port_attr attr;
577 u32 cap_mask;
578 int err;
579
580 mutex_lock(&to_mdev(ibdev)->cap_mask_mutex);
581
582 err = mlx4_ib_query_port(ibdev, port, &attr);
583 if (err)
584 goto out;
585
586 cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
587 ~props->clr_port_cap_mask;
588
589 err = mlx4_SET_PORT(to_mdev(ibdev), port,
590 !!(mask & IB_PORT_RESET_QKEY_CNTR),
591 cap_mask);
592
593out:
594 mutex_unlock(&to_mdev(ibdev)->cap_mask_mutex);
595 return err;
596}
597
598static struct ib_ucontext *mlx4_ib_alloc_ucontext(struct ib_device *ibdev,
599 struct ib_udata *udata)
600{
601 struct mlx4_ib_dev *dev = to_mdev(ibdev);
602 struct mlx4_ib_ucontext *context;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000603 struct mlx4_ib_alloc_ucontext_resp_v3 resp_v3;
Roland Dreier225c7b12007-05-08 18:00:38 -0700604 struct mlx4_ib_alloc_ucontext_resp resp;
605 int err;
606
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -0700607 if (!dev->ib_active)
608 return ERR_PTR(-EAGAIN);
609
Or Gerlitz08ff3232012-10-21 14:59:24 +0000610 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION) {
611 resp_v3.qp_tab_size = dev->dev->caps.num_qps;
612 resp_v3.bf_reg_size = dev->dev->caps.bf_reg_size;
613 resp_v3.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
614 } else {
615 resp.dev_caps = dev->dev->caps.userspace_caps;
616 resp.qp_tab_size = dev->dev->caps.num_qps;
617 resp.bf_reg_size = dev->dev->caps.bf_reg_size;
618 resp.bf_regs_per_page = dev->dev->caps.bf_regs_per_page;
619 resp.cqe_size = dev->dev->caps.cqe_size;
620 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700621
622 context = kmalloc(sizeof *context, GFP_KERNEL);
623 if (!context)
624 return ERR_PTR(-ENOMEM);
625
626 err = mlx4_uar_alloc(to_mdev(ibdev)->dev, &context->uar);
627 if (err) {
628 kfree(context);
629 return ERR_PTR(err);
630 }
631
632 INIT_LIST_HEAD(&context->db_page_list);
633 mutex_init(&context->db_page_mutex);
634
Or Gerlitz08ff3232012-10-21 14:59:24 +0000635 if (ibdev->uverbs_abi_ver == MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION)
636 err = ib_copy_to_udata(udata, &resp_v3, sizeof(resp_v3));
637 else
638 err = ib_copy_to_udata(udata, &resp, sizeof(resp));
639
Roland Dreier225c7b12007-05-08 18:00:38 -0700640 if (err) {
641 mlx4_uar_free(to_mdev(ibdev)->dev, &context->uar);
642 kfree(context);
643 return ERR_PTR(-EFAULT);
644 }
645
646 return &context->ibucontext;
647}
648
649static int mlx4_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
650{
651 struct mlx4_ib_ucontext *context = to_mucontext(ibcontext);
652
653 mlx4_uar_free(to_mdev(ibcontext->device)->dev, &context->uar);
654 kfree(context);
655
656 return 0;
657}
658
659static int mlx4_ib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
660{
661 struct mlx4_ib_dev *dev = to_mdev(context->device);
662
663 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
664 return -EINVAL;
665
666 if (vma->vm_pgoff == 0) {
667 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
668
669 if (io_remap_pfn_range(vma, vma->vm_start,
670 to_mucontext(context)->uar.pfn,
671 PAGE_SIZE, vma->vm_page_prot))
672 return -EAGAIN;
673 } else if (vma->vm_pgoff == 1 && dev->dev->caps.bf_reg_size != 0) {
Roland Dreiere1d60ec2009-03-30 08:31:05 -0700674 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700675
676 if (io_remap_pfn_range(vma, vma->vm_start,
677 to_mucontext(context)->uar.pfn +
678 dev->dev->caps.num_uars,
679 PAGE_SIZE, vma->vm_page_prot))
680 return -EAGAIN;
681 } else
682 return -EINVAL;
683
684 return 0;
685}
686
687static struct ib_pd *mlx4_ib_alloc_pd(struct ib_device *ibdev,
688 struct ib_ucontext *context,
689 struct ib_udata *udata)
690{
691 struct mlx4_ib_pd *pd;
692 int err;
693
694 pd = kmalloc(sizeof *pd, GFP_KERNEL);
695 if (!pd)
696 return ERR_PTR(-ENOMEM);
697
698 err = mlx4_pd_alloc(to_mdev(ibdev)->dev, &pd->pdn);
699 if (err) {
700 kfree(pd);
701 return ERR_PTR(err);
702 }
703
704 if (context)
705 if (ib_copy_to_udata(udata, &pd->pdn, sizeof (__u32))) {
706 mlx4_pd_free(to_mdev(ibdev)->dev, pd->pdn);
707 kfree(pd);
708 return ERR_PTR(-EFAULT);
709 }
710
711 return &pd->ibpd;
712}
713
714static int mlx4_ib_dealloc_pd(struct ib_pd *pd)
715{
716 mlx4_pd_free(to_mdev(pd->device)->dev, to_mpd(pd)->pdn);
717 kfree(pd);
718
719 return 0;
720}
721
Sean Hefty012a8ff2011-06-02 09:01:33 -0700722static struct ib_xrcd *mlx4_ib_alloc_xrcd(struct ib_device *ibdev,
723 struct ib_ucontext *context,
724 struct ib_udata *udata)
725{
726 struct mlx4_ib_xrcd *xrcd;
727 int err;
728
729 if (!(to_mdev(ibdev)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
730 return ERR_PTR(-ENOSYS);
731
732 xrcd = kmalloc(sizeof *xrcd, GFP_KERNEL);
733 if (!xrcd)
734 return ERR_PTR(-ENOMEM);
735
736 err = mlx4_xrcd_alloc(to_mdev(ibdev)->dev, &xrcd->xrcdn);
737 if (err)
738 goto err1;
739
740 xrcd->pd = ib_alloc_pd(ibdev);
741 if (IS_ERR(xrcd->pd)) {
742 err = PTR_ERR(xrcd->pd);
743 goto err2;
744 }
745
746 xrcd->cq = ib_create_cq(ibdev, NULL, NULL, xrcd, 1, 0);
747 if (IS_ERR(xrcd->cq)) {
748 err = PTR_ERR(xrcd->cq);
749 goto err3;
750 }
751
752 return &xrcd->ibxrcd;
753
754err3:
755 ib_dealloc_pd(xrcd->pd);
756err2:
757 mlx4_xrcd_free(to_mdev(ibdev)->dev, xrcd->xrcdn);
758err1:
759 kfree(xrcd);
760 return ERR_PTR(err);
761}
762
763static int mlx4_ib_dealloc_xrcd(struct ib_xrcd *xrcd)
764{
765 ib_destroy_cq(to_mxrcd(xrcd)->cq);
766 ib_dealloc_pd(to_mxrcd(xrcd)->pd);
767 mlx4_xrcd_free(to_mdev(xrcd->device)->dev, to_mxrcd(xrcd)->xrcdn);
768 kfree(xrcd);
769
770 return 0;
771}
772
Eli Cohenfa417f72010-10-24 21:08:52 -0700773static int add_gid_entry(struct ib_qp *ibqp, union ib_gid *gid)
774{
775 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
776 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
777 struct mlx4_ib_gid_entry *ge;
778
779 ge = kzalloc(sizeof *ge, GFP_KERNEL);
780 if (!ge)
781 return -ENOMEM;
782
783 ge->gid = *gid;
784 if (mlx4_ib_add_mc(mdev, mqp, gid)) {
785 ge->port = mqp->port;
786 ge->added = 1;
787 }
788
789 mutex_lock(&mqp->mutex);
790 list_add_tail(&ge->list, &mqp->gid_list);
791 mutex_unlock(&mqp->mutex);
792
793 return 0;
794}
795
796int mlx4_ib_add_mc(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
797 union ib_gid *gid)
798{
Eli Cohenfa417f72010-10-24 21:08:52 -0700799 struct net_device *ndev;
800 int ret = 0;
801
802 if (!mqp->port)
803 return 0;
804
805 spin_lock(&mdev->iboe.lock);
806 ndev = mdev->iboe.netdevs[mqp->port - 1];
807 if (ndev)
808 dev_hold(ndev);
809 spin_unlock(&mdev->iboe.lock);
810
811 if (ndev) {
Eli Cohenfa417f72010-10-24 21:08:52 -0700812 ret = 1;
Eli Cohenfa417f72010-10-24 21:08:52 -0700813 dev_put(ndev);
814 }
815
816 return ret;
817}
818
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000819struct mlx4_ib_steering {
820 struct list_head list;
821 u64 reg_id;
822 union ib_gid gid;
823};
824
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300825static int parse_flow_attr(struct mlx4_dev *dev,
Matan Baraka37a1a42013-11-07 15:25:16 +0200826 u32 qp_num,
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300827 union ib_flow_spec *ib_spec,
828 struct _rule_hw *mlx4_spec)
829{
830 enum mlx4_net_trans_rule_id type;
831
832 switch (ib_spec->type) {
833 case IB_FLOW_SPEC_ETH:
834 type = MLX4_NET_TRANS_RULE_ID_ETH;
835 memcpy(mlx4_spec->eth.dst_mac, ib_spec->eth.val.dst_mac,
836 ETH_ALEN);
837 memcpy(mlx4_spec->eth.dst_mac_msk, ib_spec->eth.mask.dst_mac,
838 ETH_ALEN);
839 mlx4_spec->eth.vlan_tag = ib_spec->eth.val.vlan_tag;
840 mlx4_spec->eth.vlan_tag_msk = ib_spec->eth.mask.vlan_tag;
841 break;
Matan Baraka37a1a42013-11-07 15:25:16 +0200842 case IB_FLOW_SPEC_IB:
843 type = MLX4_NET_TRANS_RULE_ID_IB;
844 mlx4_spec->ib.l3_qpn =
845 cpu_to_be32(qp_num);
846 mlx4_spec->ib.qpn_mask =
847 cpu_to_be32(MLX4_IB_FLOW_QPN_MASK);
848 break;
849
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300850
851 case IB_FLOW_SPEC_IPV4:
852 type = MLX4_NET_TRANS_RULE_ID_IPV4;
853 mlx4_spec->ipv4.src_ip = ib_spec->ipv4.val.src_ip;
854 mlx4_spec->ipv4.src_ip_msk = ib_spec->ipv4.mask.src_ip;
855 mlx4_spec->ipv4.dst_ip = ib_spec->ipv4.val.dst_ip;
856 mlx4_spec->ipv4.dst_ip_msk = ib_spec->ipv4.mask.dst_ip;
857 break;
858
859 case IB_FLOW_SPEC_TCP:
860 case IB_FLOW_SPEC_UDP:
861 type = ib_spec->type == IB_FLOW_SPEC_TCP ?
862 MLX4_NET_TRANS_RULE_ID_TCP :
863 MLX4_NET_TRANS_RULE_ID_UDP;
864 mlx4_spec->tcp_udp.dst_port = ib_spec->tcp_udp.val.dst_port;
865 mlx4_spec->tcp_udp.dst_port_msk = ib_spec->tcp_udp.mask.dst_port;
866 mlx4_spec->tcp_udp.src_port = ib_spec->tcp_udp.val.src_port;
867 mlx4_spec->tcp_udp.src_port_msk = ib_spec->tcp_udp.mask.src_port;
868 break;
869
870 default:
871 return -EINVAL;
872 }
873 if (mlx4_map_sw_to_hw_steering_id(dev, type) < 0 ||
874 mlx4_hw_rule_sz(dev, type) < 0)
875 return -EINVAL;
876 mlx4_spec->id = cpu_to_be16(mlx4_map_sw_to_hw_steering_id(dev, type));
877 mlx4_spec->size = mlx4_hw_rule_sz(dev, type) >> 2;
878 return mlx4_hw_rule_sz(dev, type);
879}
880
Matan Baraka37a1a42013-11-07 15:25:16 +0200881struct default_rules {
882 __u32 mandatory_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
883 __u32 mandatory_not_fields[IB_FLOW_SPEC_SUPPORT_LAYERS];
884 __u32 rules_create_list[IB_FLOW_SPEC_SUPPORT_LAYERS];
885 __u8 link_layer;
886};
887static const struct default_rules default_table[] = {
888 {
889 .mandatory_fields = {IB_FLOW_SPEC_IPV4},
890 .mandatory_not_fields = {IB_FLOW_SPEC_ETH},
891 .rules_create_list = {IB_FLOW_SPEC_IB},
892 .link_layer = IB_LINK_LAYER_INFINIBAND
893 }
894};
895
896static int __mlx4_ib_default_rules_match(struct ib_qp *qp,
897 struct ib_flow_attr *flow_attr)
898{
899 int i, j, k;
900 void *ib_flow;
901 const struct default_rules *pdefault_rules = default_table;
902 u8 link_layer = rdma_port_get_link_layer(qp->device, flow_attr->port);
903
904 for (i = 0; i < sizeof(default_table)/sizeof(default_table[0]); i++,
905 pdefault_rules++) {
906 __u32 field_types[IB_FLOW_SPEC_SUPPORT_LAYERS];
907 memset(&field_types, 0, sizeof(field_types));
908
909 if (link_layer != pdefault_rules->link_layer)
910 continue;
911
912 ib_flow = flow_attr + 1;
913 /* we assume the specs are sorted */
914 for (j = 0, k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS &&
915 j < flow_attr->num_of_specs; k++) {
916 union ib_flow_spec *current_flow =
917 (union ib_flow_spec *)ib_flow;
918
919 /* same layer but different type */
920 if (((current_flow->type & IB_FLOW_SPEC_LAYER_MASK) ==
921 (pdefault_rules->mandatory_fields[k] &
922 IB_FLOW_SPEC_LAYER_MASK)) &&
923 (current_flow->type !=
924 pdefault_rules->mandatory_fields[k]))
925 goto out;
926
927 /* same layer, try match next one */
928 if (current_flow->type ==
929 pdefault_rules->mandatory_fields[k]) {
930 j++;
931 ib_flow +=
932 ((union ib_flow_spec *)ib_flow)->size;
933 }
934 }
935
936 ib_flow = flow_attr + 1;
937 for (j = 0; j < flow_attr->num_of_specs;
938 j++, ib_flow += ((union ib_flow_spec *)ib_flow)->size)
939 for (k = 0; k < IB_FLOW_SPEC_SUPPORT_LAYERS; k++)
940 /* same layer and same type */
941 if (((union ib_flow_spec *)ib_flow)->type ==
942 pdefault_rules->mandatory_not_fields[k])
943 goto out;
944
945 return i;
946 }
947out:
948 return -1;
949}
950
951static int __mlx4_ib_create_default_rules(
952 struct mlx4_ib_dev *mdev,
953 struct ib_qp *qp,
954 const struct default_rules *pdefault_rules,
955 struct _rule_hw *mlx4_spec) {
956 int size = 0;
957 int i;
958
959 for (i = 0; i < sizeof(pdefault_rules->rules_create_list)/
960 sizeof(pdefault_rules->rules_create_list[0]); i++) {
961 int ret;
962 union ib_flow_spec ib_spec;
963 switch (pdefault_rules->rules_create_list[i]) {
964 case 0:
965 /* no rule */
966 continue;
967 case IB_FLOW_SPEC_IB:
968 ib_spec.type = IB_FLOW_SPEC_IB;
969 ib_spec.size = sizeof(struct ib_flow_spec_ib);
970
971 break;
972 default:
973 /* invalid rule */
974 return -EINVAL;
975 }
976 /* We must put empty rule, qpn is being ignored */
977 ret = parse_flow_attr(mdev->dev, 0, &ib_spec,
978 mlx4_spec);
979 if (ret < 0) {
980 pr_info("invalid parsing\n");
981 return -EINVAL;
982 }
983
984 mlx4_spec = (void *)mlx4_spec + ret;
985 size += ret;
986 }
987 return size;
988}
989
Hadar Hen Zionf77c0162013-08-14 13:58:31 +0300990static int __mlx4_ib_create_flow(struct ib_qp *qp, struct ib_flow_attr *flow_attr,
991 int domain,
992 enum mlx4_net_trans_promisc_mode flow_type,
993 u64 *reg_id)
994{
995 int ret, i;
996 int size = 0;
997 void *ib_flow;
998 struct mlx4_ib_dev *mdev = to_mdev(qp->device);
999 struct mlx4_cmd_mailbox *mailbox;
1000 struct mlx4_net_trans_rule_hw_ctrl *ctrl;
Matan Baraka37a1a42013-11-07 15:25:16 +02001001 int default_flow;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001002
1003 static const u16 __mlx4_domain[] = {
1004 [IB_FLOW_DOMAIN_USER] = MLX4_DOMAIN_UVERBS,
1005 [IB_FLOW_DOMAIN_ETHTOOL] = MLX4_DOMAIN_ETHTOOL,
1006 [IB_FLOW_DOMAIN_RFS] = MLX4_DOMAIN_RFS,
1007 [IB_FLOW_DOMAIN_NIC] = MLX4_DOMAIN_NIC,
1008 };
1009
1010 if (flow_attr->priority > MLX4_IB_FLOW_MAX_PRIO) {
1011 pr_err("Invalid priority value %d\n", flow_attr->priority);
1012 return -EINVAL;
1013 }
1014
1015 if (domain >= IB_FLOW_DOMAIN_NUM) {
1016 pr_err("Invalid domain value %d\n", domain);
1017 return -EINVAL;
1018 }
1019
1020 if (mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type) < 0)
1021 return -EINVAL;
1022
1023 mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
1024 if (IS_ERR(mailbox))
1025 return PTR_ERR(mailbox);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001026 ctrl = mailbox->buf;
1027
1028 ctrl->prio = cpu_to_be16(__mlx4_domain[domain] |
1029 flow_attr->priority);
1030 ctrl->type = mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type);
1031 ctrl->port = flow_attr->port;
1032 ctrl->qpn = cpu_to_be32(qp->qp_num);
1033
1034 ib_flow = flow_attr + 1;
1035 size += sizeof(struct mlx4_net_trans_rule_hw_ctrl);
Matan Baraka37a1a42013-11-07 15:25:16 +02001036 /* Add default flows */
1037 default_flow = __mlx4_ib_default_rules_match(qp, flow_attr);
1038 if (default_flow >= 0) {
1039 ret = __mlx4_ib_create_default_rules(
1040 mdev, qp, default_table + default_flow,
1041 mailbox->buf + size);
1042 if (ret < 0) {
1043 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1044 return -EINVAL;
1045 }
1046 size += ret;
1047 }
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001048 for (i = 0; i < flow_attr->num_of_specs; i++) {
Matan Baraka37a1a42013-11-07 15:25:16 +02001049 ret = parse_flow_attr(mdev->dev, qp->qp_num, ib_flow,
1050 mailbox->buf + size);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001051 if (ret < 0) {
1052 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1053 return -EINVAL;
1054 }
1055 ib_flow += ((union ib_flow_spec *) ib_flow)->size;
1056 size += ret;
1057 }
1058
1059 ret = mlx4_cmd_imm(mdev->dev, mailbox->dma, reg_id, size >> 2, 0,
1060 MLX4_QP_FLOW_STEERING_ATTACH, MLX4_CMD_TIME_CLASS_A,
1061 MLX4_CMD_NATIVE);
1062 if (ret == -ENOMEM)
1063 pr_err("mcg table is full. Fail to register network rule.\n");
1064 else if (ret == -ENXIO)
1065 pr_err("Device managed flow steering is disabled. Fail to register network rule.\n");
1066 else if (ret)
1067 pr_err("Invalid argumant. Fail to register network rule.\n");
1068
1069 mlx4_free_cmd_mailbox(mdev->dev, mailbox);
1070 return ret;
1071}
1072
1073static int __mlx4_ib_destroy_flow(struct mlx4_dev *dev, u64 reg_id)
1074{
1075 int err;
1076 err = mlx4_cmd(dev, reg_id, 0, 0,
1077 MLX4_QP_FLOW_STEERING_DETACH, MLX4_CMD_TIME_CLASS_A,
1078 MLX4_CMD_NATIVE);
1079 if (err)
1080 pr_err("Fail to detach network rule. registration id = 0x%llx\n",
1081 reg_id);
1082 return err;
1083}
1084
1085static struct ib_flow *mlx4_ib_create_flow(struct ib_qp *qp,
1086 struct ib_flow_attr *flow_attr,
1087 int domain)
1088{
1089 int err = 0, i = 0;
1090 struct mlx4_ib_flow *mflow;
1091 enum mlx4_net_trans_promisc_mode type[2];
1092
1093 memset(type, 0, sizeof(type));
1094
1095 mflow = kzalloc(sizeof(*mflow), GFP_KERNEL);
1096 if (!mflow) {
1097 err = -ENOMEM;
1098 goto err_free;
1099 }
1100
1101 switch (flow_attr->type) {
1102 case IB_FLOW_ATTR_NORMAL:
1103 type[0] = MLX4_FS_REGULAR;
1104 break;
1105
1106 case IB_FLOW_ATTR_ALL_DEFAULT:
1107 type[0] = MLX4_FS_ALL_DEFAULT;
1108 break;
1109
1110 case IB_FLOW_ATTR_MC_DEFAULT:
1111 type[0] = MLX4_FS_MC_DEFAULT;
1112 break;
1113
1114 case IB_FLOW_ATTR_SNIFFER:
1115 type[0] = MLX4_FS_UC_SNIFFER;
1116 type[1] = MLX4_FS_MC_SNIFFER;
1117 break;
1118
1119 default:
1120 err = -EINVAL;
1121 goto err_free;
1122 }
1123
1124 while (i < ARRAY_SIZE(type) && type[i]) {
1125 err = __mlx4_ib_create_flow(qp, flow_attr, domain, type[i],
1126 &mflow->reg_id[i]);
1127 if (err)
1128 goto err_free;
1129 i++;
1130 }
1131
1132 return &mflow->ibflow;
1133
1134err_free:
1135 kfree(mflow);
1136 return ERR_PTR(err);
1137}
1138
1139static int mlx4_ib_destroy_flow(struct ib_flow *flow_id)
1140{
1141 int err, ret = 0;
1142 int i = 0;
1143 struct mlx4_ib_dev *mdev = to_mdev(flow_id->qp->device);
1144 struct mlx4_ib_flow *mflow = to_mflow(flow_id);
1145
1146 while (i < ARRAY_SIZE(mflow->reg_id) && mflow->reg_id[i]) {
1147 err = __mlx4_ib_destroy_flow(mdev->dev, mflow->reg_id[i]);
1148 if (err)
1149 ret = err;
1150 i++;
1151 }
1152
1153 kfree(mflow);
1154 return ret;
1155}
1156
Roland Dreier225c7b12007-05-08 18:00:38 -07001157static int mlx4_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1158{
Eli Cohenfa417f72010-10-24 21:08:52 -07001159 int err;
1160 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
1161 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001162 u64 reg_id;
1163 struct mlx4_ib_steering *ib_steering = NULL;
Moni Shouad487ee72013-12-12 18:03:13 +02001164 enum mlx4_protocol prot = (gid->raw[1] == 0x0e) ?
1165 MLX4_PROT_IB_IPV4 : MLX4_PROT_IB_IPV6;
Eli Cohenfa417f72010-10-24 21:08:52 -07001166
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001167 if (mdev->dev->caps.steering_mode ==
1168 MLX4_STEERING_MODE_DEVICE_MANAGED) {
1169 ib_steering = kmalloc(sizeof(*ib_steering), GFP_KERNEL);
1170 if (!ib_steering)
1171 return -ENOMEM;
1172 }
1173
1174 err = mlx4_multicast_attach(mdev->dev, &mqp->mqp, gid->raw, mqp->port,
1175 !!(mqp->flags &
1176 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK),
Moni Shouad487ee72013-12-12 18:03:13 +02001177 prot, &reg_id);
Eli Cohenfa417f72010-10-24 21:08:52 -07001178 if (err)
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001179 goto err_malloc;
Eli Cohenfa417f72010-10-24 21:08:52 -07001180
1181 err = add_gid_entry(ibqp, gid);
1182 if (err)
1183 goto err_add;
1184
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001185 if (ib_steering) {
1186 memcpy(ib_steering->gid.raw, gid->raw, 16);
1187 ib_steering->reg_id = reg_id;
1188 mutex_lock(&mqp->mutex);
1189 list_add(&ib_steering->list, &mqp->steering_rules);
1190 mutex_unlock(&mqp->mutex);
1191 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001192 return 0;
1193
1194err_add:
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001195 mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shouad487ee72013-12-12 18:03:13 +02001196 prot, reg_id);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001197err_malloc:
1198 kfree(ib_steering);
1199
Eli Cohenfa417f72010-10-24 21:08:52 -07001200 return err;
1201}
1202
1203static struct mlx4_ib_gid_entry *find_gid_entry(struct mlx4_ib_qp *qp, u8 *raw)
1204{
1205 struct mlx4_ib_gid_entry *ge;
1206 struct mlx4_ib_gid_entry *tmp;
1207 struct mlx4_ib_gid_entry *ret = NULL;
1208
1209 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1210 if (!memcmp(raw, ge->gid.raw, 16)) {
1211 ret = ge;
1212 break;
1213 }
1214 }
1215
1216 return ret;
Roland Dreier225c7b12007-05-08 18:00:38 -07001217}
1218
1219static int mlx4_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
1220{
Eli Cohenfa417f72010-10-24 21:08:52 -07001221 int err;
1222 struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
1223 struct mlx4_ib_qp *mqp = to_mqp(ibqp);
Eli Cohenfa417f72010-10-24 21:08:52 -07001224 struct net_device *ndev;
1225 struct mlx4_ib_gid_entry *ge;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001226 u64 reg_id = 0;
Moni Shouad487ee72013-12-12 18:03:13 +02001227 enum mlx4_protocol prot = (gid->raw[1] == 0x0e) ?
1228 MLX4_PROT_IB_IPV4 : MLX4_PROT_IB_IPV6;
Eli Cohenfa417f72010-10-24 21:08:52 -07001229
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +00001230 if (mdev->dev->caps.steering_mode ==
1231 MLX4_STEERING_MODE_DEVICE_MANAGED) {
1232 struct mlx4_ib_steering *ib_steering;
1233
1234 mutex_lock(&mqp->mutex);
1235 list_for_each_entry(ib_steering, &mqp->steering_rules, list) {
1236 if (!memcmp(ib_steering->gid.raw, gid->raw, 16)) {
1237 list_del(&ib_steering->list);
1238 break;
1239 }
1240 }
1241 mutex_unlock(&mqp->mutex);
1242 if (&ib_steering->list == &mqp->steering_rules) {
1243 pr_err("Couldn't find reg_id for mgid. Steering rule is left attached\n");
1244 return -EINVAL;
1245 }
1246 reg_id = ib_steering->reg_id;
1247 kfree(ib_steering);
1248 }
1249
1250 err = mlx4_multicast_detach(mdev->dev, &mqp->mqp, gid->raw,
Moni Shouad487ee72013-12-12 18:03:13 +02001251 prot, reg_id);
Eli Cohenfa417f72010-10-24 21:08:52 -07001252 if (err)
1253 return err;
1254
1255 mutex_lock(&mqp->mutex);
1256 ge = find_gid_entry(mqp, gid->raw);
1257 if (ge) {
1258 spin_lock(&mdev->iboe.lock);
1259 ndev = ge->added ? mdev->iboe.netdevs[ge->port - 1] : NULL;
1260 if (ndev)
1261 dev_hold(ndev);
1262 spin_unlock(&mdev->iboe.lock);
Moni Shouad487ee72013-12-12 18:03:13 +02001263 if (ndev)
Eli Cohenfa417f72010-10-24 21:08:52 -07001264 dev_put(ndev);
Eli Cohenfa417f72010-10-24 21:08:52 -07001265 list_del(&ge->list);
1266 kfree(ge);
1267 } else
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001268 pr_warn("could not find mgid entry\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07001269
1270 mutex_unlock(&mqp->mutex);
1271
1272 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001273}
1274
1275static int init_node_data(struct mlx4_ib_dev *dev)
1276{
1277 struct ib_smp *in_mad = NULL;
1278 struct ib_smp *out_mad = NULL;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001279 int mad_ifc_flags = MLX4_MAD_IFC_IGNORE_KEYS;
Roland Dreier225c7b12007-05-08 18:00:38 -07001280 int err = -ENOMEM;
1281
1282 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
1283 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
1284 if (!in_mad || !out_mad)
1285 goto out;
1286
1287 init_query_mad(in_mad);
1288 in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001289 if (mlx4_is_master(dev->dev))
1290 mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
Roland Dreier225c7b12007-05-08 18:00:38 -07001291
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001292 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07001293 if (err)
1294 goto out;
1295
1296 memcpy(dev->ib_dev.node_desc, out_mad->data, 64);
1297
1298 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
1299
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001300 err = mlx4_MAD_IFC(dev, mad_ifc_flags, 1, NULL, NULL, in_mad, out_mad);
Roland Dreier225c7b12007-05-08 18:00:38 -07001301 if (err)
1302 goto out;
1303
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00001304 dev->dev->rev_id = be32_to_cpup((__be32 *) (out_mad->data + 32));
Roland Dreier225c7b12007-05-08 18:00:38 -07001305 memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
1306
1307out:
1308 kfree(in_mad);
1309 kfree(out_mad);
1310 return err;
1311}
1312
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001313static ssize_t show_hca(struct device *device, struct device_attribute *attr,
1314 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001315{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001316 struct mlx4_ib_dev *dev =
1317 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001318 return sprintf(buf, "MT%d\n", dev->dev->pdev->device);
1319}
1320
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001321static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
1322 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001323{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001324 struct mlx4_ib_dev *dev =
1325 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001326 return sprintf(buf, "%d.%d.%d\n", (int) (dev->dev->caps.fw_ver >> 32),
1327 (int) (dev->dev->caps.fw_ver >> 16) & 0xffff,
1328 (int) dev->dev->caps.fw_ver & 0xffff);
1329}
1330
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001331static ssize_t show_rev(struct device *device, struct device_attribute *attr,
1332 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001333{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001334 struct mlx4_ib_dev *dev =
1335 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001336 return sprintf(buf, "%x\n", dev->dev->rev_id);
1337}
1338
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001339static ssize_t show_board(struct device *device, struct device_attribute *attr,
1340 char *buf)
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001341{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001342 struct mlx4_ib_dev *dev =
1343 container_of(device, struct mlx4_ib_dev, ib_dev.dev);
1344 return sprintf(buf, "%.*s\n", MLX4_BOARD_ID_LEN,
1345 dev->dev->board_id);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001346}
1347
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001348static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
1349static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
1350static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
1351static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001352
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001353static struct device_attribute *mlx4_class_attributes[] = {
1354 &dev_attr_hw_rev,
1355 &dev_attr_fw_ver,
1356 &dev_attr_hca_type,
1357 &dev_attr_board_id
Jack Morgensteincd9281d2007-09-18 09:14:18 +02001358};
1359
Eli Cohenfa417f72010-10-24 21:08:52 -07001360static void update_gids_task(struct work_struct *work)
1361{
1362 struct update_gid_work *gw = container_of(work, struct update_gid_work, work);
1363 struct mlx4_cmd_mailbox *mailbox;
1364 union ib_gid *gids;
1365 int err;
1366 struct mlx4_dev *dev = gw->dev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001367
1368 mailbox = mlx4_alloc_cmd_mailbox(dev);
1369 if (IS_ERR(mailbox)) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001370 pr_warn("update gid table failed %ld\n", PTR_ERR(mailbox));
Eli Cohenfa417f72010-10-24 21:08:52 -07001371 return;
1372 }
1373
1374 gids = mailbox->buf;
1375 memcpy(gids, gw->gids, sizeof gw->gids);
1376
1377 err = mlx4_cmd(dev, mailbox->dma, MLX4_SET_PORT_GID_TABLE << 8 | gw->port,
Jack Morgensteinf9baff52011-12-13 04:10:51 +00001378 1, MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00001379 MLX4_CMD_WRAPPED);
Eli Cohenfa417f72010-10-24 21:08:52 -07001380 if (err)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001381 pr_warn("set port command failed\n");
Moni Shouad487ee72013-12-12 18:03:13 +02001382 else
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03001383 mlx4_ib_dispatch_event(gw->dev, gw->port, IB_EVENT_GID_CHANGE);
Eli Cohenfa417f72010-10-24 21:08:52 -07001384
1385 mlx4_free_cmd_mailbox(dev, mailbox);
1386 kfree(gw);
1387}
1388
Moni Shouad487ee72013-12-12 18:03:13 +02001389static void reset_gids_task(struct work_struct *work)
Eli Cohenfa417f72010-10-24 21:08:52 -07001390{
Moni Shouad487ee72013-12-12 18:03:13 +02001391 struct update_gid_work *gw =
1392 container_of(work, struct update_gid_work, work);
1393 struct mlx4_cmd_mailbox *mailbox;
1394 union ib_gid *gids;
1395 int err;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001396 int i;
Moni Shouad487ee72013-12-12 18:03:13 +02001397 struct mlx4_dev *dev = gw->dev->dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001398
Moni Shouad487ee72013-12-12 18:03:13 +02001399 mailbox = mlx4_alloc_cmd_mailbox(dev);
1400 if (IS_ERR(mailbox)) {
1401 pr_warn("reset gid table failed\n");
1402 goto free;
1403 }
1404
1405 gids = mailbox->buf;
1406 memcpy(gids, gw->gids, sizeof(gw->gids));
1407
1408 for (i = 1; i < gw->dev->num_ports + 1; i++) {
1409 if (mlx4_ib_port_link_layer(&gw->dev->ib_dev, i) ==
1410 IB_LINK_LAYER_ETHERNET) {
1411 err = mlx4_cmd(dev, mailbox->dma,
1412 MLX4_SET_PORT_GID_TABLE << 8 | i,
1413 1, MLX4_CMD_SET_PORT,
1414 MLX4_CMD_TIME_CLASS_B,
1415 MLX4_CMD_WRAPPED);
1416 if (err)
1417 pr_warn(KERN_WARNING
1418 "set port %d command failed\n", i);
1419 }
1420 }
1421
1422 mlx4_free_cmd_mailbox(dev, mailbox);
1423free:
1424 kfree(gw);
1425}
1426
1427static int update_gid_table(struct mlx4_ib_dev *dev, int port,
1428 union ib_gid *gid, int clear)
1429{
1430 struct update_gid_work *work;
1431 int i;
1432 int need_update = 0;
1433 int free = -1;
1434 int found = -1;
1435 int max_gids;
1436
1437 max_gids = dev->dev->caps.gid_table_len[port];
1438 for (i = 0; i < max_gids; ++i) {
1439 if (!memcmp(&dev->iboe.gid_table[port - 1][i], gid,
1440 sizeof(*gid)))
1441 found = i;
1442
1443 if (clear) {
1444 if (found >= 0) {
1445 need_update = 1;
1446 dev->iboe.gid_table[port - 1][found] = zgid;
1447 break;
1448 }
1449 } else {
1450 if (found >= 0)
1451 break;
1452
1453 if (free < 0 &&
1454 !memcmp(&dev->iboe.gid_table[port - 1][i], &zgid,
1455 sizeof(*gid)))
1456 free = i;
1457 }
1458 }
1459
1460 if (found == -1 && !clear && free >= 0) {
1461 dev->iboe.gid_table[port - 1][free] = *gid;
1462 need_update = 1;
1463 }
1464
1465 if (!need_update)
1466 return 0;
1467
1468 work = kzalloc(sizeof(*work), GFP_ATOMIC);
Eli Cohenfa417f72010-10-24 21:08:52 -07001469 if (!work)
1470 return -ENOMEM;
1471
Moni Shouad487ee72013-12-12 18:03:13 +02001472 memcpy(work->gids, dev->iboe.gid_table[port - 1], sizeof(work->gids));
1473 INIT_WORK(&work->work, update_gids_task);
1474 work->port = port;
1475 work->dev = dev;
1476 queue_work(wq, &work->work);
Eli Cohenfa417f72010-10-24 21:08:52 -07001477
Moni Shouad487ee72013-12-12 18:03:13 +02001478 return 0;
1479}
Eli Cohenfa417f72010-10-24 21:08:52 -07001480
Moni Shouad487ee72013-12-12 18:03:13 +02001481static int reset_gid_table(struct mlx4_ib_dev *dev)
1482{
1483 struct update_gid_work *work;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001484
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001485
Moni Shouad487ee72013-12-12 18:03:13 +02001486 work = kzalloc(sizeof(*work), GFP_ATOMIC);
1487 if (!work)
1488 return -ENOMEM;
1489 memset(dev->iboe.gid_table, 0, sizeof(dev->iboe.gid_table));
1490 memset(work->gids, 0, sizeof(work->gids));
1491 INIT_WORK(&work->work, reset_gids_task);
1492 work->dev = dev;
1493 queue_work(wq, &work->work);
1494 return 0;
1495}
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001496
Moni Shouad487ee72013-12-12 18:03:13 +02001497static int mlx4_ib_addr_event(int event, struct net_device *event_netdev,
1498 struct mlx4_ib_dev *ibdev, union ib_gid *gid)
1499{
1500 struct mlx4_ib_iboe *iboe;
1501 int port = 0;
1502 struct net_device *real_dev = rdma_vlan_dev_real_dev(event_netdev) ?
1503 rdma_vlan_dev_real_dev(event_netdev) :
1504 event_netdev;
1505
1506 if (event != NETDEV_DOWN && event != NETDEV_UP)
1507 return 0;
1508
1509 if ((real_dev != event_netdev) &&
1510 (event == NETDEV_DOWN) &&
1511 rdma_link_local_addr((struct in6_addr *)gid))
1512 return 0;
1513
1514 iboe = &ibdev->iboe;
1515 spin_lock(&iboe->lock);
1516
1517 for (port = 1; port <= MLX4_MAX_PORTS; ++port)
1518 if ((netif_is_bond_master(real_dev) &&
1519 (real_dev == iboe->masters[port - 1])) ||
1520 (!netif_is_bond_master(real_dev) &&
1521 (real_dev == iboe->netdevs[port - 1])))
1522 update_gid_table(ibdev, port, gid,
1523 event == NETDEV_DOWN);
1524
1525 spin_unlock(&iboe->lock);
Eli Cohenfa417f72010-10-24 21:08:52 -07001526 return 0;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001527
Eli Cohenfa417f72010-10-24 21:08:52 -07001528}
1529
Moni Shouad487ee72013-12-12 18:03:13 +02001530static u8 mlx4_ib_get_dev_port(struct net_device *dev,
1531 struct mlx4_ib_dev *ibdev)
Eli Cohenfa417f72010-10-24 21:08:52 -07001532{
Moni Shouad487ee72013-12-12 18:03:13 +02001533 u8 port = 0;
1534 struct mlx4_ib_iboe *iboe;
1535 struct net_device *real_dev = rdma_vlan_dev_real_dev(dev) ?
1536 rdma_vlan_dev_real_dev(dev) : dev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001537
Moni Shouad487ee72013-12-12 18:03:13 +02001538 iboe = &ibdev->iboe;
1539 spin_lock(&iboe->lock);
1540
1541 for (port = 1; port <= MLX4_MAX_PORTS; ++port)
1542 if ((netif_is_bond_master(real_dev) &&
1543 (real_dev == iboe->masters[port - 1])) ||
1544 (!netif_is_bond_master(real_dev) &&
1545 (real_dev == iboe->netdevs[port - 1])))
1546 break;
1547
1548 spin_unlock(&iboe->lock);
1549
1550 if ((port == 0) || (port > MLX4_MAX_PORTS))
1551 return 0;
1552 else
1553 return port;
Eli Cohenfa417f72010-10-24 21:08:52 -07001554}
1555
Moni Shouad487ee72013-12-12 18:03:13 +02001556static int mlx4_ib_inet_event(struct notifier_block *this, unsigned long event,
Eli Cohenfa417f72010-10-24 21:08:52 -07001557 void *ptr)
1558{
Moni Shouad487ee72013-12-12 18:03:13 +02001559 struct mlx4_ib_dev *ibdev;
1560 struct in_ifaddr *ifa = ptr;
1561 union ib_gid gid;
1562 struct net_device *event_netdev = ifa->ifa_dev->dev;
1563
1564 ipv6_addr_set_v4mapped(ifa->ifa_address, (struct in6_addr *)&gid);
1565
1566 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb_inet);
1567
1568 mlx4_ib_addr_event(event, event_netdev, ibdev, &gid);
1569 return NOTIFY_DONE;
1570}
1571
Roland Dreier27cdef62014-01-19 15:18:49 -08001572#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02001573static int mlx4_ib_inet6_event(struct notifier_block *this, unsigned long event,
1574 void *ptr)
1575{
1576 struct mlx4_ib_dev *ibdev;
1577 struct inet6_ifaddr *ifa = ptr;
1578 union ib_gid *gid = (union ib_gid *)&ifa->addr;
1579 struct net_device *event_netdev = ifa->idev->dev;
1580
1581 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb_inet6);
1582
1583 mlx4_ib_addr_event(event, event_netdev, ibdev, gid);
1584 return NOTIFY_DONE;
1585}
1586#endif
1587
1588static void mlx4_ib_get_dev_addr(struct net_device *dev,
1589 struct mlx4_ib_dev *ibdev, u8 port)
1590{
1591 struct in_device *in_dev;
Roland Dreier27cdef62014-01-19 15:18:49 -08001592#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02001593 struct inet6_dev *in6_dev;
1594 union ib_gid *pgid;
1595 struct inet6_ifaddr *ifp;
1596#endif
1597 union ib_gid gid;
1598
1599
1600 if ((port == 0) || (port > MLX4_MAX_PORTS))
1601 return;
1602
1603 /* IPv4 gids */
1604 in_dev = in_dev_get(dev);
1605 if (in_dev) {
1606 for_ifa(in_dev) {
1607 /*ifa->ifa_address;*/
1608 ipv6_addr_set_v4mapped(ifa->ifa_address,
1609 (struct in6_addr *)&gid);
1610 update_gid_table(ibdev, port, &gid, 0);
1611 }
1612 endfor_ifa(in_dev);
1613 in_dev_put(in_dev);
1614 }
Roland Dreier27cdef62014-01-19 15:18:49 -08001615#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02001616 /* IPv6 gids */
1617 in6_dev = in6_dev_get(dev);
1618 if (in6_dev) {
1619 read_lock_bh(&in6_dev->lock);
1620 list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
1621 pgid = (union ib_gid *)&ifp->addr;
1622 update_gid_table(ibdev, port, pgid, 0);
1623 }
1624 read_unlock_bh(&in6_dev->lock);
1625 in6_dev_put(in6_dev);
1626 }
1627#endif
1628}
1629
1630static int mlx4_ib_init_gid_table(struct mlx4_ib_dev *ibdev)
1631{
1632 struct net_device *dev;
1633
1634 if (reset_gid_table(ibdev))
1635 return -1;
1636
1637 read_lock(&dev_base_lock);
1638
1639 for_each_netdev(&init_net, dev) {
1640 u8 port = mlx4_ib_get_dev_port(dev, ibdev);
1641 if (port)
1642 mlx4_ib_get_dev_addr(dev, ibdev, port);
1643 }
1644
1645 read_unlock(&dev_base_lock);
1646
1647 return 0;
1648}
1649
1650static void mlx4_ib_scan_netdevs(struct mlx4_ib_dev *ibdev)
1651{
1652 struct mlx4_ib_iboe *iboe;
1653 int port;
1654
1655 iboe = &ibdev->iboe;
1656
1657 spin_lock(&iboe->lock);
1658 mlx4_foreach_ib_transport_port(port, ibdev->dev) {
1659 struct net_device *old_master = iboe->masters[port - 1];
1660 struct net_device *curr_master;
1661 iboe->netdevs[port - 1] =
1662 mlx4_get_protocol_dev(ibdev->dev, MLX4_PROT_ETH, port);
1663
1664 if (iboe->netdevs[port - 1] &&
1665 netif_is_bond_slave(iboe->netdevs[port - 1])) {
1666 rtnl_lock();
1667 iboe->masters[port - 1] = netdev_master_upper_dev_get(
1668 iboe->netdevs[port - 1]);
1669 rtnl_unlock();
1670 }
1671 curr_master = iboe->masters[port - 1];
1672
1673 /* if bonding is used it is possible that we add it to masters
1674 only after IP address is assigned to the net bonding
1675 interface */
1676 if (curr_master && (old_master != curr_master))
1677 mlx4_ib_get_dev_addr(curr_master, ibdev, port);
1678 }
1679
1680 spin_unlock(&iboe->lock);
1681}
1682
1683static int mlx4_ib_netdev_event(struct notifier_block *this,
1684 unsigned long event, void *ptr)
1685{
Jiri Pirko351638e2013-05-28 01:30:21 +00001686 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eli Cohenfa417f72010-10-24 21:08:52 -07001687 struct mlx4_ib_dev *ibdev;
Eli Cohenfa417f72010-10-24 21:08:52 -07001688
1689 if (!net_eq(dev_net(dev), &init_net))
1690 return NOTIFY_DONE;
1691
1692 ibdev = container_of(this, struct mlx4_ib_dev, iboe.nb);
Moni Shouad487ee72013-12-12 18:03:13 +02001693 mlx4_ib_scan_netdevs(ibdev);
Eli Cohenfa417f72010-10-24 21:08:52 -07001694
1695 return NOTIFY_DONE;
1696}
1697
Jack Morgenstein54679e12012-08-03 08:40:43 +00001698static void init_pkeys(struct mlx4_ib_dev *ibdev)
1699{
1700 int port;
1701 int slave;
1702 int i;
1703
1704 if (mlx4_is_master(ibdev->dev)) {
1705 for (slave = 0; slave <= ibdev->dev->num_vfs; ++slave) {
1706 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
1707 for (i = 0;
1708 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
1709 ++i) {
1710 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i] =
1711 /* master has the identity virt2phys pkey mapping */
1712 (slave == mlx4_master_func_num(ibdev->dev) || !i) ? i :
1713 ibdev->dev->phys_caps.pkey_phys_table_len[port] - 1;
1714 mlx4_sync_pkey_table(ibdev->dev, slave, port, i,
1715 ibdev->pkeys.virt2phys_pkey[slave][port - 1][i]);
1716 }
1717 }
1718 }
1719 /* initialize pkey cache */
1720 for (port = 1; port <= ibdev->dev->caps.num_ports; ++port) {
1721 for (i = 0;
1722 i < ibdev->dev->phys_caps.pkey_phys_table_len[port];
1723 ++i)
1724 ibdev->pkeys.phys_pkey_cache[port-1][i] =
1725 (i) ? 0 : 0xFFFF;
1726 }
1727 }
1728}
1729
Shlomo Pongratze605b742012-04-29 17:04:27 +03001730static void mlx4_ib_alloc_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
1731{
1732 char name[32];
1733 int eq_per_port = 0;
1734 int added_eqs = 0;
1735 int total_eqs = 0;
1736 int i, j, eq;
1737
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03001738 /* Legacy mode or comp_pool is not large enough */
1739 if (dev->caps.comp_pool == 0 ||
1740 dev->caps.num_ports > dev->caps.comp_pool)
Shlomo Pongratze605b742012-04-29 17:04:27 +03001741 return;
1742
1743 eq_per_port = rounddown_pow_of_two(dev->caps.comp_pool/
1744 dev->caps.num_ports);
1745
1746 /* Init eq table */
1747 added_eqs = 0;
1748 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
1749 added_eqs += eq_per_port;
1750
1751 total_eqs = dev->caps.num_comp_vectors + added_eqs;
1752
1753 ibdev->eq_table = kzalloc(total_eqs * sizeof(int), GFP_KERNEL);
1754 if (!ibdev->eq_table)
1755 return;
1756
1757 ibdev->eq_added = added_eqs;
1758
1759 eq = 0;
1760 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB) {
1761 for (j = 0; j < eq_per_port; j++) {
1762 sprintf(name, "mlx4-ib-%d-%d@%s",
1763 i, j, dev->pdev->bus->name);
1764 /* Set IRQ for specific name (per ring) */
Amir Vadaid9236c32012-07-18 22:33:51 +00001765 if (mlx4_assign_eq(dev, name, NULL,
1766 &ibdev->eq_table[eq])) {
Shlomo Pongratze605b742012-04-29 17:04:27 +03001767 /* Use legacy (same as mlx4_en driver) */
1768 pr_warn("Can't allocate EQ %d; reverting to legacy\n", eq);
1769 ibdev->eq_table[eq] =
1770 (eq % dev->caps.num_comp_vectors);
1771 }
1772 eq++;
1773 }
1774 }
1775
1776 /* Fill the reset of the vector with legacy EQ */
1777 for (i = 0, eq = added_eqs; i < dev->caps.num_comp_vectors; i++)
1778 ibdev->eq_table[eq++] = i;
1779
1780 /* Advertise the new number of EQs to clients */
1781 ibdev->ib_dev.num_comp_vectors = total_eqs;
1782}
1783
1784static void mlx4_ib_free_eqs(struct mlx4_dev *dev, struct mlx4_ib_dev *ibdev)
1785{
1786 int i;
Shlomo Pongratz3aac6ff2012-05-24 16:08:07 +03001787
1788 /* no additional eqs were added */
1789 if (!ibdev->eq_table)
1790 return;
Shlomo Pongratze605b742012-04-29 17:04:27 +03001791
1792 /* Reset the advertised EQ number */
1793 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
1794
1795 /* Free only the added eqs */
1796 for (i = 0; i < ibdev->eq_added; i++) {
1797 /* Don't free legacy eqs if used */
1798 if (ibdev->eq_table[i] <= dev->caps.num_comp_vectors)
1799 continue;
1800 mlx4_release_eq(dev, ibdev->eq_table[i]);
1801 }
1802
Shlomo Pongratze605b742012-04-29 17:04:27 +03001803 kfree(ibdev->eq_table);
Shlomo Pongratze605b742012-04-29 17:04:27 +03001804}
1805
Roland Dreier225c7b12007-05-08 18:00:38 -07001806static void *mlx4_ib_add(struct mlx4_dev *dev)
1807{
1808 struct mlx4_ib_dev *ibdev;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001809 int num_ports = 0;
Jack Morgenstein035b1032012-05-10 23:28:09 +03001810 int i, j;
Eli Cohenfa417f72010-10-24 21:08:52 -07001811 int err;
1812 struct mlx4_ib_iboe *iboe;
Roland Dreier225c7b12007-05-08 18:00:38 -07001813
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001814 pr_info_once("%s", mlx4_ib_version);
Roland Dreier68f39482008-02-04 20:20:44 -08001815
Jack Morgenstein026149c2012-08-03 08:40:55 +00001816 mlx4_foreach_non_ib_transport_port(i, dev)
1817 num_ports++;
1818
1819 if (mlx4_is_mfunc(dev) && num_ports) {
1820 dev_err(&dev->pdev->dev, "RoCE is not supported over SRIOV as yet\n");
Jack Morgenstein8e59d252011-12-13 04:15:46 +00001821 return NULL;
1822 }
1823
Jack Morgenstein026149c2012-08-03 08:40:55 +00001824 num_ports = 0;
Eli Cohenfa417f72010-10-24 21:08:52 -07001825 mlx4_foreach_ib_transport_port(i, dev)
Roland Dreier22e7ef92009-01-09 13:22:29 -08001826 num_ports++;
1827
1828 /* No point in registering a device with no ports... */
1829 if (num_ports == 0)
1830 return NULL;
1831
Roland Dreier225c7b12007-05-08 18:00:38 -07001832 ibdev = (struct mlx4_ib_dev *) ib_alloc_device(sizeof *ibdev);
1833 if (!ibdev) {
1834 dev_err(&dev->pdev->dev, "Device struct alloc failed\n");
1835 return NULL;
1836 }
1837
Eli Cohenfa417f72010-10-24 21:08:52 -07001838 iboe = &ibdev->iboe;
1839
Roland Dreier225c7b12007-05-08 18:00:38 -07001840 if (mlx4_pd_alloc(dev, &ibdev->priv_pdn))
1841 goto err_dealloc;
1842
1843 if (mlx4_uar_alloc(dev, &ibdev->priv_uar))
1844 goto err_pd;
1845
Roland Dreier4979d182011-01-12 09:50:36 -08001846 ibdev->uar_map = ioremap((phys_addr_t) ibdev->priv_uar.pfn << PAGE_SHIFT,
1847 PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -07001848 if (!ibdev->uar_map)
1849 goto err_uar;
Jack Morgenstein26c6bc72007-05-13 17:18:23 +03001850 MLX4_INIT_DOORBELL_LOCK(&ibdev->uar_lock);
Roland Dreier225c7b12007-05-08 18:00:38 -07001851
Roland Dreier225c7b12007-05-08 18:00:38 -07001852 ibdev->dev = dev;
1853
1854 strlcpy(ibdev->ib_dev.name, "mlx4_%d", IB_DEVICE_NAME_MAX);
1855 ibdev->ib_dev.owner = THIS_MODULE;
1856 ibdev->ib_dev.node_type = RDMA_NODE_IB_CA;
Roland Dreier95d04f02008-07-23 08:12:26 -07001857 ibdev->ib_dev.local_dma_lkey = dev->caps.reserved_lkey;
Roland Dreier22e7ef92009-01-09 13:22:29 -08001858 ibdev->num_ports = num_ports;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001859 ibdev->ib_dev.phys_port_cnt = ibdev->num_ports;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -08001860 ibdev->ib_dev.num_comp_vectors = dev->caps.num_comp_vectors;
Roland Dreier225c7b12007-05-08 18:00:38 -07001861 ibdev->ib_dev.dma_device = &dev->pdev->dev;
1862
Or Gerlitz08ff3232012-10-21 14:59:24 +00001863 if (dev->caps.userspace_caps)
1864 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION;
1865 else
1866 ibdev->ib_dev.uverbs_abi_ver = MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION;
1867
Roland Dreier225c7b12007-05-08 18:00:38 -07001868 ibdev->ib_dev.uverbs_cmd_mask =
1869 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
1870 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
1871 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
1872 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
1873 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
1874 (1ull << IB_USER_VERBS_CMD_REG_MR) |
1875 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
1876 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
1877 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001878 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001879 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
1880 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
1881 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001882 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
Roland Dreier225c7b12007-05-08 18:00:38 -07001883 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
1884 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
1885 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
1886 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
1887 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001888 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
Sean Hefty18abd5e2011-06-02 10:43:26 -07001889 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
Sean Hefty42849b22011-08-11 13:57:43 -07001890 (1ull << IB_USER_VERBS_CMD_CREATE_XSRQ) |
1891 (1ull << IB_USER_VERBS_CMD_OPEN_QP);
Roland Dreier225c7b12007-05-08 18:00:38 -07001892
1893 ibdev->ib_dev.query_device = mlx4_ib_query_device;
1894 ibdev->ib_dev.query_port = mlx4_ib_query_port;
Eli Cohenfa417f72010-10-24 21:08:52 -07001895 ibdev->ib_dev.get_link_layer = mlx4_ib_port_link_layer;
Roland Dreier225c7b12007-05-08 18:00:38 -07001896 ibdev->ib_dev.query_gid = mlx4_ib_query_gid;
1897 ibdev->ib_dev.query_pkey = mlx4_ib_query_pkey;
1898 ibdev->ib_dev.modify_device = mlx4_ib_modify_device;
1899 ibdev->ib_dev.modify_port = mlx4_ib_modify_port;
1900 ibdev->ib_dev.alloc_ucontext = mlx4_ib_alloc_ucontext;
1901 ibdev->ib_dev.dealloc_ucontext = mlx4_ib_dealloc_ucontext;
1902 ibdev->ib_dev.mmap = mlx4_ib_mmap;
1903 ibdev->ib_dev.alloc_pd = mlx4_ib_alloc_pd;
1904 ibdev->ib_dev.dealloc_pd = mlx4_ib_dealloc_pd;
1905 ibdev->ib_dev.create_ah = mlx4_ib_create_ah;
1906 ibdev->ib_dev.query_ah = mlx4_ib_query_ah;
1907 ibdev->ib_dev.destroy_ah = mlx4_ib_destroy_ah;
1908 ibdev->ib_dev.create_srq = mlx4_ib_create_srq;
1909 ibdev->ib_dev.modify_srq = mlx4_ib_modify_srq;
Jack Morgenstein65541cb2007-06-21 13:03:11 +03001910 ibdev->ib_dev.query_srq = mlx4_ib_query_srq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001911 ibdev->ib_dev.destroy_srq = mlx4_ib_destroy_srq;
1912 ibdev->ib_dev.post_srq_recv = mlx4_ib_post_srq_recv;
1913 ibdev->ib_dev.create_qp = mlx4_ib_create_qp;
1914 ibdev->ib_dev.modify_qp = mlx4_ib_modify_qp;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03001915 ibdev->ib_dev.query_qp = mlx4_ib_query_qp;
Roland Dreier225c7b12007-05-08 18:00:38 -07001916 ibdev->ib_dev.destroy_qp = mlx4_ib_destroy_qp;
1917 ibdev->ib_dev.post_send = mlx4_ib_post_send;
1918 ibdev->ib_dev.post_recv = mlx4_ib_post_recv;
1919 ibdev->ib_dev.create_cq = mlx4_ib_create_cq;
Eli Cohen3fdcb972008-04-16 21:09:33 -07001920 ibdev->ib_dev.modify_cq = mlx4_ib_modify_cq;
Vladimir Sokolovskybbf8eed12008-04-16 21:09:33 -07001921 ibdev->ib_dev.resize_cq = mlx4_ib_resize_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001922 ibdev->ib_dev.destroy_cq = mlx4_ib_destroy_cq;
1923 ibdev->ib_dev.poll_cq = mlx4_ib_poll_cq;
1924 ibdev->ib_dev.req_notify_cq = mlx4_ib_arm_cq;
1925 ibdev->ib_dev.get_dma_mr = mlx4_ib_get_dma_mr;
1926 ibdev->ib_dev.reg_user_mr = mlx4_ib_reg_user_mr;
1927 ibdev->ib_dev.dereg_mr = mlx4_ib_dereg_mr;
Roland Dreier95d04f02008-07-23 08:12:26 -07001928 ibdev->ib_dev.alloc_fast_reg_mr = mlx4_ib_alloc_fast_reg_mr;
1929 ibdev->ib_dev.alloc_fast_reg_page_list = mlx4_ib_alloc_fast_reg_page_list;
1930 ibdev->ib_dev.free_fast_reg_page_list = mlx4_ib_free_fast_reg_page_list;
Roland Dreier225c7b12007-05-08 18:00:38 -07001931 ibdev->ib_dev.attach_mcast = mlx4_ib_mcg_attach;
1932 ibdev->ib_dev.detach_mcast = mlx4_ib_mcg_detach;
1933 ibdev->ib_dev.process_mad = mlx4_ib_process_mad;
1934
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00001935 if (!mlx4_is_slave(ibdev->dev)) {
1936 ibdev->ib_dev.alloc_fmr = mlx4_ib_fmr_alloc;
1937 ibdev->ib_dev.map_phys_fmr = mlx4_ib_map_phys_fmr;
1938 ibdev->ib_dev.unmap_fmr = mlx4_ib_unmap_fmr;
1939 ibdev->ib_dev.dealloc_fmr = mlx4_ib_fmr_dealloc;
1940 }
Jack Morgenstein8ad11fb2007-08-01 12:29:05 +03001941
Shani Michaelib4253882013-02-06 16:19:16 +00001942 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_MEM_WINDOW ||
1943 dev->caps.bmme_flags & MLX4_BMME_FLAG_TYPE_2_WIN) {
1944 ibdev->ib_dev.alloc_mw = mlx4_ib_alloc_mw;
1945 ibdev->ib_dev.bind_mw = mlx4_ib_bind_mw;
1946 ibdev->ib_dev.dealloc_mw = mlx4_ib_dealloc_mw;
1947
1948 ibdev->ib_dev.uverbs_cmd_mask |=
1949 (1ull << IB_USER_VERBS_CMD_ALLOC_MW) |
1950 (1ull << IB_USER_VERBS_CMD_DEALLOC_MW);
1951 }
1952
Sean Hefty012a8ff2011-06-02 09:01:33 -07001953 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) {
1954 ibdev->ib_dev.alloc_xrcd = mlx4_ib_alloc_xrcd;
1955 ibdev->ib_dev.dealloc_xrcd = mlx4_ib_dealloc_xrcd;
1956 ibdev->ib_dev.uverbs_cmd_mask |=
1957 (1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
1958 (1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
1959 }
1960
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001961 if (check_flow_steering_support(dev)) {
Matan Barak0a9b7d52013-11-07 15:25:15 +02001962 ibdev->steering_support = MLX4_STEERING_MODE_DEVICE_MANAGED;
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001963 ibdev->ib_dev.create_flow = mlx4_ib_create_flow;
1964 ibdev->ib_dev.destroy_flow = mlx4_ib_destroy_flow;
1965
Yann Droneaudf21519b2013-11-06 23:21:49 +01001966 ibdev->ib_dev.uverbs_ex_cmd_mask |=
1967 (1ull << IB_USER_VERBS_EX_CMD_CREATE_FLOW) |
1968 (1ull << IB_USER_VERBS_EX_CMD_DESTROY_FLOW);
Hadar Hen Zionf77c0162013-08-14 13:58:31 +03001969 }
1970
Shlomo Pongratze605b742012-04-29 17:04:27 +03001971 mlx4_ib_alloc_eqs(dev, ibdev);
1972
Eli Cohenfa417f72010-10-24 21:08:52 -07001973 spin_lock_init(&iboe->lock);
1974
Roland Dreier225c7b12007-05-08 18:00:38 -07001975 if (init_node_data(ibdev))
1976 goto err_map;
1977
Or Gerlitzcfcde112011-06-15 14:49:57 +00001978 for (i = 0; i < ibdev->num_ports; ++i) {
1979 if (mlx4_ib_port_link_layer(&ibdev->ib_dev, i + 1) ==
1980 IB_LINK_LAYER_ETHERNET) {
1981 err = mlx4_counter_alloc(ibdev->dev, &ibdev->counters[i]);
1982 if (err)
1983 ibdev->counters[i] = -1;
1984 } else
1985 ibdev->counters[i] = -1;
1986 }
1987
Roland Dreier225c7b12007-05-08 18:00:38 -07001988 spin_lock_init(&ibdev->sm_lock);
1989 mutex_init(&ibdev->cap_mask_mutex);
1990
Matan Barakc1c98502013-11-07 15:25:17 +02001991 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED) {
1992 ibdev->steer_qpn_count = MLX4_IB_UC_MAX_NUM_QPS;
1993 err = mlx4_qp_reserve_range(dev, ibdev->steer_qpn_count,
1994 MLX4_IB_UC_STEER_QPN_ALIGN,
1995 &ibdev->steer_qpn_base);
1996 if (err)
1997 goto err_counter;
1998
1999 ibdev->ib_uc_qpns_bitmap =
2000 kmalloc(BITS_TO_LONGS(ibdev->steer_qpn_count) *
2001 sizeof(long),
2002 GFP_KERNEL);
2003 if (!ibdev->ib_uc_qpns_bitmap) {
2004 dev_err(&dev->pdev->dev, "bit map alloc failed\n");
2005 goto err_steer_qp_release;
2006 }
2007
2008 bitmap_zero(ibdev->ib_uc_qpns_bitmap, ibdev->steer_qpn_count);
2009
2010 err = mlx4_FLOW_STEERING_IB_UC_QP_RANGE(
2011 dev, ibdev->steer_qpn_base,
2012 ibdev->steer_qpn_base +
2013 ibdev->steer_qpn_count - 1);
2014 if (err)
2015 goto err_steer_free_bitmap;
2016 }
2017
Ralph Campbell9a6edb62010-05-06 17:03:25 -07002018 if (ib_register_device(&ibdev->ib_dev, NULL))
Matan Barakc1c98502013-11-07 15:25:17 +02002019 goto err_steer_free_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -07002020
2021 if (mlx4_ib_mad_init(ibdev))
2022 goto err_reg;
2023
Jack Morgensteinfc065732012-08-03 08:40:42 +00002024 if (mlx4_ib_init_sriov(ibdev))
2025 goto err_mad;
2026
Moni Shouad487ee72013-12-12 18:03:13 +02002027 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE) {
2028 if (!iboe->nb.notifier_call) {
2029 iboe->nb.notifier_call = mlx4_ib_netdev_event;
2030 err = register_netdevice_notifier(&iboe->nb);
2031 if (err) {
2032 iboe->nb.notifier_call = NULL;
2033 goto err_notif;
2034 }
2035 }
2036 if (!iboe->nb_inet.notifier_call) {
2037 iboe->nb_inet.notifier_call = mlx4_ib_inet_event;
2038 err = register_inetaddr_notifier(&iboe->nb_inet);
2039 if (err) {
2040 iboe->nb_inet.notifier_call = NULL;
2041 goto err_notif;
2042 }
2043 }
Roland Dreier27cdef62014-01-19 15:18:49 -08002044#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02002045 if (!iboe->nb_inet6.notifier_call) {
2046 iboe->nb_inet6.notifier_call = mlx4_ib_inet6_event;
2047 err = register_inet6addr_notifier(&iboe->nb_inet6);
2048 if (err) {
2049 iboe->nb_inet6.notifier_call = NULL;
2050 goto err_notif;
2051 }
2052 }
2053#endif
2054 mlx4_ib_scan_netdevs(ibdev);
2055 mlx4_ib_init_gid_table(ibdev);
Eli Cohenfa417f72010-10-24 21:08:52 -07002056 }
2057
Jack Morgenstein035b1032012-05-10 23:28:09 +03002058 for (j = 0; j < ARRAY_SIZE(mlx4_class_attributes); ++j) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002059 if (device_create_file(&ibdev->ib_dev.dev,
Jack Morgenstein035b1032012-05-10 23:28:09 +03002060 mlx4_class_attributes[j]))
Eli Cohenfa417f72010-10-24 21:08:52 -07002061 goto err_notif;
Jack Morgensteincd9281d2007-09-18 09:14:18 +02002062 }
2063
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002064 ibdev->ib_active = true;
2065
Jack Morgenstein54679e12012-08-03 08:40:43 +00002066 if (mlx4_is_mfunc(ibdev->dev))
2067 init_pkeys(ibdev);
2068
Jack Morgenstein3806d082012-08-03 08:40:58 +00002069 /* create paravirt contexts for any VFs which are active */
2070 if (mlx4_is_master(ibdev->dev)) {
2071 for (j = 0; j < MLX4_MFUNC_MAX; j++) {
2072 if (j == mlx4_master_func_num(ibdev->dev))
2073 continue;
2074 if (mlx4_is_slave_active(ibdev->dev, j))
2075 do_slave_init(ibdev, j, 1);
2076 }
2077 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002078 return ibdev;
2079
Eli Cohenfa417f72010-10-24 21:08:52 -07002080err_notif:
Moni Shouad487ee72013-12-12 18:03:13 +02002081 if (ibdev->iboe.nb.notifier_call) {
2082 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
2083 pr_warn("failure unregistering notifier\n");
2084 ibdev->iboe.nb.notifier_call = NULL;
2085 }
2086 if (ibdev->iboe.nb_inet.notifier_call) {
2087 if (unregister_inetaddr_notifier(&ibdev->iboe.nb_inet))
2088 pr_warn("failure unregistering notifier\n");
2089 ibdev->iboe.nb_inet.notifier_call = NULL;
2090 }
Roland Dreier27cdef62014-01-19 15:18:49 -08002091#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02002092 if (ibdev->iboe.nb_inet6.notifier_call) {
2093 if (unregister_inet6addr_notifier(&ibdev->iboe.nb_inet6))
2094 pr_warn("failure unregistering notifier\n");
2095 ibdev->iboe.nb_inet6.notifier_call = NULL;
2096 }
2097#endif
Eli Cohenfa417f72010-10-24 21:08:52 -07002098 flush_workqueue(wq);
2099
Jack Morgensteinfc065732012-08-03 08:40:42 +00002100 mlx4_ib_close_sriov(ibdev);
2101
2102err_mad:
2103 mlx4_ib_mad_cleanup(ibdev);
2104
Roland Dreier225c7b12007-05-08 18:00:38 -07002105err_reg:
2106 ib_unregister_device(&ibdev->ib_dev);
2107
Matan Barakc1c98502013-11-07 15:25:17 +02002108err_steer_free_bitmap:
2109 kfree(ibdev->ib_uc_qpns_bitmap);
2110
2111err_steer_qp_release:
2112 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED)
2113 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
2114 ibdev->steer_qpn_count);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002115err_counter:
2116 for (; i; --i)
Roland Dreier4af3ce02011-12-06 10:47:37 -08002117 if (ibdev->counters[i - 1] != -1)
2118 mlx4_counter_free(ibdev->dev, ibdev->counters[i - 1]);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002119
Roland Dreier225c7b12007-05-08 18:00:38 -07002120err_map:
2121 iounmap(ibdev->uar_map);
2122
2123err_uar:
2124 mlx4_uar_free(dev, &ibdev->priv_uar);
2125
2126err_pd:
2127 mlx4_pd_free(dev, ibdev->priv_pdn);
2128
2129err_dealloc:
2130 ib_dealloc_device(&ibdev->ib_dev);
2131
2132 return NULL;
2133}
2134
Matan Barakc1c98502013-11-07 15:25:17 +02002135int mlx4_ib_steer_qp_alloc(struct mlx4_ib_dev *dev, int count, int *qpn)
2136{
2137 int offset;
2138
2139 WARN_ON(!dev->ib_uc_qpns_bitmap);
2140
2141 offset = bitmap_find_free_region(dev->ib_uc_qpns_bitmap,
2142 dev->steer_qpn_count,
2143 get_count_order(count));
2144 if (offset < 0)
2145 return offset;
2146
2147 *qpn = dev->steer_qpn_base + offset;
2148 return 0;
2149}
2150
2151void mlx4_ib_steer_qp_free(struct mlx4_ib_dev *dev, u32 qpn, int count)
2152{
2153 if (!qpn ||
2154 dev->steering_support != MLX4_STEERING_MODE_DEVICE_MANAGED)
2155 return;
2156
2157 BUG_ON(qpn < dev->steer_qpn_base);
2158
2159 bitmap_release_region(dev->ib_uc_qpns_bitmap,
2160 qpn - dev->steer_qpn_base,
2161 get_count_order(count));
2162}
2163
2164int mlx4_ib_steer_qp_reg(struct mlx4_ib_dev *mdev, struct mlx4_ib_qp *mqp,
2165 int is_attach)
2166{
2167 int err;
2168 size_t flow_size;
2169 struct ib_flow_attr *flow = NULL;
2170 struct ib_flow_spec_ib *ib_spec;
2171
2172 if (is_attach) {
2173 flow_size = sizeof(struct ib_flow_attr) +
2174 sizeof(struct ib_flow_spec_ib);
2175 flow = kzalloc(flow_size, GFP_KERNEL);
2176 if (!flow)
2177 return -ENOMEM;
2178 flow->port = mqp->port;
2179 flow->num_of_specs = 1;
2180 flow->size = flow_size;
2181 ib_spec = (struct ib_flow_spec_ib *)(flow + 1);
2182 ib_spec->type = IB_FLOW_SPEC_IB;
2183 ib_spec->size = sizeof(struct ib_flow_spec_ib);
2184 /* Add an empty rule for IB L2 */
2185 memset(&ib_spec->mask, 0, sizeof(ib_spec->mask));
2186
2187 err = __mlx4_ib_create_flow(&mqp->ibqp, flow,
2188 IB_FLOW_DOMAIN_NIC,
2189 MLX4_FS_REGULAR,
2190 &mqp->reg_id);
2191 } else {
2192 err = __mlx4_ib_destroy_flow(mdev->dev, mqp->reg_id);
2193 }
2194 kfree(flow);
2195 return err;
2196}
2197
Roland Dreier225c7b12007-05-08 18:00:38 -07002198static void mlx4_ib_remove(struct mlx4_dev *dev, void *ibdev_ptr)
2199{
2200 struct mlx4_ib_dev *ibdev = ibdev_ptr;
2201 int p;
2202
Jack Morgensteinfc065732012-08-03 08:40:42 +00002203 mlx4_ib_close_sriov(ibdev);
Yevgeny Petrilina6a47772009-03-18 19:49:54 -07002204 mlx4_ib_mad_cleanup(ibdev);
2205 ib_unregister_device(&ibdev->ib_dev);
Eli Cohenfa417f72010-10-24 21:08:52 -07002206 if (ibdev->iboe.nb.notifier_call) {
2207 if (unregister_netdevice_notifier(&ibdev->iboe.nb))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002208 pr_warn("failure unregistering notifier\n");
Eli Cohenfa417f72010-10-24 21:08:52 -07002209 ibdev->iboe.nb.notifier_call = NULL;
2210 }
Matan Barakc1c98502013-11-07 15:25:17 +02002211
2212 if (ibdev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED) {
2213 mlx4_qp_release_range(dev, ibdev->steer_qpn_base,
2214 ibdev->steer_qpn_count);
2215 kfree(ibdev->ib_uc_qpns_bitmap);
2216 }
2217
Moni Shouad487ee72013-12-12 18:03:13 +02002218 if (ibdev->iboe.nb_inet.notifier_call) {
2219 if (unregister_inetaddr_notifier(&ibdev->iboe.nb_inet))
2220 pr_warn("failure unregistering notifier\n");
2221 ibdev->iboe.nb_inet.notifier_call = NULL;
2222 }
Roland Dreier27cdef62014-01-19 15:18:49 -08002223#if IS_ENABLED(CONFIG_IPV6)
Moni Shouad487ee72013-12-12 18:03:13 +02002224 if (ibdev->iboe.nb_inet6.notifier_call) {
2225 if (unregister_inet6addr_notifier(&ibdev->iboe.nb_inet6))
2226 pr_warn("failure unregistering notifier\n");
2227 ibdev->iboe.nb_inet6.notifier_call = NULL;
2228 }
2229#endif
Roland Dreierfb1b5032014-01-22 23:24:21 -08002230
Eli Cohenfa417f72010-10-24 21:08:52 -07002231 iounmap(ibdev->uar_map);
Or Gerlitzcfcde112011-06-15 14:49:57 +00002232 for (p = 0; p < ibdev->num_ports; ++p)
Roland Dreier4af3ce02011-12-06 10:47:37 -08002233 if (ibdev->counters[p] != -1)
2234 mlx4_counter_free(ibdev->dev, ibdev->counters[p]);
Eli Cohenfa417f72010-10-24 21:08:52 -07002235 mlx4_foreach_port(p, dev, MLX4_PORT_TYPE_IB)
Roland Dreier225c7b12007-05-08 18:00:38 -07002236 mlx4_CLOSE_PORT(dev, p);
2237
Shlomo Pongratze605b742012-04-29 17:04:27 +03002238 mlx4_ib_free_eqs(dev, ibdev);
2239
Roland Dreier225c7b12007-05-08 18:00:38 -07002240 mlx4_uar_free(dev, &ibdev->priv_uar);
2241 mlx4_pd_free(dev, ibdev->priv_pdn);
2242 ib_dealloc_device(&ibdev->ib_dev);
2243}
2244
Jack Morgensteinfc065732012-08-03 08:40:42 +00002245static void do_slave_init(struct mlx4_ib_dev *ibdev, int slave, int do_init)
2246{
2247 struct mlx4_ib_demux_work **dm = NULL;
2248 struct mlx4_dev *dev = ibdev->dev;
2249 int i;
2250 unsigned long flags;
2251
2252 if (!mlx4_is_master(dev))
2253 return;
2254
2255 dm = kcalloc(dev->caps.num_ports, sizeof *dm, GFP_ATOMIC);
2256 if (!dm) {
2257 pr_err("failed to allocate memory for tunneling qp update\n");
2258 goto out;
2259 }
2260
2261 for (i = 0; i < dev->caps.num_ports; i++) {
2262 dm[i] = kmalloc(sizeof (struct mlx4_ib_demux_work), GFP_ATOMIC);
2263 if (!dm[i]) {
2264 pr_err("failed to allocate memory for tunneling qp update work struct\n");
2265 for (i = 0; i < dev->caps.num_ports; i++) {
2266 if (dm[i])
2267 kfree(dm[i]);
2268 }
2269 goto out;
2270 }
2271 }
2272 /* initialize or tear down tunnel QPs for the slave */
2273 for (i = 0; i < dev->caps.num_ports; i++) {
2274 INIT_WORK(&dm[i]->work, mlx4_ib_tunnels_update_work);
2275 dm[i]->port = i + 1;
2276 dm[i]->slave = slave;
2277 dm[i]->do_init = do_init;
2278 dm[i]->dev = ibdev;
2279 spin_lock_irqsave(&ibdev->sriov.going_down_lock, flags);
2280 if (!ibdev->sriov.is_going_down)
2281 queue_work(ibdev->sriov.demux[i].ud_wq, &dm[i]->work);
2282 spin_unlock_irqrestore(&ibdev->sriov.going_down_lock, flags);
2283 }
2284out:
Syam Sidhardhanc89d1272013-02-24 23:20:05 +00002285 kfree(dm);
Jack Morgensteinfc065732012-08-03 08:40:42 +00002286 return;
2287}
2288
Roland Dreier225c7b12007-05-08 18:00:38 -07002289static void mlx4_ib_event(struct mlx4_dev *dev, void *ibdev_ptr,
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002290 enum mlx4_dev_event event, unsigned long param)
Roland Dreier225c7b12007-05-08 18:00:38 -07002291{
2292 struct ib_event ibev;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07002293 struct mlx4_ib_dev *ibdev = to_mdev((struct ib_device *) ibdev_ptr);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002294 struct mlx4_eqe *eqe = NULL;
2295 struct ib_event_work *ew;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002296 int p = 0;
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002297
2298 if (event == MLX4_DEV_EVENT_PORT_MGMT_CHANGE)
2299 eqe = (struct mlx4_eqe *)param;
2300 else
Jack Morgensteinfc065732012-08-03 08:40:42 +00002301 p = (int) param;
Roland Dreier225c7b12007-05-08 18:00:38 -07002302
2303 switch (event) {
Roland Dreier37608ee2008-04-16 21:01:08 -07002304 case MLX4_DEV_EVENT_PORT_UP:
Jack Morgensteinfc065732012-08-03 08:40:42 +00002305 if (p > ibdev->num_ports)
2306 return;
Jack Morgensteina0c64a12012-08-03 08:40:49 +00002307 if (mlx4_is_master(dev) &&
2308 rdma_port_get_link_layer(&ibdev->ib_dev, p) ==
2309 IB_LINK_LAYER_INFINIBAND) {
2310 mlx4_ib_invalidate_all_guid_record(ibdev, p);
2311 }
Roland Dreier37608ee2008-04-16 21:01:08 -07002312 ibev.event = IB_EVENT_PORT_ACTIVE;
Roland Dreier225c7b12007-05-08 18:00:38 -07002313 break;
2314
Roland Dreier37608ee2008-04-16 21:01:08 -07002315 case MLX4_DEV_EVENT_PORT_DOWN:
Jack Morgensteinfc065732012-08-03 08:40:42 +00002316 if (p > ibdev->num_ports)
2317 return;
Roland Dreier37608ee2008-04-16 21:01:08 -07002318 ibev.event = IB_EVENT_PORT_ERR;
2319 break;
2320
2321 case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
Jack Morgenstein3b4a8cd2009-09-05 20:24:50 -07002322 ibdev->ib_active = false;
Roland Dreier225c7b12007-05-08 18:00:38 -07002323 ibev.event = IB_EVENT_DEVICE_FATAL;
2324 break;
2325
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002326 case MLX4_DEV_EVENT_PORT_MGMT_CHANGE:
2327 ew = kmalloc(sizeof *ew, GFP_ATOMIC);
2328 if (!ew) {
2329 pr_err("failed to allocate memory for events work\n");
2330 break;
2331 }
2332
2333 INIT_WORK(&ew->work, handle_port_mgmt_change_event);
2334 memcpy(&ew->ib_eqe, eqe, sizeof *eqe);
2335 ew->ib_dev = ibdev;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002336 /* need to queue only for port owner, which uses GEN_EQE */
2337 if (mlx4_is_master(dev))
2338 queue_work(wq, &ew->work);
2339 else
2340 handle_port_mgmt_change_event(&ew->work);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03002341 return;
2342
Jack Morgensteinfc065732012-08-03 08:40:42 +00002343 case MLX4_DEV_EVENT_SLAVE_INIT:
2344 /* here, p is the slave id */
2345 do_slave_init(ibdev, p, 1);
2346 return;
2347
2348 case MLX4_DEV_EVENT_SLAVE_SHUTDOWN:
2349 /* here, p is the slave id */
2350 do_slave_init(ibdev, p, 0);
2351 return;
2352
Roland Dreier225c7b12007-05-08 18:00:38 -07002353 default:
2354 return;
2355 }
2356
2357 ibev.device = ibdev_ptr;
Jack Morgensteinfc065732012-08-03 08:40:42 +00002358 ibev.element.port_num = (u8) p;
Roland Dreier225c7b12007-05-08 18:00:38 -07002359
2360 ib_dispatch_event(&ibev);
2361}
2362
2363static struct mlx4_interface mlx4_ib_interface = {
Eli Cohenfa417f72010-10-24 21:08:52 -07002364 .add = mlx4_ib_add,
2365 .remove = mlx4_ib_remove,
2366 .event = mlx4_ib_event,
Yevgeny Petrilin03455842011-03-22 22:38:17 +00002367 .protocol = MLX4_PROT_IB_IPV6
Roland Dreier225c7b12007-05-08 18:00:38 -07002368};
2369
2370static int __init mlx4_ib_init(void)
2371{
Eli Cohenfa417f72010-10-24 21:08:52 -07002372 int err;
2373
2374 wq = create_singlethread_workqueue("mlx4_ib");
2375 if (!wq)
2376 return -ENOMEM;
2377
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002378 err = mlx4_ib_mcg_init();
2379 if (err)
2380 goto clean_wq;
2381
Eli Cohenfa417f72010-10-24 21:08:52 -07002382 err = mlx4_register_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002383 if (err)
2384 goto clean_mcg;
Eli Cohenfa417f72010-10-24 21:08:52 -07002385
2386 return 0;
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002387
2388clean_mcg:
2389 mlx4_ib_mcg_destroy();
2390
2391clean_wq:
2392 destroy_workqueue(wq);
2393 return err;
Roland Dreier225c7b12007-05-08 18:00:38 -07002394}
2395
2396static void __exit mlx4_ib_cleanup(void)
2397{
2398 mlx4_unregister_interface(&mlx4_ib_interface);
Oren Duerb9c5d6a2012-08-03 08:40:46 +00002399 mlx4_ib_mcg_destroy();
Eli Cohenfa417f72010-10-24 21:08:52 -07002400 destroy_workqueue(wq);
Roland Dreier225c7b12007-05-08 18:00:38 -07002401}
2402
2403module_init(mlx4_ib_init);
2404module_exit(mlx4_ib_cleanup);