qp.c 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586
  1. /*
  2. * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
  3. *
  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:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  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.
  22. *
  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
  30. * SOFTWARE.
  31. */
  32. #include "iw_cxgb4.h"
  33. static int destroy_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
  34. struct c4iw_dev_ucontext *uctx)
  35. {
  36. /*
  37. * uP clears EQ contexts when the connection exits rdma mode,
  38. * so no need to post a RESET WR for these EQs.
  39. */
  40. dma_free_coherent(&(rdev->lldi.pdev->dev),
  41. wq->rq.memsize, wq->rq.queue,
  42. dma_unmap_addr(&wq->rq, mapping));
  43. dma_free_coherent(&(rdev->lldi.pdev->dev),
  44. wq->sq.memsize, wq->sq.queue,
  45. dma_unmap_addr(&wq->sq, mapping));
  46. c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
  47. kfree(wq->rq.sw_rq);
  48. kfree(wq->sq.sw_sq);
  49. c4iw_put_qpid(rdev, wq->rq.qid, uctx);
  50. c4iw_put_qpid(rdev, wq->sq.qid, uctx);
  51. return 0;
  52. }
  53. static int create_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
  54. struct t4_cq *rcq, struct t4_cq *scq,
  55. struct c4iw_dev_ucontext *uctx)
  56. {
  57. int user = (uctx != &rdev->uctx);
  58. struct fw_ri_res_wr *res_wr;
  59. struct fw_ri_res *res;
  60. int wr_len;
  61. struct c4iw_wr_wait wr_wait;
  62. struct sk_buff *skb;
  63. int ret;
  64. int eqsize;
  65. wq->sq.qid = c4iw_get_qpid(rdev, uctx);
  66. if (!wq->sq.qid)
  67. return -ENOMEM;
  68. wq->rq.qid = c4iw_get_qpid(rdev, uctx);
  69. if (!wq->rq.qid)
  70. goto err1;
  71. if (!user) {
  72. wq->sq.sw_sq = kzalloc(wq->sq.size * sizeof *wq->sq.sw_sq,
  73. GFP_KERNEL);
  74. if (!wq->sq.sw_sq)
  75. goto err2;
  76. wq->rq.sw_rq = kzalloc(wq->rq.size * sizeof *wq->rq.sw_rq,
  77. GFP_KERNEL);
  78. if (!wq->rq.sw_rq)
  79. goto err3;
  80. }
  81. /*
  82. * RQT must be a power of 2.
  83. */
  84. wq->rq.rqt_size = roundup_pow_of_two(wq->rq.size);
  85. wq->rq.rqt_hwaddr = c4iw_rqtpool_alloc(rdev, wq->rq.rqt_size);
  86. if (!wq->rq.rqt_hwaddr)
  87. goto err4;
  88. wq->sq.queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev),
  89. wq->sq.memsize, &(wq->sq.dma_addr),
  90. GFP_KERNEL);
  91. if (!wq->sq.queue)
  92. goto err5;
  93. memset(wq->sq.queue, 0, wq->sq.memsize);
  94. dma_unmap_addr_set(&wq->sq, mapping, wq->sq.dma_addr);
  95. wq->rq.queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev),
  96. wq->rq.memsize, &(wq->rq.dma_addr),
  97. GFP_KERNEL);
  98. if (!wq->rq.queue)
  99. goto err6;
  100. PDBG("%s sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
  101. __func__, wq->sq.queue,
  102. (unsigned long long)virt_to_phys(wq->sq.queue),
  103. wq->rq.queue,
  104. (unsigned long long)virt_to_phys(wq->rq.queue));
  105. memset(wq->rq.queue, 0, wq->rq.memsize);
  106. dma_unmap_addr_set(&wq->rq, mapping, wq->rq.dma_addr);
  107. wq->db = rdev->lldi.db_reg;
  108. wq->gts = rdev->lldi.gts_reg;
  109. if (user) {
  110. wq->sq.udb = (u64)pci_resource_start(rdev->lldi.pdev, 2) +
  111. (wq->sq.qid << rdev->qpshift);
  112. wq->sq.udb &= PAGE_MASK;
  113. wq->rq.udb = (u64)pci_resource_start(rdev->lldi.pdev, 2) +
  114. (wq->rq.qid << rdev->qpshift);
  115. wq->rq.udb &= PAGE_MASK;
  116. }
  117. wq->rdev = rdev;
  118. wq->rq.msn = 1;
  119. /* build fw_ri_res_wr */
  120. wr_len = sizeof *res_wr + 2 * sizeof *res;
  121. skb = alloc_skb(wr_len, GFP_KERNEL);
  122. if (!skb) {
  123. ret = -ENOMEM;
  124. goto err7;
  125. }
  126. set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
  127. res_wr = (struct fw_ri_res_wr *)__skb_put(skb, wr_len);
  128. memset(res_wr, 0, wr_len);
  129. res_wr->op_nres = cpu_to_be32(
  130. FW_WR_OP(FW_RI_RES_WR) |
  131. V_FW_RI_RES_WR_NRES(2) |
  132. FW_WR_COMPL(1));
  133. res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
  134. res_wr->cookie = (u64)&wr_wait;
  135. res = res_wr->res;
  136. res->u.sqrq.restype = FW_RI_RES_TYPE_SQ;
  137. res->u.sqrq.op = FW_RI_RES_OP_WRITE;
  138. /*
  139. * eqsize is the number of 64B entries plus the status page size.
  140. */
  141. eqsize = wq->sq.size * T4_SQ_NUM_SLOTS + T4_EQ_STATUS_ENTRIES;
  142. res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
  143. V_FW_RI_RES_WR_HOSTFCMODE(0) | /* no host cidx updates */
  144. V_FW_RI_RES_WR_CPRIO(0) | /* don't keep in chip cache */
  145. V_FW_RI_RES_WR_PCIECHN(0) | /* set by uP at ri_init time */
  146. V_FW_RI_RES_WR_IQID(scq->cqid));
  147. res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
  148. V_FW_RI_RES_WR_DCAEN(0) |
  149. V_FW_RI_RES_WR_DCACPU(0) |
  150. V_FW_RI_RES_WR_FBMIN(2) |
  151. V_FW_RI_RES_WR_FBMAX(3) |
  152. V_FW_RI_RES_WR_CIDXFTHRESHO(0) |
  153. V_FW_RI_RES_WR_CIDXFTHRESH(0) |
  154. V_FW_RI_RES_WR_EQSIZE(eqsize));
  155. res->u.sqrq.eqid = cpu_to_be32(wq->sq.qid);
  156. res->u.sqrq.eqaddr = cpu_to_be64(wq->sq.dma_addr);
  157. res++;
  158. res->u.sqrq.restype = FW_RI_RES_TYPE_RQ;
  159. res->u.sqrq.op = FW_RI_RES_OP_WRITE;
  160. /*
  161. * eqsize is the number of 64B entries plus the status page size.
  162. */
  163. eqsize = wq->rq.size * T4_RQ_NUM_SLOTS + T4_EQ_STATUS_ENTRIES;
  164. res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
  165. V_FW_RI_RES_WR_HOSTFCMODE(0) | /* no host cidx updates */
  166. V_FW_RI_RES_WR_CPRIO(0) | /* don't keep in chip cache */
  167. V_FW_RI_RES_WR_PCIECHN(0) | /* set by uP at ri_init time */
  168. V_FW_RI_RES_WR_IQID(rcq->cqid));
  169. res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
  170. V_FW_RI_RES_WR_DCAEN(0) |
  171. V_FW_RI_RES_WR_DCACPU(0) |
  172. V_FW_RI_RES_WR_FBMIN(2) |
  173. V_FW_RI_RES_WR_FBMAX(3) |
  174. V_FW_RI_RES_WR_CIDXFTHRESHO(0) |
  175. V_FW_RI_RES_WR_CIDXFTHRESH(0) |
  176. V_FW_RI_RES_WR_EQSIZE(eqsize));
  177. res->u.sqrq.eqid = cpu_to_be32(wq->rq.qid);
  178. res->u.sqrq.eqaddr = cpu_to_be64(wq->rq.dma_addr);
  179. c4iw_init_wr_wait(&wr_wait);
  180. ret = c4iw_ofld_send(rdev, skb);
  181. if (ret)
  182. goto err7;
  183. wait_event_timeout(wr_wait.wait, wr_wait.done, C4IW_WR_TO);
  184. if (!wr_wait.done) {
  185. printk(KERN_ERR MOD "Device %s not responding!\n",
  186. pci_name(rdev->lldi.pdev));
  187. rdev->flags = T4_FATAL_ERROR;
  188. ret = -EIO;
  189. } else
  190. ret = wr_wait.ret;
  191. if (ret)
  192. goto err7;
  193. PDBG("%s sqid 0x%x rqid 0x%x kdb 0x%p squdb 0x%llx rqudb 0x%llx\n",
  194. __func__, wq->sq.qid, wq->rq.qid, wq->db,
  195. (unsigned long long)wq->sq.udb, (unsigned long long)wq->rq.udb);
  196. return 0;
  197. err7:
  198. dma_free_coherent(&(rdev->lldi.pdev->dev),
  199. wq->rq.memsize, wq->rq.queue,
  200. dma_unmap_addr(&wq->rq, mapping));
  201. err6:
  202. dma_free_coherent(&(rdev->lldi.pdev->dev),
  203. wq->sq.memsize, wq->sq.queue,
  204. dma_unmap_addr(&wq->sq, mapping));
  205. err5:
  206. c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
  207. err4:
  208. kfree(wq->rq.sw_rq);
  209. err3:
  210. kfree(wq->sq.sw_sq);
  211. err2:
  212. c4iw_put_qpid(rdev, wq->rq.qid, uctx);
  213. err1:
  214. c4iw_put_qpid(rdev, wq->sq.qid, uctx);
  215. return -ENOMEM;
  216. }
  217. static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
  218. struct ib_send_wr *wr, int max, u32 *plenp)
  219. {
  220. u8 *dstp, *srcp;
  221. u32 plen = 0;
  222. int i;
  223. int rem, len;
  224. dstp = (u8 *)immdp->data;
  225. for (i = 0; i < wr->num_sge; i++) {
  226. if ((plen + wr->sg_list[i].length) > max)
  227. return -EMSGSIZE;
  228. srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
  229. plen += wr->sg_list[i].length;
  230. rem = wr->sg_list[i].length;
  231. while (rem) {
  232. if (dstp == (u8 *)&sq->queue[sq->size])
  233. dstp = (u8 *)sq->queue;
  234. if (rem <= (u8 *)&sq->queue[sq->size] - dstp)
  235. len = rem;
  236. else
  237. len = (u8 *)&sq->queue[sq->size] - dstp;
  238. memcpy(dstp, srcp, len);
  239. dstp += len;
  240. srcp += len;
  241. rem -= len;
  242. }
  243. }
  244. immdp->op = FW_RI_DATA_IMMD;
  245. immdp->r1 = 0;
  246. immdp->r2 = 0;
  247. immdp->immdlen = cpu_to_be32(plen);
  248. *plenp = plen;
  249. return 0;
  250. }
  251. static int build_isgl(__be64 *queue_start, __be64 *queue_end,
  252. struct fw_ri_isgl *isglp, struct ib_sge *sg_list,
  253. int num_sge, u32 *plenp)
  254. {
  255. int i;
  256. u32 plen = 0;
  257. __be64 *flitp = (__be64 *)isglp->sge;
  258. for (i = 0; i < num_sge; i++) {
  259. if ((plen + sg_list[i].length) < plen)
  260. return -EMSGSIZE;
  261. plen += sg_list[i].length;
  262. *flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
  263. sg_list[i].length);
  264. if (++flitp == queue_end)
  265. flitp = queue_start;
  266. *flitp = cpu_to_be64(sg_list[i].addr);
  267. if (++flitp == queue_end)
  268. flitp = queue_start;
  269. }
  270. isglp->op = FW_RI_DATA_ISGL;
  271. isglp->r1 = 0;
  272. isglp->nsge = cpu_to_be16(num_sge);
  273. isglp->r2 = 0;
  274. if (plenp)
  275. *plenp = plen;
  276. return 0;
  277. }
  278. static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
  279. struct ib_send_wr *wr, u8 *len16)
  280. {
  281. u32 plen;
  282. int size;
  283. int ret;
  284. if (wr->num_sge > T4_MAX_SEND_SGE)
  285. return -EINVAL;
  286. switch (wr->opcode) {
  287. case IB_WR_SEND:
  288. if (wr->send_flags & IB_SEND_SOLICITED)
  289. wqe->send.sendop_pkd = cpu_to_be32(
  290. V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_SE));
  291. else
  292. wqe->send.sendop_pkd = cpu_to_be32(
  293. V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND));
  294. wqe->send.stag_inv = 0;
  295. break;
  296. case IB_WR_SEND_WITH_INV:
  297. if (wr->send_flags & IB_SEND_SOLICITED)
  298. wqe->send.sendop_pkd = cpu_to_be32(
  299. V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_SE_INV));
  300. else
  301. wqe->send.sendop_pkd = cpu_to_be32(
  302. V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_INV));
  303. wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
  304. break;
  305. default:
  306. return -EINVAL;
  307. }
  308. plen = 0;
  309. if (wr->num_sge) {
  310. if (wr->send_flags & IB_SEND_INLINE) {
  311. ret = build_immd(sq, wqe->send.u.immd_src, wr,
  312. T4_MAX_SEND_INLINE, &plen);
  313. if (ret)
  314. return ret;
  315. size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
  316. plen;
  317. } else {
  318. ret = build_isgl((__be64 *)sq->queue,
  319. (__be64 *)&sq->queue[sq->size],
  320. wqe->send.u.isgl_src,
  321. wr->sg_list, wr->num_sge, &plen);
  322. if (ret)
  323. return ret;
  324. size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
  325. wr->num_sge * sizeof(struct fw_ri_sge);
  326. }
  327. } else {
  328. wqe->send.u.immd_src[0].op = FW_RI_DATA_IMMD;
  329. wqe->send.u.immd_src[0].r1 = 0;
  330. wqe->send.u.immd_src[0].r2 = 0;
  331. wqe->send.u.immd_src[0].immdlen = 0;
  332. size = sizeof wqe->send + sizeof(struct fw_ri_immd);
  333. plen = 0;
  334. }
  335. *len16 = DIV_ROUND_UP(size, 16);
  336. wqe->send.plen = cpu_to_be32(plen);
  337. return 0;
  338. }
  339. static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
  340. struct ib_send_wr *wr, u8 *len16)
  341. {
  342. u32 plen;
  343. int size;
  344. int ret;
  345. if (wr->num_sge > T4_MAX_SEND_SGE)
  346. return -EINVAL;
  347. wqe->write.r2 = 0;
  348. wqe->write.stag_sink = cpu_to_be32(wr->wr.rdma.rkey);
  349. wqe->write.to_sink = cpu_to_be64(wr->wr.rdma.remote_addr);
  350. if (wr->num_sge) {
  351. if (wr->send_flags & IB_SEND_INLINE) {
  352. ret = build_immd(sq, wqe->write.u.immd_src, wr,
  353. T4_MAX_WRITE_INLINE, &plen);
  354. if (ret)
  355. return ret;
  356. size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
  357. plen;
  358. } else {
  359. ret = build_isgl((__be64 *)sq->queue,
  360. (__be64 *)&sq->queue[sq->size],
  361. wqe->write.u.isgl_src,
  362. wr->sg_list, wr->num_sge, &plen);
  363. if (ret)
  364. return ret;
  365. size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
  366. wr->num_sge * sizeof(struct fw_ri_sge);
  367. }
  368. } else {
  369. wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
  370. wqe->write.u.immd_src[0].r1 = 0;
  371. wqe->write.u.immd_src[0].r2 = 0;
  372. wqe->write.u.immd_src[0].immdlen = 0;
  373. size = sizeof wqe->write + sizeof(struct fw_ri_immd);
  374. plen = 0;
  375. }
  376. *len16 = DIV_ROUND_UP(size, 16);
  377. wqe->write.plen = cpu_to_be32(plen);
  378. return 0;
  379. }
  380. static int build_rdma_read(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
  381. {
  382. if (wr->num_sge > 1)
  383. return -EINVAL;
  384. if (wr->num_sge) {
  385. wqe->read.stag_src = cpu_to_be32(wr->wr.rdma.rkey);
  386. wqe->read.to_src_hi = cpu_to_be32((u32)(wr->wr.rdma.remote_addr
  387. >> 32));
  388. wqe->read.to_src_lo = cpu_to_be32((u32)wr->wr.rdma.remote_addr);
  389. wqe->read.stag_sink = cpu_to_be32(wr->sg_list[0].lkey);
  390. wqe->read.plen = cpu_to_be32(wr->sg_list[0].length);
  391. wqe->read.to_sink_hi = cpu_to_be32((u32)(wr->sg_list[0].addr
  392. >> 32));
  393. wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
  394. } else {
  395. wqe->read.stag_src = cpu_to_be32(2);
  396. wqe->read.to_src_hi = 0;
  397. wqe->read.to_src_lo = 0;
  398. wqe->read.stag_sink = cpu_to_be32(2);
  399. wqe->read.plen = 0;
  400. wqe->read.to_sink_hi = 0;
  401. wqe->read.to_sink_lo = 0;
  402. }
  403. wqe->read.r2 = 0;
  404. wqe->read.r5 = 0;
  405. *len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
  406. return 0;
  407. }
  408. static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
  409. struct ib_recv_wr *wr, u8 *len16)
  410. {
  411. int ret;
  412. ret = build_isgl((__be64 *)qhp->wq.rq.queue,
  413. (__be64 *)&qhp->wq.rq.queue[qhp->wq.rq.size],
  414. &wqe->recv.isgl, wr->sg_list, wr->num_sge, NULL);
  415. if (ret)
  416. return ret;
  417. *len16 = DIV_ROUND_UP(sizeof wqe->recv +
  418. wr->num_sge * sizeof(struct fw_ri_sge), 16);
  419. return 0;
  420. }
  421. static int build_fastreg(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
  422. {
  423. struct fw_ri_immd *imdp;
  424. __be64 *p;
  425. int i;
  426. int pbllen = roundup(wr->wr.fast_reg.page_list_len * sizeof(u64), 32);
  427. if (wr->wr.fast_reg.page_list_len > T4_MAX_FR_DEPTH)
  428. return -EINVAL;
  429. wqe->fr.qpbinde_to_dcacpu = 0;
  430. wqe->fr.pgsz_shift = wr->wr.fast_reg.page_shift - 12;
  431. wqe->fr.addr_type = FW_RI_VA_BASED_TO;
  432. wqe->fr.mem_perms = c4iw_ib_to_tpt_access(wr->wr.fast_reg.access_flags);
  433. wqe->fr.len_hi = 0;
  434. wqe->fr.len_lo = cpu_to_be32(wr->wr.fast_reg.length);
  435. wqe->fr.stag = cpu_to_be32(wr->wr.fast_reg.rkey);
  436. wqe->fr.va_hi = cpu_to_be32(wr->wr.fast_reg.iova_start >> 32);
  437. wqe->fr.va_lo_fbo = cpu_to_be32(wr->wr.fast_reg.iova_start &
  438. 0xffffffff);
  439. if (pbllen > T4_MAX_FR_IMMD) {
  440. struct c4iw_fr_page_list *c4pl =
  441. to_c4iw_fr_page_list(wr->wr.fast_reg.page_list);
  442. struct fw_ri_dsgl *sglp;
  443. sglp = (struct fw_ri_dsgl *)(&wqe->fr + 1);
  444. sglp->op = FW_RI_DATA_DSGL;
  445. sglp->r1 = 0;
  446. sglp->nsge = cpu_to_be16(1);
  447. sglp->addr0 = cpu_to_be64(c4pl->dma_addr);
  448. sglp->len0 = cpu_to_be32(pbllen);
  449. *len16 = DIV_ROUND_UP(sizeof wqe->fr + sizeof *sglp, 16);
  450. } else {
  451. imdp = (struct fw_ri_immd *)(&wqe->fr + 1);
  452. imdp->op = FW_RI_DATA_IMMD;
  453. imdp->r1 = 0;
  454. imdp->r2 = 0;
  455. imdp->immdlen = cpu_to_be32(pbllen);
  456. p = (__be64 *)(imdp + 1);
  457. for (i = 0; i < wr->wr.fast_reg.page_list_len; i++, p++)
  458. *p = cpu_to_be64(
  459. (u64)wr->wr.fast_reg.page_list->page_list[i]);
  460. *len16 = DIV_ROUND_UP(sizeof wqe->fr + sizeof *imdp + pbllen,
  461. 16);
  462. }
  463. return 0;
  464. }
  465. static int build_inv_stag(union t4_wr *wqe, struct ib_send_wr *wr,
  466. u8 *len16)
  467. {
  468. wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
  469. wqe->inv.r2 = 0;
  470. *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
  471. return 0;
  472. }
  473. void c4iw_qp_add_ref(struct ib_qp *qp)
  474. {
  475. PDBG("%s ib_qp %p\n", __func__, qp);
  476. atomic_inc(&(to_c4iw_qp(qp)->refcnt));
  477. }
  478. void c4iw_qp_rem_ref(struct ib_qp *qp)
  479. {
  480. PDBG("%s ib_qp %p\n", __func__, qp);
  481. if (atomic_dec_and_test(&(to_c4iw_qp(qp)->refcnt)))
  482. wake_up(&(to_c4iw_qp(qp)->wait));
  483. }
  484. int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
  485. struct ib_send_wr **bad_wr)
  486. {
  487. int err = 0;
  488. u8 len16 = 0;
  489. enum fw_wr_opcodes fw_opcode = 0;
  490. enum fw_ri_wr_flags fw_flags;
  491. struct c4iw_qp *qhp;
  492. union t4_wr *wqe;
  493. u32 num_wrs;
  494. struct t4_swsqe *swsqe;
  495. unsigned long flag;
  496. u16 idx = 0;
  497. qhp = to_c4iw_qp(ibqp);
  498. spin_lock_irqsave(&qhp->lock, flag);
  499. if (t4_wq_in_error(&qhp->wq)) {
  500. spin_unlock_irqrestore(&qhp->lock, flag);
  501. return -EINVAL;
  502. }
  503. num_wrs = t4_sq_avail(&qhp->wq);
  504. if (num_wrs == 0) {
  505. spin_unlock_irqrestore(&qhp->lock, flag);
  506. return -ENOMEM;
  507. }
  508. while (wr) {
  509. if (num_wrs == 0) {
  510. err = -ENOMEM;
  511. *bad_wr = wr;
  512. break;
  513. }
  514. wqe = (union t4_wr *)((u8 *)qhp->wq.sq.queue +
  515. qhp->wq.sq.wq_pidx * T4_EQ_ENTRY_SIZE);
  516. fw_flags = 0;
  517. if (wr->send_flags & IB_SEND_SOLICITED)
  518. fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
  519. if (wr->send_flags & IB_SEND_SIGNALED)
  520. fw_flags |= FW_RI_COMPLETION_FLAG;
  521. swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
  522. switch (wr->opcode) {
  523. case IB_WR_SEND_WITH_INV:
  524. case IB_WR_SEND:
  525. if (wr->send_flags & IB_SEND_FENCE)
  526. fw_flags |= FW_RI_READ_FENCE_FLAG;
  527. fw_opcode = FW_RI_SEND_WR;
  528. if (wr->opcode == IB_WR_SEND)
  529. swsqe->opcode = FW_RI_SEND;
  530. else
  531. swsqe->opcode = FW_RI_SEND_WITH_INV;
  532. err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
  533. break;
  534. case IB_WR_RDMA_WRITE:
  535. fw_opcode = FW_RI_RDMA_WRITE_WR;
  536. swsqe->opcode = FW_RI_RDMA_WRITE;
  537. err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
  538. break;
  539. case IB_WR_RDMA_READ:
  540. case IB_WR_RDMA_READ_WITH_INV:
  541. fw_opcode = FW_RI_RDMA_READ_WR;
  542. swsqe->opcode = FW_RI_READ_REQ;
  543. if (wr->opcode == IB_WR_RDMA_READ_WITH_INV)
  544. fw_flags |= FW_RI_RDMA_READ_INVALIDATE;
  545. else
  546. fw_flags = 0;
  547. err = build_rdma_read(wqe, wr, &len16);
  548. if (err)
  549. break;
  550. swsqe->read_len = wr->sg_list[0].length;
  551. if (!qhp->wq.sq.oldest_read)
  552. qhp->wq.sq.oldest_read = swsqe;
  553. break;
  554. case IB_WR_FAST_REG_MR:
  555. fw_opcode = FW_RI_FR_NSMR_WR;
  556. swsqe->opcode = FW_RI_FAST_REGISTER;
  557. err = build_fastreg(wqe, wr, &len16);
  558. break;
  559. case IB_WR_LOCAL_INV:
  560. if (wr->send_flags & IB_SEND_FENCE)
  561. fw_flags |= FW_RI_LOCAL_FENCE_FLAG;
  562. fw_opcode = FW_RI_INV_LSTAG_WR;
  563. swsqe->opcode = FW_RI_LOCAL_INV;
  564. err = build_inv_stag(wqe, wr, &len16);
  565. break;
  566. default:
  567. PDBG("%s post of type=%d TBD!\n", __func__,
  568. wr->opcode);
  569. err = -EINVAL;
  570. }
  571. if (err) {
  572. *bad_wr = wr;
  573. break;
  574. }
  575. swsqe->idx = qhp->wq.sq.pidx;
  576. swsqe->complete = 0;
  577. swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED);
  578. swsqe->wr_id = wr->wr_id;
  579. init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
  580. PDBG("%s cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
  581. __func__, (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
  582. swsqe->opcode, swsqe->read_len);
  583. wr = wr->next;
  584. num_wrs--;
  585. t4_sq_produce(&qhp->wq, len16);
  586. idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
  587. }
  588. if (t4_wq_db_enabled(&qhp->wq))
  589. t4_ring_sq_db(&qhp->wq, idx);
  590. spin_unlock_irqrestore(&qhp->lock, flag);
  591. return err;
  592. }
  593. int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
  594. struct ib_recv_wr **bad_wr)
  595. {
  596. int err = 0;
  597. struct c4iw_qp *qhp;
  598. union t4_recv_wr *wqe;
  599. u32 num_wrs;
  600. u8 len16 = 0;
  601. unsigned long flag;
  602. u16 idx = 0;
  603. qhp = to_c4iw_qp(ibqp);
  604. spin_lock_irqsave(&qhp->lock, flag);
  605. if (t4_wq_in_error(&qhp->wq)) {
  606. spin_unlock_irqrestore(&qhp->lock, flag);
  607. return -EINVAL;
  608. }
  609. num_wrs = t4_rq_avail(&qhp->wq);
  610. if (num_wrs == 0) {
  611. spin_unlock_irqrestore(&qhp->lock, flag);
  612. return -ENOMEM;
  613. }
  614. while (wr) {
  615. if (wr->num_sge > T4_MAX_RECV_SGE) {
  616. err = -EINVAL;
  617. *bad_wr = wr;
  618. break;
  619. }
  620. wqe = (union t4_recv_wr *)((u8 *)qhp->wq.rq.queue +
  621. qhp->wq.rq.wq_pidx *
  622. T4_EQ_ENTRY_SIZE);
  623. if (num_wrs)
  624. err = build_rdma_recv(qhp, wqe, wr, &len16);
  625. else
  626. err = -ENOMEM;
  627. if (err) {
  628. *bad_wr = wr;
  629. break;
  630. }
  631. qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
  632. wqe->recv.opcode = FW_RI_RECV_WR;
  633. wqe->recv.r1 = 0;
  634. wqe->recv.wrid = qhp->wq.rq.pidx;
  635. wqe->recv.r2[0] = 0;
  636. wqe->recv.r2[1] = 0;
  637. wqe->recv.r2[2] = 0;
  638. wqe->recv.len16 = len16;
  639. PDBG("%s cookie 0x%llx pidx %u\n", __func__,
  640. (unsigned long long) wr->wr_id, qhp->wq.rq.pidx);
  641. t4_rq_produce(&qhp->wq, len16);
  642. idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
  643. wr = wr->next;
  644. num_wrs--;
  645. }
  646. if (t4_wq_db_enabled(&qhp->wq))
  647. t4_ring_rq_db(&qhp->wq, idx);
  648. spin_unlock_irqrestore(&qhp->lock, flag);
  649. return err;
  650. }
  651. int c4iw_bind_mw(struct ib_qp *qp, struct ib_mw *mw, struct ib_mw_bind *mw_bind)
  652. {
  653. return -ENOSYS;
  654. }
  655. static inline void build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type,
  656. u8 *ecode)
  657. {
  658. int status;
  659. int tagged;
  660. int opcode;
  661. int rqtype;
  662. int send_inv;
  663. if (!err_cqe) {
  664. *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
  665. *ecode = 0;
  666. return;
  667. }
  668. status = CQE_STATUS(err_cqe);
  669. opcode = CQE_OPCODE(err_cqe);
  670. rqtype = RQ_TYPE(err_cqe);
  671. send_inv = (opcode == FW_RI_SEND_WITH_INV) ||
  672. (opcode == FW_RI_SEND_WITH_SE_INV);
  673. tagged = (opcode == FW_RI_RDMA_WRITE) ||
  674. (rqtype && (opcode == FW_RI_READ_RESP));
  675. switch (status) {
  676. case T4_ERR_STAG:
  677. if (send_inv) {
  678. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
  679. *ecode = RDMAP_CANT_INV_STAG;
  680. } else {
  681. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  682. *ecode = RDMAP_INV_STAG;
  683. }
  684. break;
  685. case T4_ERR_PDID:
  686. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  687. if ((opcode == FW_RI_SEND_WITH_INV) ||
  688. (opcode == FW_RI_SEND_WITH_SE_INV))
  689. *ecode = RDMAP_CANT_INV_STAG;
  690. else
  691. *ecode = RDMAP_STAG_NOT_ASSOC;
  692. break;
  693. case T4_ERR_QPID:
  694. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  695. *ecode = RDMAP_STAG_NOT_ASSOC;
  696. break;
  697. case T4_ERR_ACCESS:
  698. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  699. *ecode = RDMAP_ACC_VIOL;
  700. break;
  701. case T4_ERR_WRAP:
  702. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  703. *ecode = RDMAP_TO_WRAP;
  704. break;
  705. case T4_ERR_BOUND:
  706. if (tagged) {
  707. *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
  708. *ecode = DDPT_BASE_BOUNDS;
  709. } else {
  710. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
  711. *ecode = RDMAP_BASE_BOUNDS;
  712. }
  713. break;
  714. case T4_ERR_INVALIDATE_SHARED_MR:
  715. case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
  716. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
  717. *ecode = RDMAP_CANT_INV_STAG;
  718. break;
  719. case T4_ERR_ECC:
  720. case T4_ERR_ECC_PSTAG:
  721. case T4_ERR_INTERNAL_ERR:
  722. *layer_type = LAYER_RDMAP|RDMAP_LOCAL_CATA;
  723. *ecode = 0;
  724. break;
  725. case T4_ERR_OUT_OF_RQE:
  726. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  727. *ecode = DDPU_INV_MSN_NOBUF;
  728. break;
  729. case T4_ERR_PBL_ADDR_BOUND:
  730. *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
  731. *ecode = DDPT_BASE_BOUNDS;
  732. break;
  733. case T4_ERR_CRC:
  734. *layer_type = LAYER_MPA|DDP_LLP;
  735. *ecode = MPA_CRC_ERR;
  736. break;
  737. case T4_ERR_MARKER:
  738. *layer_type = LAYER_MPA|DDP_LLP;
  739. *ecode = MPA_MARKER_ERR;
  740. break;
  741. case T4_ERR_PDU_LEN_ERR:
  742. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  743. *ecode = DDPU_MSG_TOOBIG;
  744. break;
  745. case T4_ERR_DDP_VERSION:
  746. if (tagged) {
  747. *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
  748. *ecode = DDPT_INV_VERS;
  749. } else {
  750. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  751. *ecode = DDPU_INV_VERS;
  752. }
  753. break;
  754. case T4_ERR_RDMA_VERSION:
  755. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
  756. *ecode = RDMAP_INV_VERS;
  757. break;
  758. case T4_ERR_OPCODE:
  759. *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
  760. *ecode = RDMAP_INV_OPCODE;
  761. break;
  762. case T4_ERR_DDP_QUEUE_NUM:
  763. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  764. *ecode = DDPU_INV_QN;
  765. break;
  766. case T4_ERR_MSN:
  767. case T4_ERR_MSN_GAP:
  768. case T4_ERR_MSN_RANGE:
  769. case T4_ERR_IRD_OVERFLOW:
  770. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  771. *ecode = DDPU_INV_MSN_RANGE;
  772. break;
  773. case T4_ERR_TBIT:
  774. *layer_type = LAYER_DDP|DDP_LOCAL_CATA;
  775. *ecode = 0;
  776. break;
  777. case T4_ERR_MO:
  778. *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
  779. *ecode = DDPU_INV_MO;
  780. break;
  781. default:
  782. *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
  783. *ecode = 0;
  784. break;
  785. }
  786. }
  787. int c4iw_post_zb_read(struct c4iw_qp *qhp)
  788. {
  789. union t4_wr *wqe;
  790. struct sk_buff *skb;
  791. u8 len16;
  792. PDBG("%s enter\n", __func__);
  793. skb = alloc_skb(40, GFP_KERNEL);
  794. if (!skb) {
  795. printk(KERN_ERR "%s cannot send zb_read!!\n", __func__);
  796. return -ENOMEM;
  797. }
  798. set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
  799. wqe = (union t4_wr *)skb_put(skb, sizeof wqe->read);
  800. memset(wqe, 0, sizeof wqe->read);
  801. wqe->read.r2 = cpu_to_be64(0);
  802. wqe->read.stag_sink = cpu_to_be32(1);
  803. wqe->read.to_sink_hi = cpu_to_be32(0);
  804. wqe->read.to_sink_lo = cpu_to_be32(1);
  805. wqe->read.stag_src = cpu_to_be32(1);
  806. wqe->read.plen = cpu_to_be32(0);
  807. wqe->read.to_src_hi = cpu_to_be32(0);
  808. wqe->read.to_src_lo = cpu_to_be32(1);
  809. len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
  810. init_wr_hdr(wqe, 0, FW_RI_RDMA_READ_WR, FW_RI_COMPLETION_FLAG, len16);
  811. return c4iw_ofld_send(&qhp->rhp->rdev, skb);
  812. }
  813. static void post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe,
  814. gfp_t gfp)
  815. {
  816. struct fw_ri_wr *wqe;
  817. struct sk_buff *skb;
  818. struct terminate_message *term;
  819. PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
  820. qhp->ep->hwtid);
  821. skb = alloc_skb(sizeof *wqe, gfp);
  822. if (!skb)
  823. return;
  824. set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
  825. wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
  826. memset(wqe, 0, sizeof *wqe);
  827. wqe->op_compl = cpu_to_be32(FW_WR_OP(FW_RI_INIT_WR));
  828. wqe->flowid_len16 = cpu_to_be32(
  829. FW_WR_FLOWID(qhp->ep->hwtid) |
  830. FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
  831. wqe->u.terminate.type = FW_RI_TYPE_TERMINATE;
  832. wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term);
  833. term = (struct terminate_message *)wqe->u.terminate.termmsg;
  834. build_term_codes(err_cqe, &term->layer_etype, &term->ecode);
  835. c4iw_ofld_send(&qhp->rhp->rdev, skb);
  836. }
  837. /*
  838. * Assumes qhp lock is held.
  839. */
  840. static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
  841. struct c4iw_cq *schp, unsigned long *flag)
  842. {
  843. int count;
  844. int flushed;
  845. PDBG("%s qhp %p rchp %p schp %p\n", __func__, qhp, rchp, schp);
  846. /* take a ref on the qhp since we must release the lock */
  847. atomic_inc(&qhp->refcnt);
  848. spin_unlock_irqrestore(&qhp->lock, *flag);
  849. /* locking hierarchy: cq lock first, then qp lock. */
  850. spin_lock_irqsave(&rchp->lock, *flag);
  851. spin_lock(&qhp->lock);
  852. c4iw_flush_hw_cq(&rchp->cq);
  853. c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
  854. flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
  855. spin_unlock(&qhp->lock);
  856. spin_unlock_irqrestore(&rchp->lock, *flag);
  857. if (flushed)
  858. (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
  859. /* locking hierarchy: cq lock first, then qp lock. */
  860. spin_lock_irqsave(&schp->lock, *flag);
  861. spin_lock(&qhp->lock);
  862. c4iw_flush_hw_cq(&schp->cq);
  863. c4iw_count_scqes(&schp->cq, &qhp->wq, &count);
  864. flushed = c4iw_flush_sq(&qhp->wq, &schp->cq, count);
  865. spin_unlock(&qhp->lock);
  866. spin_unlock_irqrestore(&schp->lock, *flag);
  867. if (flushed)
  868. (*schp->ibcq.comp_handler)(&schp->ibcq, schp->ibcq.cq_context);
  869. /* deref */
  870. if (atomic_dec_and_test(&qhp->refcnt))
  871. wake_up(&qhp->wait);
  872. spin_lock_irqsave(&qhp->lock, *flag);
  873. }
  874. static void flush_qp(struct c4iw_qp *qhp, unsigned long *flag)
  875. {
  876. struct c4iw_cq *rchp, *schp;
  877. rchp = get_chp(qhp->rhp, qhp->attr.rcq);
  878. schp = get_chp(qhp->rhp, qhp->attr.scq);
  879. if (qhp->ibqp.uobject) {
  880. t4_set_wq_in_error(&qhp->wq);
  881. t4_set_cq_in_error(&rchp->cq);
  882. if (schp != rchp)
  883. t4_set_cq_in_error(&schp->cq);
  884. return;
  885. }
  886. __flush_qp(qhp, rchp, schp, flag);
  887. }
  888. static int rdma_fini(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
  889. struct c4iw_ep *ep)
  890. {
  891. struct fw_ri_wr *wqe;
  892. int ret;
  893. struct c4iw_wr_wait wr_wait;
  894. struct sk_buff *skb;
  895. PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
  896. ep->hwtid);
  897. skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
  898. if (!skb)
  899. return -ENOMEM;
  900. set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
  901. wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
  902. memset(wqe, 0, sizeof *wqe);
  903. wqe->op_compl = cpu_to_be32(
  904. FW_WR_OP(FW_RI_INIT_WR) |
  905. FW_WR_COMPL(1));
  906. wqe->flowid_len16 = cpu_to_be32(
  907. FW_WR_FLOWID(ep->hwtid) |
  908. FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
  909. wqe->cookie = (u64)&wr_wait;
  910. wqe->u.fini.type = FW_RI_TYPE_FINI;
  911. c4iw_init_wr_wait(&wr_wait);
  912. ret = c4iw_ofld_send(&rhp->rdev, skb);
  913. if (ret)
  914. goto out;
  915. wait_event_timeout(wr_wait.wait, wr_wait.done, C4IW_WR_TO);
  916. if (!wr_wait.done) {
  917. printk(KERN_ERR MOD "Device %s not responding!\n",
  918. pci_name(rhp->rdev.lldi.pdev));
  919. rhp->rdev.flags = T4_FATAL_ERROR;
  920. ret = -EIO;
  921. } else {
  922. ret = wr_wait.ret;
  923. if (ret)
  924. printk(KERN_WARNING MOD
  925. "%s: Abnormal close qpid %d ret %u\n",
  926. pci_name(rhp->rdev.lldi.pdev), qhp->wq.sq.qid,
  927. ret);
  928. }
  929. out:
  930. PDBG("%s ret %d\n", __func__, ret);
  931. return ret;
  932. }
  933. static void build_rtr_msg(u8 p2p_type, struct fw_ri_init *init)
  934. {
  935. memset(&init->u, 0, sizeof init->u);
  936. switch (p2p_type) {
  937. case FW_RI_INIT_P2PTYPE_RDMA_WRITE:
  938. init->u.write.opcode = FW_RI_RDMA_WRITE_WR;
  939. init->u.write.stag_sink = cpu_to_be32(1);
  940. init->u.write.to_sink = cpu_to_be64(1);
  941. init->u.write.u.immd_src[0].op = FW_RI_DATA_IMMD;
  942. init->u.write.len16 = DIV_ROUND_UP(sizeof init->u.write +
  943. sizeof(struct fw_ri_immd),
  944. 16);
  945. break;
  946. case FW_RI_INIT_P2PTYPE_READ_REQ:
  947. init->u.write.opcode = FW_RI_RDMA_READ_WR;
  948. init->u.read.stag_src = cpu_to_be32(1);
  949. init->u.read.to_src_lo = cpu_to_be32(1);
  950. init->u.read.stag_sink = cpu_to_be32(1);
  951. init->u.read.to_sink_lo = cpu_to_be32(1);
  952. init->u.read.len16 = DIV_ROUND_UP(sizeof init->u.read, 16);
  953. break;
  954. }
  955. }
  956. static int rdma_init(struct c4iw_dev *rhp, struct c4iw_qp *qhp)
  957. {
  958. struct fw_ri_wr *wqe;
  959. int ret;
  960. struct c4iw_wr_wait wr_wait;
  961. struct sk_buff *skb;
  962. PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
  963. qhp->ep->hwtid);
  964. skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
  965. if (!skb)
  966. return -ENOMEM;
  967. set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
  968. wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
  969. memset(wqe, 0, sizeof *wqe);
  970. wqe->op_compl = cpu_to_be32(
  971. FW_WR_OP(FW_RI_INIT_WR) |
  972. FW_WR_COMPL(1));
  973. wqe->flowid_len16 = cpu_to_be32(
  974. FW_WR_FLOWID(qhp->ep->hwtid) |
  975. FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
  976. wqe->cookie = (u64)&wr_wait;
  977. wqe->u.init.type = FW_RI_TYPE_INIT;
  978. wqe->u.init.mpareqbit_p2ptype =
  979. V_FW_RI_WR_MPAREQBIT(qhp->attr.mpa_attr.initiator) |
  980. V_FW_RI_WR_P2PTYPE(qhp->attr.mpa_attr.p2p_type);
  981. wqe->u.init.mpa_attrs = FW_RI_MPA_IETF_ENABLE;
  982. if (qhp->attr.mpa_attr.recv_marker_enabled)
  983. wqe->u.init.mpa_attrs |= FW_RI_MPA_RX_MARKER_ENABLE;
  984. if (qhp->attr.mpa_attr.xmit_marker_enabled)
  985. wqe->u.init.mpa_attrs |= FW_RI_MPA_TX_MARKER_ENABLE;
  986. if (qhp->attr.mpa_attr.crc_enabled)
  987. wqe->u.init.mpa_attrs |= FW_RI_MPA_CRC_ENABLE;
  988. wqe->u.init.qp_caps = FW_RI_QP_RDMA_READ_ENABLE |
  989. FW_RI_QP_RDMA_WRITE_ENABLE |
  990. FW_RI_QP_BIND_ENABLE;
  991. if (!qhp->ibqp.uobject)
  992. wqe->u.init.qp_caps |= FW_RI_QP_FAST_REGISTER_ENABLE |
  993. FW_RI_QP_STAG0_ENABLE;
  994. wqe->u.init.nrqe = cpu_to_be16(t4_rqes_posted(&qhp->wq));
  995. wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd);
  996. wqe->u.init.qpid = cpu_to_be32(qhp->wq.sq.qid);
  997. wqe->u.init.sq_eqid = cpu_to_be32(qhp->wq.sq.qid);
  998. wqe->u.init.rq_eqid = cpu_to_be32(qhp->wq.rq.qid);
  999. wqe->u.init.scqid = cpu_to_be32(qhp->attr.scq);
  1000. wqe->u.init.rcqid = cpu_to_be32(qhp->attr.rcq);
  1001. wqe->u.init.ord_max = cpu_to_be32(qhp->attr.max_ord);
  1002. wqe->u.init.ird_max = cpu_to_be32(qhp->attr.max_ird);
  1003. wqe->u.init.iss = cpu_to_be32(qhp->ep->snd_seq);
  1004. wqe->u.init.irs = cpu_to_be32(qhp->ep->rcv_seq);
  1005. wqe->u.init.hwrqsize = cpu_to_be32(qhp->wq.rq.rqt_size);
  1006. wqe->u.init.hwrqaddr = cpu_to_be32(qhp->wq.rq.rqt_hwaddr -
  1007. rhp->rdev.lldi.vr->rq.start);
  1008. if (qhp->attr.mpa_attr.initiator)
  1009. build_rtr_msg(qhp->attr.mpa_attr.p2p_type, &wqe->u.init);
  1010. c4iw_init_wr_wait(&wr_wait);
  1011. ret = c4iw_ofld_send(&rhp->rdev, skb);
  1012. if (ret)
  1013. goto out;
  1014. wait_event_timeout(wr_wait.wait, wr_wait.done, C4IW_WR_TO);
  1015. if (!wr_wait.done) {
  1016. printk(KERN_ERR MOD "Device %s not responding!\n",
  1017. pci_name(rhp->rdev.lldi.pdev));
  1018. rhp->rdev.flags = T4_FATAL_ERROR;
  1019. ret = -EIO;
  1020. } else
  1021. ret = wr_wait.ret;
  1022. out:
  1023. PDBG("%s ret %d\n", __func__, ret);
  1024. return ret;
  1025. }
  1026. int c4iw_modify_qp(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
  1027. enum c4iw_qp_attr_mask mask,
  1028. struct c4iw_qp_attributes *attrs,
  1029. int internal)
  1030. {
  1031. int ret = 0;
  1032. struct c4iw_qp_attributes newattr = qhp->attr;
  1033. unsigned long flag;
  1034. int disconnect = 0;
  1035. int terminate = 0;
  1036. int abort = 0;
  1037. int free = 0;
  1038. struct c4iw_ep *ep = NULL;
  1039. PDBG("%s qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n", __func__,
  1040. qhp, qhp->wq.sq.qid, qhp->wq.rq.qid, qhp->ep, qhp->attr.state,
  1041. (mask & C4IW_QP_ATTR_NEXT_STATE) ? attrs->next_state : -1);
  1042. spin_lock_irqsave(&qhp->lock, flag);
  1043. /* Process attr changes if in IDLE */
  1044. if (mask & C4IW_QP_ATTR_VALID_MODIFY) {
  1045. if (qhp->attr.state != C4IW_QP_STATE_IDLE) {
  1046. ret = -EIO;
  1047. goto out;
  1048. }
  1049. if (mask & C4IW_QP_ATTR_ENABLE_RDMA_READ)
  1050. newattr.enable_rdma_read = attrs->enable_rdma_read;
  1051. if (mask & C4IW_QP_ATTR_ENABLE_RDMA_WRITE)
  1052. newattr.enable_rdma_write = attrs->enable_rdma_write;
  1053. if (mask & C4IW_QP_ATTR_ENABLE_RDMA_BIND)
  1054. newattr.enable_bind = attrs->enable_bind;
  1055. if (mask & C4IW_QP_ATTR_MAX_ORD) {
  1056. if (attrs->max_ord > c4iw_max_read_depth) {
  1057. ret = -EINVAL;
  1058. goto out;
  1059. }
  1060. newattr.max_ord = attrs->max_ord;
  1061. }
  1062. if (mask & C4IW_QP_ATTR_MAX_IRD) {
  1063. if (attrs->max_ird > c4iw_max_read_depth) {
  1064. ret = -EINVAL;
  1065. goto out;
  1066. }
  1067. newattr.max_ird = attrs->max_ird;
  1068. }
  1069. qhp->attr = newattr;
  1070. }
  1071. if (!(mask & C4IW_QP_ATTR_NEXT_STATE))
  1072. goto out;
  1073. if (qhp->attr.state == attrs->next_state)
  1074. goto out;
  1075. switch (qhp->attr.state) {
  1076. case C4IW_QP_STATE_IDLE:
  1077. switch (attrs->next_state) {
  1078. case C4IW_QP_STATE_RTS:
  1079. if (!(mask & C4IW_QP_ATTR_LLP_STREAM_HANDLE)) {
  1080. ret = -EINVAL;
  1081. goto out;
  1082. }
  1083. if (!(mask & C4IW_QP_ATTR_MPA_ATTR)) {
  1084. ret = -EINVAL;
  1085. goto out;
  1086. }
  1087. qhp->attr.mpa_attr = attrs->mpa_attr;
  1088. qhp->attr.llp_stream_handle = attrs->llp_stream_handle;
  1089. qhp->ep = qhp->attr.llp_stream_handle;
  1090. qhp->attr.state = C4IW_QP_STATE_RTS;
  1091. /*
  1092. * Ref the endpoint here and deref when we
  1093. * disassociate the endpoint from the QP. This
  1094. * happens in CLOSING->IDLE transition or *->ERROR
  1095. * transition.
  1096. */
  1097. c4iw_get_ep(&qhp->ep->com);
  1098. spin_unlock_irqrestore(&qhp->lock, flag);
  1099. ret = rdma_init(rhp, qhp);
  1100. spin_lock_irqsave(&qhp->lock, flag);
  1101. if (ret)
  1102. goto err;
  1103. break;
  1104. case C4IW_QP_STATE_ERROR:
  1105. qhp->attr.state = C4IW_QP_STATE_ERROR;
  1106. flush_qp(qhp, &flag);
  1107. break;
  1108. default:
  1109. ret = -EINVAL;
  1110. goto out;
  1111. }
  1112. break;
  1113. case C4IW_QP_STATE_RTS:
  1114. switch (attrs->next_state) {
  1115. case C4IW_QP_STATE_CLOSING:
  1116. BUG_ON(atomic_read(&qhp->ep->com.kref.refcount) < 2);
  1117. qhp->attr.state = C4IW_QP_STATE_CLOSING;
  1118. ep = qhp->ep;
  1119. if (!internal) {
  1120. abort = 0;
  1121. disconnect = 1;
  1122. c4iw_get_ep(&ep->com);
  1123. }
  1124. spin_unlock_irqrestore(&qhp->lock, flag);
  1125. ret = rdma_fini(rhp, qhp, ep);
  1126. spin_lock_irqsave(&qhp->lock, flag);
  1127. if (ret) {
  1128. c4iw_get_ep(&ep->com);
  1129. disconnect = abort = 1;
  1130. goto err;
  1131. }
  1132. break;
  1133. case C4IW_QP_STATE_TERMINATE:
  1134. qhp->attr.state = C4IW_QP_STATE_TERMINATE;
  1135. if (qhp->ibqp.uobject)
  1136. t4_set_wq_in_error(&qhp->wq);
  1137. ep = qhp->ep;
  1138. c4iw_get_ep(&ep->com);
  1139. terminate = 1;
  1140. disconnect = 1;
  1141. break;
  1142. case C4IW_QP_STATE_ERROR:
  1143. qhp->attr.state = C4IW_QP_STATE_ERROR;
  1144. if (!internal) {
  1145. abort = 1;
  1146. disconnect = 1;
  1147. ep = qhp->ep;
  1148. c4iw_get_ep(&ep->com);
  1149. }
  1150. goto err;
  1151. break;
  1152. default:
  1153. ret = -EINVAL;
  1154. goto out;
  1155. }
  1156. break;
  1157. case C4IW_QP_STATE_CLOSING:
  1158. if (!internal) {
  1159. ret = -EINVAL;
  1160. goto out;
  1161. }
  1162. switch (attrs->next_state) {
  1163. case C4IW_QP_STATE_IDLE:
  1164. flush_qp(qhp, &flag);
  1165. qhp->attr.state = C4IW_QP_STATE_IDLE;
  1166. qhp->attr.llp_stream_handle = NULL;
  1167. c4iw_put_ep(&qhp->ep->com);
  1168. qhp->ep = NULL;
  1169. wake_up(&qhp->wait);
  1170. break;
  1171. case C4IW_QP_STATE_ERROR:
  1172. goto err;
  1173. default:
  1174. ret = -EINVAL;
  1175. goto err;
  1176. }
  1177. break;
  1178. case C4IW_QP_STATE_ERROR:
  1179. if (attrs->next_state != C4IW_QP_STATE_IDLE) {
  1180. ret = -EINVAL;
  1181. goto out;
  1182. }
  1183. if (!t4_sq_empty(&qhp->wq) || !t4_rq_empty(&qhp->wq)) {
  1184. ret = -EINVAL;
  1185. goto out;
  1186. }
  1187. qhp->attr.state = C4IW_QP_STATE_IDLE;
  1188. break;
  1189. case C4IW_QP_STATE_TERMINATE:
  1190. if (!internal) {
  1191. ret = -EINVAL;
  1192. goto out;
  1193. }
  1194. goto err;
  1195. break;
  1196. default:
  1197. printk(KERN_ERR "%s in a bad state %d\n",
  1198. __func__, qhp->attr.state);
  1199. ret = -EINVAL;
  1200. goto err;
  1201. break;
  1202. }
  1203. goto out;
  1204. err:
  1205. PDBG("%s disassociating ep %p qpid 0x%x\n", __func__, qhp->ep,
  1206. qhp->wq.sq.qid);
  1207. /* disassociate the LLP connection */
  1208. qhp->attr.llp_stream_handle = NULL;
  1209. ep = qhp->ep;
  1210. qhp->ep = NULL;
  1211. qhp->attr.state = C4IW_QP_STATE_ERROR;
  1212. free = 1;
  1213. wake_up(&qhp->wait);
  1214. BUG_ON(!ep);
  1215. flush_qp(qhp, &flag);
  1216. out:
  1217. spin_unlock_irqrestore(&qhp->lock, flag);
  1218. if (terminate)
  1219. post_terminate(qhp, NULL, internal ? GFP_ATOMIC : GFP_KERNEL);
  1220. /*
  1221. * If disconnect is 1, then we need to initiate a disconnect
  1222. * on the EP. This can be a normal close (RTS->CLOSING) or
  1223. * an abnormal close (RTS/CLOSING->ERROR).
  1224. */
  1225. if (disconnect) {
  1226. c4iw_ep_disconnect(ep, abort, internal ? GFP_ATOMIC :
  1227. GFP_KERNEL);
  1228. c4iw_put_ep(&ep->com);
  1229. }
  1230. /*
  1231. * If free is 1, then we've disassociated the EP from the QP
  1232. * and we need to dereference the EP.
  1233. */
  1234. if (free)
  1235. c4iw_put_ep(&ep->com);
  1236. PDBG("%s exit state %d\n", __func__, qhp->attr.state);
  1237. return ret;
  1238. }
  1239. int c4iw_destroy_qp(struct ib_qp *ib_qp)
  1240. {
  1241. struct c4iw_dev *rhp;
  1242. struct c4iw_qp *qhp;
  1243. struct c4iw_qp_attributes attrs;
  1244. struct c4iw_ucontext *ucontext;
  1245. qhp = to_c4iw_qp(ib_qp);
  1246. rhp = qhp->rhp;
  1247. attrs.next_state = C4IW_QP_STATE_ERROR;
  1248. c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
  1249. wait_event(qhp->wait, !qhp->ep);
  1250. remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
  1251. atomic_dec(&qhp->refcnt);
  1252. wait_event(qhp->wait, !atomic_read(&qhp->refcnt));
  1253. ucontext = ib_qp->uobject ?
  1254. to_c4iw_ucontext(ib_qp->uobject->context) : NULL;
  1255. destroy_qp(&rhp->rdev, &qhp->wq,
  1256. ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
  1257. PDBG("%s ib_qp %p qpid 0x%0x\n", __func__, ib_qp, qhp->wq.sq.qid);
  1258. kfree(qhp);
  1259. return 0;
  1260. }
  1261. struct ib_qp *c4iw_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs,
  1262. struct ib_udata *udata)
  1263. {
  1264. struct c4iw_dev *rhp;
  1265. struct c4iw_qp *qhp;
  1266. struct c4iw_pd *php;
  1267. struct c4iw_cq *schp;
  1268. struct c4iw_cq *rchp;
  1269. struct c4iw_create_qp_resp uresp;
  1270. int sqsize, rqsize;
  1271. struct c4iw_ucontext *ucontext;
  1272. int ret;
  1273. struct c4iw_mm_entry *mm1, *mm2, *mm3, *mm4;
  1274. PDBG("%s ib_pd %p\n", __func__, pd);
  1275. if (attrs->qp_type != IB_QPT_RC)
  1276. return ERR_PTR(-EINVAL);
  1277. php = to_c4iw_pd(pd);
  1278. rhp = php->rhp;
  1279. schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
  1280. rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
  1281. if (!schp || !rchp)
  1282. return ERR_PTR(-EINVAL);
  1283. if (attrs->cap.max_inline_data > T4_MAX_SEND_INLINE)
  1284. return ERR_PTR(-EINVAL);
  1285. rqsize = roundup(attrs->cap.max_recv_wr + 1, 16);
  1286. if (rqsize > T4_MAX_RQ_SIZE)
  1287. return ERR_PTR(-E2BIG);
  1288. sqsize = roundup(attrs->cap.max_send_wr + 1, 16);
  1289. if (sqsize > T4_MAX_SQ_SIZE)
  1290. return ERR_PTR(-E2BIG);
  1291. ucontext = pd->uobject ? to_c4iw_ucontext(pd->uobject->context) : NULL;
  1292. qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
  1293. if (!qhp)
  1294. return ERR_PTR(-ENOMEM);
  1295. qhp->wq.sq.size = sqsize;
  1296. qhp->wq.sq.memsize = (sqsize + 1) * sizeof *qhp->wq.sq.queue;
  1297. qhp->wq.rq.size = rqsize;
  1298. qhp->wq.rq.memsize = (rqsize + 1) * sizeof *qhp->wq.rq.queue;
  1299. if (ucontext) {
  1300. qhp->wq.sq.memsize = roundup(qhp->wq.sq.memsize, PAGE_SIZE);
  1301. qhp->wq.rq.memsize = roundup(qhp->wq.rq.memsize, PAGE_SIZE);
  1302. }
  1303. PDBG("%s sqsize %u sqmemsize %zu rqsize %u rqmemsize %zu\n",
  1304. __func__, sqsize, qhp->wq.sq.memsize, rqsize, qhp->wq.rq.memsize);
  1305. ret = create_qp(&rhp->rdev, &qhp->wq, &schp->cq, &rchp->cq,
  1306. ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
  1307. if (ret)
  1308. goto err1;
  1309. attrs->cap.max_recv_wr = rqsize - 1;
  1310. attrs->cap.max_send_wr = sqsize - 1;
  1311. attrs->cap.max_inline_data = T4_MAX_SEND_INLINE;
  1312. qhp->rhp = rhp;
  1313. qhp->attr.pd = php->pdid;
  1314. qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
  1315. qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
  1316. qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
  1317. qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
  1318. qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
  1319. qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
  1320. qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
  1321. qhp->attr.state = C4IW_QP_STATE_IDLE;
  1322. qhp->attr.next_state = C4IW_QP_STATE_IDLE;
  1323. qhp->attr.enable_rdma_read = 1;
  1324. qhp->attr.enable_rdma_write = 1;
  1325. qhp->attr.enable_bind = 1;
  1326. qhp->attr.max_ord = 1;
  1327. qhp->attr.max_ird = 1;
  1328. spin_lock_init(&qhp->lock);
  1329. init_waitqueue_head(&qhp->wait);
  1330. atomic_set(&qhp->refcnt, 1);
  1331. ret = insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.sq.qid);
  1332. if (ret)
  1333. goto err2;
  1334. if (udata) {
  1335. mm1 = kmalloc(sizeof *mm1, GFP_KERNEL);
  1336. if (!mm1) {
  1337. ret = -ENOMEM;
  1338. goto err3;
  1339. }
  1340. mm2 = kmalloc(sizeof *mm2, GFP_KERNEL);
  1341. if (!mm2) {
  1342. ret = -ENOMEM;
  1343. goto err4;
  1344. }
  1345. mm3 = kmalloc(sizeof *mm3, GFP_KERNEL);
  1346. if (!mm3) {
  1347. ret = -ENOMEM;
  1348. goto err5;
  1349. }
  1350. mm4 = kmalloc(sizeof *mm4, GFP_KERNEL);
  1351. if (!mm4) {
  1352. ret = -ENOMEM;
  1353. goto err6;
  1354. }
  1355. uresp.qid_mask = rhp->rdev.qpmask;
  1356. uresp.sqid = qhp->wq.sq.qid;
  1357. uresp.sq_size = qhp->wq.sq.size;
  1358. uresp.sq_memsize = qhp->wq.sq.memsize;
  1359. uresp.rqid = qhp->wq.rq.qid;
  1360. uresp.rq_size = qhp->wq.rq.size;
  1361. uresp.rq_memsize = qhp->wq.rq.memsize;
  1362. spin_lock(&ucontext->mmap_lock);
  1363. uresp.sq_key = ucontext->key;
  1364. ucontext->key += PAGE_SIZE;
  1365. uresp.rq_key = ucontext->key;
  1366. ucontext->key += PAGE_SIZE;
  1367. uresp.sq_db_gts_key = ucontext->key;
  1368. ucontext->key += PAGE_SIZE;
  1369. uresp.rq_db_gts_key = ucontext->key;
  1370. ucontext->key += PAGE_SIZE;
  1371. spin_unlock(&ucontext->mmap_lock);
  1372. ret = ib_copy_to_udata(udata, &uresp, sizeof uresp);
  1373. if (ret)
  1374. goto err7;
  1375. mm1->key = uresp.sq_key;
  1376. mm1->addr = virt_to_phys(qhp->wq.sq.queue);
  1377. mm1->len = PAGE_ALIGN(qhp->wq.sq.memsize);
  1378. insert_mmap(ucontext, mm1);
  1379. mm2->key = uresp.rq_key;
  1380. mm2->addr = virt_to_phys(qhp->wq.rq.queue);
  1381. mm2->len = PAGE_ALIGN(qhp->wq.rq.memsize);
  1382. insert_mmap(ucontext, mm2);
  1383. mm3->key = uresp.sq_db_gts_key;
  1384. mm3->addr = qhp->wq.sq.udb;
  1385. mm3->len = PAGE_SIZE;
  1386. insert_mmap(ucontext, mm3);
  1387. mm4->key = uresp.rq_db_gts_key;
  1388. mm4->addr = qhp->wq.rq.udb;
  1389. mm4->len = PAGE_SIZE;
  1390. insert_mmap(ucontext, mm4);
  1391. }
  1392. qhp->ibqp.qp_num = qhp->wq.sq.qid;
  1393. init_timer(&(qhp->timer));
  1394. PDBG("%s qhp %p sq_num_entries %d, rq_num_entries %d qpid 0x%0x\n",
  1395. __func__, qhp, qhp->attr.sq_num_entries, qhp->attr.rq_num_entries,
  1396. qhp->wq.sq.qid);
  1397. return &qhp->ibqp;
  1398. err7:
  1399. kfree(mm4);
  1400. err6:
  1401. kfree(mm3);
  1402. err5:
  1403. kfree(mm2);
  1404. err4:
  1405. kfree(mm1);
  1406. err3:
  1407. remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
  1408. err2:
  1409. destroy_qp(&rhp->rdev, &qhp->wq,
  1410. ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
  1411. err1:
  1412. kfree(qhp);
  1413. return ERR_PTR(ret);
  1414. }
  1415. int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
  1416. int attr_mask, struct ib_udata *udata)
  1417. {
  1418. struct c4iw_dev *rhp;
  1419. struct c4iw_qp *qhp;
  1420. enum c4iw_qp_attr_mask mask = 0;
  1421. struct c4iw_qp_attributes attrs;
  1422. PDBG("%s ib_qp %p\n", __func__, ibqp);
  1423. /* iwarp does not support the RTR state */
  1424. if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
  1425. attr_mask &= ~IB_QP_STATE;
  1426. /* Make sure we still have something left to do */
  1427. if (!attr_mask)
  1428. return 0;
  1429. memset(&attrs, 0, sizeof attrs);
  1430. qhp = to_c4iw_qp(ibqp);
  1431. rhp = qhp->rhp;
  1432. attrs.next_state = c4iw_convert_state(attr->qp_state);
  1433. attrs.enable_rdma_read = (attr->qp_access_flags &
  1434. IB_ACCESS_REMOTE_READ) ? 1 : 0;
  1435. attrs.enable_rdma_write = (attr->qp_access_flags &
  1436. IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
  1437. attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
  1438. mask |= (attr_mask & IB_QP_STATE) ? C4IW_QP_ATTR_NEXT_STATE : 0;
  1439. mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
  1440. (C4IW_QP_ATTR_ENABLE_RDMA_READ |
  1441. C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
  1442. C4IW_QP_ATTR_ENABLE_RDMA_BIND) : 0;
  1443. return c4iw_modify_qp(rhp, qhp, mask, &attrs, 0);
  1444. }
  1445. struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn)
  1446. {
  1447. PDBG("%s ib_dev %p qpn 0x%x\n", __func__, dev, qpn);
  1448. return (struct ib_qp *)get_qhp(to_c4iw_dev(dev), qpn);
  1449. }