blob: 08a7340e19ffdca410aa5fd50a38e8f1df756f0b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Tom Duffycd4e8fb2005-06-27 14:36:37 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Roland Dreier5e0b5372005-07-07 17:57:16 -07004 * Copyright (c) 2005 Cisco Systems. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07005 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
13 *
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
16 * conditions are met:
17 *
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer.
21 *
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * SOFTWARE.
35 *
36 * $Id: mthca_provider.c 1397 2004-12-28 05:09:00Z roland $
37 */
38
39#include <ib_smi.h>
Roland Dreier53b8b3f2005-07-07 17:57:17 -070040#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "mthca_dev.h"
43#include "mthca_cmd.h"
Roland Dreier5e0b5372005-07-07 17:57:16 -070044#include "mthca_user.h"
45#include "mthca_memfree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static int mthca_query_device(struct ib_device *ibdev,
48 struct ib_device_attr *props)
49{
50 struct ib_smp *in_mad = NULL;
51 struct ib_smp *out_mad = NULL;
52 int err = -ENOMEM;
53 struct mthca_dev* mdev = to_mdev(ibdev);
54
55 u8 status;
56
57 in_mad = kmalloc(sizeof *in_mad, GFP_KERNEL);
58 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
59 if (!in_mad || !out_mad)
60 goto out;
61
Roland Dreiera8520922005-06-27 14:36:42 -070062 memset(props, 0, sizeof *props);
Roland Dreier8cf2daf2005-04-16 15:26:14 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 props->fw_ver = mdev->fw_ver;
65
66 memset(in_mad, 0, sizeof *in_mad);
67 in_mad->base_version = 1;
68 in_mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
69 in_mad->class_version = 1;
70 in_mad->method = IB_MGMT_METHOD_GET;
71 in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
72
73 err = mthca_MAD_IFC(mdev, 1, 1,
74 1, NULL, NULL, in_mad, out_mad,
75 &status);
76 if (err)
77 goto out;
78 if (status) {
79 err = -EINVAL;
80 goto out;
81 }
82
Roland Dreier8cf2daf2005-04-16 15:26:14 -070083 props->device_cap_flags = mdev->device_cap_flags;
Sean Hefty97f52eb2005-08-13 21:05:57 -070084 props->vendor_id = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 0xffffff;
Sean Hefty97f52eb2005-08-13 21:05:57 -070086 props->vendor_part_id = be16_to_cpup((__be16 *) (out_mad->data + 30));
87 props->hw_ver = be16_to_cpup((__be16 *) (out_mad->data + 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 memcpy(&props->sys_image_guid, out_mad->data + 4, 8);
89 memcpy(&props->node_guid, out_mad->data + 12, 8);
90
Roland Dreier8cf2daf2005-04-16 15:26:14 -070091 props->max_mr_size = ~0ull;
92 props->max_qp = mdev->limits.num_qps - mdev->limits.reserved_qps;
93 props->max_qp_wr = 0xffff;
94 props->max_sge = mdev->limits.max_sg;
95 props->max_cq = mdev->limits.num_cqs - mdev->limits.reserved_cqs;
96 props->max_cqe = 0xffff;
97 props->max_mr = mdev->limits.num_mpts - mdev->limits.reserved_mrws;
98 props->max_pd = mdev->limits.num_pds - mdev->limits.reserved_pds;
99 props->max_qp_rd_atom = 1 << mdev->qp_table.rdb_shift;
100 props->max_qp_init_rd_atom = 1 << mdev->qp_table.rdb_shift;
101 props->local_ca_ack_delay = mdev->limits.local_ca_ack_delay;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 err = 0;
104 out:
105 kfree(in_mad);
106 kfree(out_mad);
107 return err;
108}
109
110static int mthca_query_port(struct ib_device *ibdev,
111 u8 port, struct ib_port_attr *props)
112{
113 struct ib_smp *in_mad = NULL;
114 struct ib_smp *out_mad = NULL;
115 int err = -ENOMEM;
116 u8 status;
117
118 in_mad = kmalloc(sizeof *in_mad, GFP_KERNEL);
119 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
120 if (!in_mad || !out_mad)
121 goto out;
122
Roland Dreierd1887ec2005-08-18 12:14:11 -0700123 memset(props, 0, sizeof *props);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 memset(in_mad, 0, sizeof *in_mad);
126 in_mad->base_version = 1;
127 in_mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
128 in_mad->class_version = 1;
129 in_mad->method = IB_MGMT_METHOD_GET;
130 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
131 in_mad->attr_mod = cpu_to_be32(port);
132
133 err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1,
134 port, NULL, NULL, in_mad, out_mad,
135 &status);
136 if (err)
137 goto out;
138 if (status) {
139 err = -EINVAL;
140 goto out;
141 }
142
Sean Hefty97f52eb2005-08-13 21:05:57 -0700143 props->lid = be16_to_cpup((__be16 *) (out_mad->data + 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 props->lmc = out_mad->data[34] & 0x7;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700145 props->sm_lid = be16_to_cpup((__be16 *) (out_mad->data + 18));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 props->sm_sl = out_mad->data[36] & 0xf;
147 props->state = out_mad->data[32] & 0xf;
148 props->phys_state = out_mad->data[33] >> 4;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700149 props->port_cap_flags = be32_to_cpup((__be32 *) (out_mad->data + 20));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 props->gid_tbl_len = to_mdev(ibdev)->limits.gid_table_len;
Roland Dreierd1887ec2005-08-18 12:14:11 -0700151 props->max_msg_sz = 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 props->pkey_tbl_len = to_mdev(ibdev)->limits.pkey_table_len;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700153 props->qkey_viol_cntr = be16_to_cpup((__be16 *) (out_mad->data + 48));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 props->active_width = out_mad->data[31] & 0xf;
155 props->active_speed = out_mad->data[35] >> 4;
156
157 out:
158 kfree(in_mad);
159 kfree(out_mad);
160 return err;
161}
162
163static int mthca_modify_port(struct ib_device *ibdev,
164 u8 port, int port_modify_mask,
165 struct ib_port_modify *props)
166{
167 struct mthca_set_ib_param set_ib;
168 struct ib_port_attr attr;
169 int err;
170 u8 status;
171
172 if (down_interruptible(&to_mdev(ibdev)->cap_mask_mutex))
173 return -ERESTARTSYS;
174
175 err = mthca_query_port(ibdev, port, &attr);
176 if (err)
177 goto out;
178
179 set_ib.set_si_guid = 0;
180 set_ib.reset_qkey_viol = !!(port_modify_mask & IB_PORT_RESET_QKEY_CNTR);
181
182 set_ib.cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) &
183 ~props->clr_port_cap_mask;
184
185 err = mthca_SET_IB(to_mdev(ibdev), &set_ib, port, &status);
186 if (err)
187 goto out;
188 if (status) {
189 err = -EINVAL;
190 goto out;
191 }
192
193out:
194 up(&to_mdev(ibdev)->cap_mask_mutex);
195 return err;
196}
197
198static int mthca_query_pkey(struct ib_device *ibdev,
199 u8 port, u16 index, u16 *pkey)
200{
201 struct ib_smp *in_mad = NULL;
202 struct ib_smp *out_mad = NULL;
203 int err = -ENOMEM;
204 u8 status;
205
206 in_mad = kmalloc(sizeof *in_mad, GFP_KERNEL);
207 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
208 if (!in_mad || !out_mad)
209 goto out;
210
211 memset(in_mad, 0, sizeof *in_mad);
212 in_mad->base_version = 1;
213 in_mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
214 in_mad->class_version = 1;
215 in_mad->method = IB_MGMT_METHOD_GET;
216 in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
217 in_mad->attr_mod = cpu_to_be32(index / 32);
218
219 err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1,
220 port, NULL, NULL, in_mad, out_mad,
221 &status);
222 if (err)
223 goto out;
224 if (status) {
225 err = -EINVAL;
226 goto out;
227 }
228
Sean Hefty97f52eb2005-08-13 21:05:57 -0700229 *pkey = be16_to_cpu(((__be16 *) out_mad->data)[index % 32]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 out:
232 kfree(in_mad);
233 kfree(out_mad);
234 return err;
235}
236
237static int mthca_query_gid(struct ib_device *ibdev, u8 port,
238 int index, union ib_gid *gid)
239{
240 struct ib_smp *in_mad = NULL;
241 struct ib_smp *out_mad = NULL;
242 int err = -ENOMEM;
243 u8 status;
244
245 in_mad = kmalloc(sizeof *in_mad, GFP_KERNEL);
246 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
247 if (!in_mad || !out_mad)
248 goto out;
249
250 memset(in_mad, 0, sizeof *in_mad);
251 in_mad->base_version = 1;
252 in_mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
253 in_mad->class_version = 1;
254 in_mad->method = IB_MGMT_METHOD_GET;
255 in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
256 in_mad->attr_mod = cpu_to_be32(port);
257
258 err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1,
259 port, NULL, NULL, in_mad, out_mad,
260 &status);
261 if (err)
262 goto out;
263 if (status) {
264 err = -EINVAL;
265 goto out;
266 }
267
268 memcpy(gid->raw, out_mad->data + 8, 8);
269
270 memset(in_mad, 0, sizeof *in_mad);
271 in_mad->base_version = 1;
272 in_mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
273 in_mad->class_version = 1;
274 in_mad->method = IB_MGMT_METHOD_GET;
275 in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
276 in_mad->attr_mod = cpu_to_be32(index / 8);
277
278 err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1,
279 port, NULL, NULL, in_mad, out_mad,
280 &status);
281 if (err)
282 goto out;
283 if (status) {
284 err = -EINVAL;
285 goto out;
286 }
287
288 memcpy(gid->raw + 8, out_mad->data + (index % 8) * 16, 8);
289
290 out:
291 kfree(in_mad);
292 kfree(out_mad);
293 return err;
294}
295
Roland Dreier5e0b5372005-07-07 17:57:16 -0700296static struct ib_ucontext *mthca_alloc_ucontext(struct ib_device *ibdev,
297 struct ib_udata *udata)
298{
299 struct mthca_alloc_ucontext_resp uresp;
300 struct mthca_ucontext *context;
301 int err;
302
303 memset(&uresp, 0, sizeof uresp);
304
305 uresp.qp_tab_size = to_mdev(ibdev)->limits.num_qps;
306 if (mthca_is_memfree(to_mdev(ibdev)))
307 uresp.uarc_size = to_mdev(ibdev)->uar_table.uarc_size;
308 else
309 uresp.uarc_size = 0;
310
311 context = kmalloc(sizeof *context, GFP_KERNEL);
312 if (!context)
313 return ERR_PTR(-ENOMEM);
314
315 err = mthca_uar_alloc(to_mdev(ibdev), &context->uar);
316 if (err) {
317 kfree(context);
318 return ERR_PTR(err);
319 }
320
321 context->db_tab = mthca_init_user_db_tab(to_mdev(ibdev));
322 if (IS_ERR(context->db_tab)) {
323 err = PTR_ERR(context->db_tab);
324 mthca_uar_free(to_mdev(ibdev), &context->uar);
325 kfree(context);
326 return ERR_PTR(err);
327 }
328
329 if (ib_copy_to_udata(udata, &uresp, sizeof uresp)) {
330 mthca_cleanup_user_db_tab(to_mdev(ibdev), &context->uar, context->db_tab);
331 mthca_uar_free(to_mdev(ibdev), &context->uar);
332 kfree(context);
333 return ERR_PTR(-EFAULT);
334 }
335
336 return &context->ibucontext;
337}
338
339static int mthca_dealloc_ucontext(struct ib_ucontext *context)
340{
341 mthca_cleanup_user_db_tab(to_mdev(context->device), &to_mucontext(context)->uar,
342 to_mucontext(context)->db_tab);
343 mthca_uar_free(to_mdev(context->device), &to_mucontext(context)->uar);
344 kfree(to_mucontext(context));
345
346 return 0;
347}
348
Roland Dreier53b8b3f2005-07-07 17:57:17 -0700349static int mthca_mmap_uar(struct ib_ucontext *context,
350 struct vm_area_struct *vma)
351{
352 if (vma->vm_end - vma->vm_start != PAGE_SIZE)
353 return -EINVAL;
354
355 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
356
Michael S. Tsirkin6d376752005-07-27 14:42:45 -0700357 if (io_remap_pfn_range(vma, vma->vm_start,
358 to_mucontext(context)->uar.pfn,
359 PAGE_SIZE, vma->vm_page_prot))
Roland Dreier53b8b3f2005-07-07 17:57:17 -0700360 return -EAGAIN;
361
362 return 0;
363}
364
Roland Dreier1cf296b2005-07-07 17:57:11 -0700365static struct ib_pd *mthca_alloc_pd(struct ib_device *ibdev,
366 struct ib_ucontext *context,
367 struct ib_udata *udata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct mthca_pd *pd;
370 int err;
371
372 pd = kmalloc(sizeof *pd, GFP_KERNEL);
373 if (!pd)
374 return ERR_PTR(-ENOMEM);
375
Roland Dreier99264c12005-07-07 17:57:18 -0700376 err = mthca_pd_alloc(to_mdev(ibdev), !context, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (err) {
378 kfree(pd);
379 return ERR_PTR(err);
380 }
381
Roland Dreier99264c12005-07-07 17:57:18 -0700382 if (context) {
383 if (ib_copy_to_udata(udata, &pd->pd_num, sizeof (__u32))) {
384 mthca_pd_free(to_mdev(ibdev), pd);
385 kfree(pd);
386 return ERR_PTR(-EFAULT);
387 }
388 }
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return &pd->ibpd;
391}
392
393static int mthca_dealloc_pd(struct ib_pd *pd)
394{
395 mthca_pd_free(to_mdev(pd->device), to_mpd(pd));
396 kfree(pd);
397
398 return 0;
399}
400
401static struct ib_ah *mthca_ah_create(struct ib_pd *pd,
402 struct ib_ah_attr *ah_attr)
403{
404 int err;
405 struct mthca_ah *ah;
406
Roland Dreier8df8a342005-04-16 15:26:26 -0700407 ah = kmalloc(sizeof *ah, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!ah)
409 return ERR_PTR(-ENOMEM);
410
411 err = mthca_create_ah(to_mdev(pd->device), to_mpd(pd), ah_attr, ah);
412 if (err) {
413 kfree(ah);
414 return ERR_PTR(err);
415 }
416
417 return &ah->ibah;
418}
419
420static int mthca_ah_destroy(struct ib_ah *ah)
421{
422 mthca_destroy_ah(to_mdev(ah->device), to_mah(ah));
423 kfree(ah);
424
425 return 0;
426}
427
428static struct ib_qp *mthca_create_qp(struct ib_pd *pd,
Roland Dreier1cf296b2005-07-07 17:57:11 -0700429 struct ib_qp_init_attr *init_attr,
430 struct ib_udata *udata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Roland Dreier80c8ec22005-07-07 17:57:20 -0700432 struct mthca_create_qp ucmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct mthca_qp *qp;
434 int err;
435
436 switch (init_attr->qp_type) {
437 case IB_QPT_RC:
438 case IB_QPT_UC:
439 case IB_QPT_UD:
440 {
Roland Dreier80c8ec22005-07-07 17:57:20 -0700441 struct mthca_ucontext *context;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 qp = kmalloc(sizeof *qp, GFP_KERNEL);
444 if (!qp)
445 return ERR_PTR(-ENOMEM);
446
Roland Dreier80c8ec22005-07-07 17:57:20 -0700447 if (pd->uobject) {
448 context = to_mucontext(pd->uobject->context);
449
450 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd))
451 return ERR_PTR(-EFAULT);
452
453 err = mthca_map_user_db(to_mdev(pd->device), &context->uar,
454 context->db_tab,
455 ucmd.sq_db_index, ucmd.sq_db_page);
456 if (err) {
457 kfree(qp);
458 return ERR_PTR(err);
459 }
460
461 err = mthca_map_user_db(to_mdev(pd->device), &context->uar,
462 context->db_tab,
463 ucmd.rq_db_index, ucmd.rq_db_page);
464 if (err) {
465 mthca_unmap_user_db(to_mdev(pd->device),
466 &context->uar,
467 context->db_tab,
468 ucmd.sq_db_index);
469 kfree(qp);
470 return ERR_PTR(err);
471 }
472
473 qp->mr.ibmr.lkey = ucmd.lkey;
474 qp->sq.db_index = ucmd.sq_db_index;
475 qp->rq.db_index = ucmd.rq_db_index;
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 err = mthca_alloc_qp(to_mdev(pd->device), to_mpd(pd),
479 to_mcq(init_attr->send_cq),
480 to_mcq(init_attr->recv_cq),
481 init_attr->qp_type, init_attr->sq_sig_type,
Roland Dreier80c8ec22005-07-07 17:57:20 -0700482 &init_attr->cap, qp);
483
484 if (err && pd->uobject) {
485 context = to_mucontext(pd->uobject->context);
486
487 mthca_unmap_user_db(to_mdev(pd->device),
488 &context->uar,
489 context->db_tab,
490 ucmd.sq_db_index);
491 mthca_unmap_user_db(to_mdev(pd->device),
492 &context->uar,
493 context->db_tab,
494 ucmd.rq_db_index);
495 }
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 qp->ibqp.qp_num = qp->qpn;
498 break;
499 }
500 case IB_QPT_SMI:
501 case IB_QPT_GSI:
502 {
Roland Dreier80c8ec22005-07-07 17:57:20 -0700503 /* Don't allow userspace to create special QPs */
504 if (pd->uobject)
505 return ERR_PTR(-EINVAL);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 qp = kmalloc(sizeof (struct mthca_sqp), GFP_KERNEL);
508 if (!qp)
509 return ERR_PTR(-ENOMEM);
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
512
513 err = mthca_alloc_sqp(to_mdev(pd->device), to_mpd(pd),
514 to_mcq(init_attr->send_cq),
515 to_mcq(init_attr->recv_cq),
Roland Dreier80c8ec22005-07-07 17:57:20 -0700516 init_attr->sq_sig_type, &init_attr->cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 qp->ibqp.qp_num, init_attr->port_num,
518 to_msqp(qp));
519 break;
520 }
521 default:
522 /* Don't support raw QPs */
523 return ERR_PTR(-ENOSYS);
524 }
525
526 if (err) {
527 kfree(qp);
528 return ERR_PTR(err);
529 }
530
Roland Dreier80c8ec22005-07-07 17:57:20 -0700531 init_attr->cap.max_inline_data = 0;
532 init_attr->cap.max_send_wr = qp->sq.max;
533 init_attr->cap.max_recv_wr = qp->rq.max;
534 init_attr->cap.max_send_sge = qp->sq.max_gs;
535 init_attr->cap.max_recv_sge = qp->rq.max_gs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 return &qp->ibqp;
538}
539
540static int mthca_destroy_qp(struct ib_qp *qp)
541{
Roland Dreier80c8ec22005-07-07 17:57:20 -0700542 if (qp->uobject) {
543 mthca_unmap_user_db(to_mdev(qp->device),
544 &to_mucontext(qp->uobject->context)->uar,
545 to_mucontext(qp->uobject->context)->db_tab,
546 to_mqp(qp)->sq.db_index);
547 mthca_unmap_user_db(to_mdev(qp->device),
548 &to_mucontext(qp->uobject->context)->uar,
549 to_mucontext(qp->uobject->context)->db_tab,
550 to_mqp(qp)->rq.db_index);
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 mthca_free_qp(to_mdev(qp->device), to_mqp(qp));
553 kfree(qp);
554 return 0;
555}
556
Roland Dreier1cf296b2005-07-07 17:57:11 -0700557static struct ib_cq *mthca_create_cq(struct ib_device *ibdev, int entries,
558 struct ib_ucontext *context,
559 struct ib_udata *udata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Roland Dreier74c21742005-07-07 17:57:19 -0700561 struct mthca_create_cq ucmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct mthca_cq *cq;
563 int nent;
564 int err;
565
Roland Dreier74c21742005-07-07 17:57:19 -0700566 if (context) {
567 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd))
568 return ERR_PTR(-EFAULT);
569
570 err = mthca_map_user_db(to_mdev(ibdev), &to_mucontext(context)->uar,
571 to_mucontext(context)->db_tab,
572 ucmd.set_db_index, ucmd.set_db_page);
573 if (err)
574 return ERR_PTR(err);
575
576 err = mthca_map_user_db(to_mdev(ibdev), &to_mucontext(context)->uar,
577 to_mucontext(context)->db_tab,
578 ucmd.arm_db_index, ucmd.arm_db_page);
579 if (err)
580 goto err_unmap_set;
581 }
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 cq = kmalloc(sizeof *cq, GFP_KERNEL);
Roland Dreier74c21742005-07-07 17:57:19 -0700584 if (!cq) {
585 err = -ENOMEM;
586 goto err_unmap_arm;
587 }
588
589 if (context) {
590 cq->mr.ibmr.lkey = ucmd.lkey;
591 cq->set_ci_db_index = ucmd.set_db_index;
592 cq->arm_db_index = ucmd.arm_db_index;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 for (nent = 1; nent <= entries; nent <<= 1)
596 ; /* nothing */
597
Roland Dreier74c21742005-07-07 17:57:19 -0700598 err = mthca_init_cq(to_mdev(ibdev), nent,
599 context ? to_mucontext(context) : NULL,
600 context ? ucmd.pdn : to_mdev(ibdev)->driver_pd.pd_num,
601 cq);
602 if (err)
603 goto err_free;
604
605 if (context && ib_copy_to_udata(udata, &cq->cqn, sizeof (__u32))) {
606 mthca_free_cq(to_mdev(ibdev), cq);
607 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 return &cq->ibcq;
Roland Dreier74c21742005-07-07 17:57:19 -0700611
612err_free:
613 kfree(cq);
614
615err_unmap_arm:
616 if (context)
617 mthca_unmap_user_db(to_mdev(ibdev), &to_mucontext(context)->uar,
618 to_mucontext(context)->db_tab, ucmd.arm_db_index);
619
620err_unmap_set:
621 if (context)
622 mthca_unmap_user_db(to_mdev(ibdev), &to_mucontext(context)->uar,
623 to_mucontext(context)->db_tab, ucmd.set_db_index);
624
625 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628static int mthca_destroy_cq(struct ib_cq *cq)
629{
Roland Dreier74c21742005-07-07 17:57:19 -0700630 if (cq->uobject) {
631 mthca_unmap_user_db(to_mdev(cq->device),
632 &to_mucontext(cq->uobject->context)->uar,
633 to_mucontext(cq->uobject->context)->db_tab,
634 to_mcq(cq)->arm_db_index);
635 mthca_unmap_user_db(to_mdev(cq->device),
636 &to_mucontext(cq->uobject->context)->uar,
637 to_mucontext(cq->uobject->context)->db_tab,
638 to_mcq(cq)->set_ci_db_index);
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 mthca_free_cq(to_mdev(cq->device), to_mcq(cq));
641 kfree(cq);
642
643 return 0;
644}
645
646static inline u32 convert_access(int acc)
647{
648 return (acc & IB_ACCESS_REMOTE_ATOMIC ? MTHCA_MPT_FLAG_ATOMIC : 0) |
649 (acc & IB_ACCESS_REMOTE_WRITE ? MTHCA_MPT_FLAG_REMOTE_WRITE : 0) |
650 (acc & IB_ACCESS_REMOTE_READ ? MTHCA_MPT_FLAG_REMOTE_READ : 0) |
651 (acc & IB_ACCESS_LOCAL_WRITE ? MTHCA_MPT_FLAG_LOCAL_WRITE : 0) |
652 MTHCA_MPT_FLAG_LOCAL_READ;
653}
654
655static struct ib_mr *mthca_get_dma_mr(struct ib_pd *pd, int acc)
656{
657 struct mthca_mr *mr;
658 int err;
659
660 mr = kmalloc(sizeof *mr, GFP_KERNEL);
661 if (!mr)
662 return ERR_PTR(-ENOMEM);
663
664 err = mthca_mr_alloc_notrans(to_mdev(pd->device),
665 to_mpd(pd)->pd_num,
666 convert_access(acc), mr);
667
668 if (err) {
669 kfree(mr);
670 return ERR_PTR(err);
671 }
672
673 return &mr->ibmr;
674}
675
676static struct ib_mr *mthca_reg_phys_mr(struct ib_pd *pd,
677 struct ib_phys_buf *buffer_list,
678 int num_phys_buf,
679 int acc,
680 u64 *iova_start)
681{
682 struct mthca_mr *mr;
683 u64 *page_list;
684 u64 total_size;
685 u64 mask;
686 int shift;
687 int npages;
688 int err;
689 int i, j, n;
690
691 /* First check that we have enough alignment */
692 if ((*iova_start & ~PAGE_MASK) != (buffer_list[0].addr & ~PAGE_MASK))
693 return ERR_PTR(-EINVAL);
694
695 if (num_phys_buf > 1 &&
696 ((buffer_list[0].addr + buffer_list[0].size) & ~PAGE_MASK))
697 return ERR_PTR(-EINVAL);
698
699 mask = 0;
700 total_size = 0;
701 for (i = 0; i < num_phys_buf; ++i) {
Michael S. Tsirkin72c30292005-04-16 15:26:16 -0700702 if (i != 0 && buffer_list[i].addr & ~PAGE_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return ERR_PTR(-EINVAL);
704 if (i != 0 && i != num_phys_buf - 1 &&
705 (buffer_list[i].size & ~PAGE_MASK))
706 return ERR_PTR(-EINVAL);
707
708 total_size += buffer_list[i].size;
709 if (i > 0)
710 mask |= buffer_list[i].addr;
711 }
712
713 /* Find largest page shift we can use to cover buffers */
714 for (shift = PAGE_SHIFT; shift < 31; ++shift)
715 if (num_phys_buf > 1) {
716 if ((1ULL << shift) & mask)
717 break;
718 } else {
719 if (1ULL << shift >=
720 buffer_list[0].size +
721 (buffer_list[0].addr & ((1ULL << shift) - 1)))
722 break;
723 }
724
725 buffer_list[0].size += buffer_list[0].addr & ((1ULL << shift) - 1);
726 buffer_list[0].addr &= ~0ull << shift;
727
728 mr = kmalloc(sizeof *mr, GFP_KERNEL);
729 if (!mr)
730 return ERR_PTR(-ENOMEM);
731
732 npages = 0;
733 for (i = 0; i < num_phys_buf; ++i)
734 npages += (buffer_list[i].size + (1ULL << shift) - 1) >> shift;
735
736 if (!npages)
737 return &mr->ibmr;
738
739 page_list = kmalloc(npages * sizeof *page_list, GFP_KERNEL);
740 if (!page_list) {
741 kfree(mr);
742 return ERR_PTR(-ENOMEM);
743 }
744
745 n = 0;
746 for (i = 0; i < num_phys_buf; ++i)
747 for (j = 0;
748 j < (buffer_list[i].size + (1ULL << shift) - 1) >> shift;
749 ++j)
750 page_list[n++] = buffer_list[i].addr + ((u64) j << shift);
751
752 mthca_dbg(to_mdev(pd->device), "Registering memory at %llx (iova %llx) "
753 "in PD %x; shift %d, npages %d.\n",
754 (unsigned long long) buffer_list[0].addr,
755 (unsigned long long) *iova_start,
756 to_mpd(pd)->pd_num,
757 shift, npages);
758
759 err = mthca_mr_alloc_phys(to_mdev(pd->device),
760 to_mpd(pd)->pd_num,
761 page_list, shift, npages,
762 *iova_start, total_size,
763 convert_access(acc), mr);
764
765 if (err) {
Roland Dreier761f9eb2005-06-27 14:36:44 -0700766 kfree(page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 kfree(mr);
768 return ERR_PTR(err);
769 }
770
771 kfree(page_list);
772 return &mr->ibmr;
773}
774
Roland Dreier24d42812005-07-07 17:57:19 -0700775static struct ib_mr *mthca_reg_user_mr(struct ib_pd *pd, struct ib_umem *region,
776 int acc, struct ib_udata *udata)
777{
778 struct mthca_dev *dev = to_mdev(pd->device);
779 struct ib_umem_chunk *chunk;
780 struct mthca_mr *mr;
781 u64 *pages;
782 int shift, n, len;
783 int i, j, k;
784 int err = 0;
785
786 shift = ffs(region->page_size) - 1;
787
788 mr = kmalloc(sizeof *mr, GFP_KERNEL);
789 if (!mr)
790 return ERR_PTR(-ENOMEM);
791
792 n = 0;
793 list_for_each_entry(chunk, &region->chunk_list, list)
794 n += chunk->nents;
795
796 mr->mtt = mthca_alloc_mtt(dev, n);
797 if (IS_ERR(mr->mtt)) {
798 err = PTR_ERR(mr->mtt);
799 goto err;
800 }
801
802 pages = (u64 *) __get_free_page(GFP_KERNEL);
803 if (!pages) {
804 err = -ENOMEM;
805 goto err_mtt;
806 }
807
808 i = n = 0;
809
810 list_for_each_entry(chunk, &region->chunk_list, list)
811 for (j = 0; j < chunk->nmap; ++j) {
812 len = sg_dma_len(&chunk->page_list[j]) >> shift;
813 for (k = 0; k < len; ++k) {
814 pages[i++] = sg_dma_address(&chunk->page_list[j]) +
815 region->page_size * k;
816 /*
817 * Be friendly to WRITE_MTT command
818 * and leave two empty slots for the
819 * index and reserved fields of the
820 * mailbox.
821 */
822 if (i == PAGE_SIZE / sizeof (u64) - 2) {
823 err = mthca_write_mtt(dev, mr->mtt,
824 n, pages, i);
825 if (err)
826 goto mtt_done;
827 n += i;
828 i = 0;
829 }
830 }
831 }
832
833 if (i)
834 err = mthca_write_mtt(dev, mr->mtt, n, pages, i);
835mtt_done:
836 free_page((unsigned long) pages);
837 if (err)
838 goto err_mtt;
839
840 err = mthca_mr_alloc(dev, to_mpd(pd)->pd_num, shift, region->virt_base,
841 region->length, convert_access(acc), mr);
842
843 if (err)
844 goto err_mtt;
845
846 return &mr->ibmr;
847
848err_mtt:
849 mthca_free_mtt(dev, mr->mtt);
850
851err:
852 kfree(mr);
853 return ERR_PTR(err);
854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856static int mthca_dereg_mr(struct ib_mr *mr)
857{
Roland Dreiere464b2a2005-04-16 15:26:17 -0700858 struct mthca_mr *mmr = to_mmr(mr);
859 mthca_free_mr(to_mdev(mr->device), mmr);
860 kfree(mmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return 0;
862}
863
Michael S. Tsirkine0f5fdc2005-04-16 15:26:30 -0700864static struct ib_fmr *mthca_alloc_fmr(struct ib_pd *pd, int mr_access_flags,
865 struct ib_fmr_attr *fmr_attr)
866{
867 struct mthca_fmr *fmr;
868 int err;
869
870 fmr = kmalloc(sizeof *fmr, GFP_KERNEL);
871 if (!fmr)
872 return ERR_PTR(-ENOMEM);
873
874 memcpy(&fmr->attr, fmr_attr, sizeof *fmr_attr);
875 err = mthca_fmr_alloc(to_mdev(pd->device), to_mpd(pd)->pd_num,
876 convert_access(mr_access_flags), fmr);
877
878 if (err) {
879 kfree(fmr);
880 return ERR_PTR(err);
881 }
882
883 return &fmr->ibmr;
884}
885
886static int mthca_dealloc_fmr(struct ib_fmr *fmr)
887{
888 struct mthca_fmr *mfmr = to_mfmr(fmr);
889 int err;
890
891 err = mthca_free_fmr(to_mdev(fmr->device), mfmr);
892 if (err)
893 return err;
894
895 kfree(mfmr);
896 return 0;
897}
898
899static int mthca_unmap_fmr(struct list_head *fmr_list)
900{
901 struct ib_fmr *fmr;
902 int err;
903 u8 status;
904 struct mthca_dev *mdev = NULL;
905
906 list_for_each_entry(fmr, fmr_list, list) {
907 if (mdev && to_mdev(fmr->device) != mdev)
908 return -EINVAL;
909 mdev = to_mdev(fmr->device);
910 }
911
912 if (!mdev)
913 return 0;
914
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700915 if (mthca_is_memfree(mdev)) {
Michael S. Tsirkine0f5fdc2005-04-16 15:26:30 -0700916 list_for_each_entry(fmr, fmr_list, list)
917 mthca_arbel_fmr_unmap(mdev, to_mfmr(fmr));
918
919 wmb();
920 } else
921 list_for_each_entry(fmr, fmr_list, list)
922 mthca_tavor_fmr_unmap(mdev, to_mfmr(fmr));
923
924 err = mthca_SYNC_TPT(mdev, &status);
925 if (err)
926 return err;
927 if (status)
928 return -EINVAL;
929 return 0;
930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932static ssize_t show_rev(struct class_device *cdev, char *buf)
933{
934 struct mthca_dev *dev = container_of(cdev, struct mthca_dev, ib_dev.class_dev);
935 return sprintf(buf, "%x\n", dev->rev_id);
936}
937
938static ssize_t show_fw_ver(struct class_device *cdev, char *buf)
939{
940 struct mthca_dev *dev = container_of(cdev, struct mthca_dev, ib_dev.class_dev);
941 return sprintf(buf, "%x.%x.%x\n", (int) (dev->fw_ver >> 32),
942 (int) (dev->fw_ver >> 16) & 0xffff,
943 (int) dev->fw_ver & 0xffff);
944}
945
946static ssize_t show_hca(struct class_device *cdev, char *buf)
947{
948 struct mthca_dev *dev = container_of(cdev, struct mthca_dev, ib_dev.class_dev);
Roland Dreier68a3c212005-04-16 15:26:34 -0700949 switch (dev->pdev->device) {
950 case PCI_DEVICE_ID_MELLANOX_TAVOR:
951 return sprintf(buf, "MT23108\n");
952 case PCI_DEVICE_ID_MELLANOX_ARBEL_COMPAT:
953 return sprintf(buf, "MT25208 (MT23108 compat mode)\n");
954 case PCI_DEVICE_ID_MELLANOX_ARBEL:
955 return sprintf(buf, "MT25208\n");
956 case PCI_DEVICE_ID_MELLANOX_SINAI:
957 case PCI_DEVICE_ID_MELLANOX_SINAI_OLD:
958 return sprintf(buf, "MT25204\n");
959 default:
960 return sprintf(buf, "unknown\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962}
963
Michael S. Tsirkin2e8b9812005-08-13 21:19:38 -0700964static ssize_t show_board(struct class_device *cdev, char *buf)
965{
966 struct mthca_dev *dev = container_of(cdev, struct mthca_dev, ib_dev.class_dev);
967 return sprintf(buf, "%.*s\n", MTHCA_BOARD_ID_LEN, dev->board_id);
968}
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970static CLASS_DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
971static CLASS_DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
972static CLASS_DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
Michael S. Tsirkin2e8b9812005-08-13 21:19:38 -0700973static CLASS_DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975static struct class_device_attribute *mthca_class_attributes[] = {
976 &class_device_attr_hw_rev,
977 &class_device_attr_fw_ver,
Michael S. Tsirkin2e8b9812005-08-13 21:19:38 -0700978 &class_device_attr_hca_type,
979 &class_device_attr_board_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980};
981
982int mthca_register_device(struct mthca_dev *dev)
983{
984 int ret;
985 int i;
986
987 strlcpy(dev->ib_dev.name, "mthca%d", IB_DEVICE_NAME_MAX);
Roland Dreier1cf296b2005-07-07 17:57:11 -0700988 dev->ib_dev.owner = THIS_MODULE;
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 dev->ib_dev.node_type = IB_NODE_CA;
991 dev->ib_dev.phys_port_cnt = dev->limits.num_ports;
992 dev->ib_dev.dma_device = &dev->pdev->dev;
993 dev->ib_dev.class_dev.dev = &dev->pdev->dev;
994 dev->ib_dev.query_device = mthca_query_device;
995 dev->ib_dev.query_port = mthca_query_port;
996 dev->ib_dev.modify_port = mthca_modify_port;
997 dev->ib_dev.query_pkey = mthca_query_pkey;
998 dev->ib_dev.query_gid = mthca_query_gid;
Roland Dreier5e0b5372005-07-07 17:57:16 -0700999 dev->ib_dev.alloc_ucontext = mthca_alloc_ucontext;
1000 dev->ib_dev.dealloc_ucontext = mthca_dealloc_ucontext;
Roland Dreier53b8b3f2005-07-07 17:57:17 -07001001 dev->ib_dev.mmap = mthca_mmap_uar;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 dev->ib_dev.alloc_pd = mthca_alloc_pd;
1003 dev->ib_dev.dealloc_pd = mthca_dealloc_pd;
1004 dev->ib_dev.create_ah = mthca_ah_create;
1005 dev->ib_dev.destroy_ah = mthca_ah_destroy;
1006 dev->ib_dev.create_qp = mthca_create_qp;
1007 dev->ib_dev.modify_qp = mthca_modify_qp;
1008 dev->ib_dev.destroy_qp = mthca_destroy_qp;
1009 dev->ib_dev.create_cq = mthca_create_cq;
1010 dev->ib_dev.destroy_cq = mthca_destroy_cq;
1011 dev->ib_dev.poll_cq = mthca_poll_cq;
1012 dev->ib_dev.get_dma_mr = mthca_get_dma_mr;
1013 dev->ib_dev.reg_phys_mr = mthca_reg_phys_mr;
Roland Dreier24d42812005-07-07 17:57:19 -07001014 dev->ib_dev.reg_user_mr = mthca_reg_user_mr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 dev->ib_dev.dereg_mr = mthca_dereg_mr;
Michael S. Tsirkine0f5fdc2005-04-16 15:26:30 -07001016
1017 if (dev->mthca_flags & MTHCA_FLAG_FMR) {
1018 dev->ib_dev.alloc_fmr = mthca_alloc_fmr;
1019 dev->ib_dev.unmap_fmr = mthca_unmap_fmr;
1020 dev->ib_dev.dealloc_fmr = mthca_dealloc_fmr;
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001021 if (mthca_is_memfree(dev))
Michael S. Tsirkine0f5fdc2005-04-16 15:26:30 -07001022 dev->ib_dev.map_phys_fmr = mthca_arbel_map_phys_fmr;
1023 else
1024 dev->ib_dev.map_phys_fmr = mthca_tavor_map_phys_fmr;
1025 }
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 dev->ib_dev.attach_mcast = mthca_multicast_attach;
1028 dev->ib_dev.detach_mcast = mthca_multicast_detach;
1029 dev->ib_dev.process_mad = mthca_process_mad;
1030
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001031 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 dev->ib_dev.req_notify_cq = mthca_arbel_arm_cq;
1033 dev->ib_dev.post_send = mthca_arbel_post_send;
1034 dev->ib_dev.post_recv = mthca_arbel_post_receive;
1035 } else {
1036 dev->ib_dev.req_notify_cq = mthca_tavor_arm_cq;
1037 dev->ib_dev.post_send = mthca_tavor_post_send;
1038 dev->ib_dev.post_recv = mthca_tavor_post_receive;
1039 }
1040
1041 init_MUTEX(&dev->cap_mask_mutex);
1042
1043 ret = ib_register_device(&dev->ib_dev);
1044 if (ret)
1045 return ret;
1046
1047 for (i = 0; i < ARRAY_SIZE(mthca_class_attributes); ++i) {
1048 ret = class_device_create_file(&dev->ib_dev.class_dev,
1049 mthca_class_attributes[i]);
1050 if (ret) {
1051 ib_unregister_device(&dev->ib_dev);
1052 return ret;
1053 }
1054 }
1055
1056 return 0;
1057}
1058
1059void mthca_unregister_device(struct mthca_dev *dev)
1060{
1061 ib_unregister_device(&dev->ib_dev);
1062}