2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/errno.h>
37 #include <rdma/ib_smi.h>
38 #include <rdma/ib_user_verbs.h>
40 #include <linux/mlx4/driver.h>
41 #include <linux/mlx4/cmd.h>
46 #define DRV_NAME "mlx4_ib"
47 #define DRV_VERSION "0.01"
48 #define DRV_RELDATE "May 1, 2006"
50 MODULE_AUTHOR("Roland Dreier");
51 MODULE_DESCRIPTION("Mellanox ConnectX HCA InfiniBand driver");
52 MODULE_LICENSE("Dual BSD/GPL");
53 MODULE_VERSION(DRV_VERSION
);
55 static const char mlx4_ib_version
[] __devinitdata
=
56 DRV_NAME
": Mellanox ConnectX InfiniBand driver v"
57 DRV_VERSION
" (" DRV_RELDATE
")\n";
59 static void init_query_mad(struct ib_smp
*mad
)
61 mad
->base_version
= 1;
62 mad
->mgmt_class
= IB_MGMT_CLASS_SUBN_LID_ROUTED
;
63 mad
->class_version
= 1;
64 mad
->method
= IB_MGMT_METHOD_GET
;
67 static int mlx4_ib_query_device(struct ib_device
*ibdev
,
68 struct ib_device_attr
*props
)
70 struct mlx4_ib_dev
*dev
= to_mdev(ibdev
);
71 struct ib_smp
*in_mad
= NULL
;
72 struct ib_smp
*out_mad
= NULL
;
75 in_mad
= kzalloc(sizeof *in_mad
, GFP_KERNEL
);
76 out_mad
= kmalloc(sizeof *out_mad
, GFP_KERNEL
);
77 if (!in_mad
|| !out_mad
)
80 init_query_mad(in_mad
);
81 in_mad
->attr_id
= IB_SMP_ATTR_NODE_INFO
;
83 err
= mlx4_MAD_IFC(to_mdev(ibdev
), 1, 1, 1, NULL
, NULL
, in_mad
, out_mad
);
87 memset(props
, 0, sizeof *props
);
89 props
->fw_ver
= dev
->dev
->caps
.fw_ver
;
90 props
->device_cap_flags
= IB_DEVICE_CHANGE_PHY_PORT
|
91 IB_DEVICE_PORT_ACTIVE_EVENT
|
92 IB_DEVICE_SYS_IMAGE_GUID
|
93 IB_DEVICE_RC_RNR_NAK_GEN
;
94 if (dev
->dev
->caps
.flags
& MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR
)
95 props
->device_cap_flags
|= IB_DEVICE_BAD_PKEY_CNTR
;
96 if (dev
->dev
->caps
.flags
& MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR
)
97 props
->device_cap_flags
|= IB_DEVICE_BAD_QKEY_CNTR
;
98 if (dev
->dev
->caps
.flags
& MLX4_DEV_CAP_FLAG_APM
)
99 props
->device_cap_flags
|= IB_DEVICE_AUTO_PATH_MIG
;
100 if (dev
->dev
->caps
.flags
& MLX4_DEV_CAP_FLAG_UD_AV_PORT
)
101 props
->device_cap_flags
|= IB_DEVICE_UD_AV_PORT_ENFORCE
;
103 props
->vendor_id
= be32_to_cpup((__be32
*) (out_mad
->data
+ 36)) &
105 props
->vendor_part_id
= be16_to_cpup((__be16
*) (out_mad
->data
+ 30));
106 props
->hw_ver
= be32_to_cpup((__be32
*) (out_mad
->data
+ 32));
107 memcpy(&props
->sys_image_guid
, out_mad
->data
+ 4, 8);
109 props
->max_mr_size
= ~0ull;
110 props
->page_size_cap
= dev
->dev
->caps
.page_size_cap
;
111 props
->max_qp
= dev
->dev
->caps
.num_qps
- dev
->dev
->caps
.reserved_qps
;
112 props
->max_qp_wr
= dev
->dev
->caps
.max_wqes
;
113 props
->max_sge
= min(dev
->dev
->caps
.max_sq_sg
,
114 dev
->dev
->caps
.max_rq_sg
);
115 props
->max_cq
= dev
->dev
->caps
.num_cqs
- dev
->dev
->caps
.reserved_cqs
;
116 props
->max_cqe
= dev
->dev
->caps
.max_cqes
;
117 props
->max_mr
= dev
->dev
->caps
.num_mpts
- dev
->dev
->caps
.reserved_mrws
;
118 props
->max_pd
= dev
->dev
->caps
.num_pds
- dev
->dev
->caps
.reserved_pds
;
119 props
->max_qp_rd_atom
= dev
->dev
->caps
.max_qp_dest_rdma
;
120 props
->max_qp_init_rd_atom
= dev
->dev
->caps
.max_qp_init_rdma
;
121 props
->max_res_rd_atom
= props
->max_qp_rd_atom
* props
->max_qp
;
122 props
->max_srq
= dev
->dev
->caps
.num_srqs
- dev
->dev
->caps
.reserved_srqs
;
123 props
->max_srq_wr
= dev
->dev
->caps
.max_srq_wqes
- 1;
124 props
->max_srq_sge
= dev
->dev
->caps
.max_srq_sge
;
125 props
->local_ca_ack_delay
= dev
->dev
->caps
.local_ca_ack_delay
;
126 props
->atomic_cap
= dev
->dev
->caps
.flags
& MLX4_DEV_CAP_FLAG_ATOMIC
?
127 IB_ATOMIC_HCA
: IB_ATOMIC_NONE
;
128 props
->max_pkeys
= dev
->dev
->caps
.pkey_table_len
[1];
129 props
->max_mcast_grp
= dev
->dev
->caps
.num_mgms
+ dev
->dev
->caps
.num_amgms
;
130 props
->max_mcast_qp_attach
= dev
->dev
->caps
.num_qp_per_mgm
;
131 props
->max_total_mcast_qp_attach
= props
->max_mcast_qp_attach
*
132 props
->max_mcast_grp
;
133 props
->max_map_per_fmr
= (1 << (32 - ilog2(dev
->dev
->caps
.num_mpts
))) - 1;
142 static int mlx4_ib_query_port(struct ib_device
*ibdev
, u8 port
,
143 struct ib_port_attr
*props
)
145 struct ib_smp
*in_mad
= NULL
;
146 struct ib_smp
*out_mad
= NULL
;
149 in_mad
= kzalloc(sizeof *in_mad
, GFP_KERNEL
);
150 out_mad
= kmalloc(sizeof *out_mad
, GFP_KERNEL
);
151 if (!in_mad
|| !out_mad
)
154 memset(props
, 0, sizeof *props
);
156 init_query_mad(in_mad
);
157 in_mad
->attr_id
= IB_SMP_ATTR_PORT_INFO
;
158 in_mad
->attr_mod
= cpu_to_be32(port
);
160 err
= mlx4_MAD_IFC(to_mdev(ibdev
), 1, 1, port
, NULL
, NULL
, in_mad
, out_mad
);
164 props
->lid
= be16_to_cpup((__be16
*) (out_mad
->data
+ 16));
165 props
->lmc
= out_mad
->data
[34] & 0x7;
166 props
->sm_lid
= be16_to_cpup((__be16
*) (out_mad
->data
+ 18));
167 props
->sm_sl
= out_mad
->data
[36] & 0xf;
168 props
->state
= out_mad
->data
[32] & 0xf;
169 props
->phys_state
= out_mad
->data
[33] >> 4;
170 props
->port_cap_flags
= be32_to_cpup((__be32
*) (out_mad
->data
+ 20));
171 props
->gid_tbl_len
= to_mdev(ibdev
)->dev
->caps
.gid_table_len
[port
];
172 props
->max_msg_sz
= to_mdev(ibdev
)->dev
->caps
.max_msg_sz
;
173 props
->pkey_tbl_len
= to_mdev(ibdev
)->dev
->caps
.pkey_table_len
[port
];
174 props
->bad_pkey_cntr
= be16_to_cpup((__be16
*) (out_mad
->data
+ 46));
175 props
->qkey_viol_cntr
= be16_to_cpup((__be16
*) (out_mad
->data
+ 48));
176 props
->active_width
= out_mad
->data
[31] & 0xf;
177 props
->active_speed
= out_mad
->data
[35] >> 4;
178 props
->max_mtu
= out_mad
->data
[41] & 0xf;
179 props
->active_mtu
= out_mad
->data
[36] >> 4;
180 props
->subnet_timeout
= out_mad
->data
[51] & 0x1f;
181 props
->max_vl_num
= out_mad
->data
[37] >> 4;
182 props
->init_type_reply
= out_mad
->data
[41] >> 4;
191 static int mlx4_ib_query_gid(struct ib_device
*ibdev
, u8 port
, int index
,
194 struct ib_smp
*in_mad
= NULL
;
195 struct ib_smp
*out_mad
= NULL
;
198 in_mad
= kzalloc(sizeof *in_mad
, GFP_KERNEL
);
199 out_mad
= kmalloc(sizeof *out_mad
, GFP_KERNEL
);
200 if (!in_mad
|| !out_mad
)
203 init_query_mad(in_mad
);
204 in_mad
->attr_id
= IB_SMP_ATTR_PORT_INFO
;
205 in_mad
->attr_mod
= cpu_to_be32(port
);
207 err
= mlx4_MAD_IFC(to_mdev(ibdev
), 1, 1, port
, NULL
, NULL
, in_mad
, out_mad
);
211 memcpy(gid
->raw
, out_mad
->data
+ 8, 8);
213 init_query_mad(in_mad
);
214 in_mad
->attr_id
= IB_SMP_ATTR_GUID_INFO
;
215 in_mad
->attr_mod
= cpu_to_be32(index
/ 8);
217 err
= mlx4_MAD_IFC(to_mdev(ibdev
), 1, 1, port
, NULL
, NULL
, in_mad
, out_mad
);
221 memcpy(gid
->raw
+ 8, out_mad
->data
+ (index
% 8) * 8, 8);
229 static int mlx4_ib_query_pkey(struct ib_device
*ibdev
, u8 port
, u16 index
,
232 struct ib_smp
*in_mad
= NULL
;
233 struct ib_smp
*out_mad
= NULL
;
236 in_mad
= kzalloc(sizeof *in_mad
, GFP_KERNEL
);
237 out_mad
= kmalloc(sizeof *out_mad
, GFP_KERNEL
);
238 if (!in_mad
|| !out_mad
)
241 init_query_mad(in_mad
);
242 in_mad
->attr_id
= IB_SMP_ATTR_PKEY_TABLE
;
243 in_mad
->attr_mod
= cpu_to_be32(index
/ 32);
245 err
= mlx4_MAD_IFC(to_mdev(ibdev
), 1, 1, port
, NULL
, NULL
, in_mad
, out_mad
);
249 *pkey
= be16_to_cpu(((__be16
*) out_mad
->data
)[index
% 32]);
257 static int mlx4_ib_modify_device(struct ib_device
*ibdev
, int mask
,
258 struct ib_device_modify
*props
)
260 if (mask
& ~IB_DEVICE_MODIFY_NODE_DESC
)
263 if (mask
& IB_DEVICE_MODIFY_NODE_DESC
) {
264 spin_lock(&to_mdev(ibdev
)->sm_lock
);
265 memcpy(ibdev
->node_desc
, props
->node_desc
, 64);
266 spin_unlock(&to_mdev(ibdev
)->sm_lock
);
272 static int mlx4_SET_PORT(struct mlx4_ib_dev
*dev
, u8 port
, int reset_qkey_viols
,
275 struct mlx4_cmd_mailbox
*mailbox
;
278 mailbox
= mlx4_alloc_cmd_mailbox(dev
->dev
);
280 return PTR_ERR(mailbox
);
282 memset(mailbox
->buf
, 0, 256);
284 if (dev
->dev
->flags
& MLX4_FLAG_OLD_PORT_CMDS
) {
285 *(u8
*) mailbox
->buf
= !!reset_qkey_viols
<< 6;
286 ((__be32
*) mailbox
->buf
)[2] = cpu_to_be32(cap_mask
);
288 ((u8
*) mailbox
->buf
)[3] = !!reset_qkey_viols
;
289 ((__be32
*) mailbox
->buf
)[1] = cpu_to_be32(cap_mask
);
292 err
= mlx4_cmd(dev
->dev
, mailbox
->dma
, port
, 0, MLX4_CMD_SET_PORT
,
293 MLX4_CMD_TIME_CLASS_B
);
295 mlx4_free_cmd_mailbox(dev
->dev
, mailbox
);
299 static int mlx4_ib_modify_port(struct ib_device
*ibdev
, u8 port
, int mask
,
300 struct ib_port_modify
*props
)
302 struct ib_port_attr attr
;
306 mutex_lock(&to_mdev(ibdev
)->cap_mask_mutex
);
308 err
= mlx4_ib_query_port(ibdev
, port
, &attr
);
312 cap_mask
= (attr
.port_cap_flags
| props
->set_port_cap_mask
) &
313 ~props
->clr_port_cap_mask
;
315 err
= mlx4_SET_PORT(to_mdev(ibdev
), port
,
316 !!(mask
& IB_PORT_RESET_QKEY_CNTR
),
320 mutex_unlock(&to_mdev(ibdev
)->cap_mask_mutex
);
324 static struct ib_ucontext
*mlx4_ib_alloc_ucontext(struct ib_device
*ibdev
,
325 struct ib_udata
*udata
)
327 struct mlx4_ib_dev
*dev
= to_mdev(ibdev
);
328 struct mlx4_ib_ucontext
*context
;
329 struct mlx4_ib_alloc_ucontext_resp resp
;
332 resp
.qp_tab_size
= dev
->dev
->caps
.num_qps
;
333 resp
.bf_reg_size
= dev
->dev
->caps
.bf_reg_size
;
334 resp
.bf_regs_per_page
= dev
->dev
->caps
.bf_regs_per_page
;
336 context
= kmalloc(sizeof *context
, GFP_KERNEL
);
338 return ERR_PTR(-ENOMEM
);
340 err
= mlx4_uar_alloc(to_mdev(ibdev
)->dev
, &context
->uar
);
346 INIT_LIST_HEAD(&context
->db_page_list
);
347 mutex_init(&context
->db_page_mutex
);
349 err
= ib_copy_to_udata(udata
, &resp
, sizeof resp
);
351 mlx4_uar_free(to_mdev(ibdev
)->dev
, &context
->uar
);
353 return ERR_PTR(-EFAULT
);
356 return &context
->ibucontext
;
359 static int mlx4_ib_dealloc_ucontext(struct ib_ucontext
*ibcontext
)
361 struct mlx4_ib_ucontext
*context
= to_mucontext(ibcontext
);
363 mlx4_uar_free(to_mdev(ibcontext
->device
)->dev
, &context
->uar
);
369 static int mlx4_ib_mmap(struct ib_ucontext
*context
, struct vm_area_struct
*vma
)
371 struct mlx4_ib_dev
*dev
= to_mdev(context
->device
);
373 if (vma
->vm_end
- vma
->vm_start
!= PAGE_SIZE
)
376 if (vma
->vm_pgoff
== 0) {
377 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
379 if (io_remap_pfn_range(vma
, vma
->vm_start
,
380 to_mucontext(context
)->uar
.pfn
,
381 PAGE_SIZE
, vma
->vm_page_prot
))
383 } else if (vma
->vm_pgoff
== 1 && dev
->dev
->caps
.bf_reg_size
!= 0) {
384 /* FIXME want pgprot_writecombine() for BlueFlame pages */
385 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
387 if (io_remap_pfn_range(vma
, vma
->vm_start
,
388 to_mucontext(context
)->uar
.pfn
+
389 dev
->dev
->caps
.num_uars
,
390 PAGE_SIZE
, vma
->vm_page_prot
))
398 static struct ib_pd
*mlx4_ib_alloc_pd(struct ib_device
*ibdev
,
399 struct ib_ucontext
*context
,
400 struct ib_udata
*udata
)
402 struct mlx4_ib_pd
*pd
;
405 pd
= kmalloc(sizeof *pd
, GFP_KERNEL
);
407 return ERR_PTR(-ENOMEM
);
409 err
= mlx4_pd_alloc(to_mdev(ibdev
)->dev
, &pd
->pdn
);
416 if (ib_copy_to_udata(udata
, &pd
->pdn
, sizeof (__u32
))) {
417 mlx4_pd_free(to_mdev(ibdev
)->dev
, pd
->pdn
);
419 return ERR_PTR(-EFAULT
);
425 static int mlx4_ib_dealloc_pd(struct ib_pd
*pd
)
427 mlx4_pd_free(to_mdev(pd
->device
)->dev
, to_mpd(pd
)->pdn
);
433 static int mlx4_ib_mcg_attach(struct ib_qp
*ibqp
, union ib_gid
*gid
, u16 lid
)
435 return mlx4_multicast_attach(to_mdev(ibqp
->device
)->dev
,
436 &to_mqp(ibqp
)->mqp
, gid
->raw
);
439 static int mlx4_ib_mcg_detach(struct ib_qp
*ibqp
, union ib_gid
*gid
, u16 lid
)
441 return mlx4_multicast_detach(to_mdev(ibqp
->device
)->dev
,
442 &to_mqp(ibqp
)->mqp
, gid
->raw
);
445 static int init_node_data(struct mlx4_ib_dev
*dev
)
447 struct ib_smp
*in_mad
= NULL
;
448 struct ib_smp
*out_mad
= NULL
;
451 in_mad
= kzalloc(sizeof *in_mad
, GFP_KERNEL
);
452 out_mad
= kmalloc(sizeof *out_mad
, GFP_KERNEL
);
453 if (!in_mad
|| !out_mad
)
456 init_query_mad(in_mad
);
457 in_mad
->attr_id
= IB_SMP_ATTR_NODE_DESC
;
459 err
= mlx4_MAD_IFC(dev
, 1, 1, 1, NULL
, NULL
, in_mad
, out_mad
);
463 memcpy(dev
->ib_dev
.node_desc
, out_mad
->data
, 64);
465 in_mad
->attr_id
= IB_SMP_ATTR_NODE_INFO
;
467 err
= mlx4_MAD_IFC(dev
, 1, 1, 1, NULL
, NULL
, in_mad
, out_mad
);
471 memcpy(&dev
->ib_dev
.node_guid
, out_mad
->data
+ 12, 8);
479 static ssize_t
show_hca(struct class_device
*cdev
, char *buf
)
481 struct mlx4_ib_dev
*dev
= container_of(cdev
, struct mlx4_ib_dev
, ib_dev
.class_dev
);
482 return sprintf(buf
, "MT%d\n", dev
->dev
->pdev
->device
);
485 static ssize_t
show_fw_ver(struct class_device
*cdev
, char *buf
)
487 struct mlx4_ib_dev
*dev
= container_of(cdev
, struct mlx4_ib_dev
, ib_dev
.class_dev
);
488 return sprintf(buf
, "%d.%d.%d\n", (int) (dev
->dev
->caps
.fw_ver
>> 32),
489 (int) (dev
->dev
->caps
.fw_ver
>> 16) & 0xffff,
490 (int) dev
->dev
->caps
.fw_ver
& 0xffff);
493 static ssize_t
show_rev(struct class_device
*cdev
, char *buf
)
495 struct mlx4_ib_dev
*dev
= container_of(cdev
, struct mlx4_ib_dev
, ib_dev
.class_dev
);
496 return sprintf(buf
, "%x\n", dev
->dev
->rev_id
);
499 static ssize_t
show_board(struct class_device
*cdev
, char *buf
)
501 struct mlx4_ib_dev
*dev
= container_of(cdev
, struct mlx4_ib_dev
, ib_dev
.class_dev
);
502 return sprintf(buf
, "%.*s\n", MLX4_BOARD_ID_LEN
, dev
->dev
->board_id
);
505 static CLASS_DEVICE_ATTR(hw_rev
, S_IRUGO
, show_rev
, NULL
);
506 static CLASS_DEVICE_ATTR(fw_ver
, S_IRUGO
, show_fw_ver
, NULL
);
507 static CLASS_DEVICE_ATTR(hca_type
, S_IRUGO
, show_hca
, NULL
);
508 static CLASS_DEVICE_ATTR(board_id
, S_IRUGO
, show_board
, NULL
);
510 static struct class_device_attribute
*mlx4_class_attributes
[] = {
511 &class_device_attr_hw_rev
,
512 &class_device_attr_fw_ver
,
513 &class_device_attr_hca_type
,
514 &class_device_attr_board_id
517 static void *mlx4_ib_add(struct mlx4_dev
*dev
)
519 struct mlx4_ib_dev
*ibdev
;
522 ibdev
= (struct mlx4_ib_dev
*) ib_alloc_device(sizeof *ibdev
);
524 dev_err(&dev
->pdev
->dev
, "Device struct alloc failed\n");
528 if (mlx4_pd_alloc(dev
, &ibdev
->priv_pdn
))
531 if (mlx4_uar_alloc(dev
, &ibdev
->priv_uar
))
534 ibdev
->uar_map
= ioremap(ibdev
->priv_uar
.pfn
<< PAGE_SHIFT
, PAGE_SIZE
);
537 MLX4_INIT_DOORBELL_LOCK(&ibdev
->uar_lock
);
539 INIT_LIST_HEAD(&ibdev
->pgdir_list
);
540 mutex_init(&ibdev
->pgdir_mutex
);
544 strlcpy(ibdev
->ib_dev
.name
, "mlx4_%d", IB_DEVICE_NAME_MAX
);
545 ibdev
->ib_dev
.owner
= THIS_MODULE
;
546 ibdev
->ib_dev
.node_type
= RDMA_NODE_IB_CA
;
547 ibdev
->ib_dev
.phys_port_cnt
= dev
->caps
.num_ports
;
548 ibdev
->ib_dev
.num_comp_vectors
= 1;
549 ibdev
->ib_dev
.dma_device
= &dev
->pdev
->dev
;
551 ibdev
->ib_dev
.uverbs_abi_ver
= MLX4_IB_UVERBS_ABI_VERSION
;
552 ibdev
->ib_dev
.uverbs_cmd_mask
=
553 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT
) |
554 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE
) |
555 (1ull << IB_USER_VERBS_CMD_QUERY_PORT
) |
556 (1ull << IB_USER_VERBS_CMD_ALLOC_PD
) |
557 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD
) |
558 (1ull << IB_USER_VERBS_CMD_REG_MR
) |
559 (1ull << IB_USER_VERBS_CMD_DEREG_MR
) |
560 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL
) |
561 (1ull << IB_USER_VERBS_CMD_CREATE_CQ
) |
562 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ
) |
563 (1ull << IB_USER_VERBS_CMD_CREATE_QP
) |
564 (1ull << IB_USER_VERBS_CMD_MODIFY_QP
) |
565 (1ull << IB_USER_VERBS_CMD_QUERY_QP
) |
566 (1ull << IB_USER_VERBS_CMD_DESTROY_QP
) |
567 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST
) |
568 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST
) |
569 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ
) |
570 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ
) |
571 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ
) |
572 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ
);
574 ibdev
->ib_dev
.query_device
= mlx4_ib_query_device
;
575 ibdev
->ib_dev
.query_port
= mlx4_ib_query_port
;
576 ibdev
->ib_dev
.query_gid
= mlx4_ib_query_gid
;
577 ibdev
->ib_dev
.query_pkey
= mlx4_ib_query_pkey
;
578 ibdev
->ib_dev
.modify_device
= mlx4_ib_modify_device
;
579 ibdev
->ib_dev
.modify_port
= mlx4_ib_modify_port
;
580 ibdev
->ib_dev
.alloc_ucontext
= mlx4_ib_alloc_ucontext
;
581 ibdev
->ib_dev
.dealloc_ucontext
= mlx4_ib_dealloc_ucontext
;
582 ibdev
->ib_dev
.mmap
= mlx4_ib_mmap
;
583 ibdev
->ib_dev
.alloc_pd
= mlx4_ib_alloc_pd
;
584 ibdev
->ib_dev
.dealloc_pd
= mlx4_ib_dealloc_pd
;
585 ibdev
->ib_dev
.create_ah
= mlx4_ib_create_ah
;
586 ibdev
->ib_dev
.query_ah
= mlx4_ib_query_ah
;
587 ibdev
->ib_dev
.destroy_ah
= mlx4_ib_destroy_ah
;
588 ibdev
->ib_dev
.create_srq
= mlx4_ib_create_srq
;
589 ibdev
->ib_dev
.modify_srq
= mlx4_ib_modify_srq
;
590 ibdev
->ib_dev
.query_srq
= mlx4_ib_query_srq
;
591 ibdev
->ib_dev
.destroy_srq
= mlx4_ib_destroy_srq
;
592 ibdev
->ib_dev
.post_srq_recv
= mlx4_ib_post_srq_recv
;
593 ibdev
->ib_dev
.create_qp
= mlx4_ib_create_qp
;
594 ibdev
->ib_dev
.modify_qp
= mlx4_ib_modify_qp
;
595 ibdev
->ib_dev
.query_qp
= mlx4_ib_query_qp
;
596 ibdev
->ib_dev
.destroy_qp
= mlx4_ib_destroy_qp
;
597 ibdev
->ib_dev
.post_send
= mlx4_ib_post_send
;
598 ibdev
->ib_dev
.post_recv
= mlx4_ib_post_recv
;
599 ibdev
->ib_dev
.create_cq
= mlx4_ib_create_cq
;
600 ibdev
->ib_dev
.destroy_cq
= mlx4_ib_destroy_cq
;
601 ibdev
->ib_dev
.poll_cq
= mlx4_ib_poll_cq
;
602 ibdev
->ib_dev
.req_notify_cq
= mlx4_ib_arm_cq
;
603 ibdev
->ib_dev
.get_dma_mr
= mlx4_ib_get_dma_mr
;
604 ibdev
->ib_dev
.reg_user_mr
= mlx4_ib_reg_user_mr
;
605 ibdev
->ib_dev
.dereg_mr
= mlx4_ib_dereg_mr
;
606 ibdev
->ib_dev
.attach_mcast
= mlx4_ib_mcg_attach
;
607 ibdev
->ib_dev
.detach_mcast
= mlx4_ib_mcg_detach
;
608 ibdev
->ib_dev
.process_mad
= mlx4_ib_process_mad
;
610 ibdev
->ib_dev
.alloc_fmr
= mlx4_ib_fmr_alloc
;
611 ibdev
->ib_dev
.map_phys_fmr
= mlx4_ib_map_phys_fmr
;
612 ibdev
->ib_dev
.unmap_fmr
= mlx4_ib_unmap_fmr
;
613 ibdev
->ib_dev
.dealloc_fmr
= mlx4_ib_fmr_dealloc
;
615 if (init_node_data(ibdev
))
618 spin_lock_init(&ibdev
->sm_lock
);
619 mutex_init(&ibdev
->cap_mask_mutex
);
621 if (ib_register_device(&ibdev
->ib_dev
))
624 if (mlx4_ib_mad_init(ibdev
))
627 for (i
= 0; i
< ARRAY_SIZE(mlx4_class_attributes
); ++i
) {
628 if (class_device_create_file(&ibdev
->ib_dev
.class_dev
,
629 mlx4_class_attributes
[i
]))
636 ib_unregister_device(&ibdev
->ib_dev
);
639 iounmap(ibdev
->uar_map
);
642 mlx4_uar_free(dev
, &ibdev
->priv_uar
);
645 mlx4_pd_free(dev
, ibdev
->priv_pdn
);
648 ib_dealloc_device(&ibdev
->ib_dev
);
653 static void mlx4_ib_remove(struct mlx4_dev
*dev
, void *ibdev_ptr
)
655 struct mlx4_ib_dev
*ibdev
= ibdev_ptr
;
658 for (p
= 1; p
<= dev
->caps
.num_ports
; ++p
)
659 mlx4_CLOSE_PORT(dev
, p
);
661 mlx4_ib_mad_cleanup(ibdev
);
662 ib_unregister_device(&ibdev
->ib_dev
);
663 iounmap(ibdev
->uar_map
);
664 mlx4_uar_free(dev
, &ibdev
->priv_uar
);
665 mlx4_pd_free(dev
, ibdev
->priv_pdn
);
666 ib_dealloc_device(&ibdev
->ib_dev
);
669 static void mlx4_ib_event(struct mlx4_dev
*dev
, void *ibdev_ptr
,
670 enum mlx4_dev_event event
, int subtype
,
673 struct ib_event ibev
;
676 case MLX4_EVENT_TYPE_PORT_CHANGE
:
677 ibev
.event
= subtype
== MLX4_PORT_CHANGE_SUBTYPE_ACTIVE
?
678 IB_EVENT_PORT_ACTIVE
: IB_EVENT_PORT_ERR
;
681 case MLX4_EVENT_TYPE_LOCAL_CATAS_ERROR
:
682 ibev
.event
= IB_EVENT_DEVICE_FATAL
;
689 ibev
.device
= ibdev_ptr
;
690 ibev
.element
.port_num
= port
;
692 ib_dispatch_event(&ibev
);
695 static struct mlx4_interface mlx4_ib_interface
= {
697 .remove
= mlx4_ib_remove
,
698 .event
= mlx4_ib_event
701 static int __init
mlx4_ib_init(void)
703 return mlx4_register_interface(&mlx4_ib_interface
);
706 static void __exit
mlx4_ib_cleanup(void)
708 mlx4_unregister_interface(&mlx4_ib_interface
);
711 module_init(mlx4_ib_init
);
712 module_exit(mlx4_ib_cleanup
);