qp.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962
  1. /*
  2. * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
  3. * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. #include <linux/log2.h>
  34. #include <rdma/ib_cache.h>
  35. #include <rdma/ib_pack.h>
  36. #include <linux/mlx4/qp.h>
  37. #include "mlx4_ib.h"
  38. #include "user.h"
  39. enum {
  40. MLX4_IB_ACK_REQ_FREQ = 8,
  41. };
  42. enum {
  43. MLX4_IB_DEFAULT_SCHED_QUEUE = 0x83,
  44. MLX4_IB_DEFAULT_QP0_SCHED_QUEUE = 0x3f
  45. };
  46. enum {
  47. /*
  48. * Largest possible UD header: send with GRH and immediate data.
  49. */
  50. MLX4_IB_UD_HEADER_SIZE = 72
  51. };
  52. struct mlx4_ib_sqp {
  53. struct mlx4_ib_qp qp;
  54. int pkey_index;
  55. u32 qkey;
  56. u32 send_psn;
  57. struct ib_ud_header ud_header;
  58. u8 header_buf[MLX4_IB_UD_HEADER_SIZE];
  59. };
  60. enum {
  61. MLX4_IB_MIN_SQ_STRIDE = 6
  62. };
  63. static const __be32 mlx4_ib_opcode[] = {
  64. [IB_WR_SEND] = cpu_to_be32(MLX4_OPCODE_SEND),
  65. [IB_WR_LSO] = cpu_to_be32(MLX4_OPCODE_LSO),
  66. [IB_WR_SEND_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_SEND_IMM),
  67. [IB_WR_RDMA_WRITE] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE),
  68. [IB_WR_RDMA_WRITE_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE_IMM),
  69. [IB_WR_RDMA_READ] = cpu_to_be32(MLX4_OPCODE_RDMA_READ),
  70. [IB_WR_ATOMIC_CMP_AND_SWP] = cpu_to_be32(MLX4_OPCODE_ATOMIC_CS),
  71. [IB_WR_ATOMIC_FETCH_AND_ADD] = cpu_to_be32(MLX4_OPCODE_ATOMIC_FA),
  72. [IB_WR_SEND_WITH_INV] = cpu_to_be32(MLX4_OPCODE_SEND_INVAL),
  73. [IB_WR_LOCAL_INV] = cpu_to_be32(MLX4_OPCODE_LOCAL_INVAL),
  74. [IB_WR_FAST_REG_MR] = cpu_to_be32(MLX4_OPCODE_FMR),
  75. };
  76. static struct mlx4_ib_sqp *to_msqp(struct mlx4_ib_qp *mqp)
  77. {
  78. return container_of(mqp, struct mlx4_ib_sqp, qp);
  79. }
  80. static int is_sqp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
  81. {
  82. return qp->mqp.qpn >= dev->dev->caps.sqp_start &&
  83. qp->mqp.qpn <= dev->dev->caps.sqp_start + 3;
  84. }
  85. static int is_qp0(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
  86. {
  87. return qp->mqp.qpn >= dev->dev->caps.sqp_start &&
  88. qp->mqp.qpn <= dev->dev->caps.sqp_start + 1;
  89. }
  90. static void *get_wqe(struct mlx4_ib_qp *qp, int offset)
  91. {
  92. return mlx4_buf_offset(&qp->buf, offset);
  93. }
  94. static void *get_recv_wqe(struct mlx4_ib_qp *qp, int n)
  95. {
  96. return get_wqe(qp, qp->rq.offset + (n << qp->rq.wqe_shift));
  97. }
  98. static void *get_send_wqe(struct mlx4_ib_qp *qp, int n)
  99. {
  100. return get_wqe(qp, qp->sq.offset + (n << qp->sq.wqe_shift));
  101. }
  102. /*
  103. * Stamp a SQ WQE so that it is invalid if prefetched by marking the
  104. * first four bytes of every 64 byte chunk with
  105. * 0x7FFFFFF | (invalid_ownership_value << 31).
  106. *
  107. * When the max work request size is less than or equal to the WQE
  108. * basic block size, as an optimization, we can stamp all WQEs with
  109. * 0xffffffff, and skip the very first chunk of each WQE.
  110. */
  111. static void stamp_send_wqe(struct mlx4_ib_qp *qp, int n, int size)
  112. {
  113. __be32 *wqe;
  114. int i;
  115. int s;
  116. int ind;
  117. void *buf;
  118. __be32 stamp;
  119. struct mlx4_wqe_ctrl_seg *ctrl;
  120. if (qp->sq_max_wqes_per_wr > 1) {
  121. s = roundup(size, 1U << qp->sq.wqe_shift);
  122. for (i = 0; i < s; i += 64) {
  123. ind = (i >> qp->sq.wqe_shift) + n;
  124. stamp = ind & qp->sq.wqe_cnt ? cpu_to_be32(0x7fffffff) :
  125. cpu_to_be32(0xffffffff);
  126. buf = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
  127. wqe = buf + (i & ((1 << qp->sq.wqe_shift) - 1));
  128. *wqe = stamp;
  129. }
  130. } else {
  131. ctrl = buf = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
  132. s = (ctrl->fence_size & 0x3f) << 4;
  133. for (i = 64; i < s; i += 64) {
  134. wqe = buf + i;
  135. *wqe = cpu_to_be32(0xffffffff);
  136. }
  137. }
  138. }
  139. static void post_nop_wqe(struct mlx4_ib_qp *qp, int n, int size)
  140. {
  141. struct mlx4_wqe_ctrl_seg *ctrl;
  142. struct mlx4_wqe_inline_seg *inl;
  143. void *wqe;
  144. int s;
  145. ctrl = wqe = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
  146. s = sizeof(struct mlx4_wqe_ctrl_seg);
  147. if (qp->ibqp.qp_type == IB_QPT_UD) {
  148. struct mlx4_wqe_datagram_seg *dgram = wqe + sizeof *ctrl;
  149. struct mlx4_av *av = (struct mlx4_av *)dgram->av;
  150. memset(dgram, 0, sizeof *dgram);
  151. av->port_pd = cpu_to_be32((qp->port << 24) | to_mpd(qp->ibqp.pd)->pdn);
  152. s += sizeof(struct mlx4_wqe_datagram_seg);
  153. }
  154. /* Pad the remainder of the WQE with an inline data segment. */
  155. if (size > s) {
  156. inl = wqe + s;
  157. inl->byte_count = cpu_to_be32(1 << 31 | (size - s - sizeof *inl));
  158. }
  159. ctrl->srcrb_flags = 0;
  160. ctrl->fence_size = size / 16;
  161. /*
  162. * Make sure descriptor is fully written before setting ownership bit
  163. * (because HW can start executing as soon as we do).
  164. */
  165. wmb();
  166. ctrl->owner_opcode = cpu_to_be32(MLX4_OPCODE_NOP | MLX4_WQE_CTRL_NEC) |
  167. (n & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
  168. stamp_send_wqe(qp, n + qp->sq_spare_wqes, size);
  169. }
  170. /* Post NOP WQE to prevent wrap-around in the middle of WR */
  171. static inline unsigned pad_wraparound(struct mlx4_ib_qp *qp, int ind)
  172. {
  173. unsigned s = qp->sq.wqe_cnt - (ind & (qp->sq.wqe_cnt - 1));
  174. if (unlikely(s < qp->sq_max_wqes_per_wr)) {
  175. post_nop_wqe(qp, ind, s << qp->sq.wqe_shift);
  176. ind += s;
  177. }
  178. return ind;
  179. }
  180. static void mlx4_ib_qp_event(struct mlx4_qp *qp, enum mlx4_event type)
  181. {
  182. struct ib_event event;
  183. struct ib_qp *ibqp = &to_mibqp(qp)->ibqp;
  184. if (type == MLX4_EVENT_TYPE_PATH_MIG)
  185. to_mibqp(qp)->port = to_mibqp(qp)->alt_port;
  186. if (ibqp->event_handler) {
  187. event.device = ibqp->device;
  188. event.element.qp = ibqp;
  189. switch (type) {
  190. case MLX4_EVENT_TYPE_PATH_MIG:
  191. event.event = IB_EVENT_PATH_MIG;
  192. break;
  193. case MLX4_EVENT_TYPE_COMM_EST:
  194. event.event = IB_EVENT_COMM_EST;
  195. break;
  196. case MLX4_EVENT_TYPE_SQ_DRAINED:
  197. event.event = IB_EVENT_SQ_DRAINED;
  198. break;
  199. case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
  200. event.event = IB_EVENT_QP_LAST_WQE_REACHED;
  201. break;
  202. case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
  203. event.event = IB_EVENT_QP_FATAL;
  204. break;
  205. case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
  206. event.event = IB_EVENT_PATH_MIG_ERR;
  207. break;
  208. case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
  209. event.event = IB_EVENT_QP_REQ_ERR;
  210. break;
  211. case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
  212. event.event = IB_EVENT_QP_ACCESS_ERR;
  213. break;
  214. default:
  215. printk(KERN_WARNING "mlx4_ib: Unexpected event type %d "
  216. "on QP %06x\n", type, qp->qpn);
  217. return;
  218. }
  219. ibqp->event_handler(&event, ibqp->qp_context);
  220. }
  221. }
  222. static int send_wqe_overhead(enum ib_qp_type type, u32 flags)
  223. {
  224. /*
  225. * UD WQEs must have a datagram segment.
  226. * RC and UC WQEs might have a remote address segment.
  227. * MLX WQEs need two extra inline data segments (for the UD
  228. * header and space for the ICRC).
  229. */
  230. switch (type) {
  231. case IB_QPT_UD:
  232. return sizeof (struct mlx4_wqe_ctrl_seg) +
  233. sizeof (struct mlx4_wqe_datagram_seg) +
  234. ((flags & MLX4_IB_QP_LSO) ? 64 : 0);
  235. case IB_QPT_UC:
  236. return sizeof (struct mlx4_wqe_ctrl_seg) +
  237. sizeof (struct mlx4_wqe_raddr_seg);
  238. case IB_QPT_RC:
  239. return sizeof (struct mlx4_wqe_ctrl_seg) +
  240. sizeof (struct mlx4_wqe_atomic_seg) +
  241. sizeof (struct mlx4_wqe_raddr_seg);
  242. case IB_QPT_SMI:
  243. case IB_QPT_GSI:
  244. return sizeof (struct mlx4_wqe_ctrl_seg) +
  245. ALIGN(MLX4_IB_UD_HEADER_SIZE +
  246. DIV_ROUND_UP(MLX4_IB_UD_HEADER_SIZE,
  247. MLX4_INLINE_ALIGN) *
  248. sizeof (struct mlx4_wqe_inline_seg),
  249. sizeof (struct mlx4_wqe_data_seg)) +
  250. ALIGN(4 +
  251. sizeof (struct mlx4_wqe_inline_seg),
  252. sizeof (struct mlx4_wqe_data_seg));
  253. default:
  254. return sizeof (struct mlx4_wqe_ctrl_seg);
  255. }
  256. }
  257. static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
  258. int is_user, int has_srq, struct mlx4_ib_qp *qp)
  259. {
  260. /* Sanity check RQ size before proceeding */
  261. if (cap->max_recv_wr > dev->dev->caps.max_wqes ||
  262. cap->max_recv_sge > dev->dev->caps.max_rq_sg)
  263. return -EINVAL;
  264. if (has_srq) {
  265. /* QPs attached to an SRQ should have no RQ */
  266. if (cap->max_recv_wr)
  267. return -EINVAL;
  268. qp->rq.wqe_cnt = qp->rq.max_gs = 0;
  269. } else {
  270. /* HW requires >= 1 RQ entry with >= 1 gather entry */
  271. if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
  272. return -EINVAL;
  273. qp->rq.wqe_cnt = roundup_pow_of_two(max(1U, cap->max_recv_wr));
  274. qp->rq.max_gs = roundup_pow_of_two(max(1U, cap->max_recv_sge));
  275. qp->rq.wqe_shift = ilog2(qp->rq.max_gs * sizeof (struct mlx4_wqe_data_seg));
  276. }
  277. cap->max_recv_wr = qp->rq.max_post = qp->rq.wqe_cnt;
  278. cap->max_recv_sge = qp->rq.max_gs;
  279. return 0;
  280. }
  281. static int set_kernel_sq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
  282. enum ib_qp_type type, struct mlx4_ib_qp *qp)
  283. {
  284. int s;
  285. /* Sanity check SQ size before proceeding */
  286. if (cap->max_send_wr > dev->dev->caps.max_wqes ||
  287. cap->max_send_sge > dev->dev->caps.max_sq_sg ||
  288. cap->max_inline_data + send_wqe_overhead(type, qp->flags) +
  289. sizeof (struct mlx4_wqe_inline_seg) > dev->dev->caps.max_sq_desc_sz)
  290. return -EINVAL;
  291. /*
  292. * For MLX transport we need 2 extra S/G entries:
  293. * one for the header and one for the checksum at the end
  294. */
  295. if ((type == IB_QPT_SMI || type == IB_QPT_GSI) &&
  296. cap->max_send_sge + 2 > dev->dev->caps.max_sq_sg)
  297. return -EINVAL;
  298. s = max(cap->max_send_sge * sizeof (struct mlx4_wqe_data_seg),
  299. cap->max_inline_data + sizeof (struct mlx4_wqe_inline_seg)) +
  300. send_wqe_overhead(type, qp->flags);
  301. if (s > dev->dev->caps.max_sq_desc_sz)
  302. return -EINVAL;
  303. /*
  304. * Hermon supports shrinking WQEs, such that a single work
  305. * request can include multiple units of 1 << wqe_shift. This
  306. * way, work requests can differ in size, and do not have to
  307. * be a power of 2 in size, saving memory and speeding up send
  308. * WR posting. Unfortunately, if we do this then the
  309. * wqe_index field in CQEs can't be used to look up the WR ID
  310. * anymore, so we do this only if selective signaling is off.
  311. *
  312. * Further, on 32-bit platforms, we can't use vmap() to make
  313. * the QP buffer virtually contiguous. Thus we have to use
  314. * constant-sized WRs to make sure a WR is always fully within
  315. * a single page-sized chunk.
  316. *
  317. * Finally, we use NOP work requests to pad the end of the
  318. * work queue, to avoid wrap-around in the middle of WR. We
  319. * set NEC bit to avoid getting completions with error for
  320. * these NOP WRs, but since NEC is only supported starting
  321. * with firmware 2.2.232, we use constant-sized WRs for older
  322. * firmware.
  323. *
  324. * And, since MLX QPs only support SEND, we use constant-sized
  325. * WRs in this case.
  326. *
  327. * We look for the smallest value of wqe_shift such that the
  328. * resulting number of wqes does not exceed device
  329. * capabilities.
  330. *
  331. * We set WQE size to at least 64 bytes, this way stamping
  332. * invalidates each WQE.
  333. */
  334. if (dev->dev->caps.fw_ver >= MLX4_FW_VER_WQE_CTRL_NEC &&
  335. qp->sq_signal_bits && BITS_PER_LONG == 64 &&
  336. type != IB_QPT_SMI && type != IB_QPT_GSI)
  337. qp->sq.wqe_shift = ilog2(64);
  338. else
  339. qp->sq.wqe_shift = ilog2(roundup_pow_of_two(s));
  340. for (;;) {
  341. qp->sq_max_wqes_per_wr = DIV_ROUND_UP(s, 1U << qp->sq.wqe_shift);
  342. /*
  343. * We need to leave 2 KB + 1 WR of headroom in the SQ to
  344. * allow HW to prefetch.
  345. */
  346. qp->sq_spare_wqes = (2048 >> qp->sq.wqe_shift) + qp->sq_max_wqes_per_wr;
  347. qp->sq.wqe_cnt = roundup_pow_of_two(cap->max_send_wr *
  348. qp->sq_max_wqes_per_wr +
  349. qp->sq_spare_wqes);
  350. if (qp->sq.wqe_cnt <= dev->dev->caps.max_wqes)
  351. break;
  352. if (qp->sq_max_wqes_per_wr <= 1)
  353. return -EINVAL;
  354. ++qp->sq.wqe_shift;
  355. }
  356. qp->sq.max_gs = (min(dev->dev->caps.max_sq_desc_sz,
  357. (qp->sq_max_wqes_per_wr << qp->sq.wqe_shift)) -
  358. send_wqe_overhead(type, qp->flags)) /
  359. sizeof (struct mlx4_wqe_data_seg);
  360. qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
  361. (qp->sq.wqe_cnt << qp->sq.wqe_shift);
  362. if (qp->rq.wqe_shift > qp->sq.wqe_shift) {
  363. qp->rq.offset = 0;
  364. qp->sq.offset = qp->rq.wqe_cnt << qp->rq.wqe_shift;
  365. } else {
  366. qp->rq.offset = qp->sq.wqe_cnt << qp->sq.wqe_shift;
  367. qp->sq.offset = 0;
  368. }
  369. cap->max_send_wr = qp->sq.max_post =
  370. (qp->sq.wqe_cnt - qp->sq_spare_wqes) / qp->sq_max_wqes_per_wr;
  371. cap->max_send_sge = min(qp->sq.max_gs,
  372. min(dev->dev->caps.max_sq_sg,
  373. dev->dev->caps.max_rq_sg));
  374. /* We don't support inline sends for kernel QPs (yet) */
  375. cap->max_inline_data = 0;
  376. return 0;
  377. }
  378. static int set_user_sq_size(struct mlx4_ib_dev *dev,
  379. struct mlx4_ib_qp *qp,
  380. struct mlx4_ib_create_qp *ucmd)
  381. {
  382. /* Sanity check SQ size before proceeding */
  383. if ((1 << ucmd->log_sq_bb_count) > dev->dev->caps.max_wqes ||
  384. ucmd->log_sq_stride >
  385. ilog2(roundup_pow_of_two(dev->dev->caps.max_sq_desc_sz)) ||
  386. ucmd->log_sq_stride < MLX4_IB_MIN_SQ_STRIDE)
  387. return -EINVAL;
  388. qp->sq.wqe_cnt = 1 << ucmd->log_sq_bb_count;
  389. qp->sq.wqe_shift = ucmd->log_sq_stride;
  390. qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
  391. (qp->sq.wqe_cnt << qp->sq.wqe_shift);
  392. return 0;
  393. }
  394. static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
  395. struct ib_qp_init_attr *init_attr,
  396. struct ib_udata *udata, int sqpn, struct mlx4_ib_qp *qp)
  397. {
  398. int qpn;
  399. int err;
  400. mutex_init(&qp->mutex);
  401. spin_lock_init(&qp->sq.lock);
  402. spin_lock_init(&qp->rq.lock);
  403. qp->state = IB_QPS_RESET;
  404. if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
  405. qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
  406. err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, !!init_attr->srq, qp);
  407. if (err)
  408. goto err;
  409. if (pd->uobject) {
  410. struct mlx4_ib_create_qp ucmd;
  411. if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
  412. err = -EFAULT;
  413. goto err;
  414. }
  415. qp->sq_no_prefetch = ucmd.sq_no_prefetch;
  416. err = set_user_sq_size(dev, qp, &ucmd);
  417. if (err)
  418. goto err;
  419. qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
  420. qp->buf_size, 0, 0);
  421. if (IS_ERR(qp->umem)) {
  422. err = PTR_ERR(qp->umem);
  423. goto err;
  424. }
  425. err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
  426. ilog2(qp->umem->page_size), &qp->mtt);
  427. if (err)
  428. goto err_buf;
  429. err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
  430. if (err)
  431. goto err_mtt;
  432. if (!init_attr->srq) {
  433. err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
  434. ucmd.db_addr, &qp->db);
  435. if (err)
  436. goto err_mtt;
  437. }
  438. } else {
  439. qp->sq_no_prefetch = 0;
  440. if (init_attr->create_flags & IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK)
  441. qp->flags |= MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
  442. if (init_attr->create_flags & IB_QP_CREATE_IPOIB_UD_LSO)
  443. qp->flags |= MLX4_IB_QP_LSO;
  444. err = set_kernel_sq_size(dev, &init_attr->cap, init_attr->qp_type, qp);
  445. if (err)
  446. goto err;
  447. if (!init_attr->srq) {
  448. err = mlx4_db_alloc(dev->dev, &qp->db, 0);
  449. if (err)
  450. goto err;
  451. *qp->db.db = 0;
  452. }
  453. if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf)) {
  454. err = -ENOMEM;
  455. goto err_db;
  456. }
  457. err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
  458. &qp->mtt);
  459. if (err)
  460. goto err_buf;
  461. err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf);
  462. if (err)
  463. goto err_mtt;
  464. qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), GFP_KERNEL);
  465. qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), GFP_KERNEL);
  466. if (!qp->sq.wrid || !qp->rq.wrid) {
  467. err = -ENOMEM;
  468. goto err_wrid;
  469. }
  470. }
  471. if (sqpn) {
  472. qpn = sqpn;
  473. } else {
  474. err = mlx4_qp_reserve_range(dev->dev, 1, 1, &qpn);
  475. if (err)
  476. goto err_wrid;
  477. }
  478. err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp);
  479. if (err)
  480. goto err_qpn;
  481. /*
  482. * Hardware wants QPN written in big-endian order (after
  483. * shifting) for send doorbell. Precompute this value to save
  484. * a little bit when posting sends.
  485. */
  486. qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
  487. qp->mqp.event = mlx4_ib_qp_event;
  488. return 0;
  489. err_qpn:
  490. if (!sqpn)
  491. mlx4_qp_release_range(dev->dev, qpn, 1);
  492. err_wrid:
  493. if (pd->uobject) {
  494. if (!init_attr->srq)
  495. mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context),
  496. &qp->db);
  497. } else {
  498. kfree(qp->sq.wrid);
  499. kfree(qp->rq.wrid);
  500. }
  501. err_mtt:
  502. mlx4_mtt_cleanup(dev->dev, &qp->mtt);
  503. err_buf:
  504. if (pd->uobject)
  505. ib_umem_release(qp->umem);
  506. else
  507. mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
  508. err_db:
  509. if (!pd->uobject && !init_attr->srq)
  510. mlx4_db_free(dev->dev, &qp->db);
  511. err:
  512. return err;
  513. }
  514. static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
  515. {
  516. switch (state) {
  517. case IB_QPS_RESET: return MLX4_QP_STATE_RST;
  518. case IB_QPS_INIT: return MLX4_QP_STATE_INIT;
  519. case IB_QPS_RTR: return MLX4_QP_STATE_RTR;
  520. case IB_QPS_RTS: return MLX4_QP_STATE_RTS;
  521. case IB_QPS_SQD: return MLX4_QP_STATE_SQD;
  522. case IB_QPS_SQE: return MLX4_QP_STATE_SQER;
  523. case IB_QPS_ERR: return MLX4_QP_STATE_ERR;
  524. default: return -1;
  525. }
  526. }
  527. static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
  528. __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
  529. {
  530. if (send_cq == recv_cq) {
  531. spin_lock_irq(&send_cq->lock);
  532. __acquire(&recv_cq->lock);
  533. } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
  534. spin_lock_irq(&send_cq->lock);
  535. spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
  536. } else {
  537. spin_lock_irq(&recv_cq->lock);
  538. spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
  539. }
  540. }
  541. static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
  542. __releases(&send_cq->lock) __releases(&recv_cq->lock)
  543. {
  544. if (send_cq == recv_cq) {
  545. __release(&recv_cq->lock);
  546. spin_unlock_irq(&send_cq->lock);
  547. } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
  548. spin_unlock(&recv_cq->lock);
  549. spin_unlock_irq(&send_cq->lock);
  550. } else {
  551. spin_unlock(&send_cq->lock);
  552. spin_unlock_irq(&recv_cq->lock);
  553. }
  554. }
  555. static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
  556. int is_user)
  557. {
  558. struct mlx4_ib_cq *send_cq, *recv_cq;
  559. if (qp->state != IB_QPS_RESET)
  560. if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
  561. MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
  562. printk(KERN_WARNING "mlx4_ib: modify QP %06x to RESET failed.\n",
  563. qp->mqp.qpn);
  564. send_cq = to_mcq(qp->ibqp.send_cq);
  565. recv_cq = to_mcq(qp->ibqp.recv_cq);
  566. mlx4_ib_lock_cqs(send_cq, recv_cq);
  567. if (!is_user) {
  568. __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
  569. qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
  570. if (send_cq != recv_cq)
  571. __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
  572. }
  573. mlx4_qp_remove(dev->dev, &qp->mqp);
  574. mlx4_ib_unlock_cqs(send_cq, recv_cq);
  575. mlx4_qp_free(dev->dev, &qp->mqp);
  576. if (!is_sqp(dev, qp))
  577. mlx4_qp_release_range(dev->dev, qp->mqp.qpn, 1);
  578. mlx4_mtt_cleanup(dev->dev, &qp->mtt);
  579. if (is_user) {
  580. if (!qp->ibqp.srq)
  581. mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
  582. &qp->db);
  583. ib_umem_release(qp->umem);
  584. } else {
  585. kfree(qp->sq.wrid);
  586. kfree(qp->rq.wrid);
  587. mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
  588. if (!qp->ibqp.srq)
  589. mlx4_db_free(dev->dev, &qp->db);
  590. }
  591. }
  592. struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
  593. struct ib_qp_init_attr *init_attr,
  594. struct ib_udata *udata)
  595. {
  596. struct mlx4_ib_dev *dev = to_mdev(pd->device);
  597. struct mlx4_ib_sqp *sqp;
  598. struct mlx4_ib_qp *qp;
  599. int err;
  600. /*
  601. * We only support LSO and multicast loopback blocking, and
  602. * only for kernel UD QPs.
  603. */
  604. if (init_attr->create_flags & ~(IB_QP_CREATE_IPOIB_UD_LSO |
  605. IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK))
  606. return ERR_PTR(-EINVAL);
  607. if (init_attr->create_flags &&
  608. (pd->uobject || init_attr->qp_type != IB_QPT_UD))
  609. return ERR_PTR(-EINVAL);
  610. switch (init_attr->qp_type) {
  611. case IB_QPT_RC:
  612. case IB_QPT_UC:
  613. case IB_QPT_UD:
  614. {
  615. qp = kzalloc(sizeof *qp, GFP_KERNEL);
  616. if (!qp)
  617. return ERR_PTR(-ENOMEM);
  618. err = create_qp_common(dev, pd, init_attr, udata, 0, qp);
  619. if (err) {
  620. kfree(qp);
  621. return ERR_PTR(err);
  622. }
  623. qp->ibqp.qp_num = qp->mqp.qpn;
  624. break;
  625. }
  626. case IB_QPT_SMI:
  627. case IB_QPT_GSI:
  628. {
  629. /* Userspace is not allowed to create special QPs: */
  630. if (pd->uobject)
  631. return ERR_PTR(-EINVAL);
  632. sqp = kzalloc(sizeof *sqp, GFP_KERNEL);
  633. if (!sqp)
  634. return ERR_PTR(-ENOMEM);
  635. qp = &sqp->qp;
  636. err = create_qp_common(dev, pd, init_attr, udata,
  637. dev->dev->caps.sqp_start +
  638. (init_attr->qp_type == IB_QPT_SMI ? 0 : 2) +
  639. init_attr->port_num - 1,
  640. qp);
  641. if (err) {
  642. kfree(sqp);
  643. return ERR_PTR(err);
  644. }
  645. qp->port = init_attr->port_num;
  646. qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
  647. break;
  648. }
  649. default:
  650. /* Don't support raw QPs */
  651. return ERR_PTR(-EINVAL);
  652. }
  653. return &qp->ibqp;
  654. }
  655. int mlx4_ib_destroy_qp(struct ib_qp *qp)
  656. {
  657. struct mlx4_ib_dev *dev = to_mdev(qp->device);
  658. struct mlx4_ib_qp *mqp = to_mqp(qp);
  659. if (is_qp0(dev, mqp))
  660. mlx4_CLOSE_PORT(dev->dev, mqp->port);
  661. destroy_qp_common(dev, mqp, !!qp->pd->uobject);
  662. if (is_sqp(dev, mqp))
  663. kfree(to_msqp(mqp));
  664. else
  665. kfree(mqp);
  666. return 0;
  667. }
  668. static int to_mlx4_st(enum ib_qp_type type)
  669. {
  670. switch (type) {
  671. case IB_QPT_RC: return MLX4_QP_ST_RC;
  672. case IB_QPT_UC: return MLX4_QP_ST_UC;
  673. case IB_QPT_UD: return MLX4_QP_ST_UD;
  674. case IB_QPT_SMI:
  675. case IB_QPT_GSI: return MLX4_QP_ST_MLX;
  676. default: return -1;
  677. }
  678. }
  679. static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
  680. int attr_mask)
  681. {
  682. u8 dest_rd_atomic;
  683. u32 access_flags;
  684. u32 hw_access_flags = 0;
  685. if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
  686. dest_rd_atomic = attr->max_dest_rd_atomic;
  687. else
  688. dest_rd_atomic = qp->resp_depth;
  689. if (attr_mask & IB_QP_ACCESS_FLAGS)
  690. access_flags = attr->qp_access_flags;
  691. else
  692. access_flags = qp->atomic_rd_en;
  693. if (!dest_rd_atomic)
  694. access_flags &= IB_ACCESS_REMOTE_WRITE;
  695. if (access_flags & IB_ACCESS_REMOTE_READ)
  696. hw_access_flags |= MLX4_QP_BIT_RRE;
  697. if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
  698. hw_access_flags |= MLX4_QP_BIT_RAE;
  699. if (access_flags & IB_ACCESS_REMOTE_WRITE)
  700. hw_access_flags |= MLX4_QP_BIT_RWE;
  701. return cpu_to_be32(hw_access_flags);
  702. }
  703. static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
  704. int attr_mask)
  705. {
  706. if (attr_mask & IB_QP_PKEY_INDEX)
  707. sqp->pkey_index = attr->pkey_index;
  708. if (attr_mask & IB_QP_QKEY)
  709. sqp->qkey = attr->qkey;
  710. if (attr_mask & IB_QP_SQ_PSN)
  711. sqp->send_psn = attr->sq_psn;
  712. }
  713. static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
  714. {
  715. path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
  716. }
  717. static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
  718. struct mlx4_qp_path *path, u8 port)
  719. {
  720. path->grh_mylmc = ah->src_path_bits & 0x7f;
  721. path->rlid = cpu_to_be16(ah->dlid);
  722. if (ah->static_rate) {
  723. path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
  724. while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
  725. !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
  726. --path->static_rate;
  727. } else
  728. path->static_rate = 0;
  729. path->counter_index = 0xff;
  730. if (ah->ah_flags & IB_AH_GRH) {
  731. if (ah->grh.sgid_index >= dev->dev->caps.gid_table_len[port]) {
  732. printk(KERN_ERR "sgid_index (%u) too large. max is %d\n",
  733. ah->grh.sgid_index, dev->dev->caps.gid_table_len[port] - 1);
  734. return -1;
  735. }
  736. path->grh_mylmc |= 1 << 7;
  737. path->mgid_index = ah->grh.sgid_index;
  738. path->hop_limit = ah->grh.hop_limit;
  739. path->tclass_flowlabel =
  740. cpu_to_be32((ah->grh.traffic_class << 20) |
  741. (ah->grh.flow_label));
  742. memcpy(path->rgid, ah->grh.dgid.raw, 16);
  743. }
  744. path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
  745. ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
  746. return 0;
  747. }
  748. static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
  749. const struct ib_qp_attr *attr, int attr_mask,
  750. enum ib_qp_state cur_state, enum ib_qp_state new_state)
  751. {
  752. struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
  753. struct mlx4_ib_qp *qp = to_mqp(ibqp);
  754. struct mlx4_qp_context *context;
  755. enum mlx4_qp_optpar optpar = 0;
  756. int sqd_event;
  757. int err = -EINVAL;
  758. context = kzalloc(sizeof *context, GFP_KERNEL);
  759. if (!context)
  760. return -ENOMEM;
  761. context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
  762. (to_mlx4_st(ibqp->qp_type) << 16));
  763. context->flags |= cpu_to_be32(1 << 8); /* DE? */
  764. if (!(attr_mask & IB_QP_PATH_MIG_STATE))
  765. context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
  766. else {
  767. optpar |= MLX4_QP_OPTPAR_PM_STATE;
  768. switch (attr->path_mig_state) {
  769. case IB_MIG_MIGRATED:
  770. context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
  771. break;
  772. case IB_MIG_REARM:
  773. context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
  774. break;
  775. case IB_MIG_ARMED:
  776. context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
  777. break;
  778. }
  779. }
  780. if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI)
  781. context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
  782. else if (ibqp->qp_type == IB_QPT_UD) {
  783. if (qp->flags & MLX4_IB_QP_LSO)
  784. context->mtu_msgmax = (IB_MTU_4096 << 5) |
  785. ilog2(dev->dev->caps.max_gso_sz);
  786. else
  787. context->mtu_msgmax = (IB_MTU_4096 << 5) | 12;
  788. } else if (attr_mask & IB_QP_PATH_MTU) {
  789. if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
  790. printk(KERN_ERR "path MTU (%u) is invalid\n",
  791. attr->path_mtu);
  792. goto out;
  793. }
  794. context->mtu_msgmax = (attr->path_mtu << 5) |
  795. ilog2(dev->dev->caps.max_msg_sz);
  796. }
  797. if (qp->rq.wqe_cnt)
  798. context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
  799. context->rq_size_stride |= qp->rq.wqe_shift - 4;
  800. if (qp->sq.wqe_cnt)
  801. context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
  802. context->sq_size_stride |= qp->sq.wqe_shift - 4;
  803. if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
  804. context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
  805. if (qp->ibqp.uobject)
  806. context->usr_page = cpu_to_be32(to_mucontext(ibqp->uobject->context)->uar.index);
  807. else
  808. context->usr_page = cpu_to_be32(dev->priv_uar.index);
  809. if (attr_mask & IB_QP_DEST_QPN)
  810. context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
  811. if (attr_mask & IB_QP_PORT) {
  812. if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
  813. !(attr_mask & IB_QP_AV)) {
  814. mlx4_set_sched(&context->pri_path, attr->port_num);
  815. optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
  816. }
  817. }
  818. if (attr_mask & IB_QP_PKEY_INDEX) {
  819. context->pri_path.pkey_index = attr->pkey_index;
  820. optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
  821. }
  822. if (attr_mask & IB_QP_AV) {
  823. if (mlx4_set_path(dev, &attr->ah_attr, &context->pri_path,
  824. attr_mask & IB_QP_PORT ? attr->port_num : qp->port))
  825. goto out;
  826. optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
  827. MLX4_QP_OPTPAR_SCHED_QUEUE);
  828. }
  829. if (attr_mask & IB_QP_TIMEOUT) {
  830. context->pri_path.ackto = attr->timeout << 3;
  831. optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
  832. }
  833. if (attr_mask & IB_QP_ALT_PATH) {
  834. if (attr->alt_port_num == 0 ||
  835. attr->alt_port_num > dev->dev->caps.num_ports)
  836. goto out;
  837. if (attr->alt_pkey_index >=
  838. dev->dev->caps.pkey_table_len[attr->alt_port_num])
  839. goto out;
  840. if (mlx4_set_path(dev, &attr->alt_ah_attr, &context->alt_path,
  841. attr->alt_port_num))
  842. goto out;
  843. context->alt_path.pkey_index = attr->alt_pkey_index;
  844. context->alt_path.ackto = attr->alt_timeout << 3;
  845. optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
  846. }
  847. context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pdn);
  848. context->params1 = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
  849. /* Set "fast registration enabled" for all kernel QPs */
  850. if (!qp->ibqp.uobject)
  851. context->params1 |= cpu_to_be32(1 << 11);
  852. if (attr_mask & IB_QP_RNR_RETRY) {
  853. context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
  854. optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
  855. }
  856. if (attr_mask & IB_QP_RETRY_CNT) {
  857. context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
  858. optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
  859. }
  860. if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
  861. if (attr->max_rd_atomic)
  862. context->params1 |=
  863. cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
  864. optpar |= MLX4_QP_OPTPAR_SRA_MAX;
  865. }
  866. if (attr_mask & IB_QP_SQ_PSN)
  867. context->next_send_psn = cpu_to_be32(attr->sq_psn);
  868. context->cqn_send = cpu_to_be32(to_mcq(ibqp->send_cq)->mcq.cqn);
  869. if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
  870. if (attr->max_dest_rd_atomic)
  871. context->params2 |=
  872. cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
  873. optpar |= MLX4_QP_OPTPAR_RRA_MAX;
  874. }
  875. if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
  876. context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
  877. optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
  878. }
  879. if (ibqp->srq)
  880. context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
  881. if (attr_mask & IB_QP_MIN_RNR_TIMER) {
  882. context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
  883. optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
  884. }
  885. if (attr_mask & IB_QP_RQ_PSN)
  886. context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
  887. context->cqn_recv = cpu_to_be32(to_mcq(ibqp->recv_cq)->mcq.cqn);
  888. if (attr_mask & IB_QP_QKEY) {
  889. context->qkey = cpu_to_be32(attr->qkey);
  890. optpar |= MLX4_QP_OPTPAR_Q_KEY;
  891. }
  892. if (ibqp->srq)
  893. context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
  894. if (!ibqp->srq && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
  895. context->db_rec_addr = cpu_to_be64(qp->db.dma);
  896. if (cur_state == IB_QPS_INIT &&
  897. new_state == IB_QPS_RTR &&
  898. (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
  899. ibqp->qp_type == IB_QPT_UD)) {
  900. context->pri_path.sched_queue = (qp->port - 1) << 6;
  901. if (is_qp0(dev, qp))
  902. context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
  903. else
  904. context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
  905. }
  906. if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
  907. attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
  908. sqd_event = 1;
  909. else
  910. sqd_event = 0;
  911. if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
  912. context->rlkey |= (1 << 4);
  913. /*
  914. * Before passing a kernel QP to the HW, make sure that the
  915. * ownership bits of the send queue are set and the SQ
  916. * headroom is stamped so that the hardware doesn't start
  917. * processing stale work requests.
  918. */
  919. if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
  920. struct mlx4_wqe_ctrl_seg *ctrl;
  921. int i;
  922. for (i = 0; i < qp->sq.wqe_cnt; ++i) {
  923. ctrl = get_send_wqe(qp, i);
  924. ctrl->owner_opcode = cpu_to_be32(1 << 31);
  925. if (qp->sq_max_wqes_per_wr == 1)
  926. ctrl->fence_size = 1 << (qp->sq.wqe_shift - 4);
  927. stamp_send_wqe(qp, i, 1 << qp->sq.wqe_shift);
  928. }
  929. }
  930. err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
  931. to_mlx4_state(new_state), context, optpar,
  932. sqd_event, &qp->mqp);
  933. if (err)
  934. goto out;
  935. qp->state = new_state;
  936. if (attr_mask & IB_QP_ACCESS_FLAGS)
  937. qp->atomic_rd_en = attr->qp_access_flags;
  938. if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
  939. qp->resp_depth = attr->max_dest_rd_atomic;
  940. if (attr_mask & IB_QP_PORT)
  941. qp->port = attr->port_num;
  942. if (attr_mask & IB_QP_ALT_PATH)
  943. qp->alt_port = attr->alt_port_num;
  944. if (is_sqp(dev, qp))
  945. store_sqp_attrs(to_msqp(qp), attr, attr_mask);
  946. /*
  947. * If we moved QP0 to RTR, bring the IB link up; if we moved
  948. * QP0 to RESET or ERROR, bring the link back down.
  949. */
  950. if (is_qp0(dev, qp)) {
  951. if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
  952. if (mlx4_INIT_PORT(dev->dev, qp->port))
  953. printk(KERN_WARNING "INIT_PORT failed for port %d\n",
  954. qp->port);
  955. if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
  956. (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
  957. mlx4_CLOSE_PORT(dev->dev, qp->port);
  958. }
  959. /*
  960. * If we moved a kernel QP to RESET, clean up all old CQ
  961. * entries and reinitialize the QP.
  962. */
  963. if (new_state == IB_QPS_RESET && !ibqp->uobject) {
  964. mlx4_ib_cq_clean(to_mcq(ibqp->recv_cq), qp->mqp.qpn,
  965. ibqp->srq ? to_msrq(ibqp->srq): NULL);
  966. if (ibqp->send_cq != ibqp->recv_cq)
  967. mlx4_ib_cq_clean(to_mcq(ibqp->send_cq), qp->mqp.qpn, NULL);
  968. qp->rq.head = 0;
  969. qp->rq.tail = 0;
  970. qp->sq.head = 0;
  971. qp->sq.tail = 0;
  972. qp->sq_next_wqe = 0;
  973. if (!ibqp->srq)
  974. *qp->db.db = 0;
  975. }
  976. out:
  977. kfree(context);
  978. return err;
  979. }
  980. int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
  981. int attr_mask, struct ib_udata *udata)
  982. {
  983. struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
  984. struct mlx4_ib_qp *qp = to_mqp(ibqp);
  985. enum ib_qp_state cur_state, new_state;
  986. int err = -EINVAL;
  987. mutex_lock(&qp->mutex);
  988. cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
  989. new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
  990. if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type, attr_mask))
  991. goto out;
  992. if ((attr_mask & IB_QP_PORT) &&
  993. (attr->port_num == 0 || attr->port_num > dev->dev->caps.num_ports)) {
  994. goto out;
  995. }
  996. if (attr_mask & IB_QP_PKEY_INDEX) {
  997. int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
  998. if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p])
  999. goto out;
  1000. }
  1001. if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
  1002. attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
  1003. goto out;
  1004. }
  1005. if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
  1006. attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
  1007. goto out;
  1008. }
  1009. if (cur_state == new_state && cur_state == IB_QPS_RESET) {
  1010. err = 0;
  1011. goto out;
  1012. }
  1013. err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
  1014. out:
  1015. mutex_unlock(&qp->mutex);
  1016. return err;
  1017. }
  1018. static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_send_wr *wr,
  1019. void *wqe, unsigned *mlx_seg_len)
  1020. {
  1021. struct ib_device *ib_dev = &to_mdev(sqp->qp.ibqp.device)->ib_dev;
  1022. struct mlx4_wqe_mlx_seg *mlx = wqe;
  1023. struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
  1024. struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
  1025. u16 pkey;
  1026. int send_size;
  1027. int header_size;
  1028. int spc;
  1029. int i;
  1030. send_size = 0;
  1031. for (i = 0; i < wr->num_sge; ++i)
  1032. send_size += wr->sg_list[i].length;
  1033. ib_ud_header_init(send_size, mlx4_ib_ah_grh_present(ah), &sqp->ud_header);
  1034. sqp->ud_header.lrh.service_level =
  1035. be32_to_cpu(ah->av.sl_tclass_flowlabel) >> 28;
  1036. sqp->ud_header.lrh.destination_lid = ah->av.dlid;
  1037. sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.g_slid & 0x7f);
  1038. if (mlx4_ib_ah_grh_present(ah)) {
  1039. sqp->ud_header.grh.traffic_class =
  1040. (be32_to_cpu(ah->av.sl_tclass_flowlabel) >> 20) & 0xff;
  1041. sqp->ud_header.grh.flow_label =
  1042. ah->av.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
  1043. sqp->ud_header.grh.hop_limit = ah->av.hop_limit;
  1044. ib_get_cached_gid(ib_dev, be32_to_cpu(ah->av.port_pd) >> 24,
  1045. ah->av.gid_index, &sqp->ud_header.grh.source_gid);
  1046. memcpy(sqp->ud_header.grh.destination_gid.raw,
  1047. ah->av.dgid, 16);
  1048. }
  1049. mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
  1050. mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
  1051. (sqp->ud_header.lrh.destination_lid ==
  1052. IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
  1053. (sqp->ud_header.lrh.service_level << 8));
  1054. mlx->rlid = sqp->ud_header.lrh.destination_lid;
  1055. switch (wr->opcode) {
  1056. case IB_WR_SEND:
  1057. sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
  1058. sqp->ud_header.immediate_present = 0;
  1059. break;
  1060. case IB_WR_SEND_WITH_IMM:
  1061. sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
  1062. sqp->ud_header.immediate_present = 1;
  1063. sqp->ud_header.immediate_data = wr->ex.imm_data;
  1064. break;
  1065. default:
  1066. return -EINVAL;
  1067. }
  1068. sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
  1069. if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
  1070. sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
  1071. sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
  1072. if (!sqp->qp.ibqp.qp_num)
  1073. ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index, &pkey);
  1074. else
  1075. ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->wr.ud.pkey_index, &pkey);
  1076. sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
  1077. sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
  1078. sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
  1079. sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
  1080. sqp->qkey : wr->wr.ud.remote_qkey);
  1081. sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
  1082. header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
  1083. if (0) {
  1084. printk(KERN_ERR "built UD header of size %d:\n", header_size);
  1085. for (i = 0; i < header_size / 4; ++i) {
  1086. if (i % 8 == 0)
  1087. printk(" [%02x] ", i * 4);
  1088. printk(" %08x",
  1089. be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
  1090. if ((i + 1) % 8 == 0)
  1091. printk("\n");
  1092. }
  1093. printk("\n");
  1094. }
  1095. /*
  1096. * Inline data segments may not cross a 64 byte boundary. If
  1097. * our UD header is bigger than the space available up to the
  1098. * next 64 byte boundary in the WQE, use two inline data
  1099. * segments to hold the UD header.
  1100. */
  1101. spc = MLX4_INLINE_ALIGN -
  1102. ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
  1103. if (header_size <= spc) {
  1104. inl->byte_count = cpu_to_be32(1 << 31 | header_size);
  1105. memcpy(inl + 1, sqp->header_buf, header_size);
  1106. i = 1;
  1107. } else {
  1108. inl->byte_count = cpu_to_be32(1 << 31 | spc);
  1109. memcpy(inl + 1, sqp->header_buf, spc);
  1110. inl = (void *) (inl + 1) + spc;
  1111. memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
  1112. /*
  1113. * Need a barrier here to make sure all the data is
  1114. * visible before the byte_count field is set.
  1115. * Otherwise the HCA prefetcher could grab the 64-byte
  1116. * chunk with this inline segment and get a valid (!=
  1117. * 0xffffffff) byte count but stale data, and end up
  1118. * generating a packet with bad headers.
  1119. *
  1120. * The first inline segment's byte_count field doesn't
  1121. * need a barrier, because it comes after a
  1122. * control/MLX segment and therefore is at an offset
  1123. * of 16 mod 64.
  1124. */
  1125. wmb();
  1126. inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
  1127. i = 2;
  1128. }
  1129. *mlx_seg_len =
  1130. ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
  1131. return 0;
  1132. }
  1133. static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
  1134. {
  1135. unsigned cur;
  1136. struct mlx4_ib_cq *cq;
  1137. cur = wq->head - wq->tail;
  1138. if (likely(cur + nreq < wq->max_post))
  1139. return 0;
  1140. cq = to_mcq(ib_cq);
  1141. spin_lock(&cq->lock);
  1142. cur = wq->head - wq->tail;
  1143. spin_unlock(&cq->lock);
  1144. return cur + nreq >= wq->max_post;
  1145. }
  1146. static __be32 convert_access(int acc)
  1147. {
  1148. return (acc & IB_ACCESS_REMOTE_ATOMIC ? cpu_to_be32(MLX4_WQE_FMR_PERM_ATOMIC) : 0) |
  1149. (acc & IB_ACCESS_REMOTE_WRITE ? cpu_to_be32(MLX4_WQE_FMR_PERM_REMOTE_WRITE) : 0) |
  1150. (acc & IB_ACCESS_REMOTE_READ ? cpu_to_be32(MLX4_WQE_FMR_PERM_REMOTE_READ) : 0) |
  1151. (acc & IB_ACCESS_LOCAL_WRITE ? cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_WRITE) : 0) |
  1152. cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_READ);
  1153. }
  1154. static void set_fmr_seg(struct mlx4_wqe_fmr_seg *fseg, struct ib_send_wr *wr)
  1155. {
  1156. struct mlx4_ib_fast_reg_page_list *mfrpl = to_mfrpl(wr->wr.fast_reg.page_list);
  1157. int i;
  1158. for (i = 0; i < wr->wr.fast_reg.page_list_len; ++i)
  1159. mfrpl->mapped_page_list[i] =
  1160. cpu_to_be64(wr->wr.fast_reg.page_list->page_list[i] |
  1161. MLX4_MTT_FLAG_PRESENT);
  1162. fseg->flags = convert_access(wr->wr.fast_reg.access_flags);
  1163. fseg->mem_key = cpu_to_be32(wr->wr.fast_reg.rkey);
  1164. fseg->buf_list = cpu_to_be64(mfrpl->map);
  1165. fseg->start_addr = cpu_to_be64(wr->wr.fast_reg.iova_start);
  1166. fseg->reg_len = cpu_to_be64(wr->wr.fast_reg.length);
  1167. fseg->offset = 0; /* XXX -- is this just for ZBVA? */
  1168. fseg->page_size = cpu_to_be32(wr->wr.fast_reg.page_shift);
  1169. fseg->reserved[0] = 0;
  1170. fseg->reserved[1] = 0;
  1171. }
  1172. static void set_local_inv_seg(struct mlx4_wqe_local_inval_seg *iseg, u32 rkey)
  1173. {
  1174. iseg->flags = 0;
  1175. iseg->mem_key = cpu_to_be32(rkey);
  1176. iseg->guest_id = 0;
  1177. iseg->pa = 0;
  1178. }
  1179. static __always_inline void set_raddr_seg(struct mlx4_wqe_raddr_seg *rseg,
  1180. u64 remote_addr, u32 rkey)
  1181. {
  1182. rseg->raddr = cpu_to_be64(remote_addr);
  1183. rseg->rkey = cpu_to_be32(rkey);
  1184. rseg->reserved = 0;
  1185. }
  1186. static void set_atomic_seg(struct mlx4_wqe_atomic_seg *aseg, struct ib_send_wr *wr)
  1187. {
  1188. if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
  1189. aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
  1190. aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
  1191. } else {
  1192. aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
  1193. aseg->compare = 0;
  1194. }
  1195. }
  1196. static void set_datagram_seg(struct mlx4_wqe_datagram_seg *dseg,
  1197. struct ib_send_wr *wr)
  1198. {
  1199. memcpy(dseg->av, &to_mah(wr->wr.ud.ah)->av, sizeof (struct mlx4_av));
  1200. dseg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
  1201. dseg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
  1202. }
  1203. static void set_mlx_icrc_seg(void *dseg)
  1204. {
  1205. u32 *t = dseg;
  1206. struct mlx4_wqe_inline_seg *iseg = dseg;
  1207. t[1] = 0;
  1208. /*
  1209. * Need a barrier here before writing the byte_count field to
  1210. * make sure that all the data is visible before the
  1211. * byte_count field is set. Otherwise, if the segment begins
  1212. * a new cacheline, the HCA prefetcher could grab the 64-byte
  1213. * chunk and get a valid (!= * 0xffffffff) byte count but
  1214. * stale data, and end up sending the wrong data.
  1215. */
  1216. wmb();
  1217. iseg->byte_count = cpu_to_be32((1 << 31) | 4);
  1218. }
  1219. static void set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
  1220. {
  1221. dseg->lkey = cpu_to_be32(sg->lkey);
  1222. dseg->addr = cpu_to_be64(sg->addr);
  1223. /*
  1224. * Need a barrier here before writing the byte_count field to
  1225. * make sure that all the data is visible before the
  1226. * byte_count field is set. Otherwise, if the segment begins
  1227. * a new cacheline, the HCA prefetcher could grab the 64-byte
  1228. * chunk and get a valid (!= * 0xffffffff) byte count but
  1229. * stale data, and end up sending the wrong data.
  1230. */
  1231. wmb();
  1232. dseg->byte_count = cpu_to_be32(sg->length);
  1233. }
  1234. static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
  1235. {
  1236. dseg->byte_count = cpu_to_be32(sg->length);
  1237. dseg->lkey = cpu_to_be32(sg->lkey);
  1238. dseg->addr = cpu_to_be64(sg->addr);
  1239. }
  1240. static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_send_wr *wr,
  1241. struct mlx4_ib_qp *qp, unsigned *lso_seg_len,
  1242. __be32 *lso_hdr_sz)
  1243. {
  1244. unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16);
  1245. /*
  1246. * This is a temporary limitation and will be removed in
  1247. * a forthcoming FW release:
  1248. */
  1249. if (unlikely(halign > 64))
  1250. return -EINVAL;
  1251. if (unlikely(!(qp->flags & MLX4_IB_QP_LSO) &&
  1252. wr->num_sge > qp->sq.max_gs - (halign >> 4)))
  1253. return -EINVAL;
  1254. memcpy(wqe->header, wr->wr.ud.header, wr->wr.ud.hlen);
  1255. *lso_hdr_sz = cpu_to_be32((wr->wr.ud.mss - wr->wr.ud.hlen) << 16 |
  1256. wr->wr.ud.hlen);
  1257. *lso_seg_len = halign;
  1258. return 0;
  1259. }
  1260. static __be32 send_ieth(struct ib_send_wr *wr)
  1261. {
  1262. switch (wr->opcode) {
  1263. case IB_WR_SEND_WITH_IMM:
  1264. case IB_WR_RDMA_WRITE_WITH_IMM:
  1265. return wr->ex.imm_data;
  1266. case IB_WR_SEND_WITH_INV:
  1267. return cpu_to_be32(wr->ex.invalidate_rkey);
  1268. default:
  1269. return 0;
  1270. }
  1271. }
  1272. int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
  1273. struct ib_send_wr **bad_wr)
  1274. {
  1275. struct mlx4_ib_qp *qp = to_mqp(ibqp);
  1276. void *wqe;
  1277. struct mlx4_wqe_ctrl_seg *ctrl;
  1278. struct mlx4_wqe_data_seg *dseg;
  1279. unsigned long flags;
  1280. int nreq;
  1281. int err = 0;
  1282. unsigned ind;
  1283. int uninitialized_var(stamp);
  1284. int uninitialized_var(size);
  1285. unsigned uninitialized_var(seglen);
  1286. __be32 dummy;
  1287. __be32 *lso_wqe;
  1288. __be32 uninitialized_var(lso_hdr_sz);
  1289. int i;
  1290. spin_lock_irqsave(&qp->sq.lock, flags);
  1291. ind = qp->sq_next_wqe;
  1292. for (nreq = 0; wr; ++nreq, wr = wr->next) {
  1293. lso_wqe = &dummy;
  1294. if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
  1295. err = -ENOMEM;
  1296. *bad_wr = wr;
  1297. goto out;
  1298. }
  1299. if (unlikely(wr->num_sge > qp->sq.max_gs)) {
  1300. err = -EINVAL;
  1301. *bad_wr = wr;
  1302. goto out;
  1303. }
  1304. ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
  1305. qp->sq.wrid[(qp->sq.head + nreq) & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
  1306. ctrl->srcrb_flags =
  1307. (wr->send_flags & IB_SEND_SIGNALED ?
  1308. cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
  1309. (wr->send_flags & IB_SEND_SOLICITED ?
  1310. cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
  1311. ((wr->send_flags & IB_SEND_IP_CSUM) ?
  1312. cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
  1313. MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0) |
  1314. qp->sq_signal_bits;
  1315. ctrl->imm = send_ieth(wr);
  1316. wqe += sizeof *ctrl;
  1317. size = sizeof *ctrl / 16;
  1318. switch (ibqp->qp_type) {
  1319. case IB_QPT_RC:
  1320. case IB_QPT_UC:
  1321. switch (wr->opcode) {
  1322. case IB_WR_ATOMIC_CMP_AND_SWP:
  1323. case IB_WR_ATOMIC_FETCH_AND_ADD:
  1324. set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
  1325. wr->wr.atomic.rkey);
  1326. wqe += sizeof (struct mlx4_wqe_raddr_seg);
  1327. set_atomic_seg(wqe, wr);
  1328. wqe += sizeof (struct mlx4_wqe_atomic_seg);
  1329. size += (sizeof (struct mlx4_wqe_raddr_seg) +
  1330. sizeof (struct mlx4_wqe_atomic_seg)) / 16;
  1331. break;
  1332. case IB_WR_RDMA_READ:
  1333. case IB_WR_RDMA_WRITE:
  1334. case IB_WR_RDMA_WRITE_WITH_IMM:
  1335. set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
  1336. wr->wr.rdma.rkey);
  1337. wqe += sizeof (struct mlx4_wqe_raddr_seg);
  1338. size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
  1339. break;
  1340. case IB_WR_LOCAL_INV:
  1341. ctrl->srcrb_flags |=
  1342. cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
  1343. set_local_inv_seg(wqe, wr->ex.invalidate_rkey);
  1344. wqe += sizeof (struct mlx4_wqe_local_inval_seg);
  1345. size += sizeof (struct mlx4_wqe_local_inval_seg) / 16;
  1346. break;
  1347. case IB_WR_FAST_REG_MR:
  1348. ctrl->srcrb_flags |=
  1349. cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
  1350. set_fmr_seg(wqe, wr);
  1351. wqe += sizeof (struct mlx4_wqe_fmr_seg);
  1352. size += sizeof (struct mlx4_wqe_fmr_seg) / 16;
  1353. break;
  1354. default:
  1355. /* No extra segments required for sends */
  1356. break;
  1357. }
  1358. break;
  1359. case IB_QPT_UD:
  1360. set_datagram_seg(wqe, wr);
  1361. wqe += sizeof (struct mlx4_wqe_datagram_seg);
  1362. size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
  1363. if (wr->opcode == IB_WR_LSO) {
  1364. err = build_lso_seg(wqe, wr, qp, &seglen, &lso_hdr_sz);
  1365. if (unlikely(err)) {
  1366. *bad_wr = wr;
  1367. goto out;
  1368. }
  1369. lso_wqe = (__be32 *) wqe;
  1370. wqe += seglen;
  1371. size += seglen / 16;
  1372. }
  1373. break;
  1374. case IB_QPT_SMI:
  1375. case IB_QPT_GSI:
  1376. err = build_mlx_header(to_msqp(qp), wr, ctrl, &seglen);
  1377. if (unlikely(err)) {
  1378. *bad_wr = wr;
  1379. goto out;
  1380. }
  1381. wqe += seglen;
  1382. size += seglen / 16;
  1383. break;
  1384. default:
  1385. break;
  1386. }
  1387. /*
  1388. * Write data segments in reverse order, so as to
  1389. * overwrite cacheline stamp last within each
  1390. * cacheline. This avoids issues with WQE
  1391. * prefetching.
  1392. */
  1393. dseg = wqe;
  1394. dseg += wr->num_sge - 1;
  1395. size += wr->num_sge * (sizeof (struct mlx4_wqe_data_seg) / 16);
  1396. /* Add one more inline data segment for ICRC for MLX sends */
  1397. if (unlikely(qp->ibqp.qp_type == IB_QPT_SMI ||
  1398. qp->ibqp.qp_type == IB_QPT_GSI)) {
  1399. set_mlx_icrc_seg(dseg + 1);
  1400. size += sizeof (struct mlx4_wqe_data_seg) / 16;
  1401. }
  1402. for (i = wr->num_sge - 1; i >= 0; --i, --dseg)
  1403. set_data_seg(dseg, wr->sg_list + i);
  1404. /*
  1405. * Possibly overwrite stamping in cacheline with LSO
  1406. * segment only after making sure all data segments
  1407. * are written.
  1408. */
  1409. wmb();
  1410. *lso_wqe = lso_hdr_sz;
  1411. ctrl->fence_size = (wr->send_flags & IB_SEND_FENCE ?
  1412. MLX4_WQE_CTRL_FENCE : 0) | size;
  1413. /*
  1414. * Make sure descriptor is fully written before
  1415. * setting ownership bit (because HW can start
  1416. * executing as soon as we do).
  1417. */
  1418. wmb();
  1419. if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
  1420. err = -EINVAL;
  1421. goto out;
  1422. }
  1423. ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
  1424. (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
  1425. stamp = ind + qp->sq_spare_wqes;
  1426. ind += DIV_ROUND_UP(size * 16, 1U << qp->sq.wqe_shift);
  1427. /*
  1428. * We can improve latency by not stamping the last
  1429. * send queue WQE until after ringing the doorbell, so
  1430. * only stamp here if there are still more WQEs to post.
  1431. *
  1432. * Same optimization applies to padding with NOP wqe
  1433. * in case of WQE shrinking (used to prevent wrap-around
  1434. * in the middle of WR).
  1435. */
  1436. if (wr->next) {
  1437. stamp_send_wqe(qp, stamp, size * 16);
  1438. ind = pad_wraparound(qp, ind);
  1439. }
  1440. }
  1441. out:
  1442. if (likely(nreq)) {
  1443. qp->sq.head += nreq;
  1444. /*
  1445. * Make sure that descriptors are written before
  1446. * doorbell record.
  1447. */
  1448. wmb();
  1449. writel(qp->doorbell_qpn,
  1450. to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
  1451. /*
  1452. * Make sure doorbells don't leak out of SQ spinlock
  1453. * and reach the HCA out of order.
  1454. */
  1455. mmiowb();
  1456. stamp_send_wqe(qp, stamp, size * 16);
  1457. ind = pad_wraparound(qp, ind);
  1458. qp->sq_next_wqe = ind;
  1459. }
  1460. spin_unlock_irqrestore(&qp->sq.lock, flags);
  1461. return err;
  1462. }
  1463. int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
  1464. struct ib_recv_wr **bad_wr)
  1465. {
  1466. struct mlx4_ib_qp *qp = to_mqp(ibqp);
  1467. struct mlx4_wqe_data_seg *scat;
  1468. unsigned long flags;
  1469. int err = 0;
  1470. int nreq;
  1471. int ind;
  1472. int i;
  1473. spin_lock_irqsave(&qp->rq.lock, flags);
  1474. ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
  1475. for (nreq = 0; wr; ++nreq, wr = wr->next) {
  1476. if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.send_cq)) {
  1477. err = -ENOMEM;
  1478. *bad_wr = wr;
  1479. goto out;
  1480. }
  1481. if (unlikely(wr->num_sge > qp->rq.max_gs)) {
  1482. err = -EINVAL;
  1483. *bad_wr = wr;
  1484. goto out;
  1485. }
  1486. scat = get_recv_wqe(qp, ind);
  1487. for (i = 0; i < wr->num_sge; ++i)
  1488. __set_data_seg(scat + i, wr->sg_list + i);
  1489. if (i < qp->rq.max_gs) {
  1490. scat[i].byte_count = 0;
  1491. scat[i].lkey = cpu_to_be32(MLX4_INVALID_LKEY);
  1492. scat[i].addr = 0;
  1493. }
  1494. qp->rq.wrid[ind] = wr->wr_id;
  1495. ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
  1496. }
  1497. out:
  1498. if (likely(nreq)) {
  1499. qp->rq.head += nreq;
  1500. /*
  1501. * Make sure that descriptors are written before
  1502. * doorbell record.
  1503. */
  1504. wmb();
  1505. *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
  1506. }
  1507. spin_unlock_irqrestore(&qp->rq.lock, flags);
  1508. return err;
  1509. }
  1510. static inline enum ib_qp_state to_ib_qp_state(enum mlx4_qp_state mlx4_state)
  1511. {
  1512. switch (mlx4_state) {
  1513. case MLX4_QP_STATE_RST: return IB_QPS_RESET;
  1514. case MLX4_QP_STATE_INIT: return IB_QPS_INIT;
  1515. case MLX4_QP_STATE_RTR: return IB_QPS_RTR;
  1516. case MLX4_QP_STATE_RTS: return IB_QPS_RTS;
  1517. case MLX4_QP_STATE_SQ_DRAINING:
  1518. case MLX4_QP_STATE_SQD: return IB_QPS_SQD;
  1519. case MLX4_QP_STATE_SQER: return IB_QPS_SQE;
  1520. case MLX4_QP_STATE_ERR: return IB_QPS_ERR;
  1521. default: return -1;
  1522. }
  1523. }
  1524. static inline enum ib_mig_state to_ib_mig_state(int mlx4_mig_state)
  1525. {
  1526. switch (mlx4_mig_state) {
  1527. case MLX4_QP_PM_ARMED: return IB_MIG_ARMED;
  1528. case MLX4_QP_PM_REARM: return IB_MIG_REARM;
  1529. case MLX4_QP_PM_MIGRATED: return IB_MIG_MIGRATED;
  1530. default: return -1;
  1531. }
  1532. }
  1533. static int to_ib_qp_access_flags(int mlx4_flags)
  1534. {
  1535. int ib_flags = 0;
  1536. if (mlx4_flags & MLX4_QP_BIT_RRE)
  1537. ib_flags |= IB_ACCESS_REMOTE_READ;
  1538. if (mlx4_flags & MLX4_QP_BIT_RWE)
  1539. ib_flags |= IB_ACCESS_REMOTE_WRITE;
  1540. if (mlx4_flags & MLX4_QP_BIT_RAE)
  1541. ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
  1542. return ib_flags;
  1543. }
  1544. static void to_ib_ah_attr(struct mlx4_dev *dev, struct ib_ah_attr *ib_ah_attr,
  1545. struct mlx4_qp_path *path)
  1546. {
  1547. memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
  1548. ib_ah_attr->port_num = path->sched_queue & 0x40 ? 2 : 1;
  1549. if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->caps.num_ports)
  1550. return;
  1551. ib_ah_attr->dlid = be16_to_cpu(path->rlid);
  1552. ib_ah_attr->sl = (path->sched_queue >> 2) & 0xf;
  1553. ib_ah_attr->src_path_bits = path->grh_mylmc & 0x7f;
  1554. ib_ah_attr->static_rate = path->static_rate ? path->static_rate - 5 : 0;
  1555. ib_ah_attr->ah_flags = (path->grh_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
  1556. if (ib_ah_attr->ah_flags) {
  1557. ib_ah_attr->grh.sgid_index = path->mgid_index;
  1558. ib_ah_attr->grh.hop_limit = path->hop_limit;
  1559. ib_ah_attr->grh.traffic_class =
  1560. (be32_to_cpu(path->tclass_flowlabel) >> 20) & 0xff;
  1561. ib_ah_attr->grh.flow_label =
  1562. be32_to_cpu(path->tclass_flowlabel) & 0xfffff;
  1563. memcpy(ib_ah_attr->grh.dgid.raw,
  1564. path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
  1565. }
  1566. }
  1567. int mlx4_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
  1568. struct ib_qp_init_attr *qp_init_attr)
  1569. {
  1570. struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
  1571. struct mlx4_ib_qp *qp = to_mqp(ibqp);
  1572. struct mlx4_qp_context context;
  1573. int mlx4_state;
  1574. int err = 0;
  1575. mutex_lock(&qp->mutex);
  1576. if (qp->state == IB_QPS_RESET) {
  1577. qp_attr->qp_state = IB_QPS_RESET;
  1578. goto done;
  1579. }
  1580. err = mlx4_qp_query(dev->dev, &qp->mqp, &context);
  1581. if (err) {
  1582. err = -EINVAL;
  1583. goto out;
  1584. }
  1585. mlx4_state = be32_to_cpu(context.flags) >> 28;
  1586. qp->state = to_ib_qp_state(mlx4_state);
  1587. qp_attr->qp_state = qp->state;
  1588. qp_attr->path_mtu = context.mtu_msgmax >> 5;
  1589. qp_attr->path_mig_state =
  1590. to_ib_mig_state((be32_to_cpu(context.flags) >> 11) & 0x3);
  1591. qp_attr->qkey = be32_to_cpu(context.qkey);
  1592. qp_attr->rq_psn = be32_to_cpu(context.rnr_nextrecvpsn) & 0xffffff;
  1593. qp_attr->sq_psn = be32_to_cpu(context.next_send_psn) & 0xffffff;
  1594. qp_attr->dest_qp_num = be32_to_cpu(context.remote_qpn) & 0xffffff;
  1595. qp_attr->qp_access_flags =
  1596. to_ib_qp_access_flags(be32_to_cpu(context.params2));
  1597. if (qp->ibqp.qp_type == IB_QPT_RC || qp->ibqp.qp_type == IB_QPT_UC) {
  1598. to_ib_ah_attr(dev->dev, &qp_attr->ah_attr, &context.pri_path);
  1599. to_ib_ah_attr(dev->dev, &qp_attr->alt_ah_attr, &context.alt_path);
  1600. qp_attr->alt_pkey_index = context.alt_path.pkey_index & 0x7f;
  1601. qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
  1602. }
  1603. qp_attr->pkey_index = context.pri_path.pkey_index & 0x7f;
  1604. if (qp_attr->qp_state == IB_QPS_INIT)
  1605. qp_attr->port_num = qp->port;
  1606. else
  1607. qp_attr->port_num = context.pri_path.sched_queue & 0x40 ? 2 : 1;
  1608. /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
  1609. qp_attr->sq_draining = mlx4_state == MLX4_QP_STATE_SQ_DRAINING;
  1610. qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context.params1) >> 21) & 0x7);
  1611. qp_attr->max_dest_rd_atomic =
  1612. 1 << ((be32_to_cpu(context.params2) >> 21) & 0x7);
  1613. qp_attr->min_rnr_timer =
  1614. (be32_to_cpu(context.rnr_nextrecvpsn) >> 24) & 0x1f;
  1615. qp_attr->timeout = context.pri_path.ackto >> 3;
  1616. qp_attr->retry_cnt = (be32_to_cpu(context.params1) >> 16) & 0x7;
  1617. qp_attr->rnr_retry = (be32_to_cpu(context.params1) >> 13) & 0x7;
  1618. qp_attr->alt_timeout = context.alt_path.ackto >> 3;
  1619. done:
  1620. qp_attr->cur_qp_state = qp_attr->qp_state;
  1621. qp_attr->cap.max_recv_wr = qp->rq.wqe_cnt;
  1622. qp_attr->cap.max_recv_sge = qp->rq.max_gs;
  1623. if (!ibqp->uobject) {
  1624. qp_attr->cap.max_send_wr = qp->sq.wqe_cnt;
  1625. qp_attr->cap.max_send_sge = qp->sq.max_gs;
  1626. } else {
  1627. qp_attr->cap.max_send_wr = 0;
  1628. qp_attr->cap.max_send_sge = 0;
  1629. }
  1630. /*
  1631. * We don't support inline sends for kernel QPs (yet), and we
  1632. * don't know what userspace's value should be.
  1633. */
  1634. qp_attr->cap.max_inline_data = 0;
  1635. qp_init_attr->cap = qp_attr->cap;
  1636. qp_init_attr->create_flags = 0;
  1637. if (qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK)
  1638. qp_init_attr->create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
  1639. if (qp->flags & MLX4_IB_QP_LSO)
  1640. qp_init_attr->create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
  1641. out:
  1642. mutex_unlock(&qp->mutex);
  1643. return err;
  1644. }