xref: /openbmc/linux/drivers/infiniband/hw/mlx5/main.c (revision 1b5daf11b015123108686a9060ee6de705a03e76)
1e126ba97SEli Cohen /*
26cf0a15fSSaeed Mahameed  * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
3e126ba97SEli Cohen  *
4e126ba97SEli Cohen  * This software is available to you under a choice of one of two
5e126ba97SEli Cohen  * licenses.  You may choose to be licensed under the terms of the GNU
6e126ba97SEli Cohen  * General Public License (GPL) Version 2, available from the file
7e126ba97SEli Cohen  * COPYING in the main directory of this source tree, or the
8e126ba97SEli Cohen  * OpenIB.org BSD license below:
9e126ba97SEli Cohen  *
10e126ba97SEli Cohen  *     Redistribution and use in source and binary forms, with or
11e126ba97SEli Cohen  *     without modification, are permitted provided that the following
12e126ba97SEli Cohen  *     conditions are met:
13e126ba97SEli Cohen  *
14e126ba97SEli Cohen  *      - Redistributions of source code must retain the above
15e126ba97SEli Cohen  *        copyright notice, this list of conditions and the following
16e126ba97SEli Cohen  *        disclaimer.
17e126ba97SEli Cohen  *
18e126ba97SEli Cohen  *      - Redistributions in binary form must reproduce the above
19e126ba97SEli Cohen  *        copyright notice, this list of conditions and the following
20e126ba97SEli Cohen  *        disclaimer in the documentation and/or other materials
21e126ba97SEli Cohen  *        provided with the distribution.
22e126ba97SEli Cohen  *
23e126ba97SEli Cohen  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24e126ba97SEli Cohen  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25e126ba97SEli Cohen  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26e126ba97SEli Cohen  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27e126ba97SEli Cohen  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28e126ba97SEli Cohen  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29e126ba97SEli Cohen  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30e126ba97SEli Cohen  * SOFTWARE.
31e126ba97SEli Cohen  */
32e126ba97SEli Cohen 
33e126ba97SEli Cohen #include <asm-generic/kmap_types.h>
34e126ba97SEli Cohen #include <linux/module.h>
35e126ba97SEli Cohen #include <linux/init.h>
36e126ba97SEli Cohen #include <linux/errno.h>
37e126ba97SEli Cohen #include <linux/pci.h>
38e126ba97SEli Cohen #include <linux/dma-mapping.h>
39e126ba97SEli Cohen #include <linux/slab.h>
40e126ba97SEli Cohen #include <linux/io-mapping.h>
41e126ba97SEli Cohen #include <linux/sched.h>
42e126ba97SEli Cohen #include <rdma/ib_user_verbs.h>
43*1b5daf11SMajd Dibbiny #include <linux/mlx5/vport.h>
44e126ba97SEli Cohen #include <rdma/ib_smi.h>
45e126ba97SEli Cohen #include <rdma/ib_umem.h>
46e126ba97SEli Cohen #include "user.h"
47e126ba97SEli Cohen #include "mlx5_ib.h"
48e126ba97SEli Cohen 
49e126ba97SEli Cohen #define DRIVER_NAME "mlx5_ib"
50169a1d85SAmir Vadai #define DRIVER_VERSION "2.2-1"
51169a1d85SAmir Vadai #define DRIVER_RELDATE	"Feb 2014"
52e126ba97SEli Cohen 
53e126ba97SEli Cohen MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
54e126ba97SEli Cohen MODULE_DESCRIPTION("Mellanox Connect-IB HCA IB driver");
55e126ba97SEli Cohen MODULE_LICENSE("Dual BSD/GPL");
56e126ba97SEli Cohen MODULE_VERSION(DRIVER_VERSION);
57e126ba97SEli Cohen 
589603b61dSJack Morgenstein static int deprecated_prof_sel = 2;
599603b61dSJack Morgenstein module_param_named(prof_sel, deprecated_prof_sel, int, 0444);
609603b61dSJack Morgenstein MODULE_PARM_DESC(prof_sel, "profile selector. Deprecated here. Moved to module mlx5_core");
61e126ba97SEli Cohen 
62e126ba97SEli Cohen static char mlx5_version[] =
63e126ba97SEli Cohen 	DRIVER_NAME ": Mellanox Connect-IB Infiniband driver v"
64e126ba97SEli Cohen 	DRIVER_VERSION " (" DRIVER_RELDATE ")\n";
65e126ba97SEli Cohen 
66*1b5daf11SMajd Dibbiny static enum rdma_link_layer
67*1b5daf11SMajd Dibbiny mlx5_ib_port_link_layer(struct ib_device *device)
68*1b5daf11SMajd Dibbiny {
69*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(device);
70*1b5daf11SMajd Dibbiny 
71*1b5daf11SMajd Dibbiny 	switch (MLX5_CAP_GEN(dev->mdev, port_type)) {
72*1b5daf11SMajd Dibbiny 	case MLX5_CAP_PORT_TYPE_IB:
73*1b5daf11SMajd Dibbiny 		return IB_LINK_LAYER_INFINIBAND;
74*1b5daf11SMajd Dibbiny 	case MLX5_CAP_PORT_TYPE_ETH:
75*1b5daf11SMajd Dibbiny 		return IB_LINK_LAYER_ETHERNET;
76*1b5daf11SMajd Dibbiny 	default:
77*1b5daf11SMajd Dibbiny 		return IB_LINK_LAYER_UNSPECIFIED;
78*1b5daf11SMajd Dibbiny 	}
79*1b5daf11SMajd Dibbiny }
80*1b5daf11SMajd Dibbiny 
81*1b5daf11SMajd Dibbiny static int mlx5_use_mad_ifc(struct mlx5_ib_dev *dev)
82*1b5daf11SMajd Dibbiny {
83*1b5daf11SMajd Dibbiny 	return !dev->mdev->issi;
84*1b5daf11SMajd Dibbiny }
85*1b5daf11SMajd Dibbiny 
86*1b5daf11SMajd Dibbiny enum {
87*1b5daf11SMajd Dibbiny 	MLX5_VPORT_ACCESS_METHOD_MAD,
88*1b5daf11SMajd Dibbiny 	MLX5_VPORT_ACCESS_METHOD_HCA,
89*1b5daf11SMajd Dibbiny 	MLX5_VPORT_ACCESS_METHOD_NIC,
90*1b5daf11SMajd Dibbiny };
91*1b5daf11SMajd Dibbiny 
92*1b5daf11SMajd Dibbiny static int mlx5_get_vport_access_method(struct ib_device *ibdev)
93*1b5daf11SMajd Dibbiny {
94*1b5daf11SMajd Dibbiny 	if (mlx5_use_mad_ifc(to_mdev(ibdev)))
95*1b5daf11SMajd Dibbiny 		return MLX5_VPORT_ACCESS_METHOD_MAD;
96*1b5daf11SMajd Dibbiny 
97*1b5daf11SMajd Dibbiny 	if (mlx5_ib_port_link_layer(ibdev) ==
98*1b5daf11SMajd Dibbiny 	    IB_LINK_LAYER_ETHERNET)
99*1b5daf11SMajd Dibbiny 		return MLX5_VPORT_ACCESS_METHOD_NIC;
100*1b5daf11SMajd Dibbiny 
101*1b5daf11SMajd Dibbiny 	return MLX5_VPORT_ACCESS_METHOD_HCA;
102*1b5daf11SMajd Dibbiny }
103*1b5daf11SMajd Dibbiny 
104*1b5daf11SMajd Dibbiny static int mlx5_query_system_image_guid(struct ib_device *ibdev,
105*1b5daf11SMajd Dibbiny 					__be64 *sys_image_guid)
106*1b5daf11SMajd Dibbiny {
107*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
108*1b5daf11SMajd Dibbiny 	struct mlx5_core_dev *mdev = dev->mdev;
109*1b5daf11SMajd Dibbiny 	u64 tmp;
110*1b5daf11SMajd Dibbiny 	int err;
111*1b5daf11SMajd Dibbiny 
112*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
113*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
114*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_system_image_guid(ibdev,
115*1b5daf11SMajd Dibbiny 							    sys_image_guid);
116*1b5daf11SMajd Dibbiny 
117*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
118*1b5daf11SMajd Dibbiny 		err = mlx5_query_hca_vport_system_image_guid(mdev, &tmp);
119*1b5daf11SMajd Dibbiny 		if (!err)
120*1b5daf11SMajd Dibbiny 			*sys_image_guid = cpu_to_be64(tmp);
121*1b5daf11SMajd Dibbiny 		return err;
122*1b5daf11SMajd Dibbiny 
123*1b5daf11SMajd Dibbiny 	default:
124*1b5daf11SMajd Dibbiny 		return -EINVAL;
125*1b5daf11SMajd Dibbiny 	}
126*1b5daf11SMajd Dibbiny }
127*1b5daf11SMajd Dibbiny 
128*1b5daf11SMajd Dibbiny static int mlx5_query_max_pkeys(struct ib_device *ibdev,
129*1b5daf11SMajd Dibbiny 				u16 *max_pkeys)
130*1b5daf11SMajd Dibbiny {
131*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
132*1b5daf11SMajd Dibbiny 	struct mlx5_core_dev *mdev = dev->mdev;
133*1b5daf11SMajd Dibbiny 
134*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
135*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
136*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_max_pkeys(ibdev, max_pkeys);
137*1b5daf11SMajd Dibbiny 
138*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
139*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_NIC:
140*1b5daf11SMajd Dibbiny 		*max_pkeys = mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev,
141*1b5daf11SMajd Dibbiny 						pkey_table_size));
142*1b5daf11SMajd Dibbiny 		return 0;
143*1b5daf11SMajd Dibbiny 
144*1b5daf11SMajd Dibbiny 	default:
145*1b5daf11SMajd Dibbiny 		return -EINVAL;
146*1b5daf11SMajd Dibbiny 	}
147*1b5daf11SMajd Dibbiny }
148*1b5daf11SMajd Dibbiny 
149*1b5daf11SMajd Dibbiny static int mlx5_query_vendor_id(struct ib_device *ibdev,
150*1b5daf11SMajd Dibbiny 				u32 *vendor_id)
151*1b5daf11SMajd Dibbiny {
152*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
153*1b5daf11SMajd Dibbiny 
154*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
155*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
156*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_vendor_id(ibdev, vendor_id);
157*1b5daf11SMajd Dibbiny 
158*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
159*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_NIC:
160*1b5daf11SMajd Dibbiny 		return mlx5_core_query_vendor_id(dev->mdev, vendor_id);
161*1b5daf11SMajd Dibbiny 
162*1b5daf11SMajd Dibbiny 	default:
163*1b5daf11SMajd Dibbiny 		return -EINVAL;
164*1b5daf11SMajd Dibbiny 	}
165*1b5daf11SMajd Dibbiny }
166*1b5daf11SMajd Dibbiny 
167*1b5daf11SMajd Dibbiny static int mlx5_query_node_guid(struct mlx5_ib_dev *dev,
168*1b5daf11SMajd Dibbiny 				__be64 *node_guid)
169*1b5daf11SMajd Dibbiny {
170*1b5daf11SMajd Dibbiny 	u64 tmp;
171*1b5daf11SMajd Dibbiny 	int err;
172*1b5daf11SMajd Dibbiny 
173*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(&dev->ib_dev)) {
174*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
175*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_node_guid(dev, node_guid);
176*1b5daf11SMajd Dibbiny 
177*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
178*1b5daf11SMajd Dibbiny 		err = mlx5_query_hca_vport_node_guid(dev->mdev, &tmp);
179*1b5daf11SMajd Dibbiny 		if (!err)
180*1b5daf11SMajd Dibbiny 			*node_guid = cpu_to_be64(tmp);
181*1b5daf11SMajd Dibbiny 		return err;
182*1b5daf11SMajd Dibbiny 
183*1b5daf11SMajd Dibbiny 	default:
184*1b5daf11SMajd Dibbiny 		return -EINVAL;
185*1b5daf11SMajd Dibbiny 	}
186*1b5daf11SMajd Dibbiny }
187*1b5daf11SMajd Dibbiny 
188*1b5daf11SMajd Dibbiny struct mlx5_reg_node_desc {
189*1b5daf11SMajd Dibbiny 	u8	desc[64];
190*1b5daf11SMajd Dibbiny };
191*1b5daf11SMajd Dibbiny 
192*1b5daf11SMajd Dibbiny static int mlx5_query_node_desc(struct mlx5_ib_dev *dev, char *node_desc)
193*1b5daf11SMajd Dibbiny {
194*1b5daf11SMajd Dibbiny 	struct mlx5_reg_node_desc in;
195*1b5daf11SMajd Dibbiny 
196*1b5daf11SMajd Dibbiny 	if (mlx5_use_mad_ifc(dev))
197*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_node_desc(dev, node_desc);
198*1b5daf11SMajd Dibbiny 
199*1b5daf11SMajd Dibbiny 	memset(&in, 0, sizeof(in));
200*1b5daf11SMajd Dibbiny 
201*1b5daf11SMajd Dibbiny 	return mlx5_core_access_reg(dev->mdev, &in, sizeof(in), node_desc,
202*1b5daf11SMajd Dibbiny 				    sizeof(struct mlx5_reg_node_desc),
203*1b5daf11SMajd Dibbiny 				    MLX5_REG_NODE_DESC, 0, 0);
204*1b5daf11SMajd Dibbiny }
205*1b5daf11SMajd Dibbiny 
206e126ba97SEli Cohen static int mlx5_ib_query_device(struct ib_device *ibdev,
207e126ba97SEli Cohen 				struct ib_device_attr *props)
208e126ba97SEli Cohen {
209e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
210938fe83cSSaeed Mahameed 	struct mlx5_core_dev *mdev = dev->mdev;
211e126ba97SEli Cohen 	int err = -ENOMEM;
212e126ba97SEli Cohen 	int max_rq_sg;
213e126ba97SEli Cohen 	int max_sq_sg;
214e126ba97SEli Cohen 
215e126ba97SEli Cohen 	memset(props, 0, sizeof(*props));
216*1b5daf11SMajd Dibbiny 	err = mlx5_query_system_image_guid(ibdev,
217*1b5daf11SMajd Dibbiny 					   &props->sys_image_guid);
218*1b5daf11SMajd Dibbiny 	if (err)
219*1b5daf11SMajd Dibbiny 		return err;
220*1b5daf11SMajd Dibbiny 
221*1b5daf11SMajd Dibbiny 	err = mlx5_query_max_pkeys(ibdev, &props->max_pkeys);
222*1b5daf11SMajd Dibbiny 	if (err)
223*1b5daf11SMajd Dibbiny 		return err;
224*1b5daf11SMajd Dibbiny 
225*1b5daf11SMajd Dibbiny 	err = mlx5_query_vendor_id(ibdev, &props->vendor_id);
226*1b5daf11SMajd Dibbiny 	if (err)
227*1b5daf11SMajd Dibbiny 		return err;
228e126ba97SEli Cohen 
2299603b61dSJack Morgenstein 	props->fw_ver = ((u64)fw_rev_maj(dev->mdev) << 32) |
2309603b61dSJack Morgenstein 		(fw_rev_min(dev->mdev) << 16) |
2319603b61dSJack Morgenstein 		fw_rev_sub(dev->mdev);
232e126ba97SEli Cohen 	props->device_cap_flags    = IB_DEVICE_CHANGE_PHY_PORT |
233e126ba97SEli Cohen 		IB_DEVICE_PORT_ACTIVE_EVENT		|
234e126ba97SEli Cohen 		IB_DEVICE_SYS_IMAGE_GUID		|
2351a4c3a3dSEli Cohen 		IB_DEVICE_RC_RNR_NAK_GEN;
236938fe83cSSaeed Mahameed 
237938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, pkv))
238e126ba97SEli Cohen 		props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
239938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, qkv))
240e126ba97SEli Cohen 		props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
241938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, apm))
242e126ba97SEli Cohen 		props->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
243e126ba97SEli Cohen 	props->device_cap_flags |= IB_DEVICE_LOCAL_DMA_LKEY;
244938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, xrc))
245e126ba97SEli Cohen 		props->device_cap_flags |= IB_DEVICE_XRC;
246e126ba97SEli Cohen 	props->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
247938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, sho)) {
2482dea9094SSagi Grimberg 		props->device_cap_flags |= IB_DEVICE_SIGNATURE_HANDOVER;
2492dea9094SSagi Grimberg 		/* At this stage no support for signature handover */
2502dea9094SSagi Grimberg 		props->sig_prot_cap = IB_PROT_T10DIF_TYPE_1 |
2512dea9094SSagi Grimberg 				      IB_PROT_T10DIF_TYPE_2 |
2522dea9094SSagi Grimberg 				      IB_PROT_T10DIF_TYPE_3;
2532dea9094SSagi Grimberg 		props->sig_guard_cap = IB_GUARD_T10DIF_CRC |
2542dea9094SSagi Grimberg 				       IB_GUARD_T10DIF_CSUM;
2552dea9094SSagi Grimberg 	}
256938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, block_lb_mc))
257f360d88aSEli Cohen 		props->device_cap_flags |= IB_DEVICE_BLOCK_MULTICAST_LOOPBACK;
258e126ba97SEli Cohen 
259*1b5daf11SMajd Dibbiny 	props->vendor_part_id	   = mdev->pdev->device;
260*1b5daf11SMajd Dibbiny 	props->hw_ver		   = mdev->pdev->revision;
261e126ba97SEli Cohen 
262e126ba97SEli Cohen 	props->max_mr_size	   = ~0ull;
263938fe83cSSaeed Mahameed 	props->page_size_cap	   = 1ull << MLX5_CAP_GEN(mdev, log_pg_sz);
264938fe83cSSaeed Mahameed 	props->max_qp		   = 1 << MLX5_CAP_GEN(mdev, log_max_qp);
265938fe83cSSaeed Mahameed 	props->max_qp_wr	   = 1 << MLX5_CAP_GEN(mdev, log_max_qp_sz);
266938fe83cSSaeed Mahameed 	max_rq_sg =  MLX5_CAP_GEN(mdev, max_wqe_sz_rq) /
267938fe83cSSaeed Mahameed 		     sizeof(struct mlx5_wqe_data_seg);
268938fe83cSSaeed Mahameed 	max_sq_sg = (MLX5_CAP_GEN(mdev, max_wqe_sz_sq) -
269938fe83cSSaeed Mahameed 		     sizeof(struct mlx5_wqe_ctrl_seg)) /
270e126ba97SEli Cohen 		     sizeof(struct mlx5_wqe_data_seg);
271e126ba97SEli Cohen 	props->max_sge = min(max_rq_sg, max_sq_sg);
272938fe83cSSaeed Mahameed 	props->max_cq		   = 1 << MLX5_CAP_GEN(mdev, log_max_cq);
273938fe83cSSaeed Mahameed 	props->max_cqe = (1 << MLX5_CAP_GEN(mdev, log_max_eq_sz)) - 1;
274938fe83cSSaeed Mahameed 	props->max_mr		   = 1 << MLX5_CAP_GEN(mdev, log_max_mkey);
275938fe83cSSaeed Mahameed 	props->max_pd		   = 1 << MLX5_CAP_GEN(mdev, log_max_pd);
276938fe83cSSaeed Mahameed 	props->max_qp_rd_atom	   = 1 << MLX5_CAP_GEN(mdev, log_max_ra_req_qp);
277938fe83cSSaeed Mahameed 	props->max_qp_init_rd_atom = 1 << MLX5_CAP_GEN(mdev, log_max_ra_res_qp);
278938fe83cSSaeed Mahameed 	props->max_srq		   = 1 << MLX5_CAP_GEN(mdev, log_max_srq);
279938fe83cSSaeed Mahameed 	props->max_srq_wr = (1 << MLX5_CAP_GEN(mdev, log_max_srq_sz)) - 1;
280938fe83cSSaeed Mahameed 	props->local_ca_ack_delay  = MLX5_CAP_GEN(mdev, local_ca_ack_delay);
281e126ba97SEli Cohen 	props->max_res_rd_atom	   = props->max_qp_rd_atom * props->max_qp;
282e126ba97SEli Cohen 	props->max_srq_sge	   = max_rq_sg - 1;
283e126ba97SEli Cohen 	props->max_fast_reg_page_list_len = (unsigned int)-1;
28481bea28fSEli Cohen 	props->atomic_cap	   = IB_ATOMIC_NONE;
28581bea28fSEli Cohen 	props->masked_atomic_cap   = IB_ATOMIC_NONE;
286938fe83cSSaeed Mahameed 	props->max_mcast_grp	   = 1 << MLX5_CAP_GEN(mdev, log_max_mcg);
287938fe83cSSaeed Mahameed 	props->max_mcast_qp_attach = MLX5_CAP_GEN(mdev, max_qp_mcg);
288e126ba97SEli Cohen 	props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
289e126ba97SEli Cohen 					   props->max_mcast_grp;
290e126ba97SEli Cohen 	props->max_map_per_fmr = INT_MAX; /* no limit in ConnectIB */
291e126ba97SEli Cohen 
2928cdd312cSHaggai Eran #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
293938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, pg))
2948cdd312cSHaggai Eran 		props->device_cap_flags |= IB_DEVICE_ON_DEMAND_PAGING;
2958cdd312cSHaggai Eran 	props->odp_caps = dev->odp_caps;
2968cdd312cSHaggai Eran #endif
2978cdd312cSHaggai Eran 
298*1b5daf11SMajd Dibbiny 	return 0;
299*1b5daf11SMajd Dibbiny }
300e126ba97SEli Cohen 
301*1b5daf11SMajd Dibbiny enum mlx5_ib_width {
302*1b5daf11SMajd Dibbiny 	MLX5_IB_WIDTH_1X	= 1 << 0,
303*1b5daf11SMajd Dibbiny 	MLX5_IB_WIDTH_2X	= 1 << 1,
304*1b5daf11SMajd Dibbiny 	MLX5_IB_WIDTH_4X	= 1 << 2,
305*1b5daf11SMajd Dibbiny 	MLX5_IB_WIDTH_8X	= 1 << 3,
306*1b5daf11SMajd Dibbiny 	MLX5_IB_WIDTH_12X	= 1 << 4
307*1b5daf11SMajd Dibbiny };
308*1b5daf11SMajd Dibbiny 
309*1b5daf11SMajd Dibbiny static int translate_active_width(struct ib_device *ibdev, u8 active_width,
310*1b5daf11SMajd Dibbiny 				  u8 *ib_width)
311*1b5daf11SMajd Dibbiny {
312*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
313*1b5daf11SMajd Dibbiny 	int err = 0;
314*1b5daf11SMajd Dibbiny 
315*1b5daf11SMajd Dibbiny 	if (active_width & MLX5_IB_WIDTH_1X) {
316*1b5daf11SMajd Dibbiny 		*ib_width = IB_WIDTH_1X;
317*1b5daf11SMajd Dibbiny 	} else if (active_width & MLX5_IB_WIDTH_2X) {
318*1b5daf11SMajd Dibbiny 		mlx5_ib_dbg(dev, "active_width %d is not supported by IB spec\n",
319*1b5daf11SMajd Dibbiny 			    (int)active_width);
320*1b5daf11SMajd Dibbiny 		err = -EINVAL;
321*1b5daf11SMajd Dibbiny 	} else if (active_width & MLX5_IB_WIDTH_4X) {
322*1b5daf11SMajd Dibbiny 		*ib_width = IB_WIDTH_4X;
323*1b5daf11SMajd Dibbiny 	} else if (active_width & MLX5_IB_WIDTH_8X) {
324*1b5daf11SMajd Dibbiny 		*ib_width = IB_WIDTH_8X;
325*1b5daf11SMajd Dibbiny 	} else if (active_width & MLX5_IB_WIDTH_12X) {
326*1b5daf11SMajd Dibbiny 		*ib_width = IB_WIDTH_12X;
327*1b5daf11SMajd Dibbiny 	} else {
328*1b5daf11SMajd Dibbiny 		mlx5_ib_dbg(dev, "Invalid active_width %d\n",
329*1b5daf11SMajd Dibbiny 			    (int)active_width);
330*1b5daf11SMajd Dibbiny 		err = -EINVAL;
331*1b5daf11SMajd Dibbiny 	}
332*1b5daf11SMajd Dibbiny 
333*1b5daf11SMajd Dibbiny 	return err;
334*1b5daf11SMajd Dibbiny }
335*1b5daf11SMajd Dibbiny 
336*1b5daf11SMajd Dibbiny static int mlx5_mtu_to_ib_mtu(int mtu)
337*1b5daf11SMajd Dibbiny {
338*1b5daf11SMajd Dibbiny 	switch (mtu) {
339*1b5daf11SMajd Dibbiny 	case 256: return 1;
340*1b5daf11SMajd Dibbiny 	case 512: return 2;
341*1b5daf11SMajd Dibbiny 	case 1024: return 3;
342*1b5daf11SMajd Dibbiny 	case 2048: return 4;
343*1b5daf11SMajd Dibbiny 	case 4096: return 5;
344*1b5daf11SMajd Dibbiny 	default:
345*1b5daf11SMajd Dibbiny 		pr_warn("invalid mtu\n");
346*1b5daf11SMajd Dibbiny 		return -1;
347*1b5daf11SMajd Dibbiny 	}
348*1b5daf11SMajd Dibbiny }
349*1b5daf11SMajd Dibbiny 
350*1b5daf11SMajd Dibbiny enum ib_max_vl_num {
351*1b5daf11SMajd Dibbiny 	__IB_MAX_VL_0		= 1,
352*1b5daf11SMajd Dibbiny 	__IB_MAX_VL_0_1		= 2,
353*1b5daf11SMajd Dibbiny 	__IB_MAX_VL_0_3		= 3,
354*1b5daf11SMajd Dibbiny 	__IB_MAX_VL_0_7		= 4,
355*1b5daf11SMajd Dibbiny 	__IB_MAX_VL_0_14	= 5,
356*1b5daf11SMajd Dibbiny };
357*1b5daf11SMajd Dibbiny 
358*1b5daf11SMajd Dibbiny enum mlx5_vl_hw_cap {
359*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0	= 1,
360*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_1	= 2,
361*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_2	= 3,
362*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_3	= 4,
363*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_4	= 5,
364*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_5	= 6,
365*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_6	= 7,
366*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_7	= 8,
367*1b5daf11SMajd Dibbiny 	MLX5_VL_HW_0_14	= 15
368*1b5daf11SMajd Dibbiny };
369*1b5daf11SMajd Dibbiny 
370*1b5daf11SMajd Dibbiny static int translate_max_vl_num(struct ib_device *ibdev, u8 vl_hw_cap,
371*1b5daf11SMajd Dibbiny 				u8 *max_vl_num)
372*1b5daf11SMajd Dibbiny {
373*1b5daf11SMajd Dibbiny 	switch (vl_hw_cap) {
374*1b5daf11SMajd Dibbiny 	case MLX5_VL_HW_0:
375*1b5daf11SMajd Dibbiny 		*max_vl_num = __IB_MAX_VL_0;
376*1b5daf11SMajd Dibbiny 		break;
377*1b5daf11SMajd Dibbiny 	case MLX5_VL_HW_0_1:
378*1b5daf11SMajd Dibbiny 		*max_vl_num = __IB_MAX_VL_0_1;
379*1b5daf11SMajd Dibbiny 		break;
380*1b5daf11SMajd Dibbiny 	case MLX5_VL_HW_0_3:
381*1b5daf11SMajd Dibbiny 		*max_vl_num = __IB_MAX_VL_0_3;
382*1b5daf11SMajd Dibbiny 		break;
383*1b5daf11SMajd Dibbiny 	case MLX5_VL_HW_0_7:
384*1b5daf11SMajd Dibbiny 		*max_vl_num = __IB_MAX_VL_0_7;
385*1b5daf11SMajd Dibbiny 		break;
386*1b5daf11SMajd Dibbiny 	case MLX5_VL_HW_0_14:
387*1b5daf11SMajd Dibbiny 		*max_vl_num = __IB_MAX_VL_0_14;
388*1b5daf11SMajd Dibbiny 		break;
389*1b5daf11SMajd Dibbiny 
390*1b5daf11SMajd Dibbiny 	default:
391*1b5daf11SMajd Dibbiny 		return -EINVAL;
392*1b5daf11SMajd Dibbiny 	}
393*1b5daf11SMajd Dibbiny 
394*1b5daf11SMajd Dibbiny 	return 0;
395*1b5daf11SMajd Dibbiny }
396*1b5daf11SMajd Dibbiny 
397*1b5daf11SMajd Dibbiny static int mlx5_query_hca_port(struct ib_device *ibdev, u8 port,
398*1b5daf11SMajd Dibbiny 			       struct ib_port_attr *props)
399*1b5daf11SMajd Dibbiny {
400*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
401*1b5daf11SMajd Dibbiny 	struct mlx5_core_dev *mdev = dev->mdev;
402*1b5daf11SMajd Dibbiny 	struct mlx5_hca_vport_context *rep;
403*1b5daf11SMajd Dibbiny 	int max_mtu;
404*1b5daf11SMajd Dibbiny 	int oper_mtu;
405*1b5daf11SMajd Dibbiny 	int err;
406*1b5daf11SMajd Dibbiny 	u8 ib_link_width_oper;
407*1b5daf11SMajd Dibbiny 	u8 vl_hw_cap;
408*1b5daf11SMajd Dibbiny 
409*1b5daf11SMajd Dibbiny 	rep = kzalloc(sizeof(*rep), GFP_KERNEL);
410*1b5daf11SMajd Dibbiny 	if (!rep) {
411*1b5daf11SMajd Dibbiny 		err = -ENOMEM;
412*1b5daf11SMajd Dibbiny 		goto out;
413*1b5daf11SMajd Dibbiny 	}
414*1b5daf11SMajd Dibbiny 
415*1b5daf11SMajd Dibbiny 	memset(props, 0, sizeof(*props));
416*1b5daf11SMajd Dibbiny 
417*1b5daf11SMajd Dibbiny 	err = mlx5_query_hca_vport_context(mdev, 0, port, 0, rep);
418*1b5daf11SMajd Dibbiny 	if (err)
419*1b5daf11SMajd Dibbiny 		goto out;
420*1b5daf11SMajd Dibbiny 
421*1b5daf11SMajd Dibbiny 	props->lid		= rep->lid;
422*1b5daf11SMajd Dibbiny 	props->lmc		= rep->lmc;
423*1b5daf11SMajd Dibbiny 	props->sm_lid		= rep->sm_lid;
424*1b5daf11SMajd Dibbiny 	props->sm_sl		= rep->sm_sl;
425*1b5daf11SMajd Dibbiny 	props->state		= rep->vport_state;
426*1b5daf11SMajd Dibbiny 	props->phys_state	= rep->port_physical_state;
427*1b5daf11SMajd Dibbiny 	props->port_cap_flags	= rep->cap_mask1;
428*1b5daf11SMajd Dibbiny 	props->gid_tbl_len	= mlx5_get_gid_table_len(MLX5_CAP_GEN(mdev, gid_table_size));
429*1b5daf11SMajd Dibbiny 	props->max_msg_sz	= 1 << MLX5_CAP_GEN(mdev, log_max_msg);
430*1b5daf11SMajd Dibbiny 	props->pkey_tbl_len	= mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(mdev, pkey_table_size));
431*1b5daf11SMajd Dibbiny 	props->bad_pkey_cntr	= rep->pkey_violation_counter;
432*1b5daf11SMajd Dibbiny 	props->qkey_viol_cntr	= rep->qkey_violation_counter;
433*1b5daf11SMajd Dibbiny 	props->subnet_timeout	= rep->subnet_timeout;
434*1b5daf11SMajd Dibbiny 	props->init_type_reply	= rep->init_type_reply;
435*1b5daf11SMajd Dibbiny 
436*1b5daf11SMajd Dibbiny 	err = mlx5_query_port_link_width_oper(mdev, &ib_link_width_oper, port);
437*1b5daf11SMajd Dibbiny 	if (err)
438*1b5daf11SMajd Dibbiny 		goto out;
439*1b5daf11SMajd Dibbiny 
440*1b5daf11SMajd Dibbiny 	err = translate_active_width(ibdev, ib_link_width_oper,
441*1b5daf11SMajd Dibbiny 				     &props->active_width);
442*1b5daf11SMajd Dibbiny 	if (err)
443*1b5daf11SMajd Dibbiny 		goto out;
444*1b5daf11SMajd Dibbiny 	err = mlx5_query_port_proto_oper(mdev, &props->active_speed, MLX5_PTYS_IB,
445*1b5daf11SMajd Dibbiny 					 port);
446*1b5daf11SMajd Dibbiny 	if (err)
447*1b5daf11SMajd Dibbiny 		goto out;
448*1b5daf11SMajd Dibbiny 
449*1b5daf11SMajd Dibbiny 	err = mlx5_query_port_max_mtu(mdev, &max_mtu, port);
450*1b5daf11SMajd Dibbiny 	if (err)
451*1b5daf11SMajd Dibbiny 		goto out;
452*1b5daf11SMajd Dibbiny 
453*1b5daf11SMajd Dibbiny 	props->max_mtu = mlx5_mtu_to_ib_mtu(max_mtu);
454*1b5daf11SMajd Dibbiny 
455*1b5daf11SMajd Dibbiny 	err = mlx5_query_port_oper_mtu(mdev, &oper_mtu, port);
456*1b5daf11SMajd Dibbiny 	if (err)
457*1b5daf11SMajd Dibbiny 		goto out;
458*1b5daf11SMajd Dibbiny 
459*1b5daf11SMajd Dibbiny 	props->active_mtu = mlx5_mtu_to_ib_mtu(oper_mtu);
460*1b5daf11SMajd Dibbiny 
461*1b5daf11SMajd Dibbiny 	err = mlx5_query_port_vl_hw_cap(mdev, &vl_hw_cap, port);
462*1b5daf11SMajd Dibbiny 	if (err)
463*1b5daf11SMajd Dibbiny 		goto out;
464*1b5daf11SMajd Dibbiny 
465*1b5daf11SMajd Dibbiny 	err = translate_max_vl_num(ibdev, vl_hw_cap,
466*1b5daf11SMajd Dibbiny 				   &props->max_vl_num);
467*1b5daf11SMajd Dibbiny out:
468*1b5daf11SMajd Dibbiny 	kfree(rep);
469e126ba97SEli Cohen 	return err;
470e126ba97SEli Cohen }
471e126ba97SEli Cohen 
472e126ba97SEli Cohen int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
473e126ba97SEli Cohen 		       struct ib_port_attr *props)
474e126ba97SEli Cohen {
475*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
476*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
477*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_port(ibdev, port, props);
478e126ba97SEli Cohen 
479*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
480*1b5daf11SMajd Dibbiny 		return mlx5_query_hca_port(ibdev, port, props);
481*1b5daf11SMajd Dibbiny 
482*1b5daf11SMajd Dibbiny 	default:
483e126ba97SEli Cohen 		return -EINVAL;
484e126ba97SEli Cohen 	}
485e126ba97SEli Cohen }
486e126ba97SEli Cohen 
487e126ba97SEli Cohen static int mlx5_ib_query_gid(struct ib_device *ibdev, u8 port, int index,
488e126ba97SEli Cohen 			     union ib_gid *gid)
489e126ba97SEli Cohen {
490*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
491*1b5daf11SMajd Dibbiny 	struct mlx5_core_dev *mdev = dev->mdev;
492e126ba97SEli Cohen 
493*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
494*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
495*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_gids(ibdev, port, index, gid);
496e126ba97SEli Cohen 
497*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
498*1b5daf11SMajd Dibbiny 		return mlx5_query_hca_vport_gid(mdev, 0, port, 0, index, gid);
499e126ba97SEli Cohen 
500*1b5daf11SMajd Dibbiny 	default:
501*1b5daf11SMajd Dibbiny 		return -EINVAL;
502*1b5daf11SMajd Dibbiny 	}
503e126ba97SEli Cohen 
504e126ba97SEli Cohen }
505e126ba97SEli Cohen 
506e126ba97SEli Cohen static int mlx5_ib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
507e126ba97SEli Cohen 			      u16 *pkey)
508e126ba97SEli Cohen {
509*1b5daf11SMajd Dibbiny 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
510*1b5daf11SMajd Dibbiny 	struct mlx5_core_dev *mdev = dev->mdev;
511e126ba97SEli Cohen 
512*1b5daf11SMajd Dibbiny 	switch (mlx5_get_vport_access_method(ibdev)) {
513*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_MAD:
514*1b5daf11SMajd Dibbiny 		return mlx5_query_mad_ifc_pkey(ibdev, port, index, pkey);
515e126ba97SEli Cohen 
516*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_HCA:
517*1b5daf11SMajd Dibbiny 	case MLX5_VPORT_ACCESS_METHOD_NIC:
518*1b5daf11SMajd Dibbiny 		return mlx5_query_hca_vport_pkey(mdev, 0, port,  0, index,
519*1b5daf11SMajd Dibbiny 						 pkey);
520*1b5daf11SMajd Dibbiny 	default:
521*1b5daf11SMajd Dibbiny 		return -EINVAL;
522e126ba97SEli Cohen 	}
523*1b5daf11SMajd Dibbiny }
524e126ba97SEli Cohen 
525e126ba97SEli Cohen static int mlx5_ib_modify_device(struct ib_device *ibdev, int mask,
526e126ba97SEli Cohen 				 struct ib_device_modify *props)
527e126ba97SEli Cohen {
528e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
529e126ba97SEli Cohen 	struct mlx5_reg_node_desc in;
530e126ba97SEli Cohen 	struct mlx5_reg_node_desc out;
531e126ba97SEli Cohen 	int err;
532e126ba97SEli Cohen 
533e126ba97SEli Cohen 	if (mask & ~IB_DEVICE_MODIFY_NODE_DESC)
534e126ba97SEli Cohen 		return -EOPNOTSUPP;
535e126ba97SEli Cohen 
536e126ba97SEli Cohen 	if (!(mask & IB_DEVICE_MODIFY_NODE_DESC))
537e126ba97SEli Cohen 		return 0;
538e126ba97SEli Cohen 
539e126ba97SEli Cohen 	/*
540e126ba97SEli Cohen 	 * If possible, pass node desc to FW, so it can generate
541e126ba97SEli Cohen 	 * a 144 trap.  If cmd fails, just ignore.
542e126ba97SEli Cohen 	 */
543e126ba97SEli Cohen 	memcpy(&in, props->node_desc, 64);
5449603b61dSJack Morgenstein 	err = mlx5_core_access_reg(dev->mdev, &in, sizeof(in), &out,
545e126ba97SEli Cohen 				   sizeof(out), MLX5_REG_NODE_DESC, 0, 1);
546e126ba97SEli Cohen 	if (err)
547e126ba97SEli Cohen 		return err;
548e126ba97SEli Cohen 
549e126ba97SEli Cohen 	memcpy(ibdev->node_desc, props->node_desc, 64);
550e126ba97SEli Cohen 
551e126ba97SEli Cohen 	return err;
552e126ba97SEli Cohen }
553e126ba97SEli Cohen 
554e126ba97SEli Cohen static int mlx5_ib_modify_port(struct ib_device *ibdev, u8 port, int mask,
555e126ba97SEli Cohen 			       struct ib_port_modify *props)
556e126ba97SEli Cohen {
557e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
558e126ba97SEli Cohen 	struct ib_port_attr attr;
559e126ba97SEli Cohen 	u32 tmp;
560e126ba97SEli Cohen 	int err;
561e126ba97SEli Cohen 
562e126ba97SEli Cohen 	mutex_lock(&dev->cap_mask_mutex);
563e126ba97SEli Cohen 
564e126ba97SEli Cohen 	err = mlx5_ib_query_port(ibdev, port, &attr);
565e126ba97SEli Cohen 	if (err)
566e126ba97SEli Cohen 		goto out;
567e126ba97SEli Cohen 
568e126ba97SEli Cohen 	tmp = (attr.port_cap_flags | props->set_port_cap_mask) &
569e126ba97SEli Cohen 		~props->clr_port_cap_mask;
570e126ba97SEli Cohen 
5719603b61dSJack Morgenstein 	err = mlx5_set_port_caps(dev->mdev, port, tmp);
572e126ba97SEli Cohen 
573e126ba97SEli Cohen out:
574e126ba97SEli Cohen 	mutex_unlock(&dev->cap_mask_mutex);
575e126ba97SEli Cohen 	return err;
576e126ba97SEli Cohen }
577e126ba97SEli Cohen 
578e126ba97SEli Cohen static struct ib_ucontext *mlx5_ib_alloc_ucontext(struct ib_device *ibdev,
579e126ba97SEli Cohen 						  struct ib_udata *udata)
580e126ba97SEli Cohen {
581e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibdev);
58278c0f98cSEli Cohen 	struct mlx5_ib_alloc_ucontext_req_v2 req;
583e126ba97SEli Cohen 	struct mlx5_ib_alloc_ucontext_resp resp;
584e126ba97SEli Cohen 	struct mlx5_ib_ucontext *context;
585e126ba97SEli Cohen 	struct mlx5_uuar_info *uuari;
586e126ba97SEli Cohen 	struct mlx5_uar *uars;
587c1be5232SEli Cohen 	int gross_uuars;
588e126ba97SEli Cohen 	int num_uars;
58978c0f98cSEli Cohen 	int ver;
590e126ba97SEli Cohen 	int uuarn;
591e126ba97SEli Cohen 	int err;
592e126ba97SEli Cohen 	int i;
593f241e749SJack Morgenstein 	size_t reqlen;
594e126ba97SEli Cohen 
595e126ba97SEli Cohen 	if (!dev->ib_active)
596e126ba97SEli Cohen 		return ERR_PTR(-EAGAIN);
597e126ba97SEli Cohen 
59878c0f98cSEli Cohen 	memset(&req, 0, sizeof(req));
59978c0f98cSEli Cohen 	reqlen = udata->inlen - sizeof(struct ib_uverbs_cmd_hdr);
60078c0f98cSEli Cohen 	if (reqlen == sizeof(struct mlx5_ib_alloc_ucontext_req))
60178c0f98cSEli Cohen 		ver = 0;
60278c0f98cSEli Cohen 	else if (reqlen == sizeof(struct mlx5_ib_alloc_ucontext_req_v2))
60378c0f98cSEli Cohen 		ver = 2;
60478c0f98cSEli Cohen 	else
60578c0f98cSEli Cohen 		return ERR_PTR(-EINVAL);
60678c0f98cSEli Cohen 
60778c0f98cSEli Cohen 	err = ib_copy_from_udata(&req, udata, reqlen);
608e126ba97SEli Cohen 	if (err)
609e126ba97SEli Cohen 		return ERR_PTR(err);
610e126ba97SEli Cohen 
61178c0f98cSEli Cohen 	if (req.flags || req.reserved)
61278c0f98cSEli Cohen 		return ERR_PTR(-EINVAL);
61378c0f98cSEli Cohen 
614e126ba97SEli Cohen 	if (req.total_num_uuars > MLX5_MAX_UUARS)
615e126ba97SEli Cohen 		return ERR_PTR(-ENOMEM);
616e126ba97SEli Cohen 
617e126ba97SEli Cohen 	if (req.total_num_uuars == 0)
618e126ba97SEli Cohen 		return ERR_PTR(-EINVAL);
619e126ba97SEli Cohen 
620c1be5232SEli Cohen 	req.total_num_uuars = ALIGN(req.total_num_uuars,
621c1be5232SEli Cohen 				    MLX5_NON_FP_BF_REGS_PER_PAGE);
622e126ba97SEli Cohen 	if (req.num_low_latency_uuars > req.total_num_uuars - 1)
623e126ba97SEli Cohen 		return ERR_PTR(-EINVAL);
624e126ba97SEli Cohen 
625c1be5232SEli Cohen 	num_uars = req.total_num_uuars / MLX5_NON_FP_BF_REGS_PER_PAGE;
626c1be5232SEli Cohen 	gross_uuars = num_uars * MLX5_BF_REGS_PER_PAGE;
627938fe83cSSaeed Mahameed 	resp.qp_tab_size = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp);
628938fe83cSSaeed Mahameed 	resp.bf_reg_size = 1 << MLX5_CAP_GEN(dev->mdev, log_bf_reg_size);
629e126ba97SEli Cohen 	resp.cache_line_size = L1_CACHE_BYTES;
630938fe83cSSaeed Mahameed 	resp.max_sq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_sq);
631938fe83cSSaeed Mahameed 	resp.max_rq_desc_sz = MLX5_CAP_GEN(dev->mdev, max_wqe_sz_rq);
632938fe83cSSaeed Mahameed 	resp.max_send_wqebb = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
633938fe83cSSaeed Mahameed 	resp.max_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_qp_sz);
634938fe83cSSaeed Mahameed 	resp.max_srq_recv_wr = 1 << MLX5_CAP_GEN(dev->mdev, log_max_srq_sz);
635e126ba97SEli Cohen 
636e126ba97SEli Cohen 	context = kzalloc(sizeof(*context), GFP_KERNEL);
637e126ba97SEli Cohen 	if (!context)
638e126ba97SEli Cohen 		return ERR_PTR(-ENOMEM);
639e126ba97SEli Cohen 
640e126ba97SEli Cohen 	uuari = &context->uuari;
641e126ba97SEli Cohen 	mutex_init(&uuari->lock);
642e126ba97SEli Cohen 	uars = kcalloc(num_uars, sizeof(*uars), GFP_KERNEL);
643e126ba97SEli Cohen 	if (!uars) {
644e126ba97SEli Cohen 		err = -ENOMEM;
645e126ba97SEli Cohen 		goto out_ctx;
646e126ba97SEli Cohen 	}
647e126ba97SEli Cohen 
648c1be5232SEli Cohen 	uuari->bitmap = kcalloc(BITS_TO_LONGS(gross_uuars),
649e126ba97SEli Cohen 				sizeof(*uuari->bitmap),
650e126ba97SEli Cohen 				GFP_KERNEL);
651e126ba97SEli Cohen 	if (!uuari->bitmap) {
652e126ba97SEli Cohen 		err = -ENOMEM;
653e126ba97SEli Cohen 		goto out_uar_ctx;
654e126ba97SEli Cohen 	}
655e126ba97SEli Cohen 	/*
656e126ba97SEli Cohen 	 * clear all fast path uuars
657e126ba97SEli Cohen 	 */
658c1be5232SEli Cohen 	for (i = 0; i < gross_uuars; i++) {
659e126ba97SEli Cohen 		uuarn = i & 3;
660e126ba97SEli Cohen 		if (uuarn == 2 || uuarn == 3)
661e126ba97SEli Cohen 			set_bit(i, uuari->bitmap);
662e126ba97SEli Cohen 	}
663e126ba97SEli Cohen 
664c1be5232SEli Cohen 	uuari->count = kcalloc(gross_uuars, sizeof(*uuari->count), GFP_KERNEL);
665e126ba97SEli Cohen 	if (!uuari->count) {
666e126ba97SEli Cohen 		err = -ENOMEM;
667e126ba97SEli Cohen 		goto out_bitmap;
668e126ba97SEli Cohen 	}
669e126ba97SEli Cohen 
670e126ba97SEli Cohen 	for (i = 0; i < num_uars; i++) {
6719603b61dSJack Morgenstein 		err = mlx5_cmd_alloc_uar(dev->mdev, &uars[i].index);
672e126ba97SEli Cohen 		if (err)
673e126ba97SEli Cohen 			goto out_count;
674e126ba97SEli Cohen 	}
675e126ba97SEli Cohen 
676b4cfe447SHaggai Eran #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
677b4cfe447SHaggai Eran 	context->ibucontext.invalidate_range = &mlx5_ib_invalidate_range;
678b4cfe447SHaggai Eran #endif
679b4cfe447SHaggai Eran 
680e126ba97SEli Cohen 	INIT_LIST_HEAD(&context->db_page_list);
681e126ba97SEli Cohen 	mutex_init(&context->db_page_mutex);
682e126ba97SEli Cohen 
683e126ba97SEli Cohen 	resp.tot_uuars = req.total_num_uuars;
684938fe83cSSaeed Mahameed 	resp.num_ports = MLX5_CAP_GEN(dev->mdev, num_ports);
68592b0ca7cSDan Carpenter 	err = ib_copy_to_udata(udata, &resp,
68692b0ca7cSDan Carpenter 			       sizeof(resp) - sizeof(resp.reserved));
687e126ba97SEli Cohen 	if (err)
688e126ba97SEli Cohen 		goto out_uars;
689e126ba97SEli Cohen 
69078c0f98cSEli Cohen 	uuari->ver = ver;
691e126ba97SEli Cohen 	uuari->num_low_latency_uuars = req.num_low_latency_uuars;
692e126ba97SEli Cohen 	uuari->uars = uars;
693e126ba97SEli Cohen 	uuari->num_uars = num_uars;
694e126ba97SEli Cohen 	return &context->ibucontext;
695e126ba97SEli Cohen 
696e126ba97SEli Cohen out_uars:
697e126ba97SEli Cohen 	for (i--; i >= 0; i--)
6989603b61dSJack Morgenstein 		mlx5_cmd_free_uar(dev->mdev, uars[i].index);
699e126ba97SEli Cohen out_count:
700e126ba97SEli Cohen 	kfree(uuari->count);
701e126ba97SEli Cohen 
702e126ba97SEli Cohen out_bitmap:
703e126ba97SEli Cohen 	kfree(uuari->bitmap);
704e126ba97SEli Cohen 
705e126ba97SEli Cohen out_uar_ctx:
706e126ba97SEli Cohen 	kfree(uars);
707e126ba97SEli Cohen 
708e126ba97SEli Cohen out_ctx:
709e126ba97SEli Cohen 	kfree(context);
710e126ba97SEli Cohen 	return ERR_PTR(err);
711e126ba97SEli Cohen }
712e126ba97SEli Cohen 
713e126ba97SEli Cohen static int mlx5_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
714e126ba97SEli Cohen {
715e126ba97SEli Cohen 	struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
716e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
717e126ba97SEli Cohen 	struct mlx5_uuar_info *uuari = &context->uuari;
718e126ba97SEli Cohen 	int i;
719e126ba97SEli Cohen 
720e126ba97SEli Cohen 	for (i = 0; i < uuari->num_uars; i++) {
7219603b61dSJack Morgenstein 		if (mlx5_cmd_free_uar(dev->mdev, uuari->uars[i].index))
722e126ba97SEli Cohen 			mlx5_ib_warn(dev, "failed to free UAR 0x%x\n", uuari->uars[i].index);
723e126ba97SEli Cohen 	}
724e126ba97SEli Cohen 
725e126ba97SEli Cohen 	kfree(uuari->count);
726e126ba97SEli Cohen 	kfree(uuari->bitmap);
727e126ba97SEli Cohen 	kfree(uuari->uars);
728e126ba97SEli Cohen 	kfree(context);
729e126ba97SEli Cohen 
730e126ba97SEli Cohen 	return 0;
731e126ba97SEli Cohen }
732e126ba97SEli Cohen 
733e126ba97SEli Cohen static phys_addr_t uar_index2pfn(struct mlx5_ib_dev *dev, int index)
734e126ba97SEli Cohen {
7359603b61dSJack Morgenstein 	return (pci_resource_start(dev->mdev->pdev, 0) >> PAGE_SHIFT) + index;
736e126ba97SEli Cohen }
737e126ba97SEli Cohen 
738e126ba97SEli Cohen static int get_command(unsigned long offset)
739e126ba97SEli Cohen {
740e126ba97SEli Cohen 	return (offset >> MLX5_IB_MMAP_CMD_SHIFT) & MLX5_IB_MMAP_CMD_MASK;
741e126ba97SEli Cohen }
742e126ba97SEli Cohen 
743e126ba97SEli Cohen static int get_arg(unsigned long offset)
744e126ba97SEli Cohen {
745e126ba97SEli Cohen 	return offset & ((1 << MLX5_IB_MMAP_CMD_SHIFT) - 1);
746e126ba97SEli Cohen }
747e126ba97SEli Cohen 
748e126ba97SEli Cohen static int get_index(unsigned long offset)
749e126ba97SEli Cohen {
750e126ba97SEli Cohen 	return get_arg(offset);
751e126ba97SEli Cohen }
752e126ba97SEli Cohen 
753e126ba97SEli Cohen static int mlx5_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma)
754e126ba97SEli Cohen {
755e126ba97SEli Cohen 	struct mlx5_ib_ucontext *context = to_mucontext(ibcontext);
756e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibcontext->device);
757e126ba97SEli Cohen 	struct mlx5_uuar_info *uuari = &context->uuari;
758e126ba97SEli Cohen 	unsigned long command;
759e126ba97SEli Cohen 	unsigned long idx;
760e126ba97SEli Cohen 	phys_addr_t pfn;
761e126ba97SEli Cohen 
762e126ba97SEli Cohen 	command = get_command(vma->vm_pgoff);
763e126ba97SEli Cohen 	switch (command) {
764e126ba97SEli Cohen 	case MLX5_IB_MMAP_REGULAR_PAGE:
765e126ba97SEli Cohen 		if (vma->vm_end - vma->vm_start != PAGE_SIZE)
766e126ba97SEli Cohen 			return -EINVAL;
767e126ba97SEli Cohen 
768e126ba97SEli Cohen 		idx = get_index(vma->vm_pgoff);
7691c3ce90dSEli Cohen 		if (idx >= uuari->num_uars)
7701c3ce90dSEli Cohen 			return -EINVAL;
7711c3ce90dSEli Cohen 
772e126ba97SEli Cohen 		pfn = uar_index2pfn(dev, uuari->uars[idx].index);
773e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "uar idx 0x%lx, pfn 0x%llx\n", idx,
774e126ba97SEli Cohen 			    (unsigned long long)pfn);
775e126ba97SEli Cohen 
776e126ba97SEli Cohen 		vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
777e126ba97SEli Cohen 		if (io_remap_pfn_range(vma, vma->vm_start, pfn,
778e126ba97SEli Cohen 				       PAGE_SIZE, vma->vm_page_prot))
779e126ba97SEli Cohen 			return -EAGAIN;
780e126ba97SEli Cohen 
781e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "mapped WC at 0x%lx, PA 0x%llx\n",
782e126ba97SEli Cohen 			    vma->vm_start,
783e126ba97SEli Cohen 			    (unsigned long long)pfn << PAGE_SHIFT);
784e126ba97SEli Cohen 		break;
785e126ba97SEli Cohen 
786e126ba97SEli Cohen 	case MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES:
787e126ba97SEli Cohen 		return -ENOSYS;
788e126ba97SEli Cohen 
789e126ba97SEli Cohen 	default:
790e126ba97SEli Cohen 		return -EINVAL;
791e126ba97SEli Cohen 	}
792e126ba97SEli Cohen 
793e126ba97SEli Cohen 	return 0;
794e126ba97SEli Cohen }
795e126ba97SEli Cohen 
796e126ba97SEli Cohen static int alloc_pa_mkey(struct mlx5_ib_dev *dev, u32 *key, u32 pdn)
797e126ba97SEli Cohen {
798e126ba97SEli Cohen 	struct mlx5_create_mkey_mbox_in *in;
799e126ba97SEli Cohen 	struct mlx5_mkey_seg *seg;
800e126ba97SEli Cohen 	struct mlx5_core_mr mr;
801e126ba97SEli Cohen 	int err;
802e126ba97SEli Cohen 
803e126ba97SEli Cohen 	in = kzalloc(sizeof(*in), GFP_KERNEL);
804e126ba97SEli Cohen 	if (!in)
805e126ba97SEli Cohen 		return -ENOMEM;
806e126ba97SEli Cohen 
807e126ba97SEli Cohen 	seg = &in->seg;
808e126ba97SEli Cohen 	seg->flags = MLX5_PERM_LOCAL_READ | MLX5_ACCESS_MODE_PA;
809e126ba97SEli Cohen 	seg->flags_pd = cpu_to_be32(pdn | MLX5_MKEY_LEN64);
810e126ba97SEli Cohen 	seg->qpn_mkey7_0 = cpu_to_be32(0xffffff << 8);
811e126ba97SEli Cohen 	seg->start_addr = 0;
812e126ba97SEli Cohen 
8139603b61dSJack Morgenstein 	err = mlx5_core_create_mkey(dev->mdev, &mr, in, sizeof(*in),
814746b5583SEli Cohen 				    NULL, NULL, NULL);
815e126ba97SEli Cohen 	if (err) {
816e126ba97SEli Cohen 		mlx5_ib_warn(dev, "failed to create mkey, %d\n", err);
817e126ba97SEli Cohen 		goto err_in;
818e126ba97SEli Cohen 	}
819e126ba97SEli Cohen 
820e126ba97SEli Cohen 	kfree(in);
821e126ba97SEli Cohen 	*key = mr.key;
822e126ba97SEli Cohen 
823e126ba97SEli Cohen 	return 0;
824e126ba97SEli Cohen 
825e126ba97SEli Cohen err_in:
826e126ba97SEli Cohen 	kfree(in);
827e126ba97SEli Cohen 
828e126ba97SEli Cohen 	return err;
829e126ba97SEli Cohen }
830e126ba97SEli Cohen 
831e126ba97SEli Cohen static void free_pa_mkey(struct mlx5_ib_dev *dev, u32 key)
832e126ba97SEli Cohen {
833e126ba97SEli Cohen 	struct mlx5_core_mr mr;
834e126ba97SEli Cohen 	int err;
835e126ba97SEli Cohen 
836e126ba97SEli Cohen 	memset(&mr, 0, sizeof(mr));
837e126ba97SEli Cohen 	mr.key = key;
8389603b61dSJack Morgenstein 	err = mlx5_core_destroy_mkey(dev->mdev, &mr);
839e126ba97SEli Cohen 	if (err)
840e126ba97SEli Cohen 		mlx5_ib_warn(dev, "failed to destroy mkey 0x%x\n", key);
841e126ba97SEli Cohen }
842e126ba97SEli Cohen 
843e126ba97SEli Cohen static struct ib_pd *mlx5_ib_alloc_pd(struct ib_device *ibdev,
844e126ba97SEli Cohen 				      struct ib_ucontext *context,
845e126ba97SEli Cohen 				      struct ib_udata *udata)
846e126ba97SEli Cohen {
847e126ba97SEli Cohen 	struct mlx5_ib_alloc_pd_resp resp;
848e126ba97SEli Cohen 	struct mlx5_ib_pd *pd;
849e126ba97SEli Cohen 	int err;
850e126ba97SEli Cohen 
851e126ba97SEli Cohen 	pd = kmalloc(sizeof(*pd), GFP_KERNEL);
852e126ba97SEli Cohen 	if (!pd)
853e126ba97SEli Cohen 		return ERR_PTR(-ENOMEM);
854e126ba97SEli Cohen 
8559603b61dSJack Morgenstein 	err = mlx5_core_alloc_pd(to_mdev(ibdev)->mdev, &pd->pdn);
856e126ba97SEli Cohen 	if (err) {
857e126ba97SEli Cohen 		kfree(pd);
858e126ba97SEli Cohen 		return ERR_PTR(err);
859e126ba97SEli Cohen 	}
860e126ba97SEli Cohen 
861e126ba97SEli Cohen 	if (context) {
862e126ba97SEli Cohen 		resp.pdn = pd->pdn;
863e126ba97SEli Cohen 		if (ib_copy_to_udata(udata, &resp, sizeof(resp))) {
8649603b61dSJack Morgenstein 			mlx5_core_dealloc_pd(to_mdev(ibdev)->mdev, pd->pdn);
865e126ba97SEli Cohen 			kfree(pd);
866e126ba97SEli Cohen 			return ERR_PTR(-EFAULT);
867e126ba97SEli Cohen 		}
868e126ba97SEli Cohen 	} else {
869e126ba97SEli Cohen 		err = alloc_pa_mkey(to_mdev(ibdev), &pd->pa_lkey, pd->pdn);
870e126ba97SEli Cohen 		if (err) {
8719603b61dSJack Morgenstein 			mlx5_core_dealloc_pd(to_mdev(ibdev)->mdev, pd->pdn);
872e126ba97SEli Cohen 			kfree(pd);
873e126ba97SEli Cohen 			return ERR_PTR(err);
874e126ba97SEli Cohen 		}
875e126ba97SEli Cohen 	}
876e126ba97SEli Cohen 
877e126ba97SEli Cohen 	return &pd->ibpd;
878e126ba97SEli Cohen }
879e126ba97SEli Cohen 
880e126ba97SEli Cohen static int mlx5_ib_dealloc_pd(struct ib_pd *pd)
881e126ba97SEli Cohen {
882e126ba97SEli Cohen 	struct mlx5_ib_dev *mdev = to_mdev(pd->device);
883e126ba97SEli Cohen 	struct mlx5_ib_pd *mpd = to_mpd(pd);
884e126ba97SEli Cohen 
885e126ba97SEli Cohen 	if (!pd->uobject)
886e126ba97SEli Cohen 		free_pa_mkey(mdev, mpd->pa_lkey);
887e126ba97SEli Cohen 
8889603b61dSJack Morgenstein 	mlx5_core_dealloc_pd(mdev->mdev, mpd->pdn);
889e126ba97SEli Cohen 	kfree(mpd);
890e126ba97SEli Cohen 
891e126ba97SEli Cohen 	return 0;
892e126ba97SEli Cohen }
893e126ba97SEli Cohen 
894e126ba97SEli Cohen static int mlx5_ib_mcg_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
895e126ba97SEli Cohen {
896e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
897e126ba97SEli Cohen 	int err;
898e126ba97SEli Cohen 
8999603b61dSJack Morgenstein 	err = mlx5_core_attach_mcg(dev->mdev, gid, ibqp->qp_num);
900e126ba97SEli Cohen 	if (err)
901e126ba97SEli Cohen 		mlx5_ib_warn(dev, "failed attaching QPN 0x%x, MGID %pI6\n",
902e126ba97SEli Cohen 			     ibqp->qp_num, gid->raw);
903e126ba97SEli Cohen 
904e126ba97SEli Cohen 	return err;
905e126ba97SEli Cohen }
906e126ba97SEli Cohen 
907e126ba97SEli Cohen static int mlx5_ib_mcg_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
908e126ba97SEli Cohen {
909e126ba97SEli Cohen 	struct mlx5_ib_dev *dev = to_mdev(ibqp->device);
910e126ba97SEli Cohen 	int err;
911e126ba97SEli Cohen 
9129603b61dSJack Morgenstein 	err = mlx5_core_detach_mcg(dev->mdev, gid, ibqp->qp_num);
913e126ba97SEli Cohen 	if (err)
914e126ba97SEli Cohen 		mlx5_ib_warn(dev, "failed detaching QPN 0x%x, MGID %pI6\n",
915e126ba97SEli Cohen 			     ibqp->qp_num, gid->raw);
916e126ba97SEli Cohen 
917e126ba97SEli Cohen 	return err;
918e126ba97SEli Cohen }
919e126ba97SEli Cohen 
920e126ba97SEli Cohen static int init_node_data(struct mlx5_ib_dev *dev)
921e126ba97SEli Cohen {
922*1b5daf11SMajd Dibbiny 	int err;
923e126ba97SEli Cohen 
924*1b5daf11SMajd Dibbiny 	err = mlx5_query_node_desc(dev, dev->ib_dev.node_desc);
925e126ba97SEli Cohen 	if (err)
926e126ba97SEli Cohen 		return err;
927*1b5daf11SMajd Dibbiny 
928*1b5daf11SMajd Dibbiny 	dev->mdev->rev_id = dev->mdev->pdev->revision;
929*1b5daf11SMajd Dibbiny 
930*1b5daf11SMajd Dibbiny 	return mlx5_query_node_guid(dev, &dev->ib_dev.node_guid);
931e126ba97SEli Cohen }
932e126ba97SEli Cohen 
933e126ba97SEli Cohen static ssize_t show_fw_pages(struct device *device, struct device_attribute *attr,
934e126ba97SEli Cohen 			     char *buf)
935e126ba97SEli Cohen {
936e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
937e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
938e126ba97SEli Cohen 
9399603b61dSJack Morgenstein 	return sprintf(buf, "%d\n", dev->mdev->priv.fw_pages);
940e126ba97SEli Cohen }
941e126ba97SEli Cohen 
942e126ba97SEli Cohen static ssize_t show_reg_pages(struct device *device,
943e126ba97SEli Cohen 			      struct device_attribute *attr, char *buf)
944e126ba97SEli Cohen {
945e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
946e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
947e126ba97SEli Cohen 
9486aec21f6SHaggai Eran 	return sprintf(buf, "%d\n", atomic_read(&dev->mdev->priv.reg_pages));
949e126ba97SEli Cohen }
950e126ba97SEli Cohen 
951e126ba97SEli Cohen static ssize_t show_hca(struct device *device, struct device_attribute *attr,
952e126ba97SEli Cohen 			char *buf)
953e126ba97SEli Cohen {
954e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
955e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
9569603b61dSJack Morgenstein 	return sprintf(buf, "MT%d\n", dev->mdev->pdev->device);
957e126ba97SEli Cohen }
958e126ba97SEli Cohen 
959e126ba97SEli Cohen static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
960e126ba97SEli Cohen 			   char *buf)
961e126ba97SEli Cohen {
962e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
963e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
9649603b61dSJack Morgenstein 	return sprintf(buf, "%d.%d.%d\n", fw_rev_maj(dev->mdev),
9659603b61dSJack Morgenstein 		       fw_rev_min(dev->mdev), fw_rev_sub(dev->mdev));
966e126ba97SEli Cohen }
967e126ba97SEli Cohen 
968e126ba97SEli Cohen static ssize_t show_rev(struct device *device, struct device_attribute *attr,
969e126ba97SEli Cohen 			char *buf)
970e126ba97SEli Cohen {
971e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
972e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
9739603b61dSJack Morgenstein 	return sprintf(buf, "%x\n", dev->mdev->rev_id);
974e126ba97SEli Cohen }
975e126ba97SEli Cohen 
976e126ba97SEli Cohen static ssize_t show_board(struct device *device, struct device_attribute *attr,
977e126ba97SEli Cohen 			  char *buf)
978e126ba97SEli Cohen {
979e126ba97SEli Cohen 	struct mlx5_ib_dev *dev =
980e126ba97SEli Cohen 		container_of(device, struct mlx5_ib_dev, ib_dev.dev);
981e126ba97SEli Cohen 	return sprintf(buf, "%.*s\n", MLX5_BOARD_ID_LEN,
9829603b61dSJack Morgenstein 		       dev->mdev->board_id);
983e126ba97SEli Cohen }
984e126ba97SEli Cohen 
985e126ba97SEli Cohen static DEVICE_ATTR(hw_rev,   S_IRUGO, show_rev,    NULL);
986e126ba97SEli Cohen static DEVICE_ATTR(fw_ver,   S_IRUGO, show_fw_ver, NULL);
987e126ba97SEli Cohen static DEVICE_ATTR(hca_type, S_IRUGO, show_hca,    NULL);
988e126ba97SEli Cohen static DEVICE_ATTR(board_id, S_IRUGO, show_board,  NULL);
989e126ba97SEli Cohen static DEVICE_ATTR(fw_pages, S_IRUGO, show_fw_pages, NULL);
990e126ba97SEli Cohen static DEVICE_ATTR(reg_pages, S_IRUGO, show_reg_pages, NULL);
991e126ba97SEli Cohen 
992e126ba97SEli Cohen static struct device_attribute *mlx5_class_attributes[] = {
993e126ba97SEli Cohen 	&dev_attr_hw_rev,
994e126ba97SEli Cohen 	&dev_attr_fw_ver,
995e126ba97SEli Cohen 	&dev_attr_hca_type,
996e126ba97SEli Cohen 	&dev_attr_board_id,
997e126ba97SEli Cohen 	&dev_attr_fw_pages,
998e126ba97SEli Cohen 	&dev_attr_reg_pages,
999e126ba97SEli Cohen };
1000e126ba97SEli Cohen 
10019603b61dSJack Morgenstein static void mlx5_ib_event(struct mlx5_core_dev *dev, void *context,
10024d2f9bbbSJack Morgenstein 			  enum mlx5_dev_event event, unsigned long param)
1003e126ba97SEli Cohen {
10049603b61dSJack Morgenstein 	struct mlx5_ib_dev *ibdev = (struct mlx5_ib_dev *)context;
1005e126ba97SEli Cohen 	struct ib_event ibev;
10069603b61dSJack Morgenstein 
1007e126ba97SEli Cohen 	u8 port = 0;
1008e126ba97SEli Cohen 
1009e126ba97SEli Cohen 	switch (event) {
1010e126ba97SEli Cohen 	case MLX5_DEV_EVENT_SYS_ERROR:
1011e126ba97SEli Cohen 		ibdev->ib_active = false;
1012e126ba97SEli Cohen 		ibev.event = IB_EVENT_DEVICE_FATAL;
1013e126ba97SEli Cohen 		break;
1014e126ba97SEli Cohen 
1015e126ba97SEli Cohen 	case MLX5_DEV_EVENT_PORT_UP:
1016e126ba97SEli Cohen 		ibev.event = IB_EVENT_PORT_ACTIVE;
10174d2f9bbbSJack Morgenstein 		port = (u8)param;
1018e126ba97SEli Cohen 		break;
1019e126ba97SEli Cohen 
1020e126ba97SEli Cohen 	case MLX5_DEV_EVENT_PORT_DOWN:
1021e126ba97SEli Cohen 		ibev.event = IB_EVENT_PORT_ERR;
10224d2f9bbbSJack Morgenstein 		port = (u8)param;
1023e126ba97SEli Cohen 		break;
1024e126ba97SEli Cohen 
1025e126ba97SEli Cohen 	case MLX5_DEV_EVENT_PORT_INITIALIZED:
1026e126ba97SEli Cohen 		/* not used by ULPs */
1027e126ba97SEli Cohen 		return;
1028e126ba97SEli Cohen 
1029e126ba97SEli Cohen 	case MLX5_DEV_EVENT_LID_CHANGE:
1030e126ba97SEli Cohen 		ibev.event = IB_EVENT_LID_CHANGE;
10314d2f9bbbSJack Morgenstein 		port = (u8)param;
1032e126ba97SEli Cohen 		break;
1033e126ba97SEli Cohen 
1034e126ba97SEli Cohen 	case MLX5_DEV_EVENT_PKEY_CHANGE:
1035e126ba97SEli Cohen 		ibev.event = IB_EVENT_PKEY_CHANGE;
10364d2f9bbbSJack Morgenstein 		port = (u8)param;
1037e126ba97SEli Cohen 		break;
1038e126ba97SEli Cohen 
1039e126ba97SEli Cohen 	case MLX5_DEV_EVENT_GUID_CHANGE:
1040e126ba97SEli Cohen 		ibev.event = IB_EVENT_GID_CHANGE;
10414d2f9bbbSJack Morgenstein 		port = (u8)param;
1042e126ba97SEli Cohen 		break;
1043e126ba97SEli Cohen 
1044e126ba97SEli Cohen 	case MLX5_DEV_EVENT_CLIENT_REREG:
1045e126ba97SEli Cohen 		ibev.event = IB_EVENT_CLIENT_REREGISTER;
10464d2f9bbbSJack Morgenstein 		port = (u8)param;
1047e126ba97SEli Cohen 		break;
1048e126ba97SEli Cohen 	}
1049e126ba97SEli Cohen 
1050e126ba97SEli Cohen 	ibev.device	      = &ibdev->ib_dev;
1051e126ba97SEli Cohen 	ibev.element.port_num = port;
1052e126ba97SEli Cohen 
1053a0c84c32SEli Cohen 	if (port < 1 || port > ibdev->num_ports) {
1054a0c84c32SEli Cohen 		mlx5_ib_warn(ibdev, "warning: event on port %d\n", port);
1055a0c84c32SEli Cohen 		return;
1056a0c84c32SEli Cohen 	}
1057a0c84c32SEli Cohen 
1058e126ba97SEli Cohen 	if (ibdev->ib_active)
1059e126ba97SEli Cohen 		ib_dispatch_event(&ibev);
1060e126ba97SEli Cohen }
1061e126ba97SEli Cohen 
1062e126ba97SEli Cohen static void get_ext_port_caps(struct mlx5_ib_dev *dev)
1063e126ba97SEli Cohen {
1064e126ba97SEli Cohen 	int port;
1065e126ba97SEli Cohen 
1066938fe83cSSaeed Mahameed 	for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++)
1067e126ba97SEli Cohen 		mlx5_query_ext_port_caps(dev, port);
1068e126ba97SEli Cohen }
1069e126ba97SEli Cohen 
1070e126ba97SEli Cohen static int get_port_caps(struct mlx5_ib_dev *dev)
1071e126ba97SEli Cohen {
1072e126ba97SEli Cohen 	struct ib_device_attr *dprops = NULL;
1073e126ba97SEli Cohen 	struct ib_port_attr *pprops = NULL;
1074f614fc15SDan Carpenter 	int err = -ENOMEM;
1075e126ba97SEli Cohen 	int port;
1076e126ba97SEli Cohen 
1077e126ba97SEli Cohen 	pprops = kmalloc(sizeof(*pprops), GFP_KERNEL);
1078e126ba97SEli Cohen 	if (!pprops)
1079e126ba97SEli Cohen 		goto out;
1080e126ba97SEli Cohen 
1081e126ba97SEli Cohen 	dprops = kmalloc(sizeof(*dprops), GFP_KERNEL);
1082e126ba97SEli Cohen 	if (!dprops)
1083e126ba97SEli Cohen 		goto out;
1084e126ba97SEli Cohen 
1085e126ba97SEli Cohen 	err = mlx5_ib_query_device(&dev->ib_dev, dprops);
1086e126ba97SEli Cohen 	if (err) {
1087e126ba97SEli Cohen 		mlx5_ib_warn(dev, "query_device failed %d\n", err);
1088e126ba97SEli Cohen 		goto out;
1089e126ba97SEli Cohen 	}
1090e126ba97SEli Cohen 
1091938fe83cSSaeed Mahameed 	for (port = 1; port <= MLX5_CAP_GEN(dev->mdev, num_ports); port++) {
1092e126ba97SEli Cohen 		err = mlx5_ib_query_port(&dev->ib_dev, port, pprops);
1093e126ba97SEli Cohen 		if (err) {
1094938fe83cSSaeed Mahameed 			mlx5_ib_warn(dev, "query_port %d failed %d\n",
1095938fe83cSSaeed Mahameed 				     port, err);
1096e126ba97SEli Cohen 			break;
1097e126ba97SEli Cohen 		}
1098938fe83cSSaeed Mahameed 		dev->mdev->port_caps[port - 1].pkey_table_len =
1099938fe83cSSaeed Mahameed 						dprops->max_pkeys;
1100938fe83cSSaeed Mahameed 		dev->mdev->port_caps[port - 1].gid_table_len =
1101938fe83cSSaeed Mahameed 						pprops->gid_tbl_len;
1102e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "pkey_table_len %d, gid_table_len %d\n",
1103e126ba97SEli Cohen 			    dprops->max_pkeys, pprops->gid_tbl_len);
1104e126ba97SEli Cohen 	}
1105e126ba97SEli Cohen 
1106e126ba97SEli Cohen out:
1107e126ba97SEli Cohen 	kfree(pprops);
1108e126ba97SEli Cohen 	kfree(dprops);
1109e126ba97SEli Cohen 
1110e126ba97SEli Cohen 	return err;
1111e126ba97SEli Cohen }
1112e126ba97SEli Cohen 
1113e126ba97SEli Cohen static void destroy_umrc_res(struct mlx5_ib_dev *dev)
1114e126ba97SEli Cohen {
1115e126ba97SEli Cohen 	int err;
1116e126ba97SEli Cohen 
1117e126ba97SEli Cohen 	err = mlx5_mr_cache_cleanup(dev);
1118e126ba97SEli Cohen 	if (err)
1119e126ba97SEli Cohen 		mlx5_ib_warn(dev, "mr cache cleanup failed\n");
1120e126ba97SEli Cohen 
1121e126ba97SEli Cohen 	mlx5_ib_destroy_qp(dev->umrc.qp);
1122e126ba97SEli Cohen 	ib_destroy_cq(dev->umrc.cq);
1123e126ba97SEli Cohen 	ib_dereg_mr(dev->umrc.mr);
1124e126ba97SEli Cohen 	ib_dealloc_pd(dev->umrc.pd);
1125e126ba97SEli Cohen }
1126e126ba97SEli Cohen 
1127e126ba97SEli Cohen enum {
1128e126ba97SEli Cohen 	MAX_UMR_WR = 128,
1129e126ba97SEli Cohen };
1130e126ba97SEli Cohen 
1131e126ba97SEli Cohen static int create_umr_res(struct mlx5_ib_dev *dev)
1132e126ba97SEli Cohen {
1133e126ba97SEli Cohen 	struct ib_qp_init_attr *init_attr = NULL;
1134e126ba97SEli Cohen 	struct ib_qp_attr *attr = NULL;
1135e126ba97SEli Cohen 	struct ib_pd *pd;
1136e126ba97SEli Cohen 	struct ib_cq *cq;
1137e126ba97SEli Cohen 	struct ib_qp *qp;
1138e126ba97SEli Cohen 	struct ib_mr *mr;
1139e126ba97SEli Cohen 	int ret;
1140e126ba97SEli Cohen 
1141e126ba97SEli Cohen 	attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1142e126ba97SEli Cohen 	init_attr = kzalloc(sizeof(*init_attr), GFP_KERNEL);
1143e126ba97SEli Cohen 	if (!attr || !init_attr) {
1144e126ba97SEli Cohen 		ret = -ENOMEM;
1145e126ba97SEli Cohen 		goto error_0;
1146e126ba97SEli Cohen 	}
1147e126ba97SEli Cohen 
1148e126ba97SEli Cohen 	pd = ib_alloc_pd(&dev->ib_dev);
1149e126ba97SEli Cohen 	if (IS_ERR(pd)) {
1150e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't create PD for sync UMR QP\n");
1151e126ba97SEli Cohen 		ret = PTR_ERR(pd);
1152e126ba97SEli Cohen 		goto error_0;
1153e126ba97SEli Cohen 	}
1154e126ba97SEli Cohen 
1155e126ba97SEli Cohen 	mr = ib_get_dma_mr(pd,  IB_ACCESS_LOCAL_WRITE);
1156e126ba97SEli Cohen 	if (IS_ERR(mr)) {
1157e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't create DMA MR for sync UMR QP\n");
1158e126ba97SEli Cohen 		ret = PTR_ERR(mr);
1159e126ba97SEli Cohen 		goto error_1;
1160e126ba97SEli Cohen 	}
1161e126ba97SEli Cohen 
1162e126ba97SEli Cohen 	cq = ib_create_cq(&dev->ib_dev, mlx5_umr_cq_handler, NULL, NULL, 128,
1163e126ba97SEli Cohen 			  0);
1164e126ba97SEli Cohen 	if (IS_ERR(cq)) {
1165e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't create CQ for sync UMR QP\n");
1166e126ba97SEli Cohen 		ret = PTR_ERR(cq);
1167e126ba97SEli Cohen 		goto error_2;
1168e126ba97SEli Cohen 	}
1169e126ba97SEli Cohen 	ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
1170e126ba97SEli Cohen 
1171e126ba97SEli Cohen 	init_attr->send_cq = cq;
1172e126ba97SEli Cohen 	init_attr->recv_cq = cq;
1173e126ba97SEli Cohen 	init_attr->sq_sig_type = IB_SIGNAL_ALL_WR;
1174e126ba97SEli Cohen 	init_attr->cap.max_send_wr = MAX_UMR_WR;
1175e126ba97SEli Cohen 	init_attr->cap.max_send_sge = 1;
1176e126ba97SEli Cohen 	init_attr->qp_type = MLX5_IB_QPT_REG_UMR;
1177e126ba97SEli Cohen 	init_attr->port_num = 1;
1178e126ba97SEli Cohen 	qp = mlx5_ib_create_qp(pd, init_attr, NULL);
1179e126ba97SEli Cohen 	if (IS_ERR(qp)) {
1180e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't create sync UMR QP\n");
1181e126ba97SEli Cohen 		ret = PTR_ERR(qp);
1182e126ba97SEli Cohen 		goto error_3;
1183e126ba97SEli Cohen 	}
1184e126ba97SEli Cohen 	qp->device     = &dev->ib_dev;
1185e126ba97SEli Cohen 	qp->real_qp    = qp;
1186e126ba97SEli Cohen 	qp->uobject    = NULL;
1187e126ba97SEli Cohen 	qp->qp_type    = MLX5_IB_QPT_REG_UMR;
1188e126ba97SEli Cohen 
1189e126ba97SEli Cohen 	attr->qp_state = IB_QPS_INIT;
1190e126ba97SEli Cohen 	attr->port_num = 1;
1191e126ba97SEli Cohen 	ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE | IB_QP_PKEY_INDEX |
1192e126ba97SEli Cohen 				IB_QP_PORT, NULL);
1193e126ba97SEli Cohen 	if (ret) {
1194e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't modify UMR QP\n");
1195e126ba97SEli Cohen 		goto error_4;
1196e126ba97SEli Cohen 	}
1197e126ba97SEli Cohen 
1198e126ba97SEli Cohen 	memset(attr, 0, sizeof(*attr));
1199e126ba97SEli Cohen 	attr->qp_state = IB_QPS_RTR;
1200e126ba97SEli Cohen 	attr->path_mtu = IB_MTU_256;
1201e126ba97SEli Cohen 
1202e126ba97SEli Cohen 	ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
1203e126ba97SEli Cohen 	if (ret) {
1204e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't modify umr QP to rtr\n");
1205e126ba97SEli Cohen 		goto error_4;
1206e126ba97SEli Cohen 	}
1207e126ba97SEli Cohen 
1208e126ba97SEli Cohen 	memset(attr, 0, sizeof(*attr));
1209e126ba97SEli Cohen 	attr->qp_state = IB_QPS_RTS;
1210e126ba97SEli Cohen 	ret = mlx5_ib_modify_qp(qp, attr, IB_QP_STATE, NULL);
1211e126ba97SEli Cohen 	if (ret) {
1212e126ba97SEli Cohen 		mlx5_ib_dbg(dev, "Couldn't modify umr QP to rts\n");
1213e126ba97SEli Cohen 		goto error_4;
1214e126ba97SEli Cohen 	}
1215e126ba97SEli Cohen 
1216e126ba97SEli Cohen 	dev->umrc.qp = qp;
1217e126ba97SEli Cohen 	dev->umrc.cq = cq;
1218e126ba97SEli Cohen 	dev->umrc.mr = mr;
1219e126ba97SEli Cohen 	dev->umrc.pd = pd;
1220e126ba97SEli Cohen 
1221e126ba97SEli Cohen 	sema_init(&dev->umrc.sem, MAX_UMR_WR);
1222e126ba97SEli Cohen 	ret = mlx5_mr_cache_init(dev);
1223e126ba97SEli Cohen 	if (ret) {
1224e126ba97SEli Cohen 		mlx5_ib_warn(dev, "mr cache init failed %d\n", ret);
1225e126ba97SEli Cohen 		goto error_4;
1226e126ba97SEli Cohen 	}
1227e126ba97SEli Cohen 
1228e126ba97SEli Cohen 	kfree(attr);
1229e126ba97SEli Cohen 	kfree(init_attr);
1230e126ba97SEli Cohen 
1231e126ba97SEli Cohen 	return 0;
1232e126ba97SEli Cohen 
1233e126ba97SEli Cohen error_4:
1234e126ba97SEli Cohen 	mlx5_ib_destroy_qp(qp);
1235e126ba97SEli Cohen 
1236e126ba97SEli Cohen error_3:
1237e126ba97SEli Cohen 	ib_destroy_cq(cq);
1238e126ba97SEli Cohen 
1239e126ba97SEli Cohen error_2:
1240e126ba97SEli Cohen 	ib_dereg_mr(mr);
1241e126ba97SEli Cohen 
1242e126ba97SEli Cohen error_1:
1243e126ba97SEli Cohen 	ib_dealloc_pd(pd);
1244e126ba97SEli Cohen 
1245e126ba97SEli Cohen error_0:
1246e126ba97SEli Cohen 	kfree(attr);
1247e126ba97SEli Cohen 	kfree(init_attr);
1248e126ba97SEli Cohen 	return ret;
1249e126ba97SEli Cohen }
1250e126ba97SEli Cohen 
1251e126ba97SEli Cohen static int create_dev_resources(struct mlx5_ib_resources *devr)
1252e126ba97SEli Cohen {
1253e126ba97SEli Cohen 	struct ib_srq_init_attr attr;
1254e126ba97SEli Cohen 	struct mlx5_ib_dev *dev;
1255e126ba97SEli Cohen 	int ret = 0;
1256e126ba97SEli Cohen 
1257e126ba97SEli Cohen 	dev = container_of(devr, struct mlx5_ib_dev, devr);
1258e126ba97SEli Cohen 
1259e126ba97SEli Cohen 	devr->p0 = mlx5_ib_alloc_pd(&dev->ib_dev, NULL, NULL);
1260e126ba97SEli Cohen 	if (IS_ERR(devr->p0)) {
1261e126ba97SEli Cohen 		ret = PTR_ERR(devr->p0);
1262e126ba97SEli Cohen 		goto error0;
1263e126ba97SEli Cohen 	}
1264e126ba97SEli Cohen 	devr->p0->device  = &dev->ib_dev;
1265e126ba97SEli Cohen 	devr->p0->uobject = NULL;
1266e126ba97SEli Cohen 	atomic_set(&devr->p0->usecnt, 0);
1267e126ba97SEli Cohen 
1268e126ba97SEli Cohen 	devr->c0 = mlx5_ib_create_cq(&dev->ib_dev, 1, 0, NULL, NULL);
1269e126ba97SEli Cohen 	if (IS_ERR(devr->c0)) {
1270e126ba97SEli Cohen 		ret = PTR_ERR(devr->c0);
1271e126ba97SEli Cohen 		goto error1;
1272e126ba97SEli Cohen 	}
1273e126ba97SEli Cohen 	devr->c0->device        = &dev->ib_dev;
1274e126ba97SEli Cohen 	devr->c0->uobject       = NULL;
1275e126ba97SEli Cohen 	devr->c0->comp_handler  = NULL;
1276e126ba97SEli Cohen 	devr->c0->event_handler = NULL;
1277e126ba97SEli Cohen 	devr->c0->cq_context    = NULL;
1278e126ba97SEli Cohen 	atomic_set(&devr->c0->usecnt, 0);
1279e126ba97SEli Cohen 
1280e126ba97SEli Cohen 	devr->x0 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
1281e126ba97SEli Cohen 	if (IS_ERR(devr->x0)) {
1282e126ba97SEli Cohen 		ret = PTR_ERR(devr->x0);
1283e126ba97SEli Cohen 		goto error2;
1284e126ba97SEli Cohen 	}
1285e126ba97SEli Cohen 	devr->x0->device = &dev->ib_dev;
1286e126ba97SEli Cohen 	devr->x0->inode = NULL;
1287e126ba97SEli Cohen 	atomic_set(&devr->x0->usecnt, 0);
1288e126ba97SEli Cohen 	mutex_init(&devr->x0->tgt_qp_mutex);
1289e126ba97SEli Cohen 	INIT_LIST_HEAD(&devr->x0->tgt_qp_list);
1290e126ba97SEli Cohen 
1291e126ba97SEli Cohen 	devr->x1 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL, NULL);
1292e126ba97SEli Cohen 	if (IS_ERR(devr->x1)) {
1293e126ba97SEli Cohen 		ret = PTR_ERR(devr->x1);
1294e126ba97SEli Cohen 		goto error3;
1295e126ba97SEli Cohen 	}
1296e126ba97SEli Cohen 	devr->x1->device = &dev->ib_dev;
1297e126ba97SEli Cohen 	devr->x1->inode = NULL;
1298e126ba97SEli Cohen 	atomic_set(&devr->x1->usecnt, 0);
1299e126ba97SEli Cohen 	mutex_init(&devr->x1->tgt_qp_mutex);
1300e126ba97SEli Cohen 	INIT_LIST_HEAD(&devr->x1->tgt_qp_list);
1301e126ba97SEli Cohen 
1302e126ba97SEli Cohen 	memset(&attr, 0, sizeof(attr));
1303e126ba97SEli Cohen 	attr.attr.max_sge = 1;
1304e126ba97SEli Cohen 	attr.attr.max_wr = 1;
1305e126ba97SEli Cohen 	attr.srq_type = IB_SRQT_XRC;
1306e126ba97SEli Cohen 	attr.ext.xrc.cq = devr->c0;
1307e126ba97SEli Cohen 	attr.ext.xrc.xrcd = devr->x0;
1308e126ba97SEli Cohen 
1309e126ba97SEli Cohen 	devr->s0 = mlx5_ib_create_srq(devr->p0, &attr, NULL);
1310e126ba97SEli Cohen 	if (IS_ERR(devr->s0)) {
1311e126ba97SEli Cohen 		ret = PTR_ERR(devr->s0);
1312e126ba97SEli Cohen 		goto error4;
1313e126ba97SEli Cohen 	}
1314e126ba97SEli Cohen 	devr->s0->device	= &dev->ib_dev;
1315e126ba97SEli Cohen 	devr->s0->pd		= devr->p0;
1316e126ba97SEli Cohen 	devr->s0->uobject       = NULL;
1317e126ba97SEli Cohen 	devr->s0->event_handler = NULL;
1318e126ba97SEli Cohen 	devr->s0->srq_context   = NULL;
1319e126ba97SEli Cohen 	devr->s0->srq_type      = IB_SRQT_XRC;
1320e126ba97SEli Cohen 	devr->s0->ext.xrc.xrcd	= devr->x0;
1321e126ba97SEli Cohen 	devr->s0->ext.xrc.cq	= devr->c0;
1322e126ba97SEli Cohen 	atomic_inc(&devr->s0->ext.xrc.xrcd->usecnt);
1323e126ba97SEli Cohen 	atomic_inc(&devr->s0->ext.xrc.cq->usecnt);
1324e126ba97SEli Cohen 	atomic_inc(&devr->p0->usecnt);
1325e126ba97SEli Cohen 	atomic_set(&devr->s0->usecnt, 0);
1326e126ba97SEli Cohen 
1327e126ba97SEli Cohen 	return 0;
1328e126ba97SEli Cohen 
1329e126ba97SEli Cohen error4:
1330e126ba97SEli Cohen 	mlx5_ib_dealloc_xrcd(devr->x1);
1331e126ba97SEli Cohen error3:
1332e126ba97SEli Cohen 	mlx5_ib_dealloc_xrcd(devr->x0);
1333e126ba97SEli Cohen error2:
1334e126ba97SEli Cohen 	mlx5_ib_destroy_cq(devr->c0);
1335e126ba97SEli Cohen error1:
1336e126ba97SEli Cohen 	mlx5_ib_dealloc_pd(devr->p0);
1337e126ba97SEli Cohen error0:
1338e126ba97SEli Cohen 	return ret;
1339e126ba97SEli Cohen }
1340e126ba97SEli Cohen 
1341e126ba97SEli Cohen static void destroy_dev_resources(struct mlx5_ib_resources *devr)
1342e126ba97SEli Cohen {
1343e126ba97SEli Cohen 	mlx5_ib_destroy_srq(devr->s0);
1344e126ba97SEli Cohen 	mlx5_ib_dealloc_xrcd(devr->x0);
1345e126ba97SEli Cohen 	mlx5_ib_dealloc_xrcd(devr->x1);
1346e126ba97SEli Cohen 	mlx5_ib_destroy_cq(devr->c0);
1347e126ba97SEli Cohen 	mlx5_ib_dealloc_pd(devr->p0);
1348e126ba97SEli Cohen }
1349e126ba97SEli Cohen 
13509603b61dSJack Morgenstein static void *mlx5_ib_add(struct mlx5_core_dev *mdev)
1351e126ba97SEli Cohen {
1352e126ba97SEli Cohen 	struct mlx5_ib_dev *dev;
1353e126ba97SEli Cohen 	int err;
1354e126ba97SEli Cohen 	int i;
1355e126ba97SEli Cohen 
1356e126ba97SEli Cohen 	printk_once(KERN_INFO "%s", mlx5_version);
1357e126ba97SEli Cohen 
1358e126ba97SEli Cohen 	dev = (struct mlx5_ib_dev *)ib_alloc_device(sizeof(*dev));
1359e126ba97SEli Cohen 	if (!dev)
13609603b61dSJack Morgenstein 		return NULL;
1361e126ba97SEli Cohen 
13629603b61dSJack Morgenstein 	dev->mdev = mdev;
1363e126ba97SEli Cohen 
1364e126ba97SEli Cohen 	err = get_port_caps(dev);
1365e126ba97SEli Cohen 	if (err)
13669603b61dSJack Morgenstein 		goto err_dealloc;
1367e126ba97SEli Cohen 
1368*1b5daf11SMajd Dibbiny 	if (mlx5_use_mad_ifc(dev))
1369e126ba97SEli Cohen 		get_ext_port_caps(dev);
1370e126ba97SEli Cohen 
1371e126ba97SEli Cohen 	MLX5_INIT_DOORBELL_LOCK(&dev->uar_lock);
1372e126ba97SEli Cohen 
1373e126ba97SEli Cohen 	strlcpy(dev->ib_dev.name, "mlx5_%d", IB_DEVICE_NAME_MAX);
1374e126ba97SEli Cohen 	dev->ib_dev.owner		= THIS_MODULE;
1375e126ba97SEli Cohen 	dev->ib_dev.node_type		= RDMA_NODE_IB_CA;
1376938fe83cSSaeed Mahameed 	dev->ib_dev.local_dma_lkey	= 0 /* not supported for now */;
1377938fe83cSSaeed Mahameed 	dev->num_ports		= MLX5_CAP_GEN(mdev, num_ports);
1378e126ba97SEli Cohen 	dev->ib_dev.phys_port_cnt     = dev->num_ports;
1379233d05d2SSaeed Mahameed 	dev->ib_dev.num_comp_vectors    =
1380233d05d2SSaeed Mahameed 		dev->mdev->priv.eq_table.num_comp_vectors;
1381e126ba97SEli Cohen 	dev->ib_dev.dma_device	= &mdev->pdev->dev;
1382e126ba97SEli Cohen 
1383e126ba97SEli Cohen 	dev->ib_dev.uverbs_abi_ver	= MLX5_IB_UVERBS_ABI_VERSION;
1384e126ba97SEli Cohen 	dev->ib_dev.uverbs_cmd_mask	=
1385e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_GET_CONTEXT)		|
1386e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_QUERY_DEVICE)	|
1387e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_QUERY_PORT)		|
1388e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_ALLOC_PD)		|
1389e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DEALLOC_PD)		|
1390e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_REG_MR)		|
1391e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DEREG_MR)		|
1392e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL)	|
1393e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_CREATE_CQ)		|
1394e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_RESIZE_CQ)		|
1395e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DESTROY_CQ)		|
1396e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_CREATE_QP)		|
1397e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_MODIFY_QP)		|
1398e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_QUERY_QP)		|
1399e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DESTROY_QP)		|
1400e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_ATTACH_MCAST)	|
1401e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DETACH_MCAST)	|
1402e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_CREATE_SRQ)		|
1403e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_MODIFY_SRQ)		|
1404e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_QUERY_SRQ)		|
1405e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_DESTROY_SRQ)		|
1406e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_CREATE_XSRQ)		|
1407e126ba97SEli Cohen 		(1ull << IB_USER_VERBS_CMD_OPEN_QP);
14081707cb4aSHaggai Eran 	dev->ib_dev.uverbs_ex_cmd_mask =
14091707cb4aSHaggai Eran 		(1ull << IB_USER_VERBS_EX_CMD_QUERY_DEVICE);
1410e126ba97SEli Cohen 
1411e126ba97SEli Cohen 	dev->ib_dev.query_device	= mlx5_ib_query_device;
1412e126ba97SEli Cohen 	dev->ib_dev.query_port		= mlx5_ib_query_port;
1413e126ba97SEli Cohen 	dev->ib_dev.query_gid		= mlx5_ib_query_gid;
1414e126ba97SEli Cohen 	dev->ib_dev.query_pkey		= mlx5_ib_query_pkey;
1415e126ba97SEli Cohen 	dev->ib_dev.modify_device	= mlx5_ib_modify_device;
1416e126ba97SEli Cohen 	dev->ib_dev.modify_port		= mlx5_ib_modify_port;
1417e126ba97SEli Cohen 	dev->ib_dev.alloc_ucontext	= mlx5_ib_alloc_ucontext;
1418e126ba97SEli Cohen 	dev->ib_dev.dealloc_ucontext	= mlx5_ib_dealloc_ucontext;
1419e126ba97SEli Cohen 	dev->ib_dev.mmap		= mlx5_ib_mmap;
1420e126ba97SEli Cohen 	dev->ib_dev.alloc_pd		= mlx5_ib_alloc_pd;
1421e126ba97SEli Cohen 	dev->ib_dev.dealloc_pd		= mlx5_ib_dealloc_pd;
1422e126ba97SEli Cohen 	dev->ib_dev.create_ah		= mlx5_ib_create_ah;
1423e126ba97SEli Cohen 	dev->ib_dev.query_ah		= mlx5_ib_query_ah;
1424e126ba97SEli Cohen 	dev->ib_dev.destroy_ah		= mlx5_ib_destroy_ah;
1425e126ba97SEli Cohen 	dev->ib_dev.create_srq		= mlx5_ib_create_srq;
1426e126ba97SEli Cohen 	dev->ib_dev.modify_srq		= mlx5_ib_modify_srq;
1427e126ba97SEli Cohen 	dev->ib_dev.query_srq		= mlx5_ib_query_srq;
1428e126ba97SEli Cohen 	dev->ib_dev.destroy_srq		= mlx5_ib_destroy_srq;
1429e126ba97SEli Cohen 	dev->ib_dev.post_srq_recv	= mlx5_ib_post_srq_recv;
1430e126ba97SEli Cohen 	dev->ib_dev.create_qp		= mlx5_ib_create_qp;
1431e126ba97SEli Cohen 	dev->ib_dev.modify_qp		= mlx5_ib_modify_qp;
1432e126ba97SEli Cohen 	dev->ib_dev.query_qp		= mlx5_ib_query_qp;
1433e126ba97SEli Cohen 	dev->ib_dev.destroy_qp		= mlx5_ib_destroy_qp;
1434e126ba97SEli Cohen 	dev->ib_dev.post_send		= mlx5_ib_post_send;
1435e126ba97SEli Cohen 	dev->ib_dev.post_recv		= mlx5_ib_post_recv;
1436e126ba97SEli Cohen 	dev->ib_dev.create_cq		= mlx5_ib_create_cq;
1437e126ba97SEli Cohen 	dev->ib_dev.modify_cq		= mlx5_ib_modify_cq;
1438e126ba97SEli Cohen 	dev->ib_dev.resize_cq		= mlx5_ib_resize_cq;
1439e126ba97SEli Cohen 	dev->ib_dev.destroy_cq		= mlx5_ib_destroy_cq;
1440e126ba97SEli Cohen 	dev->ib_dev.poll_cq		= mlx5_ib_poll_cq;
1441e126ba97SEli Cohen 	dev->ib_dev.req_notify_cq	= mlx5_ib_arm_cq;
1442e126ba97SEli Cohen 	dev->ib_dev.get_dma_mr		= mlx5_ib_get_dma_mr;
1443e126ba97SEli Cohen 	dev->ib_dev.reg_user_mr		= mlx5_ib_reg_user_mr;
1444e126ba97SEli Cohen 	dev->ib_dev.dereg_mr		= mlx5_ib_dereg_mr;
14453121e3c4SSagi Grimberg 	dev->ib_dev.destroy_mr		= mlx5_ib_destroy_mr;
1446e126ba97SEli Cohen 	dev->ib_dev.attach_mcast	= mlx5_ib_mcg_attach;
1447e126ba97SEli Cohen 	dev->ib_dev.detach_mcast	= mlx5_ib_mcg_detach;
1448e126ba97SEli Cohen 	dev->ib_dev.process_mad		= mlx5_ib_process_mad;
14493121e3c4SSagi Grimberg 	dev->ib_dev.create_mr		= mlx5_ib_create_mr;
1450e126ba97SEli Cohen 	dev->ib_dev.alloc_fast_reg_mr	= mlx5_ib_alloc_fast_reg_mr;
1451e126ba97SEli Cohen 	dev->ib_dev.alloc_fast_reg_page_list = mlx5_ib_alloc_fast_reg_page_list;
1452e126ba97SEli Cohen 	dev->ib_dev.free_fast_reg_page_list  = mlx5_ib_free_fast_reg_page_list;
1453d5436ba0SSagi Grimberg 	dev->ib_dev.check_mr_status	= mlx5_ib_check_mr_status;
1454e126ba97SEli Cohen 
1455938fe83cSSaeed Mahameed 	mlx5_ib_internal_fill_odp_caps(dev);
14568cdd312cSHaggai Eran 
1457938fe83cSSaeed Mahameed 	if (MLX5_CAP_GEN(mdev, xrc)) {
1458e126ba97SEli Cohen 		dev->ib_dev.alloc_xrcd = mlx5_ib_alloc_xrcd;
1459e126ba97SEli Cohen 		dev->ib_dev.dealloc_xrcd = mlx5_ib_dealloc_xrcd;
1460e126ba97SEli Cohen 		dev->ib_dev.uverbs_cmd_mask |=
1461e126ba97SEli Cohen 			(1ull << IB_USER_VERBS_CMD_OPEN_XRCD) |
1462e126ba97SEli Cohen 			(1ull << IB_USER_VERBS_CMD_CLOSE_XRCD);
1463e126ba97SEli Cohen 	}
1464e126ba97SEli Cohen 
1465e126ba97SEli Cohen 	err = init_node_data(dev);
1466e126ba97SEli Cohen 	if (err)
1467233d05d2SSaeed Mahameed 		goto err_dealloc;
1468e126ba97SEli Cohen 
1469e126ba97SEli Cohen 	mutex_init(&dev->cap_mask_mutex);
1470e126ba97SEli Cohen 
1471e126ba97SEli Cohen 	err = create_dev_resources(&dev->devr);
1472e126ba97SEli Cohen 	if (err)
1473233d05d2SSaeed Mahameed 		goto err_dealloc;
1474e126ba97SEli Cohen 
14756aec21f6SHaggai Eran 	err = mlx5_ib_odp_init_one(dev);
1476281d1a92SWei Yongjun 	if (err)
1477e126ba97SEli Cohen 		goto err_rsrc;
1478e126ba97SEli Cohen 
14796aec21f6SHaggai Eran 	err = ib_register_device(&dev->ib_dev, NULL);
14806aec21f6SHaggai Eran 	if (err)
14816aec21f6SHaggai Eran 		goto err_odp;
14826aec21f6SHaggai Eran 
1483e126ba97SEli Cohen 	err = create_umr_res(dev);
1484e126ba97SEli Cohen 	if (err)
1485e126ba97SEli Cohen 		goto err_dev;
1486e126ba97SEli Cohen 
1487e126ba97SEli Cohen 	for (i = 0; i < ARRAY_SIZE(mlx5_class_attributes); i++) {
1488281d1a92SWei Yongjun 		err = device_create_file(&dev->ib_dev.dev,
1489281d1a92SWei Yongjun 					 mlx5_class_attributes[i]);
1490281d1a92SWei Yongjun 		if (err)
1491e126ba97SEli Cohen 			goto err_umrc;
1492e126ba97SEli Cohen 	}
1493e126ba97SEli Cohen 
1494e126ba97SEli Cohen 	dev->ib_active = true;
1495e126ba97SEli Cohen 
14969603b61dSJack Morgenstein 	return dev;
1497e126ba97SEli Cohen 
1498e126ba97SEli Cohen err_umrc:
1499e126ba97SEli Cohen 	destroy_umrc_res(dev);
1500e126ba97SEli Cohen 
1501e126ba97SEli Cohen err_dev:
1502e126ba97SEli Cohen 	ib_unregister_device(&dev->ib_dev);
1503e126ba97SEli Cohen 
15046aec21f6SHaggai Eran err_odp:
15056aec21f6SHaggai Eran 	mlx5_ib_odp_remove_one(dev);
15066aec21f6SHaggai Eran 
1507e126ba97SEli Cohen err_rsrc:
1508e126ba97SEli Cohen 	destroy_dev_resources(&dev->devr);
1509e126ba97SEli Cohen 
15109603b61dSJack Morgenstein err_dealloc:
1511e126ba97SEli Cohen 	ib_dealloc_device((struct ib_device *)dev);
1512e126ba97SEli Cohen 
15139603b61dSJack Morgenstein 	return NULL;
1514e126ba97SEli Cohen }
1515e126ba97SEli Cohen 
15169603b61dSJack Morgenstein static void mlx5_ib_remove(struct mlx5_core_dev *mdev, void *context)
1517e126ba97SEli Cohen {
15189603b61dSJack Morgenstein 	struct mlx5_ib_dev *dev = context;
15196aec21f6SHaggai Eran 
1520e126ba97SEli Cohen 	ib_unregister_device(&dev->ib_dev);
1521eefd56e5SEli Cohen 	destroy_umrc_res(dev);
15226aec21f6SHaggai Eran 	mlx5_ib_odp_remove_one(dev);
1523e126ba97SEli Cohen 	destroy_dev_resources(&dev->devr);
1524e126ba97SEli Cohen 	ib_dealloc_device(&dev->ib_dev);
1525e126ba97SEli Cohen }
1526e126ba97SEli Cohen 
15279603b61dSJack Morgenstein static struct mlx5_interface mlx5_ib_interface = {
15289603b61dSJack Morgenstein 	.add            = mlx5_ib_add,
15299603b61dSJack Morgenstein 	.remove         = mlx5_ib_remove,
15309603b61dSJack Morgenstein 	.event          = mlx5_ib_event,
153164613d94SSaeed Mahameed 	.protocol	= MLX5_INTERFACE_PROTOCOL_IB,
1532e126ba97SEli Cohen };
1533e126ba97SEli Cohen 
1534e126ba97SEli Cohen static int __init mlx5_ib_init(void)
1535e126ba97SEli Cohen {
15366aec21f6SHaggai Eran 	int err;
15376aec21f6SHaggai Eran 
15389603b61dSJack Morgenstein 	if (deprecated_prof_sel != 2)
15399603b61dSJack Morgenstein 		pr_warn("prof_sel is deprecated for mlx5_ib, set it for mlx5_core\n");
15409603b61dSJack Morgenstein 
15416aec21f6SHaggai Eran 	err = mlx5_ib_odp_init();
15426aec21f6SHaggai Eran 	if (err)
15436aec21f6SHaggai Eran 		return err;
15446aec21f6SHaggai Eran 
15456aec21f6SHaggai Eran 	err = mlx5_register_interface(&mlx5_ib_interface);
15466aec21f6SHaggai Eran 	if (err)
15476aec21f6SHaggai Eran 		goto clean_odp;
15486aec21f6SHaggai Eran 
15496aec21f6SHaggai Eran 	return err;
15506aec21f6SHaggai Eran 
15516aec21f6SHaggai Eran clean_odp:
15526aec21f6SHaggai Eran 	mlx5_ib_odp_cleanup();
15536aec21f6SHaggai Eran 	return err;
1554e126ba97SEli Cohen }
1555e126ba97SEli Cohen 
1556e126ba97SEli Cohen static void __exit mlx5_ib_cleanup(void)
1557e126ba97SEli Cohen {
15589603b61dSJack Morgenstein 	mlx5_unregister_interface(&mlx5_ib_interface);
15596aec21f6SHaggai Eran 	mlx5_ib_odp_cleanup();
1560e126ba97SEli Cohen }
1561e126ba97SEli Cohen 
1562e126ba97SEli Cohen module_init(mlx5_ib_init);
1563e126ba97SEli Cohen module_exit(mlx5_ib_cleanup);
1564