blob: cd93c546c008cd7dfa4dbd7ab05048972f087c29 [file] [log] [blame]
Moni Shoua8700e3e2016-06-16 16:45:23 +03001/*
2 * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
4 *
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
Yuval Shaia4d6f2852017-03-14 16:01:57 +020034#include <net/addrconf.h>
Moni Shoua8700e3e2016-06-16 16:45:23 +030035#include "rxe.h"
36#include "rxe_loc.h"
37
38MODULE_AUTHOR("Bob Pearson, Frank Zago, John Groves, Kamal Heib");
39MODULE_DESCRIPTION("Soft RDMA transport");
40MODULE_LICENSE("Dual BSD/GPL");
Moni Shoua8700e3e2016-06-16 16:45:23 +030041
42/* free resources for all ports on a device */
43static void rxe_cleanup_ports(struct rxe_dev *rxe)
44{
45 kfree(rxe->port.pkey_tbl);
46 rxe->port.pkey_tbl = NULL;
47
48}
49
50/* free resources for a rxe device all objects created for this device must
51 * have been destroyed
52 */
Jason Gunthorpec3670742019-01-22 16:27:24 -070053void rxe_dealloc(struct ib_device *ib_dev)
Moni Shoua8700e3e2016-06-16 16:45:23 +030054{
Jason Gunthorpec3670742019-01-22 16:27:24 -070055 struct rxe_dev *rxe = container_of(ib_dev, struct rxe_dev, ib_dev);
56
Moni Shoua8700e3e2016-06-16 16:45:23 +030057 rxe_pool_cleanup(&rxe->uc_pool);
58 rxe_pool_cleanup(&rxe->pd_pool);
59 rxe_pool_cleanup(&rxe->ah_pool);
60 rxe_pool_cleanup(&rxe->srq_pool);
61 rxe_pool_cleanup(&rxe->qp_pool);
62 rxe_pool_cleanup(&rxe->cq_pool);
63 rxe_pool_cleanup(&rxe->mr_pool);
64 rxe_pool_cleanup(&rxe->mw_pool);
65 rxe_pool_cleanup(&rxe->mc_grp_pool);
66 rxe_pool_cleanup(&rxe->mc_elem_pool);
67
68 rxe_cleanup_ports(rxe);
yonatanccee26882017-04-20 20:55:55 +030069
Jason Gunthorpec3670742019-01-22 16:27:24 -070070 if (rxe->tfm)
71 crypto_free_shash(rxe->tfm);
Moni Shoua8700e3e2016-06-16 16:45:23 +030072
Jason Gunthorpec3670742019-01-22 16:27:24 -070073 list_del(&rxe->list);
Moni Shoua8700e3e2016-06-16 16:45:23 +030074}
75
Moni Shoua8700e3e2016-06-16 16:45:23 +030076/* initialize rxe device parameters */
Zhu Yanjunbefd8d92018-03-07 00:47:57 -050077static void rxe_init_device_param(struct rxe_dev *rxe)
Moni Shoua8700e3e2016-06-16 16:45:23 +030078{
79 rxe->max_inline_data = RXE_MAX_INLINE_DATA;
80
81 rxe->attr.fw_ver = RXE_FW_VER;
82 rxe->attr.max_mr_size = RXE_MAX_MR_SIZE;
83 rxe->attr.page_size_cap = RXE_PAGE_SIZE_CAP;
84 rxe->attr.vendor_id = RXE_VENDOR_ID;
85 rxe->attr.vendor_part_id = RXE_VENDOR_PART_ID;
86 rxe->attr.hw_ver = RXE_HW_VER;
87 rxe->attr.max_qp = RXE_MAX_QP;
88 rxe->attr.max_qp_wr = RXE_MAX_QP_WR;
89 rxe->attr.device_cap_flags = RXE_DEVICE_CAP_FLAGS;
Steve Wise33023fb2018-06-18 08:05:26 -070090 rxe->attr.max_send_sge = RXE_MAX_SGE;
91 rxe->attr.max_recv_sge = RXE_MAX_SGE;
Moni Shoua8700e3e2016-06-16 16:45:23 +030092 rxe->attr.max_sge_rd = RXE_MAX_SGE_RD;
93 rxe->attr.max_cq = RXE_MAX_CQ;
94 rxe->attr.max_cqe = (1 << RXE_MAX_LOG_CQE) - 1;
95 rxe->attr.max_mr = RXE_MAX_MR;
96 rxe->attr.max_pd = RXE_MAX_PD;
97 rxe->attr.max_qp_rd_atom = RXE_MAX_QP_RD_ATOM;
98 rxe->attr.max_ee_rd_atom = RXE_MAX_EE_RD_ATOM;
99 rxe->attr.max_res_rd_atom = RXE_MAX_RES_RD_ATOM;
100 rxe->attr.max_qp_init_rd_atom = RXE_MAX_QP_INIT_RD_ATOM;
101 rxe->attr.max_ee_init_rd_atom = RXE_MAX_EE_INIT_RD_ATOM;
Nathan Chancellor0797e6f2018-09-26 22:12:23 -0700102 rxe->attr.atomic_cap = IB_ATOMIC_HCA;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300103 rxe->attr.max_ee = RXE_MAX_EE;
104 rxe->attr.max_rdd = RXE_MAX_RDD;
105 rxe->attr.max_mw = RXE_MAX_MW;
106 rxe->attr.max_raw_ipv6_qp = RXE_MAX_RAW_IPV6_QP;
107 rxe->attr.max_raw_ethy_qp = RXE_MAX_RAW_ETHY_QP;
108 rxe->attr.max_mcast_grp = RXE_MAX_MCAST_GRP;
109 rxe->attr.max_mcast_qp_attach = RXE_MAX_MCAST_QP_ATTACH;
110 rxe->attr.max_total_mcast_qp_attach = RXE_MAX_TOT_MCAST_QP_ATTACH;
111 rxe->attr.max_ah = RXE_MAX_AH;
112 rxe->attr.max_fmr = RXE_MAX_FMR;
113 rxe->attr.max_map_per_fmr = RXE_MAX_MAP_PER_FMR;
114 rxe->attr.max_srq = RXE_MAX_SRQ;
115 rxe->attr.max_srq_wr = RXE_MAX_SRQ_WR;
116 rxe->attr.max_srq_sge = RXE_MAX_SRQ_SGE;
117 rxe->attr.max_fast_reg_page_list_len = RXE_MAX_FMR_PAGE_LIST_LEN;
118 rxe->attr.max_pkeys = RXE_MAX_PKEYS;
119 rxe->attr.local_ca_ack_delay = RXE_LOCAL_CA_ACK_DELAY;
120
121 rxe->max_ucontext = RXE_MAX_UCONTEXT;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300122}
123
124/* initialize port attributes */
125static int rxe_init_port_param(struct rxe_port *port)
126{
Nathan Chancellor0797e6f2018-09-26 22:12:23 -0700127 port->attr.state = IB_PORT_DOWN;
128 port->attr.max_mtu = IB_MTU_4096;
129 port->attr.active_mtu = IB_MTU_256;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300130 port->attr.gid_tbl_len = RXE_PORT_GID_TBL_LEN;
131 port->attr.port_cap_flags = RXE_PORT_PORT_CAP_FLAGS;
132 port->attr.max_msg_sz = RXE_PORT_MAX_MSG_SZ;
133 port->attr.bad_pkey_cntr = RXE_PORT_BAD_PKEY_CNTR;
134 port->attr.qkey_viol_cntr = RXE_PORT_QKEY_VIOL_CNTR;
135 port->attr.pkey_tbl_len = RXE_PORT_PKEY_TBL_LEN;
136 port->attr.lid = RXE_PORT_LID;
137 port->attr.sm_lid = RXE_PORT_SM_LID;
138 port->attr.lmc = RXE_PORT_LMC;
139 port->attr.max_vl_num = RXE_PORT_MAX_VL_NUM;
140 port->attr.sm_sl = RXE_PORT_SM_SL;
141 port->attr.subnet_timeout = RXE_PORT_SUBNET_TIMEOUT;
142 port->attr.init_type_reply = RXE_PORT_INIT_TYPE_REPLY;
143 port->attr.active_width = RXE_PORT_ACTIVE_WIDTH;
144 port->attr.active_speed = RXE_PORT_ACTIVE_SPEED;
145 port->attr.phys_state = RXE_PORT_PHYS_STATE;
Nathan Chancellor0797e6f2018-09-26 22:12:23 -0700146 port->mtu_cap = ib_mtu_enum_to_int(IB_MTU_256);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300147 port->subnet_prefix = cpu_to_be64(RXE_PORT_SUBNET_PREFIX);
148
149 return 0;
150}
151
152/* initialize port state, note IB convention that HCA ports are always
153 * numbered from 1
154 */
155static int rxe_init_ports(struct rxe_dev *rxe)
156{
157 struct rxe_port *port = &rxe->port;
158
159 rxe_init_port_param(port);
160
161 if (!port->attr.pkey_tbl_len || !port->attr.gid_tbl_len)
162 return -EINVAL;
163
164 port->pkey_tbl = kcalloc(port->attr.pkey_tbl_len,
165 sizeof(*port->pkey_tbl), GFP_KERNEL);
166
167 if (!port->pkey_tbl)
168 return -ENOMEM;
169
170 port->pkey_tbl[0] = 0xffff;
Yuval Shaia4d6f2852017-03-14 16:01:57 +0200171 addrconf_addr_eui48((unsigned char *)&port->port_guid,
172 rxe->ndev->dev_addr);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300173
174 spin_lock_init(&port->port_lock);
175
176 return 0;
177}
178
179/* init pools of managed objects */
180static int rxe_init_pools(struct rxe_dev *rxe)
181{
182 int err;
183
184 err = rxe_pool_init(rxe, &rxe->uc_pool, RXE_TYPE_UC,
185 rxe->max_ucontext);
186 if (err)
187 goto err1;
188
189 err = rxe_pool_init(rxe, &rxe->pd_pool, RXE_TYPE_PD,
190 rxe->attr.max_pd);
191 if (err)
192 goto err2;
193
194 err = rxe_pool_init(rxe, &rxe->ah_pool, RXE_TYPE_AH,
195 rxe->attr.max_ah);
196 if (err)
197 goto err3;
198
199 err = rxe_pool_init(rxe, &rxe->srq_pool, RXE_TYPE_SRQ,
200 rxe->attr.max_srq);
201 if (err)
202 goto err4;
203
204 err = rxe_pool_init(rxe, &rxe->qp_pool, RXE_TYPE_QP,
205 rxe->attr.max_qp);
206 if (err)
207 goto err5;
208
209 err = rxe_pool_init(rxe, &rxe->cq_pool, RXE_TYPE_CQ,
210 rxe->attr.max_cq);
211 if (err)
212 goto err6;
213
214 err = rxe_pool_init(rxe, &rxe->mr_pool, RXE_TYPE_MR,
215 rxe->attr.max_mr);
216 if (err)
217 goto err7;
218
219 err = rxe_pool_init(rxe, &rxe->mw_pool, RXE_TYPE_MW,
220 rxe->attr.max_mw);
221 if (err)
222 goto err8;
223
224 err = rxe_pool_init(rxe, &rxe->mc_grp_pool, RXE_TYPE_MC_GRP,
225 rxe->attr.max_mcast_grp);
226 if (err)
227 goto err9;
228
229 err = rxe_pool_init(rxe, &rxe->mc_elem_pool, RXE_TYPE_MC_ELEM,
230 rxe->attr.max_total_mcast_qp_attach);
231 if (err)
232 goto err10;
233
234 return 0;
235
236err10:
237 rxe_pool_cleanup(&rxe->mc_grp_pool);
238err9:
239 rxe_pool_cleanup(&rxe->mw_pool);
240err8:
241 rxe_pool_cleanup(&rxe->mr_pool);
242err7:
243 rxe_pool_cleanup(&rxe->cq_pool);
244err6:
245 rxe_pool_cleanup(&rxe->qp_pool);
246err5:
247 rxe_pool_cleanup(&rxe->srq_pool);
248err4:
249 rxe_pool_cleanup(&rxe->ah_pool);
250err3:
251 rxe_pool_cleanup(&rxe->pd_pool);
252err2:
253 rxe_pool_cleanup(&rxe->uc_pool);
254err1:
255 return err;
256}
257
258/* initialize rxe device state */
259static int rxe_init(struct rxe_dev *rxe)
260{
261 int err;
262
263 /* init default device parameters */
264 rxe_init_device_param(rxe);
265
266 err = rxe_init_ports(rxe);
267 if (err)
268 goto err1;
269
270 err = rxe_init_pools(rxe);
271 if (err)
272 goto err2;
273
274 /* init pending mmap list */
275 spin_lock_init(&rxe->mmap_offset_lock);
276 spin_lock_init(&rxe->pending_lock);
277 INIT_LIST_HEAD(&rxe->pending_mmaps);
278 INIT_LIST_HEAD(&rxe->list);
279
280 mutex_init(&rxe->usdev_lock);
281
282 return 0;
283
284err2:
285 rxe_cleanup_ports(rxe);
286err1:
287 return err;
288}
289
Zhu Yanjun0dff4632018-04-20 10:30:54 -0400290void rxe_set_mtu(struct rxe_dev *rxe, unsigned int ndev_mtu)
Moni Shoua8700e3e2016-06-16 16:45:23 +0300291{
292 struct rxe_port *port = &rxe->port;
293 enum ib_mtu mtu;
294
295 mtu = eth_mtu_int_to_enum(ndev_mtu);
296
297 /* Make sure that new MTU in range */
Nathan Chancellor0797e6f2018-09-26 22:12:23 -0700298 mtu = mtu ? min_t(enum ib_mtu, mtu, IB_MTU_4096) : IB_MTU_256;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300299
300 port->attr.active_mtu = mtu;
301 port->mtu_cap = ib_mtu_enum_to_int(mtu);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300302}
Moni Shoua8700e3e2016-06-16 16:45:23 +0300303
304/* called by ifc layer to create new rxe device.
305 * The caller should allocate memory for rxe by calling ib_alloc_device.
306 */
307int rxe_add(struct rxe_dev *rxe, unsigned int mtu)
308{
309 int err;
310
Moni Shoua8700e3e2016-06-16 16:45:23 +0300311 err = rxe_init(rxe);
312 if (err)
Jason Gunthorpec3670742019-01-22 16:27:24 -0700313 return err;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300314
Zhu Yanjun0dff4632018-04-20 10:30:54 -0400315 rxe_set_mtu(rxe, mtu);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300316
Jason Gunthorpec3670742019-01-22 16:27:24 -0700317 return rxe_register_device(rxe);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300318}
Moni Shoua8700e3e2016-06-16 16:45:23 +0300319
320static int __init rxe_module_init(void)
321{
322 int err;
323
324 /* initialize slab caches for managed objects */
325 err = rxe_cache_init();
326 if (err) {
Parav Pandite404f942016-09-28 20:26:26 +0000327 pr_err("unable to init object pools\n");
Moni Shoua8700e3e2016-06-16 16:45:23 +0300328 return err;
329 }
330
Parav Pandite404f942016-09-28 20:26:26 +0000331 err = rxe_net_init();
332 if (err)
333 return err;
Yonatan Cohendfdd6152016-09-07 14:04:04 +0300334
Parav Pandite404f942016-09-28 20:26:26 +0000335 pr_info("loaded\n");
Moni Shoua8700e3e2016-06-16 16:45:23 +0300336 return 0;
Moni Shoua8700e3e2016-06-16 16:45:23 +0300337}
338
339static void __exit rxe_module_exit(void)
340{
Jason Gunthorpec3670742019-01-22 16:27:24 -0700341 ib_unregister_driver(RDMA_DRIVER_RXE);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300342 rxe_net_exit();
343 rxe_cache_exit();
344
Parav Pandite404f942016-09-28 20:26:26 +0000345 pr_info("unloaded\n");
Moni Shoua8700e3e2016-06-16 16:45:23 +0300346}
347
Stephen Batesb9fe8562016-09-23 09:32:11 -0600348late_initcall(rxe_module_init);
Moni Shoua8700e3e2016-06-16 16:45:23 +0300349module_exit(rxe_module_exit);