qp.c 51 KB

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