163fa15dbSBob Pearson // SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
28700e3e7SMoni Shoua /*
38700e3e7SMoni Shoua  * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
48700e3e7SMoni Shoua  * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
58700e3e7SMoni Shoua  */
68700e3e7SMoni Shoua 
70bbb3b74SBart Van Assche #include <linux/dma-mapping.h>
84d6f2859SYuval Shaia #include <net/addrconf.h>
989944450SShamir Rabinovitch #include <rdma/uverbs_ioctl.h>
108700e3e7SMoni Shoua #include "rxe.h"
118700e3e7SMoni Shoua #include "rxe_loc.h"
128700e3e7SMoni Shoua #include "rxe_queue.h"
130b1e5b99SYonatan Cohen #include "rxe_hw_counters.h"
148700e3e7SMoni Shoua 
158700e3e7SMoni Shoua static int rxe_query_device(struct ib_device *dev,
168700e3e7SMoni Shoua 			    struct ib_device_attr *attr,
178700e3e7SMoni Shoua 			    struct ib_udata *uhw)
188700e3e7SMoni Shoua {
198700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(dev);
208700e3e7SMoni Shoua 
218700e3e7SMoni Shoua 	if (uhw->inlen || uhw->outlen)
228700e3e7SMoni Shoua 		return -EINVAL;
238700e3e7SMoni Shoua 
248700e3e7SMoni Shoua 	*attr = rxe->attr;
258700e3e7SMoni Shoua 	return 0;
268700e3e7SMoni Shoua }
278700e3e7SMoni Shoua 
288700e3e7SMoni Shoua static int rxe_query_port(struct ib_device *dev,
298700e3e7SMoni Shoua 			  u8 port_num, struct ib_port_attr *attr)
308700e3e7SMoni Shoua {
318700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(dev);
328700e3e7SMoni Shoua 	struct rxe_port *port;
3359590b8aSYuval Shaia 	int rc;
348700e3e7SMoni Shoua 
358700e3e7SMoni Shoua 	port = &rxe->port;
368700e3e7SMoni Shoua 
37c4550c63SOr Gerlitz 	/* *attr being zeroed by the caller, avoid zeroing it here */
388700e3e7SMoni Shoua 	*attr = port->attr;
398700e3e7SMoni Shoua 
408700e3e7SMoni Shoua 	mutex_lock(&rxe->usdev_lock);
41d4186194SYuval Shaia 	rc = ib_get_eth_speed(dev, port_num, &attr->active_speed,
42e404f945SParav Pandit 			      &attr->active_width);
435736c7c4SAndrew Boyer 
445736c7c4SAndrew Boyer 	if (attr->state == IB_PORT_ACTIVE)
4572a7720fSKamal Heib 		attr->phys_state = IB_PORT_PHYS_STATE_LINK_UP;
465736c7c4SAndrew Boyer 	else if (dev_get_flags(rxe->ndev) & IFF_UP)
4772a7720fSKamal Heib 		attr->phys_state = IB_PORT_PHYS_STATE_POLLING;
485736c7c4SAndrew Boyer 	else
4972a7720fSKamal Heib 		attr->phys_state = IB_PORT_PHYS_STATE_DISABLED;
505736c7c4SAndrew Boyer 
518700e3e7SMoni Shoua 	mutex_unlock(&rxe->usdev_lock);
528700e3e7SMoni Shoua 
53d4186194SYuval Shaia 	return rc;
548700e3e7SMoni Shoua }
558700e3e7SMoni Shoua 
568700e3e7SMoni Shoua static int rxe_query_pkey(struct ib_device *device,
578700e3e7SMoni Shoua 			  u8 port_num, u16 index, u16 *pkey)
588700e3e7SMoni Shoua {
5976251e15SKamal Heib 	if (index > 0)
608700e3e7SMoni Shoua 		return -EINVAL;
6176251e15SKamal Heib 
6276251e15SKamal Heib 	*pkey = IB_DEFAULT_PKEY_FULL;
6376251e15SKamal Heib 	return 0;
648700e3e7SMoni Shoua }
658700e3e7SMoni Shoua 
668700e3e7SMoni Shoua static int rxe_modify_device(struct ib_device *dev,
678700e3e7SMoni Shoua 			     int mask, struct ib_device_modify *attr)
688700e3e7SMoni Shoua {
698700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(dev);
708700e3e7SMoni Shoua 
71f3fceba5SKamal Heib 	if (mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
72f3fceba5SKamal Heib 		     IB_DEVICE_MODIFY_NODE_DESC))
73f3fceba5SKamal Heib 		return -EOPNOTSUPP;
74f3fceba5SKamal Heib 
758700e3e7SMoni Shoua 	if (mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID)
768700e3e7SMoni Shoua 		rxe->attr.sys_image_guid = cpu_to_be64(attr->sys_image_guid);
778700e3e7SMoni Shoua 
788700e3e7SMoni Shoua 	if (mask & IB_DEVICE_MODIFY_NODE_DESC) {
798700e3e7SMoni Shoua 		memcpy(rxe->ib_dev.node_desc,
808700e3e7SMoni Shoua 		       attr->node_desc, sizeof(rxe->ib_dev.node_desc));
818700e3e7SMoni Shoua 	}
828700e3e7SMoni Shoua 
838700e3e7SMoni Shoua 	return 0;
848700e3e7SMoni Shoua }
858700e3e7SMoni Shoua 
868700e3e7SMoni Shoua static int rxe_modify_port(struct ib_device *dev,
878700e3e7SMoni Shoua 			   u8 port_num, int mask, struct ib_port_modify *attr)
888700e3e7SMoni Shoua {
898700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(dev);
908700e3e7SMoni Shoua 	struct rxe_port *port;
918700e3e7SMoni Shoua 
928700e3e7SMoni Shoua 	port = &rxe->port;
938700e3e7SMoni Shoua 
948700e3e7SMoni Shoua 	port->attr.port_cap_flags |= attr->set_port_cap_mask;
958700e3e7SMoni Shoua 	port->attr.port_cap_flags &= ~attr->clr_port_cap_mask;
968700e3e7SMoni Shoua 
978700e3e7SMoni Shoua 	if (mask & IB_PORT_RESET_QKEY_CNTR)
988700e3e7SMoni Shoua 		port->attr.qkey_viol_cntr = 0;
998700e3e7SMoni Shoua 
1008700e3e7SMoni Shoua 	return 0;
1018700e3e7SMoni Shoua }
1028700e3e7SMoni Shoua 
1038700e3e7SMoni Shoua static enum rdma_link_layer rxe_get_link_layer(struct ib_device *dev,
1048700e3e7SMoni Shoua 					       u8 port_num)
1058700e3e7SMoni Shoua {
106420bd9e2SKamal Heib 	return IB_LINK_LAYER_ETHERNET;
1078700e3e7SMoni Shoua }
1088700e3e7SMoni Shoua 
109a2a074efSLeon Romanovsky static int rxe_alloc_ucontext(struct ib_ucontext *uctx, struct ib_udata *udata)
1108700e3e7SMoni Shoua {
111a2a074efSLeon Romanovsky 	struct rxe_dev *rxe = to_rdev(uctx->device);
112a2a074efSLeon Romanovsky 	struct rxe_ucontext *uc = to_ruc(uctx);
1138700e3e7SMoni Shoua 
114a2a074efSLeon Romanovsky 	return rxe_add_to_pool(&rxe->uc_pool, &uc->pelem);
1158700e3e7SMoni Shoua }
1168700e3e7SMoni Shoua 
117a2a074efSLeon Romanovsky static void rxe_dealloc_ucontext(struct ib_ucontext *ibuc)
1188700e3e7SMoni Shoua {
1198700e3e7SMoni Shoua 	struct rxe_ucontext *uc = to_ruc(ibuc);
1208700e3e7SMoni Shoua 
1218700e3e7SMoni Shoua 	rxe_drop_ref(uc);
1228700e3e7SMoni Shoua }
1238700e3e7SMoni Shoua 
1248700e3e7SMoni Shoua static int rxe_port_immutable(struct ib_device *dev, u8 port_num,
1258700e3e7SMoni Shoua 			      struct ib_port_immutable *immutable)
1268700e3e7SMoni Shoua {
1278700e3e7SMoni Shoua 	int err;
1288700e3e7SMoni Shoua 	struct ib_port_attr attr;
1298700e3e7SMoni Shoua 
130c4550c63SOr Gerlitz 	immutable->core_cap_flags = RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP;
131c4550c63SOr Gerlitz 
132c4550c63SOr Gerlitz 	err = ib_query_port(dev, port_num, &attr);
1338700e3e7SMoni Shoua 	if (err)
1348700e3e7SMoni Shoua 		return err;
1358700e3e7SMoni Shoua 
1368700e3e7SMoni Shoua 	immutable->pkey_tbl_len = attr.pkey_tbl_len;
1378700e3e7SMoni Shoua 	immutable->gid_tbl_len = attr.gid_tbl_len;
1388700e3e7SMoni Shoua 	immutable->max_mad_size = IB_MGMT_MAD_SIZE;
1398700e3e7SMoni Shoua 
1408700e3e7SMoni Shoua 	return 0;
1418700e3e7SMoni Shoua }
1428700e3e7SMoni Shoua 
143ff23dfa1SShamir Rabinovitch static int rxe_alloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
1448700e3e7SMoni Shoua {
14521a428a0SLeon Romanovsky 	struct rxe_dev *rxe = to_rdev(ibpd->device);
14621a428a0SLeon Romanovsky 	struct rxe_pd *pd = to_rpd(ibpd);
1478700e3e7SMoni Shoua 
14821a428a0SLeon Romanovsky 	return rxe_add_to_pool(&rxe->pd_pool, &pd->pelem);
1498700e3e7SMoni Shoua }
1508700e3e7SMoni Shoua 
15191a7c58fSLeon Romanovsky static int rxe_dealloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
1528700e3e7SMoni Shoua {
1538700e3e7SMoni Shoua 	struct rxe_pd *pd = to_rpd(ibpd);
1548700e3e7SMoni Shoua 
1558700e3e7SMoni Shoua 	rxe_drop_ref(pd);
15691a7c58fSLeon Romanovsky 	return 0;
1578700e3e7SMoni Shoua }
1588700e3e7SMoni Shoua 
159fa5d010cSMaor Gottlieb static int rxe_create_ah(struct ib_ah *ibah,
160fa5d010cSMaor Gottlieb 			 struct rdma_ah_init_attr *init_attr,
161fa5d010cSMaor Gottlieb 			 struct ib_udata *udata)
162477864c8SMoni Shoua 
1638700e3e7SMoni Shoua {
1648700e3e7SMoni Shoua 	int err;
165d3456914SLeon Romanovsky 	struct rxe_dev *rxe = to_rdev(ibah->device);
166d3456914SLeon Romanovsky 	struct rxe_ah *ah = to_rah(ibah);
1678700e3e7SMoni Shoua 
168fa5d010cSMaor Gottlieb 	err = rxe_av_chk_attr(rxe, init_attr->ah_attr);
1698700e3e7SMoni Shoua 	if (err)
170d3456914SLeon Romanovsky 		return err;
1718700e3e7SMoni Shoua 
172d3456914SLeon Romanovsky 	err = rxe_add_to_pool(&rxe->ah_pool, &ah->pelem);
173d3456914SLeon Romanovsky 	if (err)
174d3456914SLeon Romanovsky 		return err;
1758700e3e7SMoni Shoua 
176fa5d010cSMaor Gottlieb 	rxe_init_av(init_attr->ah_attr, &ah->av);
177d3456914SLeon Romanovsky 	return 0;
1788700e3e7SMoni Shoua }
1798700e3e7SMoni Shoua 
18090898850SDasaratharaman Chandramouli static int rxe_modify_ah(struct ib_ah *ibah, struct rdma_ah_attr *attr)
1818700e3e7SMoni Shoua {
1828700e3e7SMoni Shoua 	int err;
1838700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibah->device);
1848700e3e7SMoni Shoua 	struct rxe_ah *ah = to_rah(ibah);
1858700e3e7SMoni Shoua 
1868700e3e7SMoni Shoua 	err = rxe_av_chk_attr(rxe, attr);
1878700e3e7SMoni Shoua 	if (err)
1888700e3e7SMoni Shoua 		return err;
1898700e3e7SMoni Shoua 
190fa407188SKamal Heib 	rxe_init_av(attr, &ah->av);
1918700e3e7SMoni Shoua 	return 0;
1928700e3e7SMoni Shoua }
1938700e3e7SMoni Shoua 
19490898850SDasaratharaman Chandramouli static int rxe_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *attr)
1958700e3e7SMoni Shoua {
1968700e3e7SMoni Shoua 	struct rxe_ah *ah = to_rah(ibah);
1978700e3e7SMoni Shoua 
198eca7ddf9SDasaratharaman Chandramouli 	memset(attr, 0, sizeof(*attr));
19944c58487SDasaratharaman Chandramouli 	attr->type = ibah->type;
2009c96f3d4SZhu Yanjun 	rxe_av_to_attr(&ah->av, attr);
2018700e3e7SMoni Shoua 	return 0;
2028700e3e7SMoni Shoua }
2038700e3e7SMoni Shoua 
204d3456914SLeon Romanovsky static void rxe_destroy_ah(struct ib_ah *ibah, u32 flags)
2058700e3e7SMoni Shoua {
2068700e3e7SMoni Shoua 	struct rxe_ah *ah = to_rah(ibah);
2078700e3e7SMoni Shoua 
2088700e3e7SMoni Shoua 	rxe_drop_ref(ah);
2098700e3e7SMoni Shoua }
2108700e3e7SMoni Shoua 
211d34ac5cdSBart Van Assche static int post_one_recv(struct rxe_rq *rq, const struct ib_recv_wr *ibwr)
2128700e3e7SMoni Shoua {
2138700e3e7SMoni Shoua 	int err;
2148700e3e7SMoni Shoua 	int i;
2158700e3e7SMoni Shoua 	u32 length;
2168700e3e7SMoni Shoua 	struct rxe_recv_wqe *recv_wqe;
2178700e3e7SMoni Shoua 	int num_sge = ibwr->num_sge;
2188700e3e7SMoni Shoua 
2198700e3e7SMoni Shoua 	if (unlikely(queue_full(rq->queue))) {
2208700e3e7SMoni Shoua 		err = -ENOMEM;
2218700e3e7SMoni Shoua 		goto err1;
2228700e3e7SMoni Shoua 	}
2238700e3e7SMoni Shoua 
2248700e3e7SMoni Shoua 	if (unlikely(num_sge > rq->max_sge)) {
2258700e3e7SMoni Shoua 		err = -EINVAL;
2268700e3e7SMoni Shoua 		goto err1;
2278700e3e7SMoni Shoua 	}
2288700e3e7SMoni Shoua 
2298700e3e7SMoni Shoua 	length = 0;
2308700e3e7SMoni Shoua 	for (i = 0; i < num_sge; i++)
2318700e3e7SMoni Shoua 		length += ibwr->sg_list[i].length;
2328700e3e7SMoni Shoua 
2338700e3e7SMoni Shoua 	recv_wqe = producer_addr(rq->queue);
2348700e3e7SMoni Shoua 	recv_wqe->wr_id = ibwr->wr_id;
2358700e3e7SMoni Shoua 	recv_wqe->num_sge = num_sge;
2368700e3e7SMoni Shoua 
2378700e3e7SMoni Shoua 	memcpy(recv_wqe->dma.sge, ibwr->sg_list,
2388700e3e7SMoni Shoua 	       num_sge * sizeof(struct ib_sge));
2398700e3e7SMoni Shoua 
2408700e3e7SMoni Shoua 	recv_wqe->dma.length		= length;
2418700e3e7SMoni Shoua 	recv_wqe->dma.resid		= length;
2428700e3e7SMoni Shoua 	recv_wqe->dma.num_sge		= num_sge;
2438700e3e7SMoni Shoua 	recv_wqe->dma.cur_sge		= 0;
2448700e3e7SMoni Shoua 	recv_wqe->dma.sge_offset	= 0;
2458700e3e7SMoni Shoua 
2468700e3e7SMoni Shoua 	/* make sure all changes to the work queue are written before we
2478700e3e7SMoni Shoua 	 * update the producer pointer
2488700e3e7SMoni Shoua 	 */
2498700e3e7SMoni Shoua 	smp_wmb();
2508700e3e7SMoni Shoua 
2518700e3e7SMoni Shoua 	advance_producer(rq->queue);
2528700e3e7SMoni Shoua 	return 0;
2538700e3e7SMoni Shoua 
2548700e3e7SMoni Shoua err1:
2558700e3e7SMoni Shoua 	return err;
2568700e3e7SMoni Shoua }
2578700e3e7SMoni Shoua 
25868e326deSLeon Romanovsky static int rxe_create_srq(struct ib_srq *ibsrq, struct ib_srq_init_attr *init,
2598700e3e7SMoni Shoua 			  struct ib_udata *udata)
2608700e3e7SMoni Shoua {
2618700e3e7SMoni Shoua 	int err;
26268e326deSLeon Romanovsky 	struct rxe_dev *rxe = to_rdev(ibsrq->device);
26368e326deSLeon Romanovsky 	struct rxe_pd *pd = to_rpd(ibsrq->pd);
26468e326deSLeon Romanovsky 	struct rxe_srq *srq = to_rsrq(ibsrq);
2650c43ab37SJason Gunthorpe 	struct rxe_create_srq_resp __user *uresp = NULL;
2660c43ab37SJason Gunthorpe 
2670c43ab37SJason Gunthorpe 	if (udata) {
2680c43ab37SJason Gunthorpe 		if (udata->outlen < sizeof(*uresp))
26968e326deSLeon Romanovsky 			return -EINVAL;
2700c43ab37SJason Gunthorpe 		uresp = udata->outbuf;
2710c43ab37SJason Gunthorpe 	}
2728700e3e7SMoni Shoua 
2738700e3e7SMoni Shoua 	err = rxe_srq_chk_attr(rxe, NULL, &init->attr, IB_SRQ_INIT_MASK);
2748700e3e7SMoni Shoua 	if (err)
2758700e3e7SMoni Shoua 		goto err1;
2768700e3e7SMoni Shoua 
27768e326deSLeon Romanovsky 	err = rxe_add_to_pool(&rxe->srq_pool, &srq->pelem);
27868e326deSLeon Romanovsky 	if (err)
2798700e3e7SMoni Shoua 		goto err1;
2808700e3e7SMoni Shoua 
2818700e3e7SMoni Shoua 	rxe_add_ref(pd);
2828700e3e7SMoni Shoua 	srq->pd = pd;
2838700e3e7SMoni Shoua 
284ff23dfa1SShamir Rabinovitch 	err = rxe_srq_from_init(rxe, srq, init, udata, uresp);
2858700e3e7SMoni Shoua 	if (err)
2868700e3e7SMoni Shoua 		goto err2;
2878700e3e7SMoni Shoua 
28868e326deSLeon Romanovsky 	return 0;
2898700e3e7SMoni Shoua 
2908700e3e7SMoni Shoua err2:
2918700e3e7SMoni Shoua 	rxe_drop_ref(pd);
2928700e3e7SMoni Shoua 	rxe_drop_ref(srq);
2938700e3e7SMoni Shoua err1:
29468e326deSLeon Romanovsky 	return err;
2958700e3e7SMoni Shoua }
2968700e3e7SMoni Shoua 
2978700e3e7SMoni Shoua static int rxe_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
2988700e3e7SMoni Shoua 			  enum ib_srq_attr_mask mask,
2998700e3e7SMoni Shoua 			  struct ib_udata *udata)
3008700e3e7SMoni Shoua {
3018700e3e7SMoni Shoua 	int err;
3028700e3e7SMoni Shoua 	struct rxe_srq *srq = to_rsrq(ibsrq);
3038700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibsrq->device);
3040c43ab37SJason Gunthorpe 	struct rxe_modify_srq_cmd ucmd = {};
3050c43ab37SJason Gunthorpe 
3060c43ab37SJason Gunthorpe 	if (udata) {
3070c43ab37SJason Gunthorpe 		if (udata->inlen < sizeof(ucmd))
3080c43ab37SJason Gunthorpe 			return -EINVAL;
3090c43ab37SJason Gunthorpe 
3100c43ab37SJason Gunthorpe 		err = ib_copy_from_udata(&ucmd, udata, sizeof(ucmd));
3110c43ab37SJason Gunthorpe 		if (err)
3120c43ab37SJason Gunthorpe 			return err;
3130c43ab37SJason Gunthorpe 	}
3148700e3e7SMoni Shoua 
3158700e3e7SMoni Shoua 	err = rxe_srq_chk_attr(rxe, srq, attr, mask);
3168700e3e7SMoni Shoua 	if (err)
3178700e3e7SMoni Shoua 		goto err1;
3188700e3e7SMoni Shoua 
319ff23dfa1SShamir Rabinovitch 	err = rxe_srq_from_attr(rxe, srq, attr, mask, &ucmd, udata);
3208700e3e7SMoni Shoua 	if (err)
3218700e3e7SMoni Shoua 		goto err1;
3228700e3e7SMoni Shoua 
3238700e3e7SMoni Shoua 	return 0;
3248700e3e7SMoni Shoua 
3258700e3e7SMoni Shoua err1:
3268700e3e7SMoni Shoua 	return err;
3278700e3e7SMoni Shoua }
3288700e3e7SMoni Shoua 
3298700e3e7SMoni Shoua static int rxe_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr)
3308700e3e7SMoni Shoua {
3318700e3e7SMoni Shoua 	struct rxe_srq *srq = to_rsrq(ibsrq);
3328700e3e7SMoni Shoua 
3338700e3e7SMoni Shoua 	if (srq->error)
3348700e3e7SMoni Shoua 		return -EINVAL;
3358700e3e7SMoni Shoua 
3368700e3e7SMoni Shoua 	attr->max_wr = srq->rq.queue->buf->index_mask;
3378700e3e7SMoni Shoua 	attr->max_sge = srq->rq.max_sge;
3388700e3e7SMoni Shoua 	attr->srq_limit = srq->limit;
3398700e3e7SMoni Shoua 	return 0;
3408700e3e7SMoni Shoua }
3418700e3e7SMoni Shoua 
34268e326deSLeon Romanovsky static void rxe_destroy_srq(struct ib_srq *ibsrq, struct ib_udata *udata)
3438700e3e7SMoni Shoua {
3448700e3e7SMoni Shoua 	struct rxe_srq *srq = to_rsrq(ibsrq);
3458700e3e7SMoni Shoua 
3468700e3e7SMoni Shoua 	if (srq->rq.queue)
3478700e3e7SMoni Shoua 		rxe_queue_cleanup(srq->rq.queue);
3488700e3e7SMoni Shoua 
3498700e3e7SMoni Shoua 	rxe_drop_ref(srq->pd);
3508700e3e7SMoni Shoua 	rxe_drop_ref(srq);
3518700e3e7SMoni Shoua }
3528700e3e7SMoni Shoua 
353d34ac5cdSBart Van Assche static int rxe_post_srq_recv(struct ib_srq *ibsrq, const struct ib_recv_wr *wr,
354d34ac5cdSBart Van Assche 			     const struct ib_recv_wr **bad_wr)
3558700e3e7SMoni Shoua {
3568700e3e7SMoni Shoua 	int err = 0;
3578700e3e7SMoni Shoua 	unsigned long flags;
3588700e3e7SMoni Shoua 	struct rxe_srq *srq = to_rsrq(ibsrq);
3598700e3e7SMoni Shoua 
3608700e3e7SMoni Shoua 	spin_lock_irqsave(&srq->rq.producer_lock, flags);
3618700e3e7SMoni Shoua 
3628700e3e7SMoni Shoua 	while (wr) {
3638700e3e7SMoni Shoua 		err = post_one_recv(&srq->rq, wr);
3648700e3e7SMoni Shoua 		if (unlikely(err))
3658700e3e7SMoni Shoua 			break;
3668700e3e7SMoni Shoua 		wr = wr->next;
3678700e3e7SMoni Shoua 	}
3688700e3e7SMoni Shoua 
3698700e3e7SMoni Shoua 	spin_unlock_irqrestore(&srq->rq.producer_lock, flags);
3708700e3e7SMoni Shoua 
3718700e3e7SMoni Shoua 	if (err)
3728700e3e7SMoni Shoua 		*bad_wr = wr;
3738700e3e7SMoni Shoua 
3748700e3e7SMoni Shoua 	return err;
3758700e3e7SMoni Shoua }
3768700e3e7SMoni Shoua 
3778700e3e7SMoni Shoua static struct ib_qp *rxe_create_qp(struct ib_pd *ibpd,
3788700e3e7SMoni Shoua 				   struct ib_qp_init_attr *init,
3798700e3e7SMoni Shoua 				   struct ib_udata *udata)
3808700e3e7SMoni Shoua {
3818700e3e7SMoni Shoua 	int err;
3828700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibpd->device);
3838700e3e7SMoni Shoua 	struct rxe_pd *pd = to_rpd(ibpd);
3848700e3e7SMoni Shoua 	struct rxe_qp *qp;
3850c43ab37SJason Gunthorpe 	struct rxe_create_qp_resp __user *uresp = NULL;
3860c43ab37SJason Gunthorpe 
3870c43ab37SJason Gunthorpe 	if (udata) {
3880c43ab37SJason Gunthorpe 		if (udata->outlen < sizeof(*uresp))
3890c43ab37SJason Gunthorpe 			return ERR_PTR(-EINVAL);
3900c43ab37SJason Gunthorpe 		uresp = udata->outbuf;
3910c43ab37SJason Gunthorpe 	}
3928700e3e7SMoni Shoua 
3938700e3e7SMoni Shoua 	err = rxe_qp_chk_init(rxe, init);
3948700e3e7SMoni Shoua 	if (err)
3958700e3e7SMoni Shoua 		goto err1;
3968700e3e7SMoni Shoua 
3978700e3e7SMoni Shoua 	qp = rxe_alloc(&rxe->qp_pool);
3988700e3e7SMoni Shoua 	if (!qp) {
3998700e3e7SMoni Shoua 		err = -ENOMEM;
4008700e3e7SMoni Shoua 		goto err1;
4018700e3e7SMoni Shoua 	}
4028700e3e7SMoni Shoua 
4038700e3e7SMoni Shoua 	if (udata) {
4048700e3e7SMoni Shoua 		if (udata->inlen) {
4058700e3e7SMoni Shoua 			err = -EINVAL;
4065b9ea16cSAndrew Boyer 			goto err2;
4078700e3e7SMoni Shoua 		}
4088700e3e7SMoni Shoua 		qp->is_user = 1;
4098700e3e7SMoni Shoua 	}
4108700e3e7SMoni Shoua 
4118700e3e7SMoni Shoua 	rxe_add_index(qp);
4128700e3e7SMoni Shoua 
413e00b64f7SShamir Rabinovitch 	err = rxe_qp_from_init(rxe, qp, pd, init, uresp, ibpd, udata);
4148700e3e7SMoni Shoua 	if (err)
4155b9ea16cSAndrew Boyer 		goto err3;
4168700e3e7SMoni Shoua 
4178700e3e7SMoni Shoua 	return &qp->ibqp;
4188700e3e7SMoni Shoua 
4195b9ea16cSAndrew Boyer err3:
4208700e3e7SMoni Shoua 	rxe_drop_index(qp);
4215b9ea16cSAndrew Boyer err2:
4228700e3e7SMoni Shoua 	rxe_drop_ref(qp);
4238700e3e7SMoni Shoua err1:
4248700e3e7SMoni Shoua 	return ERR_PTR(err);
4258700e3e7SMoni Shoua }
4268700e3e7SMoni Shoua 
4278700e3e7SMoni Shoua static int rxe_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
4288700e3e7SMoni Shoua 			 int mask, struct ib_udata *udata)
4298700e3e7SMoni Shoua {
4308700e3e7SMoni Shoua 	int err;
4318700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibqp->device);
4328700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
4338700e3e7SMoni Shoua 
4348700e3e7SMoni Shoua 	err = rxe_qp_chk_attr(rxe, qp, attr, mask);
4358700e3e7SMoni Shoua 	if (err)
4368700e3e7SMoni Shoua 		goto err1;
4378700e3e7SMoni Shoua 
4388700e3e7SMoni Shoua 	err = rxe_qp_from_attr(qp, attr, mask, udata);
4398700e3e7SMoni Shoua 	if (err)
4408700e3e7SMoni Shoua 		goto err1;
4418700e3e7SMoni Shoua 
4428700e3e7SMoni Shoua 	return 0;
4438700e3e7SMoni Shoua 
4448700e3e7SMoni Shoua err1:
4458700e3e7SMoni Shoua 	return err;
4468700e3e7SMoni Shoua }
4478700e3e7SMoni Shoua 
4488700e3e7SMoni Shoua static int rxe_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
4498700e3e7SMoni Shoua 			int mask, struct ib_qp_init_attr *init)
4508700e3e7SMoni Shoua {
4518700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
4528700e3e7SMoni Shoua 
4538700e3e7SMoni Shoua 	rxe_qp_to_init(qp, init);
4548700e3e7SMoni Shoua 	rxe_qp_to_attr(qp, attr, mask);
4558700e3e7SMoni Shoua 
4568700e3e7SMoni Shoua 	return 0;
4578700e3e7SMoni Shoua }
4588700e3e7SMoni Shoua 
459c4367a26SShamir Rabinovitch static int rxe_destroy_qp(struct ib_qp *ibqp, struct ib_udata *udata)
4608700e3e7SMoni Shoua {
4618700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
4628700e3e7SMoni Shoua 
4638700e3e7SMoni Shoua 	rxe_qp_destroy(qp);
4648700e3e7SMoni Shoua 	rxe_drop_index(qp);
4658700e3e7SMoni Shoua 	rxe_drop_ref(qp);
4668700e3e7SMoni Shoua 	return 0;
4678700e3e7SMoni Shoua }
4688700e3e7SMoni Shoua 
469f696bf6dSBart Van Assche static int validate_send_wr(struct rxe_qp *qp, const struct ib_send_wr *ibwr,
4708700e3e7SMoni Shoua 			    unsigned int mask, unsigned int length)
4718700e3e7SMoni Shoua {
4728700e3e7SMoni Shoua 	int num_sge = ibwr->num_sge;
4738700e3e7SMoni Shoua 	struct rxe_sq *sq = &qp->sq;
4748700e3e7SMoni Shoua 
4758700e3e7SMoni Shoua 	if (unlikely(num_sge > sq->max_sge))
4768700e3e7SMoni Shoua 		goto err1;
4778700e3e7SMoni Shoua 
4788700e3e7SMoni Shoua 	if (unlikely(mask & WR_ATOMIC_MASK)) {
4798700e3e7SMoni Shoua 		if (length < 8)
4808700e3e7SMoni Shoua 			goto err1;
4818700e3e7SMoni Shoua 
4828700e3e7SMoni Shoua 		if (atomic_wr(ibwr)->remote_addr & 0x7)
4838700e3e7SMoni Shoua 			goto err1;
4848700e3e7SMoni Shoua 	}
4858700e3e7SMoni Shoua 
4868700e3e7SMoni Shoua 	if (unlikely((ibwr->send_flags & IB_SEND_INLINE) &&
4878700e3e7SMoni Shoua 		     (length > sq->max_inline)))
4888700e3e7SMoni Shoua 		goto err1;
4898700e3e7SMoni Shoua 
4908700e3e7SMoni Shoua 	return 0;
4918700e3e7SMoni Shoua 
4928700e3e7SMoni Shoua err1:
4938700e3e7SMoni Shoua 	return -EINVAL;
4948700e3e7SMoni Shoua }
4958700e3e7SMoni Shoua 
4968700e3e7SMoni Shoua static void init_send_wr(struct rxe_qp *qp, struct rxe_send_wr *wr,
497f696bf6dSBart Van Assche 			 const struct ib_send_wr *ibwr)
4988700e3e7SMoni Shoua {
4998700e3e7SMoni Shoua 	wr->wr_id = ibwr->wr_id;
5008700e3e7SMoni Shoua 	wr->num_sge = ibwr->num_sge;
5018700e3e7SMoni Shoua 	wr->opcode = ibwr->opcode;
5028700e3e7SMoni Shoua 	wr->send_flags = ibwr->send_flags;
5038700e3e7SMoni Shoua 
5048700e3e7SMoni Shoua 	if (qp_type(qp) == IB_QPT_UD ||
5058700e3e7SMoni Shoua 	    qp_type(qp) == IB_QPT_SMI ||
5068700e3e7SMoni Shoua 	    qp_type(qp) == IB_QPT_GSI) {
5078700e3e7SMoni Shoua 		wr->wr.ud.remote_qpn = ud_wr(ibwr)->remote_qpn;
5088700e3e7SMoni Shoua 		wr->wr.ud.remote_qkey = ud_wr(ibwr)->remote_qkey;
5098700e3e7SMoni Shoua 		if (qp_type(qp) == IB_QPT_GSI)
5108700e3e7SMoni Shoua 			wr->wr.ud.pkey_index = ud_wr(ibwr)->pkey_index;
5118700e3e7SMoni Shoua 		if (wr->opcode == IB_WR_SEND_WITH_IMM)
5128700e3e7SMoni Shoua 			wr->ex.imm_data = ibwr->ex.imm_data;
5138700e3e7SMoni Shoua 	} else {
5148700e3e7SMoni Shoua 		switch (wr->opcode) {
5158700e3e7SMoni Shoua 		case IB_WR_RDMA_WRITE_WITH_IMM:
5168700e3e7SMoni Shoua 			wr->ex.imm_data = ibwr->ex.imm_data;
517df561f66SGustavo A. R. Silva 			fallthrough;
5188700e3e7SMoni Shoua 		case IB_WR_RDMA_READ:
5198700e3e7SMoni Shoua 		case IB_WR_RDMA_WRITE:
5208700e3e7SMoni Shoua 			wr->wr.rdma.remote_addr = rdma_wr(ibwr)->remote_addr;
5218700e3e7SMoni Shoua 			wr->wr.rdma.rkey	= rdma_wr(ibwr)->rkey;
5228700e3e7SMoni Shoua 			break;
5238700e3e7SMoni Shoua 		case IB_WR_SEND_WITH_IMM:
5248700e3e7SMoni Shoua 			wr->ex.imm_data = ibwr->ex.imm_data;
5258700e3e7SMoni Shoua 			break;
5268700e3e7SMoni Shoua 		case IB_WR_SEND_WITH_INV:
5278700e3e7SMoni Shoua 			wr->ex.invalidate_rkey = ibwr->ex.invalidate_rkey;
5288700e3e7SMoni Shoua 			break;
5298700e3e7SMoni Shoua 		case IB_WR_ATOMIC_CMP_AND_SWP:
5308700e3e7SMoni Shoua 		case IB_WR_ATOMIC_FETCH_AND_ADD:
5318700e3e7SMoni Shoua 			wr->wr.atomic.remote_addr =
5328700e3e7SMoni Shoua 				atomic_wr(ibwr)->remote_addr;
5338700e3e7SMoni Shoua 			wr->wr.atomic.compare_add =
5348700e3e7SMoni Shoua 				atomic_wr(ibwr)->compare_add;
5358700e3e7SMoni Shoua 			wr->wr.atomic.swap = atomic_wr(ibwr)->swap;
5368700e3e7SMoni Shoua 			wr->wr.atomic.rkey = atomic_wr(ibwr)->rkey;
5378700e3e7SMoni Shoua 			break;
5388700e3e7SMoni Shoua 		case IB_WR_LOCAL_INV:
5398700e3e7SMoni Shoua 			wr->ex.invalidate_rkey = ibwr->ex.invalidate_rkey;
5408700e3e7SMoni Shoua 		break;
5418700e3e7SMoni Shoua 		case IB_WR_REG_MR:
5428700e3e7SMoni Shoua 			wr->wr.reg.mr = reg_wr(ibwr)->mr;
5438700e3e7SMoni Shoua 			wr->wr.reg.key = reg_wr(ibwr)->key;
5448700e3e7SMoni Shoua 			wr->wr.reg.access = reg_wr(ibwr)->access;
5458700e3e7SMoni Shoua 		break;
5468700e3e7SMoni Shoua 		default:
5478700e3e7SMoni Shoua 			break;
5488700e3e7SMoni Shoua 		}
5498700e3e7SMoni Shoua 	}
5508700e3e7SMoni Shoua }
5518700e3e7SMoni Shoua 
552f696bf6dSBart Van Assche static int init_send_wqe(struct rxe_qp *qp, const struct ib_send_wr *ibwr,
5538700e3e7SMoni Shoua 			 unsigned int mask, unsigned int length,
5548700e3e7SMoni Shoua 			 struct rxe_send_wqe *wqe)
5558700e3e7SMoni Shoua {
5568700e3e7SMoni Shoua 	int num_sge = ibwr->num_sge;
5578700e3e7SMoni Shoua 	struct ib_sge *sge;
5588700e3e7SMoni Shoua 	int i;
5598700e3e7SMoni Shoua 	u8 *p;
5608700e3e7SMoni Shoua 
5618700e3e7SMoni Shoua 	init_send_wr(qp, &wqe->wr, ibwr);
5628700e3e7SMoni Shoua 
5638700e3e7SMoni Shoua 	if (qp_type(qp) == IB_QPT_UD ||
5648700e3e7SMoni Shoua 	    qp_type(qp) == IB_QPT_SMI ||
5658700e3e7SMoni Shoua 	    qp_type(qp) == IB_QPT_GSI)
5668700e3e7SMoni Shoua 		memcpy(&wqe->av, &to_rah(ud_wr(ibwr)->ah)->av, sizeof(wqe->av));
5678700e3e7SMoni Shoua 
5688700e3e7SMoni Shoua 	if (unlikely(ibwr->send_flags & IB_SEND_INLINE)) {
5698700e3e7SMoni Shoua 		p = wqe->dma.inline_data;
5708700e3e7SMoni Shoua 
5718700e3e7SMoni Shoua 		sge = ibwr->sg_list;
5728700e3e7SMoni Shoua 		for (i = 0; i < num_sge; i++, sge++) {
5738700e3e7SMoni Shoua 			memcpy(p, (void *)(uintptr_t)sge->addr,
5748700e3e7SMoni Shoua 					sge->length);
5758700e3e7SMoni Shoua 
5768700e3e7SMoni Shoua 			p += sge->length;
5778700e3e7SMoni Shoua 		}
5788700e3e7SMoni Shoua 	} else if (mask & WR_REG_MASK) {
5798700e3e7SMoni Shoua 		wqe->mask = mask;
5808700e3e7SMoni Shoua 		wqe->state = wqe_state_posted;
5818700e3e7SMoni Shoua 		return 0;
5828700e3e7SMoni Shoua 	} else
5838700e3e7SMoni Shoua 		memcpy(wqe->dma.sge, ibwr->sg_list,
5848700e3e7SMoni Shoua 		       num_sge * sizeof(struct ib_sge));
5858700e3e7SMoni Shoua 
586a6544a62SBart Van Assche 	wqe->iova = mask & WR_ATOMIC_MASK ? atomic_wr(ibwr)->remote_addr :
587a6544a62SBart Van Assche 		mask & WR_READ_OR_WRITE_MASK ? rdma_wr(ibwr)->remote_addr : 0;
5888700e3e7SMoni Shoua 	wqe->mask		= mask;
5898700e3e7SMoni Shoua 	wqe->dma.length		= length;
5908700e3e7SMoni Shoua 	wqe->dma.resid		= length;
5918700e3e7SMoni Shoua 	wqe->dma.num_sge	= num_sge;
5928700e3e7SMoni Shoua 	wqe->dma.cur_sge	= 0;
5938700e3e7SMoni Shoua 	wqe->dma.sge_offset	= 0;
5948700e3e7SMoni Shoua 	wqe->state		= wqe_state_posted;
5958700e3e7SMoni Shoua 	wqe->ssn		= atomic_add_return(1, &qp->ssn);
5968700e3e7SMoni Shoua 
5978700e3e7SMoni Shoua 	return 0;
5988700e3e7SMoni Shoua }
5998700e3e7SMoni Shoua 
600f696bf6dSBart Van Assche static int post_one_send(struct rxe_qp *qp, const struct ib_send_wr *ibwr,
601e404f945SParav Pandit 			 unsigned int mask, u32 length)
6028700e3e7SMoni Shoua {
6038700e3e7SMoni Shoua 	int err;
6048700e3e7SMoni Shoua 	struct rxe_sq *sq = &qp->sq;
6058700e3e7SMoni Shoua 	struct rxe_send_wqe *send_wqe;
6068700e3e7SMoni Shoua 	unsigned long flags;
6078700e3e7SMoni Shoua 
6088700e3e7SMoni Shoua 	err = validate_send_wr(qp, ibwr, mask, length);
6098700e3e7SMoni Shoua 	if (err)
6108700e3e7SMoni Shoua 		return err;
6118700e3e7SMoni Shoua 
6128700e3e7SMoni Shoua 	spin_lock_irqsave(&qp->sq.sq_lock, flags);
6138700e3e7SMoni Shoua 
6148700e3e7SMoni Shoua 	if (unlikely(queue_full(sq->queue))) {
6158700e3e7SMoni Shoua 		err = -ENOMEM;
6168700e3e7SMoni Shoua 		goto err1;
6178700e3e7SMoni Shoua 	}
6188700e3e7SMoni Shoua 
6198700e3e7SMoni Shoua 	send_wqe = producer_addr(sq->queue);
6208700e3e7SMoni Shoua 
6218700e3e7SMoni Shoua 	err = init_send_wqe(qp, ibwr, mask, length, send_wqe);
6228700e3e7SMoni Shoua 	if (unlikely(err))
6238700e3e7SMoni Shoua 		goto err1;
6248700e3e7SMoni Shoua 
6258700e3e7SMoni Shoua 	/*
6268700e3e7SMoni Shoua 	 * make sure all changes to the work queue are
6278700e3e7SMoni Shoua 	 * written before we update the producer pointer
6288700e3e7SMoni Shoua 	 */
6298700e3e7SMoni Shoua 	smp_wmb();
6308700e3e7SMoni Shoua 
6318700e3e7SMoni Shoua 	advance_producer(sq->queue);
6328700e3e7SMoni Shoua 	spin_unlock_irqrestore(&qp->sq.sq_lock, flags);
6338700e3e7SMoni Shoua 
6348700e3e7SMoni Shoua 	return 0;
6358700e3e7SMoni Shoua 
6368700e3e7SMoni Shoua err1:
6378700e3e7SMoni Shoua 	spin_unlock_irqrestore(&qp->sq.sq_lock, flags);
6388700e3e7SMoni Shoua 	return err;
6398700e3e7SMoni Shoua }
6408700e3e7SMoni Shoua 
641d34ac5cdSBart Van Assche static int rxe_post_send_kernel(struct rxe_qp *qp, const struct ib_send_wr *wr,
642d34ac5cdSBart Van Assche 				const struct ib_send_wr **bad_wr)
6438700e3e7SMoni Shoua {
6448700e3e7SMoni Shoua 	int err = 0;
6458700e3e7SMoni Shoua 	unsigned int mask;
6468700e3e7SMoni Shoua 	unsigned int length = 0;
6478700e3e7SMoni Shoua 	int i;
6485f0b2a60SMikhail Malygin 	struct ib_send_wr *next;
6498700e3e7SMoni Shoua 
6508700e3e7SMoni Shoua 	while (wr) {
6518700e3e7SMoni Shoua 		mask = wr_opcode_mask(wr->opcode, qp);
6528700e3e7SMoni Shoua 		if (unlikely(!mask)) {
6538700e3e7SMoni Shoua 			err = -EINVAL;
6548700e3e7SMoni Shoua 			*bad_wr = wr;
6558700e3e7SMoni Shoua 			break;
6568700e3e7SMoni Shoua 		}
6578700e3e7SMoni Shoua 
6588700e3e7SMoni Shoua 		if (unlikely((wr->send_flags & IB_SEND_INLINE) &&
6598700e3e7SMoni Shoua 			     !(mask & WR_INLINE_MASK))) {
6608700e3e7SMoni Shoua 			err = -EINVAL;
6618700e3e7SMoni Shoua 			*bad_wr = wr;
6628700e3e7SMoni Shoua 			break;
6638700e3e7SMoni Shoua 		}
6648700e3e7SMoni Shoua 
6655f0b2a60SMikhail Malygin 		next = wr->next;
6665f0b2a60SMikhail Malygin 
6678700e3e7SMoni Shoua 		length = 0;
6688700e3e7SMoni Shoua 		for (i = 0; i < wr->num_sge; i++)
6698700e3e7SMoni Shoua 			length += wr->sg_list[i].length;
6708700e3e7SMoni Shoua 
6718700e3e7SMoni Shoua 		err = post_one_send(qp, wr, mask, length);
6728700e3e7SMoni Shoua 
6738700e3e7SMoni Shoua 		if (err) {
6748700e3e7SMoni Shoua 			*bad_wr = wr;
6758700e3e7SMoni Shoua 			break;
6768700e3e7SMoni Shoua 		}
6775f0b2a60SMikhail Malygin 		wr = next;
6788700e3e7SMoni Shoua 	}
6798700e3e7SMoni Shoua 
6801661d3b0SAlexandru Moise 	rxe_run_task(&qp->req.task, 1);
6816f301e06SBart Van Assche 	if (unlikely(qp->req.state == QP_STATE_ERROR))
6826f301e06SBart Van Assche 		rxe_run_task(&qp->comp.task, 1);
6838700e3e7SMoni Shoua 
6848700e3e7SMoni Shoua 	return err;
6858700e3e7SMoni Shoua }
6868700e3e7SMoni Shoua 
687d34ac5cdSBart Van Assche static int rxe_post_send(struct ib_qp *ibqp, const struct ib_send_wr *wr,
688d34ac5cdSBart Van Assche 			 const struct ib_send_wr **bad_wr)
689063af595SParav Pandit {
690063af595SParav Pandit 	struct rxe_qp *qp = to_rqp(ibqp);
691063af595SParav Pandit 
692063af595SParav Pandit 	if (unlikely(!qp->valid)) {
693063af595SParav Pandit 		*bad_wr = wr;
694063af595SParav Pandit 		return -EINVAL;
695063af595SParav Pandit 	}
696063af595SParav Pandit 
697063af595SParav Pandit 	if (unlikely(qp->req.state < QP_STATE_READY)) {
698063af595SParav Pandit 		*bad_wr = wr;
699063af595SParav Pandit 		return -EINVAL;
700063af595SParav Pandit 	}
701063af595SParav Pandit 
702063af595SParav Pandit 	if (qp->is_user) {
703063af595SParav Pandit 		/* Utilize process context to do protocol processing */
704063af595SParav Pandit 		rxe_run_task(&qp->req.task, 0);
705063af595SParav Pandit 		return 0;
706063af595SParav Pandit 	} else
707063af595SParav Pandit 		return rxe_post_send_kernel(qp, wr, bad_wr);
708063af595SParav Pandit }
709063af595SParav Pandit 
710d34ac5cdSBart Van Assche static int rxe_post_recv(struct ib_qp *ibqp, const struct ib_recv_wr *wr,
711d34ac5cdSBart Van Assche 			 const struct ib_recv_wr **bad_wr)
7128700e3e7SMoni Shoua {
7138700e3e7SMoni Shoua 	int err = 0;
7148700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
7158700e3e7SMoni Shoua 	struct rxe_rq *rq = &qp->rq;
7168700e3e7SMoni Shoua 	unsigned long flags;
7178700e3e7SMoni Shoua 
7188700e3e7SMoni Shoua 	if (unlikely((qp_state(qp) < IB_QPS_INIT) || !qp->valid)) {
7198700e3e7SMoni Shoua 		*bad_wr = wr;
7208700e3e7SMoni Shoua 		err = -EINVAL;
7218700e3e7SMoni Shoua 		goto err1;
7228700e3e7SMoni Shoua 	}
7238700e3e7SMoni Shoua 
7248700e3e7SMoni Shoua 	if (unlikely(qp->srq)) {
7258700e3e7SMoni Shoua 		*bad_wr = wr;
7268700e3e7SMoni Shoua 		err = -EINVAL;
7278700e3e7SMoni Shoua 		goto err1;
7288700e3e7SMoni Shoua 	}
7298700e3e7SMoni Shoua 
7308700e3e7SMoni Shoua 	spin_lock_irqsave(&rq->producer_lock, flags);
7318700e3e7SMoni Shoua 
7328700e3e7SMoni Shoua 	while (wr) {
7338700e3e7SMoni Shoua 		err = post_one_recv(rq, wr);
7348700e3e7SMoni Shoua 		if (unlikely(err)) {
7358700e3e7SMoni Shoua 			*bad_wr = wr;
7368700e3e7SMoni Shoua 			break;
7378700e3e7SMoni Shoua 		}
7388700e3e7SMoni Shoua 		wr = wr->next;
7398700e3e7SMoni Shoua 	}
7408700e3e7SMoni Shoua 
7418700e3e7SMoni Shoua 	spin_unlock_irqrestore(&rq->producer_lock, flags);
7428700e3e7SMoni Shoua 
74312171971SVijay Immanuel 	if (qp->resp.state == QP_STATE_ERROR)
74412171971SVijay Immanuel 		rxe_run_task(&qp->resp.task, 1);
74512171971SVijay Immanuel 
7468700e3e7SMoni Shoua err1:
7478700e3e7SMoni Shoua 	return err;
7488700e3e7SMoni Shoua }
7498700e3e7SMoni Shoua 
750e39afe3dSLeon Romanovsky static int rxe_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr,
7518700e3e7SMoni Shoua 			 struct ib_udata *udata)
7528700e3e7SMoni Shoua {
7538700e3e7SMoni Shoua 	int err;
754e39afe3dSLeon Romanovsky 	struct ib_device *dev = ibcq->device;
7558700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(dev);
756e39afe3dSLeon Romanovsky 	struct rxe_cq *cq = to_rcq(ibcq);
7570c43ab37SJason Gunthorpe 	struct rxe_create_cq_resp __user *uresp = NULL;
7580c43ab37SJason Gunthorpe 
7590c43ab37SJason Gunthorpe 	if (udata) {
7600c43ab37SJason Gunthorpe 		if (udata->outlen < sizeof(*uresp))
761e39afe3dSLeon Romanovsky 			return -EINVAL;
7620c43ab37SJason Gunthorpe 		uresp = udata->outbuf;
7630c43ab37SJason Gunthorpe 	}
7648700e3e7SMoni Shoua 
7658700e3e7SMoni Shoua 	if (attr->flags)
766e39afe3dSLeon Romanovsky 		return -EINVAL;
7678700e3e7SMoni Shoua 
768b92ec0feSJason Gunthorpe 	err = rxe_cq_chk_attr(rxe, NULL, attr->cqe, attr->comp_vector);
7698700e3e7SMoni Shoua 	if (err)
770e39afe3dSLeon Romanovsky 		return err;
7718700e3e7SMoni Shoua 
772ff23dfa1SShamir Rabinovitch 	err = rxe_cq_from_init(rxe, cq, attr->cqe, attr->comp_vector, udata,
773ff23dfa1SShamir Rabinovitch 			       uresp);
7748700e3e7SMoni Shoua 	if (err)
775e39afe3dSLeon Romanovsky 		return err;
7768700e3e7SMoni Shoua 
777e39afe3dSLeon Romanovsky 	return rxe_add_to_pool(&rxe->cq_pool, &cq->pelem);
7788700e3e7SMoni Shoua }
7798700e3e7SMoni Shoua 
780a52c8e24SLeon Romanovsky static void rxe_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata)
7818700e3e7SMoni Shoua {
7828700e3e7SMoni Shoua 	struct rxe_cq *cq = to_rcq(ibcq);
7838700e3e7SMoni Shoua 
784bfc3ae05SAndrew Boyer 	rxe_cq_disable(cq);
785bfc3ae05SAndrew Boyer 
7868700e3e7SMoni Shoua 	rxe_drop_ref(cq);
7878700e3e7SMoni Shoua }
7888700e3e7SMoni Shoua 
7898700e3e7SMoni Shoua static int rxe_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata)
7908700e3e7SMoni Shoua {
7918700e3e7SMoni Shoua 	int err;
7928700e3e7SMoni Shoua 	struct rxe_cq *cq = to_rcq(ibcq);
7938700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibcq->device);
7940c43ab37SJason Gunthorpe 	struct rxe_resize_cq_resp __user *uresp = NULL;
7950c43ab37SJason Gunthorpe 
7960c43ab37SJason Gunthorpe 	if (udata) {
7970c43ab37SJason Gunthorpe 		if (udata->outlen < sizeof(*uresp))
7980c43ab37SJason Gunthorpe 			return -EINVAL;
7990c43ab37SJason Gunthorpe 		uresp = udata->outbuf;
8000c43ab37SJason Gunthorpe 	}
8018700e3e7SMoni Shoua 
802b92ec0feSJason Gunthorpe 	err = rxe_cq_chk_attr(rxe, cq, cqe, 0);
8038700e3e7SMoni Shoua 	if (err)
8048700e3e7SMoni Shoua 		goto err1;
8058700e3e7SMoni Shoua 
806ff23dfa1SShamir Rabinovitch 	err = rxe_cq_resize_queue(cq, cqe, uresp, udata);
8078700e3e7SMoni Shoua 	if (err)
8088700e3e7SMoni Shoua 		goto err1;
8098700e3e7SMoni Shoua 
8108700e3e7SMoni Shoua 	return 0;
8118700e3e7SMoni Shoua 
8128700e3e7SMoni Shoua err1:
8138700e3e7SMoni Shoua 	return err;
8148700e3e7SMoni Shoua }
8158700e3e7SMoni Shoua 
8168700e3e7SMoni Shoua static int rxe_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc)
8178700e3e7SMoni Shoua {
8188700e3e7SMoni Shoua 	int i;
8198700e3e7SMoni Shoua 	struct rxe_cq *cq = to_rcq(ibcq);
8208700e3e7SMoni Shoua 	struct rxe_cqe *cqe;
8218700e3e7SMoni Shoua 	unsigned long flags;
8228700e3e7SMoni Shoua 
8238700e3e7SMoni Shoua 	spin_lock_irqsave(&cq->cq_lock, flags);
8248700e3e7SMoni Shoua 	for (i = 0; i < num_entries; i++) {
8258700e3e7SMoni Shoua 		cqe = queue_head(cq->queue);
8268700e3e7SMoni Shoua 		if (!cqe)
8278700e3e7SMoni Shoua 			break;
8288700e3e7SMoni Shoua 
8298700e3e7SMoni Shoua 		memcpy(wc++, &cqe->ibwc, sizeof(*wc));
8308700e3e7SMoni Shoua 		advance_consumer(cq->queue);
8318700e3e7SMoni Shoua 	}
8328700e3e7SMoni Shoua 	spin_unlock_irqrestore(&cq->cq_lock, flags);
8338700e3e7SMoni Shoua 
8348700e3e7SMoni Shoua 	return i;
8358700e3e7SMoni Shoua }
8368700e3e7SMoni Shoua 
8378700e3e7SMoni Shoua static int rxe_peek_cq(struct ib_cq *ibcq, int wc_cnt)
8388700e3e7SMoni Shoua {
8398700e3e7SMoni Shoua 	struct rxe_cq *cq = to_rcq(ibcq);
8408700e3e7SMoni Shoua 	int count = queue_count(cq->queue);
8418700e3e7SMoni Shoua 
8428700e3e7SMoni Shoua 	return (count > wc_cnt) ? wc_cnt : count;
8438700e3e7SMoni Shoua }
8448700e3e7SMoni Shoua 
8458700e3e7SMoni Shoua static int rxe_req_notify_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags)
8468700e3e7SMoni Shoua {
8478700e3e7SMoni Shoua 	struct rxe_cq *cq = to_rcq(ibcq);
848accacb8fSAndrew Boyer 	unsigned long irq_flags;
849accacb8fSAndrew Boyer 	int ret = 0;
8508700e3e7SMoni Shoua 
851accacb8fSAndrew Boyer 	spin_lock_irqsave(&cq->cq_lock, irq_flags);
8528700e3e7SMoni Shoua 	if (cq->notify != IB_CQ_NEXT_COMP)
8538700e3e7SMoni Shoua 		cq->notify = flags & IB_CQ_SOLICITED_MASK;
8548700e3e7SMoni Shoua 
855accacb8fSAndrew Boyer 	if ((flags & IB_CQ_REPORT_MISSED_EVENTS) && !queue_empty(cq->queue))
856accacb8fSAndrew Boyer 		ret = 1;
857accacb8fSAndrew Boyer 
858accacb8fSAndrew Boyer 	spin_unlock_irqrestore(&cq->cq_lock, irq_flags);
859accacb8fSAndrew Boyer 
860accacb8fSAndrew Boyer 	return ret;
8618700e3e7SMoni Shoua }
8628700e3e7SMoni Shoua 
8638700e3e7SMoni Shoua static struct ib_mr *rxe_get_dma_mr(struct ib_pd *ibpd, int access)
8648700e3e7SMoni Shoua {
8658700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibpd->device);
8668700e3e7SMoni Shoua 	struct rxe_pd *pd = to_rpd(ibpd);
8678700e3e7SMoni Shoua 	struct rxe_mem *mr;
8688700e3e7SMoni Shoua 
8698700e3e7SMoni Shoua 	mr = rxe_alloc(&rxe->mr_pool);
870293d8440SKamal Heib 	if (!mr)
871293d8440SKamal Heib 		return ERR_PTR(-ENOMEM);
8728700e3e7SMoni Shoua 
8738700e3e7SMoni Shoua 	rxe_add_index(mr);
8748700e3e7SMoni Shoua 	rxe_add_ref(pd);
875293d8440SKamal Heib 	rxe_mem_init_dma(pd, access, mr);
8768700e3e7SMoni Shoua 
8778700e3e7SMoni Shoua 	return &mr->ibmr;
8788700e3e7SMoni Shoua }
8798700e3e7SMoni Shoua 
8808700e3e7SMoni Shoua static struct ib_mr *rxe_reg_user_mr(struct ib_pd *ibpd,
8818700e3e7SMoni Shoua 				     u64 start,
8828700e3e7SMoni Shoua 				     u64 length,
8838700e3e7SMoni Shoua 				     u64 iova,
8848700e3e7SMoni Shoua 				     int access, struct ib_udata *udata)
8858700e3e7SMoni Shoua {
8868700e3e7SMoni Shoua 	int err;
8878700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibpd->device);
8888700e3e7SMoni Shoua 	struct rxe_pd *pd = to_rpd(ibpd);
8898700e3e7SMoni Shoua 	struct rxe_mem *mr;
8908700e3e7SMoni Shoua 
8918700e3e7SMoni Shoua 	mr = rxe_alloc(&rxe->mr_pool);
8928700e3e7SMoni Shoua 	if (!mr) {
8938700e3e7SMoni Shoua 		err = -ENOMEM;
8948700e3e7SMoni Shoua 		goto err2;
8958700e3e7SMoni Shoua 	}
8968700e3e7SMoni Shoua 
8978700e3e7SMoni Shoua 	rxe_add_index(mr);
8988700e3e7SMoni Shoua 
8998700e3e7SMoni Shoua 	rxe_add_ref(pd);
9008700e3e7SMoni Shoua 
901e12ee8ceSZhu Yanjun 	err = rxe_mem_init_user(pd, start, length, iova,
9028700e3e7SMoni Shoua 				access, udata, mr);
9038700e3e7SMoni Shoua 	if (err)
9048700e3e7SMoni Shoua 		goto err3;
9058700e3e7SMoni Shoua 
9068700e3e7SMoni Shoua 	return &mr->ibmr;
9078700e3e7SMoni Shoua 
9088700e3e7SMoni Shoua err3:
9098700e3e7SMoni Shoua 	rxe_drop_ref(pd);
9108700e3e7SMoni Shoua 	rxe_drop_index(mr);
9118700e3e7SMoni Shoua 	rxe_drop_ref(mr);
9128700e3e7SMoni Shoua err2:
9138700e3e7SMoni Shoua 	return ERR_PTR(err);
9148700e3e7SMoni Shoua }
9158700e3e7SMoni Shoua 
916c4367a26SShamir Rabinovitch static int rxe_dereg_mr(struct ib_mr *ibmr, struct ib_udata *udata)
9178700e3e7SMoni Shoua {
9188700e3e7SMoni Shoua 	struct rxe_mem *mr = to_rmr(ibmr);
9198700e3e7SMoni Shoua 
9208700e3e7SMoni Shoua 	mr->state = RXE_MEM_STATE_ZOMBIE;
9218700e3e7SMoni Shoua 	rxe_drop_ref(mr->pd);
9228700e3e7SMoni Shoua 	rxe_drop_index(mr);
9238700e3e7SMoni Shoua 	rxe_drop_ref(mr);
9248700e3e7SMoni Shoua 	return 0;
9258700e3e7SMoni Shoua }
9268700e3e7SMoni Shoua 
927c4367a26SShamir Rabinovitch static struct ib_mr *rxe_alloc_mr(struct ib_pd *ibpd, enum ib_mr_type mr_type,
92842a3b153SGal Pressman 				  u32 max_num_sg)
9298700e3e7SMoni Shoua {
9308700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibpd->device);
9318700e3e7SMoni Shoua 	struct rxe_pd *pd = to_rpd(ibpd);
9328700e3e7SMoni Shoua 	struct rxe_mem *mr;
9338700e3e7SMoni Shoua 	int err;
9348700e3e7SMoni Shoua 
9358700e3e7SMoni Shoua 	if (mr_type != IB_MR_TYPE_MEM_REG)
9368700e3e7SMoni Shoua 		return ERR_PTR(-EINVAL);
9378700e3e7SMoni Shoua 
9388700e3e7SMoni Shoua 	mr = rxe_alloc(&rxe->mr_pool);
9398700e3e7SMoni Shoua 	if (!mr) {
9408700e3e7SMoni Shoua 		err = -ENOMEM;
9418700e3e7SMoni Shoua 		goto err1;
9428700e3e7SMoni Shoua 	}
9438700e3e7SMoni Shoua 
9448700e3e7SMoni Shoua 	rxe_add_index(mr);
9458700e3e7SMoni Shoua 
9468700e3e7SMoni Shoua 	rxe_add_ref(pd);
9478700e3e7SMoni Shoua 
948e12ee8ceSZhu Yanjun 	err = rxe_mem_init_fast(pd, max_num_sg, mr);
9498700e3e7SMoni Shoua 	if (err)
9508700e3e7SMoni Shoua 		goto err2;
9518700e3e7SMoni Shoua 
9528700e3e7SMoni Shoua 	return &mr->ibmr;
9538700e3e7SMoni Shoua 
9548700e3e7SMoni Shoua err2:
9558700e3e7SMoni Shoua 	rxe_drop_ref(pd);
9568700e3e7SMoni Shoua 	rxe_drop_index(mr);
9578700e3e7SMoni Shoua 	rxe_drop_ref(mr);
9588700e3e7SMoni Shoua err1:
9598700e3e7SMoni Shoua 	return ERR_PTR(err);
9608700e3e7SMoni Shoua }
9618700e3e7SMoni Shoua 
9628700e3e7SMoni Shoua static int rxe_set_page(struct ib_mr *ibmr, u64 addr)
9638700e3e7SMoni Shoua {
9648700e3e7SMoni Shoua 	struct rxe_mem *mr = to_rmr(ibmr);
9658700e3e7SMoni Shoua 	struct rxe_map *map;
9668700e3e7SMoni Shoua 	struct rxe_phys_buf *buf;
9678700e3e7SMoni Shoua 
9688700e3e7SMoni Shoua 	if (unlikely(mr->nbuf == mr->num_buf))
9698700e3e7SMoni Shoua 		return -ENOMEM;
9708700e3e7SMoni Shoua 
9718700e3e7SMoni Shoua 	map = mr->map[mr->nbuf / RXE_BUF_PER_MAP];
9728700e3e7SMoni Shoua 	buf = &map->buf[mr->nbuf % RXE_BUF_PER_MAP];
9738700e3e7SMoni Shoua 
9748700e3e7SMoni Shoua 	buf->addr = addr;
9758700e3e7SMoni Shoua 	buf->size = ibmr->page_size;
9768700e3e7SMoni Shoua 	mr->nbuf++;
9778700e3e7SMoni Shoua 
9788700e3e7SMoni Shoua 	return 0;
9798700e3e7SMoni Shoua }
9808700e3e7SMoni Shoua 
981e404f945SParav Pandit static int rxe_map_mr_sg(struct ib_mr *ibmr, struct scatterlist *sg,
982e404f945SParav Pandit 			 int sg_nents, unsigned int *sg_offset)
9838700e3e7SMoni Shoua {
9848700e3e7SMoni Shoua 	struct rxe_mem *mr = to_rmr(ibmr);
9858700e3e7SMoni Shoua 	int n;
9868700e3e7SMoni Shoua 
9878700e3e7SMoni Shoua 	mr->nbuf = 0;
9888700e3e7SMoni Shoua 
9898700e3e7SMoni Shoua 	n = ib_sg_to_pages(ibmr, sg, sg_nents, sg_offset, rxe_set_page);
9908700e3e7SMoni Shoua 
9918700e3e7SMoni Shoua 	mr->va = ibmr->iova;
9928700e3e7SMoni Shoua 	mr->iova = ibmr->iova;
9938700e3e7SMoni Shoua 	mr->length = ibmr->length;
9948700e3e7SMoni Shoua 	mr->page_shift = ilog2(ibmr->page_size);
9958700e3e7SMoni Shoua 	mr->page_mask = ibmr->page_size - 1;
9968700e3e7SMoni Shoua 	mr->offset = mr->iova & mr->page_mask;
9978700e3e7SMoni Shoua 
9988700e3e7SMoni Shoua 	return n;
9998700e3e7SMoni Shoua }
10008700e3e7SMoni Shoua 
10018700e3e7SMoni Shoua static int rxe_attach_mcast(struct ib_qp *ibqp, union ib_gid *mgid, u16 mlid)
10028700e3e7SMoni Shoua {
10038700e3e7SMoni Shoua 	int err;
10048700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibqp->device);
10058700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
10068700e3e7SMoni Shoua 	struct rxe_mc_grp *grp;
10078700e3e7SMoni Shoua 
10088700e3e7SMoni Shoua 	/* takes a ref on grp if successful */
10098700e3e7SMoni Shoua 	err = rxe_mcast_get_grp(rxe, mgid, &grp);
10108700e3e7SMoni Shoua 	if (err)
10118700e3e7SMoni Shoua 		return err;
10128700e3e7SMoni Shoua 
10138700e3e7SMoni Shoua 	err = rxe_mcast_add_grp_elem(rxe, qp, grp);
10148700e3e7SMoni Shoua 
10158700e3e7SMoni Shoua 	rxe_drop_ref(grp);
10168700e3e7SMoni Shoua 	return err;
10178700e3e7SMoni Shoua }
10188700e3e7SMoni Shoua 
10198700e3e7SMoni Shoua static int rxe_detach_mcast(struct ib_qp *ibqp, union ib_gid *mgid, u16 mlid)
10208700e3e7SMoni Shoua {
10218700e3e7SMoni Shoua 	struct rxe_dev *rxe = to_rdev(ibqp->device);
10228700e3e7SMoni Shoua 	struct rxe_qp *qp = to_rqp(ibqp);
10238700e3e7SMoni Shoua 
10248700e3e7SMoni Shoua 	return rxe_mcast_drop_grp_elem(rxe, qp, mgid);
10258700e3e7SMoni Shoua }
10268700e3e7SMoni Shoua 
1027c05d2664SKamal Heib static ssize_t parent_show(struct device *device,
10288700e3e7SMoni Shoua 			   struct device_attribute *attr, char *buf)
10298700e3e7SMoni Shoua {
103054747231SParav Pandit 	struct rxe_dev *rxe =
103154747231SParav Pandit 		rdma_device_to_drv_device(device, struct rxe_dev, ib_dev);
10328700e3e7SMoni Shoua 
1033839f5ac0SBart Van Assche 	return snprintf(buf, 16, "%s\n", rxe_parent_name(rxe, 1));
10348700e3e7SMoni Shoua }
10358700e3e7SMoni Shoua 
1036c05d2664SKamal Heib static DEVICE_ATTR_RO(parent);
10378700e3e7SMoni Shoua 
1038508a523fSParav Pandit static struct attribute *rxe_dev_attributes[] = {
1039508a523fSParav Pandit 	&dev_attr_parent.attr,
1040508a523fSParav Pandit 	NULL
1041508a523fSParav Pandit };
1042508a523fSParav Pandit 
1043508a523fSParav Pandit static const struct attribute_group rxe_attr_group = {
1044508a523fSParav Pandit 	.attrs = rxe_dev_attributes,
10458700e3e7SMoni Shoua };
10468700e3e7SMoni Shoua 
1047ca22354bSJason Gunthorpe static int rxe_enable_driver(struct ib_device *ib_dev)
1048ca22354bSJason Gunthorpe {
1049ca22354bSJason Gunthorpe 	struct rxe_dev *rxe = container_of(ib_dev, struct rxe_dev, ib_dev);
1050ca22354bSJason Gunthorpe 
1051ca22354bSJason Gunthorpe 	rxe_set_port_state(rxe);
1052ca22354bSJason Gunthorpe 	dev_info(&rxe->ib_dev.dev, "added %s\n", netdev_name(rxe->ndev));
1053ca22354bSJason Gunthorpe 	return 0;
1054ca22354bSJason Gunthorpe }
1055ca22354bSJason Gunthorpe 
1056573efc4bSKamal Heib static const struct ib_device_ops rxe_dev_ops = {
10577a154142SJason Gunthorpe 	.owner = THIS_MODULE,
1058b9560a41SJason Gunthorpe 	.driver_id = RDMA_DRIVER_RXE,
105972c6ec18SJason Gunthorpe 	.uverbs_abi_ver = RXE_UVERBS_ABI_VERSION,
1060b9560a41SJason Gunthorpe 
1061573efc4bSKamal Heib 	.alloc_hw_stats = rxe_ib_alloc_hw_stats,
1062573efc4bSKamal Heib 	.alloc_mr = rxe_alloc_mr,
1063573efc4bSKamal Heib 	.alloc_pd = rxe_alloc_pd,
1064573efc4bSKamal Heib 	.alloc_ucontext = rxe_alloc_ucontext,
1065573efc4bSKamal Heib 	.attach_mcast = rxe_attach_mcast,
1066573efc4bSKamal Heib 	.create_ah = rxe_create_ah,
1067573efc4bSKamal Heib 	.create_cq = rxe_create_cq,
1068573efc4bSKamal Heib 	.create_qp = rxe_create_qp,
1069573efc4bSKamal Heib 	.create_srq = rxe_create_srq,
1070c367074bSJason Gunthorpe 	.dealloc_driver = rxe_dealloc,
1071573efc4bSKamal Heib 	.dealloc_pd = rxe_dealloc_pd,
1072573efc4bSKamal Heib 	.dealloc_ucontext = rxe_dealloc_ucontext,
1073573efc4bSKamal Heib 	.dereg_mr = rxe_dereg_mr,
1074573efc4bSKamal Heib 	.destroy_ah = rxe_destroy_ah,
1075573efc4bSKamal Heib 	.destroy_cq = rxe_destroy_cq,
1076573efc4bSKamal Heib 	.destroy_qp = rxe_destroy_qp,
1077573efc4bSKamal Heib 	.destroy_srq = rxe_destroy_srq,
1078573efc4bSKamal Heib 	.detach_mcast = rxe_detach_mcast,
1079ca22354bSJason Gunthorpe 	.enable_driver = rxe_enable_driver,
1080573efc4bSKamal Heib 	.get_dma_mr = rxe_get_dma_mr,
1081573efc4bSKamal Heib 	.get_hw_stats = rxe_ib_get_hw_stats,
1082573efc4bSKamal Heib 	.get_link_layer = rxe_get_link_layer,
1083573efc4bSKamal Heib 	.get_port_immutable = rxe_port_immutable,
1084573efc4bSKamal Heib 	.map_mr_sg = rxe_map_mr_sg,
1085573efc4bSKamal Heib 	.mmap = rxe_mmap,
1086573efc4bSKamal Heib 	.modify_ah = rxe_modify_ah,
1087573efc4bSKamal Heib 	.modify_device = rxe_modify_device,
1088573efc4bSKamal Heib 	.modify_port = rxe_modify_port,
1089573efc4bSKamal Heib 	.modify_qp = rxe_modify_qp,
1090573efc4bSKamal Heib 	.modify_srq = rxe_modify_srq,
1091573efc4bSKamal Heib 	.peek_cq = rxe_peek_cq,
1092573efc4bSKamal Heib 	.poll_cq = rxe_poll_cq,
1093573efc4bSKamal Heib 	.post_recv = rxe_post_recv,
1094573efc4bSKamal Heib 	.post_send = rxe_post_send,
1095573efc4bSKamal Heib 	.post_srq_recv = rxe_post_srq_recv,
1096573efc4bSKamal Heib 	.query_ah = rxe_query_ah,
1097573efc4bSKamal Heib 	.query_device = rxe_query_device,
1098573efc4bSKamal Heib 	.query_pkey = rxe_query_pkey,
1099573efc4bSKamal Heib 	.query_port = rxe_query_port,
1100573efc4bSKamal Heib 	.query_qp = rxe_query_qp,
1101573efc4bSKamal Heib 	.query_srq = rxe_query_srq,
1102573efc4bSKamal Heib 	.reg_user_mr = rxe_reg_user_mr,
1103573efc4bSKamal Heib 	.req_notify_cq = rxe_req_notify_cq,
1104573efc4bSKamal Heib 	.resize_cq = rxe_resize_cq,
1105d3456914SLeon Romanovsky 
1106d3456914SLeon Romanovsky 	INIT_RDMA_OBJ_SIZE(ib_ah, rxe_ah, ibah),
1107e39afe3dSLeon Romanovsky 	INIT_RDMA_OBJ_SIZE(ib_cq, rxe_cq, ibcq),
110821a428a0SLeon Romanovsky 	INIT_RDMA_OBJ_SIZE(ib_pd, rxe_pd, ibpd),
110968e326deSLeon Romanovsky 	INIT_RDMA_OBJ_SIZE(ib_srq, rxe_srq, ibsrq),
1110a2a074efSLeon Romanovsky 	INIT_RDMA_OBJ_SIZE(ib_ucontext, rxe_ucontext, ibuc),
1111573efc4bSKamal Heib };
1112573efc4bSKamal Heib 
111366920e1bSSteve Wise int rxe_register_device(struct rxe_dev *rxe, const char *ibdev_name)
11148700e3e7SMoni Shoua {
11158700e3e7SMoni Shoua 	int err;
11168700e3e7SMoni Shoua 	struct ib_device *dev = &rxe->ib_dev;
11173192c53eSThomas Bogendoerfer 	struct crypto_shash *tfm;
11188700e3e7SMoni Shoua 
11198700e3e7SMoni Shoua 	strlcpy(dev->node_desc, "rxe", sizeof(dev->node_desc));
11208700e3e7SMoni Shoua 
11218700e3e7SMoni Shoua 	dev->node_type = RDMA_NODE_IB_CA;
11228700e3e7SMoni Shoua 	dev->phys_port_cnt = 1;
112367cf3623SSagi Grimberg 	dev->num_comp_vectors = num_possible_cpus();
112485e9f1dbSBart Van Assche 	dev->dev.parent = rxe_dma_device(rxe);
11258700e3e7SMoni Shoua 	dev->local_dma_lkey = 0;
11264d6f2859SYuval Shaia 	addrconf_addr_eui48((unsigned char *)&dev->node_guid,
11274d6f2859SYuval Shaia 			    rxe->ndev->dev_addr);
11280bbb3b74SBart Van Assche 	dev->dev.dma_ops = &dma_virt_ops;
112997458fd5SBart Van Assche 	dev->dev.dma_parms = &rxe->dma_parms;
113097458fd5SBart Van Assche 	rxe->dma_parms = (struct device_dma_parameters)
113197458fd5SBart Van Assche 		{ .max_segment_size = SZ_2G };
113256012e1cSyonatanc 	dma_coerce_mask_and_coherent(&dev->dev,
1133efc365e7SMikhail Malygin 				     dma_get_required_mask(&dev->dev));
11348700e3e7SMoni Shoua 
11358700e3e7SMoni Shoua 	dev->uverbs_cmd_mask = BIT_ULL(IB_USER_VERBS_CMD_GET_CONTEXT)
11368700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL)
11378700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_QUERY_DEVICE)
11388700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_QUERY_PORT)
11398700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_ALLOC_PD)
11408700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DEALLOC_PD)
11418700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_CREATE_SRQ)
11428700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_MODIFY_SRQ)
11438700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_QUERY_SRQ)
11448700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DESTROY_SRQ)
11458700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_POST_SRQ_RECV)
11468700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_CREATE_QP)
11478700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_MODIFY_QP)
11488700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_QUERY_QP)
11498700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DESTROY_QP)
11508700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_POST_SEND)
11518700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_POST_RECV)
11528700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_CREATE_CQ)
11538700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_RESIZE_CQ)
11548700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DESTROY_CQ)
11558700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_POLL_CQ)
11568700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_PEEK_CQ)
11578700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_REQ_NOTIFY_CQ)
11588700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_REG_MR)
11598700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DEREG_MR)
11608700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_CREATE_AH)
11618700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_MODIFY_AH)
11628700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_QUERY_AH)
11638700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DESTROY_AH)
11648700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_ATTACH_MCAST)
11658700e3e7SMoni Shoua 	    | BIT_ULL(IB_USER_VERBS_CMD_DETACH_MCAST)
11668700e3e7SMoni Shoua 	    ;
11678700e3e7SMoni Shoua 
1168573efc4bSKamal Heib 	ib_set_device_ops(dev, &rxe_dev_ops);
11694c173f59SJason Gunthorpe 	err = ib_device_set_netdev(&rxe->ib_dev, rxe->ndev, 1);
11704c173f59SJason Gunthorpe 	if (err)
11714c173f59SJason Gunthorpe 		return err;
11728700e3e7SMoni Shoua 
11733192c53eSThomas Bogendoerfer 	tfm = crypto_alloc_shash("crc32", 0, 0);
11743192c53eSThomas Bogendoerfer 	if (IS_ERR(tfm)) {
117527b0b832SColin Ian King 		pr_err("failed to allocate crc algorithm err:%ld\n",
11763192c53eSThomas Bogendoerfer 		       PTR_ERR(tfm));
11773192c53eSThomas Bogendoerfer 		return PTR_ERR(tfm);
1178cee2688eSyonatanc 	}
11793192c53eSThomas Bogendoerfer 	rxe->tfm = tfm;
1180cee2688eSyonatanc 
1181508a523fSParav Pandit 	rdma_set_device_sysfs_group(dev, &rxe_attr_group);
118266920e1bSSteve Wise 	err = ib_register_device(dev, ibdev_name);
1183c367074bSJason Gunthorpe 	if (err)
118461013828SKamal Heib 		pr_warn("%s failed with error %d\n", __func__, err);
1185cee2688eSyonatanc 
1186ca22354bSJason Gunthorpe 	/*
1187ca22354bSJason Gunthorpe 	 * Note that rxe may be invalid at this point if another thread
1188ca22354bSJason Gunthorpe 	 * unregistered it.
1189ca22354bSJason Gunthorpe 	 */
11908700e3e7SMoni Shoua 	return err;
11918700e3e7SMoni Shoua }
1192