Home
last modified time | relevance | path

Searched refs:cqn (Results 1 – 37 of 37) sorted by relevance

/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
Dcq.c100 void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn) in mlx4_cq_completion() argument
105 cqn & (dev->caps.num_cqs - 1)); in mlx4_cq_completion()
107 mlx4_dbg(dev, "Completion event for bogus CQ %08x\n", cqn); in mlx4_cq_completion()
116 void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type) in mlx4_cq_event() argument
123 cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1)); in mlx4_cq_event()
130 mlx4_warn(dev, "Async event for bogus CQ %08x\n", cqn); in mlx4_cq_event()
178 err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 1); in mlx4_cq_modify()
204 err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 0); in mlx4_cq_resize()
211 int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn) in __mlx4_cq_alloc_icm() argument
217 *cqn = mlx4_bitmap_alloc(&cq_table->bitmap); in __mlx4_cq_alloc_icm()
[all …]
Den_resources.c41 int is_tx, int rss, int qpn, int cqn, in mlx4_en_fill_qp_context() argument
70 context->cqn_send = cpu_to_be32(cqn); in mlx4_en_fill_qp_context()
71 context->cqn_recv = cpu_to_be32(cqn); in mlx4_en_fill_qp_context()
Dresource_tracker.c1432 static int cq_res_start_move_to(struct mlx4_dev *dev, int slave, int cqn, in cq_res_start_move_to() argument
1441 r = res_tracker_lookup(&tracker->res_tree[RES_CQ], cqn); in cq_res_start_move_to()
1699 int cqn; in cq_alloc_res() local
1708 err = __mlx4_cq_alloc_icm(dev, &cqn); in cq_alloc_res()
1714 err = add_res_range(dev, slave, cqn, 1, RES_CQ, 0); in cq_alloc_res()
1717 __mlx4_cq_free_icm(dev, cqn); in cq_alloc_res()
1721 set_param_l(out_param, cqn); in cq_alloc_res()
2226 int cqn; in cq_free_res() local
2231 cqn = get_param_l(&in_param); in cq_free_res()
2232 err = rem_res_range(dev, slave, cqn, 1, RES_CQ, 0); in cq_free_res()
[all …]
Deq.c457 int cqn = -1; in mlx4_eq_int() local
480 cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff; in mlx4_eq_int()
481 mlx4_cq_completion(dev, cqn); in mlx4_eq_int()
633 be32_to_cpu(eqe->event.cq_err.cqn) & 0xffffff); in mlx4_eq_int()
637 be32_to_cpu(eqe->event.cq_err.cqn) in mlx4_eq_int()
652 be32_to_cpu(eqe->event.cq_err.cqn) in mlx4_eq_int()
794 if (!(cqn & ~0xffffff)) in mlx4_eq_int()
Dsrq.c165 int mlx4_srq_alloc(struct mlx4_dev *dev, u32 pdn, u32 cqn, u16 xrcd, in mlx4_srq_alloc() argument
195 srq_context->pg_offset_cqn = cpu_to_be32(cqn & 0xffffff); in mlx4_srq_alloc()
Dmlx4_en.h283 u16 cqn; /* index of port CQ associated with this ring */ member
313 u16 cqn; /* index of port CQ associated with this ring */ member
793 int is_tx, int rss, int qpn, int cqn, int user_prio,
Dmlx4.h940 int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
941 void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
1182 void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1183 void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
Den_rx.c445 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn; in mlx4_en_activate_rx_rings()
1130 qpn, ring->cqn, -1, context); in mlx4_en_config_rss_qp()
1228 priv->rx_ring[0]->cqn, -1, &context); in mlx4_en_config_rss_steer()
Den_tx.c202 ring->cqn = cq; in mlx4_en_activate_tx_ring()
214 ring->cqn, user_prio, &ring->context); in mlx4_en_activate_tx_ring()
Den_netdev.c1299 i, priv->tx_ring[i]->qpn, priv->tx_ring[i]->cqn, in mlx4_en_tx_timeout()
1587 priv->rx_ring[i]->cqn = cq->mcq.cqn; in mlx4_en_start_port()
1630 err = mlx4_en_activate_tx_ring(priv, tx_ring, cq->mcq.cqn, in mlx4_en_start_port()
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/
Dcq.c42 void mlx5_cq_completion(struct mlx5_core_dev *dev, u32 cqn) in mlx5_cq_completion() argument
48 cq = radix_tree_lookup(&table->tree, cqn); in mlx5_cq_completion()
54 mlx5_core_warn(dev, "Completion event for bogus CQ 0x%x\n", cqn); in mlx5_cq_completion()
66 void mlx5_cq_event(struct mlx5_core_dev *dev, u32 cqn, int event_type) in mlx5_cq_event() argument
73 cq = radix_tree_lookup(&table->tree, cqn); in mlx5_cq_event()
80 mlx5_core_warn(dev, "Async event for bogus CQ 0x%x\n", cqn); in mlx5_cq_event()
109 cq->cqn = be32_to_cpu(out.cqn) & 0xffffff; in mlx5_core_create_cq()
116 err = radix_tree_insert(&table->tree, cq->cqn, cq); in mlx5_core_create_cq()
125 cq->cqn); in mlx5_core_create_cq()
147 tmp = radix_tree_delete(&table->tree, cq->cqn); in mlx5_core_destroy_cq()
[all …]
Deq.c202 u32 cqn; in mlx5_eq_int() local
217 cqn = be32_to_cpu(eqe->data.comp.cqn) & 0xffffff; in mlx5_eq_int()
218 mlx5_cq_completion(dev, cqn); in mlx5_eq_int()
267 cqn = be32_to_cpu(eqe->data.cq_err.cqn) & 0xffffff; in mlx5_eq_int()
269 cqn, eqe->data.cq_err.syndrome); in mlx5_eq_int()
270 mlx5_cq_event(dev, cqn, eqe->type); in mlx5_eq_int()
Ddebugfs.c595 &cq->dbg, cq->cqn, cq_fields, in mlx5_debug_cq_add()
/linux-4.1.27/drivers/infiniband/hw/mthca/
Dmthca_cq.c76 __be32 cqn; member
211 mthca_write64(MTHCA_TAVOR_CQ_DB_INC_CI | cq->cqn, incr - 1, in update_cons_index()
222 void mthca_cq_completion(struct mthca_dev *dev, u32 cqn) in mthca_cq_completion() argument
226 cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); in mthca_cq_completion()
229 mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); in mthca_cq_completion()
238 void mthca_cq_event(struct mthca_dev *dev, u32 cqn, in mthca_cq_event() argument
246 cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); in mthca_cq_event()
253 mthca_warn(dev, "Async event for bogus CQ %08x\n", cqn); in mthca_cq_event()
302 qpn, cq->cqn, cq->cons_index, prod_index); in mthca_cq_clean()
389 cq->cqn, cq->cons_index); in handle_error_cqe()
[all …]
Dmthca_eq.c132 __be32 cqn; member
149 __be32 cqn; member
219 static inline void disarm_cq(struct mthca_dev *dev, int eqn, int cqn) in disarm_cq() argument
222 mthca_write64(MTHCA_EQ_DB_DISARM_CQ | eqn, cqn, in disarm_cq()
276 disarm_cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff; in mthca_eq_int()
343 be32_to_cpu(eqe->event.cq_err.cqn) & 0xffffff); in mthca_eq_int()
344 mthca_cq_event(dev, be32_to_cpu(eqe->event.cq_err.cqn), in mthca_eq_int()
Dmthca_user.h83 __u32 cqn; member
Dmthca_provider.h205 int cqn; member
Dmthca_dev.h503 void mthca_cq_completion(struct mthca_dev *dev, u32 cqn);
504 void mthca_cq_event(struct mthca_dev *dev, u32 cqn,
Dmthca_qp.c719 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn); in __mthca_modify_qp()
758 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn); in __mthca_modify_qp()
1319 } else if (send_cq->cqn < recv_cq->cqn) { in mthca_lock_cqs()
1334 } else if (send_cq->cqn < recv_cq->cqn) { in mthca_unlock_cqs()
Dmthca_provider.c696 if (context && ib_copy_to_udata(udata, &cq->cqn, sizeof (__u32))) { in mthca_create_cq()
799 ret = mthca_RESIZE_CQ(dev, cq->cqn, lkey, ilog2(entries)); in mthca_resize_cq()
/linux-4.1.27/drivers/infiniband/hw/mlx5/
Dcq.c55 type, mcq->cqn); in mlx5_ib_cq_event()
456 cq->mcq.cqn, qpn); in mlx5_poll_one()
490 "Requestor" : "Responder", cq->mcq.cqn); in mlx5_poll_one()
523 cq->mcq.cqn, be32_to_cpu(sig_err_cqe->mkey)); in mlx5_poll_one()
533 cq->mcq.cqn, mr->sig->err_item.key, in mlx5_poll_one()
798 mlx5_ib_dbg(dev, "cqn 0x%x\n", cq->mcq.cqn); in mlx5_ib_create_cq()
804 if (ib_copy_to_udata(udata, &cq->mcq.cqn, sizeof(__u32))) { in mlx5_ib_create_cq()
931 in->cqn = cpu_to_be32(mcq->mcq.cqn); in mlx5_ib_modify_cq()
940 mlx5_ib_warn(dev, "modify cq 0x%x failed\n", mcq->mcq.cqn); in mlx5_ib_modify_cq()
1059 cq->mcq.cqn); in copy_resize_cqes()
[all …]
Duser.h98 __u32 cqn; member
Dqp.c1001 in->ctx.cqn_recv = cpu_to_be32(to_mcq(devr->c0)->mcq.cqn); in create_qp_common()
1002 in->ctx.cqn_send = cpu_to_be32(to_mcq(devr->c0)->mcq.cqn); in create_qp_common()
1007 in->ctx.cqn_recv = cpu_to_be32(to_mcq(devr->c0)->mcq.cqn); in create_qp_common()
1022 in->ctx.cqn_send = cpu_to_be32(to_mcq(init_attr->send_cq)->mcq.cqn); in create_qp_common()
1025 in->ctx.cqn_recv = cpu_to_be32(to_mcq(init_attr->recv_cq)->mcq.cqn); in create_qp_common()
1061 if (send_cq->mcq.cqn < recv_cq->mcq.cqn) { in mlx5_ib_lock_cqs()
1065 } else if (send_cq->mcq.cqn == recv_cq->mcq.cqn) { in mlx5_ib_lock_cqs()
1091 if (send_cq->mcq.cqn < recv_cq->mcq.cqn) { in mlx5_ib_unlock_cqs()
1094 } else if (send_cq->mcq.cqn == recv_cq->mcq.cqn) { in mlx5_ib_unlock_cqs()
1288 qp->ibqp.qp_num, qp->mqp.qpn, to_mcq(init_attr->recv_cq)->mcq.cqn, in mlx5_ib_create_qp()
[all …]
Dsrq.c296 in->ctx.pgoff_cqn |= cpu_to_be32(to_mcq(init_attr->ext.xrc.cq)->mcq.cqn); in mlx5_ib_create_srq()
299 in->ctx.pgoff_cqn |= cpu_to_be32(to_mcq(dev->devr.c0)->mcq.cqn); in mlx5_ib_create_srq()
/linux-4.1.27/include/linux/mlx5/
Dcq.h41 u32 cqn; member
158 doorbell[1] = cpu_to_be32(cq->cqn); in mlx5_cq_arm()
Ddevice.h439 __be32 cqn; member
448 __be32 cqn; member
708 __be32 cqn; member
714 __be32 cqn; member
725 __be32 cqn; member
739 __be32 cqn; member
Ddriver.h714 void mlx5_cq_completion(struct mlx5_core_dev *dev, u32 cqn);
722 void mlx5_cq_event(struct mlx5_core_dev *dev, u32 cqn, int event_type);
/linux-4.1.27/drivers/infiniband/hw/amso1100/
Dc2_cq.c46 static struct c2_cq *c2_cq_get(struct c2_dev *c2dev, int cqn) in c2_cq_get() argument
52 cq = c2dev->qptr_array[cqn]; in c2_cq_get()
372 cq->cqn = cq->mq.index; in c2_init_cq()
373 c2dev->qptr_array[cq->cqn] = cq; in c2_init_cq()
Dc2_user.h69 __u32 cqn; member
Dc2_provider.h95 int cqn; member
Dc2_qp.c624 c2_cq_clean(c2dev, qp, send_cq->cqn); in c2_free_qp()
626 c2_cq_clean(c2dev, qp, recv_cq->cqn); in c2_free_qp()
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Dsrq.c79 u32 cqn; in mlx4_ib_create_srq() local
180 cqn = (init_attr->srq_type == IB_SRQT_XRC) ? in mlx4_ib_create_srq()
181 to_mcq(init_attr->ext.xrc.cq)->mcq.cqn : 0; in mlx4_ib_create_srq()
185 err = mlx4_srq_alloc(dev->dev, to_mpd(pd)->pdn, cqn, xrcdn, &srq->mtt, in mlx4_ib_create_srq()
Duser.h80 __u32 cqn; member
Dcq.c55 "on CQ %06x\n", type, cq->cqn); in mlx4_ib_cq_event()
245 if (ib_copy_to_udata(udata, &cq->mcq.cqn, sizeof (__u32))) { in mlx4_ib_create_cq()
716 cq->mcq.cqn, be32_to_cpu(cqe->vlan_my_qpn) & MLX4_CQE_QPN_MASK); in mlx4_ib_poll_one()
734 cq->mcq.cqn, srq_num); in mlx4_ib_poll_one()
Dqp.c920 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) { in mlx4_ib_lock_cqs()
935 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) { in mlx4_ib_unlock_cqs()
1599 context->cqn_send = cpu_to_be32(send_cq->mcq.cqn); in __mlx4_ib_modify_qp()
1600 context->cqn_recv = cpu_to_be32(recv_cq->mcq.cqn); in __mlx4_ib_modify_qp()
/linux-4.1.27/include/linux/mlx4/
Dcq.h157 doorbell[0] = cpu_to_be32(sn << 28 | cmd | cq->cqn); in mlx4_cq_arm()
Ddevice.h704 int cqn; member
840 __be32 cqn; member
857 __be32 cqn; member
1073 int mlx4_srq_alloc(struct mlx4_dev *dev, u32 pdn, u32 cqn, u16 xrcdn,