cq.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. /*
  2. * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
  3. * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
  4. * Copyright (c) 2005, 2006, 2007 Cisco Systems, Inc. All rights reserved.
  5. * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
  6. * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
  7. *
  8. * This software is available to you under a choice of one of two
  9. * licenses. You may choose to be licensed under the terms of the GNU
  10. * General Public License (GPL) Version 2, available from the file
  11. * COPYING in the main directory of this source tree, or the
  12. * OpenIB.org BSD license below:
  13. *
  14. * Redistribution and use in source and binary forms, with or
  15. * without modification, are permitted provided that the following
  16. * conditions are met:
  17. *
  18. * - Redistributions of source code must retain the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer.
  21. *
  22. * - Redistributions in binary form must reproduce the above
  23. * copyright notice, this list of conditions and the following
  24. * disclaimer in the documentation and/or other materials
  25. * provided with the distribution.
  26. *
  27. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  28. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  29. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  30. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  31. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  32. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  33. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  34. * SOFTWARE.
  35. */
  36. #include <linux/hardirq.h>
  37. #include <linux/export.h>
  38. #include <linux/mlx4/cmd.h>
  39. #include <linux/mlx4/cq.h>
  40. #include "mlx4.h"
  41. #include "icm.h"
  42. #define MLX4_CQ_STATUS_OK ( 0 << 28)
  43. #define MLX4_CQ_STATUS_OVERFLOW ( 9 << 28)
  44. #define MLX4_CQ_STATUS_WRITE_FAIL (10 << 28)
  45. #define MLX4_CQ_FLAG_CC ( 1 << 18)
  46. #define MLX4_CQ_FLAG_OI ( 1 << 17)
  47. #define MLX4_CQ_STATE_ARMED ( 9 << 8)
  48. #define MLX4_CQ_STATE_ARMED_SOL ( 6 << 8)
  49. #define MLX4_EQ_STATE_FIRED (10 << 8)
  50. #define TASKLET_MAX_TIME 2
  51. #define TASKLET_MAX_TIME_JIFFIES msecs_to_jiffies(TASKLET_MAX_TIME)
  52. void mlx4_cq_tasklet_cb(struct tasklet_struct *t)
  53. {
  54. unsigned long flags;
  55. unsigned long end = jiffies + TASKLET_MAX_TIME_JIFFIES;
  56. struct mlx4_eq_tasklet *ctx = from_tasklet(ctx, t, task);
  57. struct mlx4_cq *mcq, *temp;
  58. spin_lock_irqsave(&ctx->lock, flags);
  59. list_splice_tail_init(&ctx->list, &ctx->process_list);
  60. spin_unlock_irqrestore(&ctx->lock, flags);
  61. list_for_each_entry_safe(mcq, temp, &ctx->process_list, tasklet_ctx.list) {
  62. list_del_init(&mcq->tasklet_ctx.list);
  63. mcq->tasklet_ctx.comp(mcq);
  64. if (refcount_dec_and_test(&mcq->refcount))
  65. complete(&mcq->free);
  66. if (time_after(jiffies, end))
  67. break;
  68. }
  69. if (!list_empty(&ctx->process_list))
  70. tasklet_schedule(&ctx->task);
  71. }
  72. static void mlx4_add_cq_to_tasklet(struct mlx4_cq *cq)
  73. {
  74. struct mlx4_eq_tasklet *tasklet_ctx = cq->tasklet_ctx.priv;
  75. unsigned long flags;
  76. bool kick;
  77. spin_lock_irqsave(&tasklet_ctx->lock, flags);
  78. /* When migrating CQs between EQs will be implemented, please note
  79. * that you need to sync this point. It is possible that
  80. * while migrating a CQ, completions on the old EQs could
  81. * still arrive.
  82. */
  83. if (list_empty_careful(&cq->tasklet_ctx.list)) {
  84. refcount_inc(&cq->refcount);
  85. kick = list_empty(&tasklet_ctx->list);
  86. list_add_tail(&cq->tasklet_ctx.list, &tasklet_ctx->list);
  87. if (kick)
  88. tasklet_schedule(&tasklet_ctx->task);
  89. }
  90. spin_unlock_irqrestore(&tasklet_ctx->lock, flags);
  91. }
  92. void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn)
  93. {
  94. struct mlx4_cq *cq;
  95. rcu_read_lock();
  96. cq = radix_tree_lookup(&mlx4_priv(dev)->cq_table.tree,
  97. cqn & (dev->caps.num_cqs - 1));
  98. rcu_read_unlock();
  99. if (!cq) {
  100. mlx4_dbg(dev, "Completion event for bogus CQ %08x\n", cqn);
  101. return;
  102. }
  103. /* Acessing the CQ outside of rcu_read_lock is safe, because
  104. * the CQ is freed only after interrupt handling is completed.
  105. */
  106. ++cq->arm_sn;
  107. cq->comp(cq);
  108. }
  109. void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type)
  110. {
  111. struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table;
  112. struct mlx4_cq *cq;
  113. rcu_read_lock();
  114. cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1));
  115. rcu_read_unlock();
  116. if (!cq) {
  117. mlx4_dbg(dev, "Async event for bogus CQ %08x\n", cqn);
  118. return;
  119. }
  120. /* Acessing the CQ outside of rcu_read_lock is safe, because
  121. * the CQ is freed only after interrupt handling is completed.
  122. */
  123. cq->event(cq, event_type);
  124. }
  125. static int mlx4_SW2HW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
  126. int cq_num, u8 opmod)
  127. {
  128. return mlx4_cmd(dev, mailbox->dma, cq_num, opmod,
  129. MLX4_CMD_SW2HW_CQ, MLX4_CMD_TIME_CLASS_A,
  130. MLX4_CMD_WRAPPED);
  131. }
  132. static int mlx4_MODIFY_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
  133. int cq_num, u32 opmod)
  134. {
  135. return mlx4_cmd(dev, mailbox->dma, cq_num, opmod, MLX4_CMD_MODIFY_CQ,
  136. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  137. }
  138. static int mlx4_HW2SW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
  139. int cq_num)
  140. {
  141. return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0,
  142. cq_num, mailbox ? 0 : 1, MLX4_CMD_HW2SW_CQ,
  143. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  144. }
  145. int mlx4_cq_modify(struct mlx4_dev *dev, struct mlx4_cq *cq,
  146. u16 count, u16 period)
  147. {
  148. struct mlx4_cmd_mailbox *mailbox;
  149. struct mlx4_cq_context *cq_context;
  150. int err;
  151. mailbox = mlx4_alloc_cmd_mailbox(dev);
  152. if (IS_ERR(mailbox))
  153. return PTR_ERR(mailbox);
  154. cq_context = mailbox->buf;
  155. cq_context->cq_max_count = cpu_to_be16(count);
  156. cq_context->cq_period = cpu_to_be16(period);
  157. err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 1);
  158. mlx4_free_cmd_mailbox(dev, mailbox);
  159. return err;
  160. }
  161. EXPORT_SYMBOL_GPL(mlx4_cq_modify);
  162. int mlx4_cq_resize(struct mlx4_dev *dev, struct mlx4_cq *cq,
  163. int entries, struct mlx4_mtt *mtt)
  164. {
  165. struct mlx4_cmd_mailbox *mailbox;
  166. struct mlx4_cq_context *cq_context;
  167. u64 mtt_addr;
  168. int err;
  169. mailbox = mlx4_alloc_cmd_mailbox(dev);
  170. if (IS_ERR(mailbox))
  171. return PTR_ERR(mailbox);
  172. cq_context = mailbox->buf;
  173. cq_context->logsize_usrpage = cpu_to_be32(ilog2(entries) << 24);
  174. cq_context->log_page_size = mtt->page_shift - 12;
  175. mtt_addr = mlx4_mtt_addr(dev, mtt);
  176. cq_context->mtt_base_addr_h = mtt_addr >> 32;
  177. cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff);
  178. err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 0);
  179. mlx4_free_cmd_mailbox(dev, mailbox);
  180. return err;
  181. }
  182. EXPORT_SYMBOL_GPL(mlx4_cq_resize);
  183. int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn)
  184. {
  185. struct mlx4_priv *priv = mlx4_priv(dev);
  186. struct mlx4_cq_table *cq_table = &priv->cq_table;
  187. int err;
  188. *cqn = mlx4_bitmap_alloc(&cq_table->bitmap);
  189. if (*cqn == -1)
  190. return -ENOMEM;
  191. err = mlx4_table_get(dev, &cq_table->table, *cqn);
  192. if (err)
  193. goto err_out;
  194. err = mlx4_table_get(dev, &cq_table->cmpt_table, *cqn);
  195. if (err)
  196. goto err_put;
  197. return 0;
  198. err_put:
  199. mlx4_table_put(dev, &cq_table->table, *cqn);
  200. err_out:
  201. mlx4_bitmap_free(&cq_table->bitmap, *cqn, MLX4_NO_RR);
  202. return err;
  203. }
  204. static int mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn, u8 usage)
  205. {
  206. u32 in_modifier = RES_CQ | (((u32)usage & 3) << 30);
  207. u64 out_param;
  208. int err;
  209. if (mlx4_is_mfunc(dev)) {
  210. err = mlx4_cmd_imm(dev, 0, &out_param, in_modifier,
  211. RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES,
  212. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  213. if (err)
  214. return err;
  215. else {
  216. *cqn = get_param_l(&out_param);
  217. return 0;
  218. }
  219. }
  220. return __mlx4_cq_alloc_icm(dev, cqn);
  221. }
  222. void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)
  223. {
  224. struct mlx4_priv *priv = mlx4_priv(dev);
  225. struct mlx4_cq_table *cq_table = &priv->cq_table;
  226. mlx4_table_put(dev, &cq_table->cmpt_table, cqn);
  227. mlx4_table_put(dev, &cq_table->table, cqn);
  228. mlx4_bitmap_free(&cq_table->bitmap, cqn, MLX4_NO_RR);
  229. }
  230. static void mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)
  231. {
  232. u64 in_param = 0;
  233. int err;
  234. if (mlx4_is_mfunc(dev)) {
  235. set_param_l(&in_param, cqn);
  236. err = mlx4_cmd(dev, in_param, RES_CQ, RES_OP_RESERVE_AND_MAP,
  237. MLX4_CMD_FREE_RES,
  238. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  239. if (err)
  240. mlx4_warn(dev, "Failed freeing cq:%d\n", cqn);
  241. } else
  242. __mlx4_cq_free_icm(dev, cqn);
  243. }
  244. static int mlx4_init_user_cqes(void *buf, int entries, int cqe_size)
  245. {
  246. int entries_per_copy = PAGE_SIZE / cqe_size;
  247. void *init_ents;
  248. int err = 0;
  249. int i;
  250. init_ents = kmalloc(PAGE_SIZE, GFP_KERNEL);
  251. if (!init_ents)
  252. return -ENOMEM;
  253. /* Populate a list of CQ entries to reduce the number of
  254. * copy_to_user calls. 0xcc is the initialization value
  255. * required by the FW.
  256. */
  257. memset(init_ents, 0xcc, PAGE_SIZE);
  258. if (entries_per_copy < entries) {
  259. for (i = 0; i < entries / entries_per_copy; i++) {
  260. err = copy_to_user((void __user *)buf, init_ents, PAGE_SIZE) ?
  261. -EFAULT : 0;
  262. if (err)
  263. goto out;
  264. buf += PAGE_SIZE;
  265. }
  266. } else {
  267. err = copy_to_user((void __user *)buf, init_ents,
  268. array_size(entries, cqe_size)) ?
  269. -EFAULT : 0;
  270. }
  271. out:
  272. kfree(init_ents);
  273. return err;
  274. }
  275. static void mlx4_init_kernel_cqes(struct mlx4_buf *buf,
  276. int entries,
  277. int cqe_size)
  278. {
  279. int i;
  280. if (buf->nbufs == 1)
  281. memset(buf->direct.buf, 0xcc, entries * cqe_size);
  282. else
  283. for (i = 0; i < buf->npages; i++)
  284. memset(buf->page_list[i].buf, 0xcc,
  285. 1UL << buf->page_shift);
  286. }
  287. int mlx4_cq_alloc(struct mlx4_dev *dev, int nent,
  288. struct mlx4_mtt *mtt, struct mlx4_uar *uar, u64 db_rec,
  289. struct mlx4_cq *cq, unsigned vector, int collapsed,
  290. int timestamp_en, void *buf_addr, bool user_cq)
  291. {
  292. bool sw_cq_init = dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_SW_CQ_INIT;
  293. struct mlx4_priv *priv = mlx4_priv(dev);
  294. struct mlx4_cq_table *cq_table = &priv->cq_table;
  295. struct mlx4_cmd_mailbox *mailbox;
  296. struct mlx4_cq_context *cq_context;
  297. u64 mtt_addr;
  298. int err;
  299. if (vector >= dev->caps.num_comp_vectors)
  300. return -EINVAL;
  301. cq->vector = vector;
  302. err = mlx4_cq_alloc_icm(dev, &cq->cqn, cq->usage);
  303. if (err)
  304. return err;
  305. spin_lock(&cq_table->lock);
  306. err = radix_tree_insert(&cq_table->tree, cq->cqn, cq);
  307. spin_unlock(&cq_table->lock);
  308. if (err)
  309. goto err_icm;
  310. mailbox = mlx4_alloc_cmd_mailbox(dev);
  311. if (IS_ERR(mailbox)) {
  312. err = PTR_ERR(mailbox);
  313. goto err_radix;
  314. }
  315. cq_context = mailbox->buf;
  316. cq_context->flags = cpu_to_be32(!!collapsed << 18);
  317. if (timestamp_en)
  318. cq_context->flags |= cpu_to_be32(1 << 19);
  319. cq_context->logsize_usrpage =
  320. cpu_to_be32((ilog2(nent) << 24) |
  321. mlx4_to_hw_uar_index(dev, uar->index));
  322. cq_context->comp_eqn = priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].eqn;
  323. cq_context->log_page_size = mtt->page_shift - MLX4_ICM_PAGE_SHIFT;
  324. mtt_addr = mlx4_mtt_addr(dev, mtt);
  325. cq_context->mtt_base_addr_h = mtt_addr >> 32;
  326. cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff);
  327. cq_context->db_rec_addr = cpu_to_be64(db_rec);
  328. if (sw_cq_init) {
  329. if (user_cq) {
  330. err = mlx4_init_user_cqes(buf_addr, nent,
  331. dev->caps.cqe_size);
  332. if (err)
  333. sw_cq_init = false;
  334. } else {
  335. mlx4_init_kernel_cqes(buf_addr, nent,
  336. dev->caps.cqe_size);
  337. }
  338. }
  339. err = mlx4_SW2HW_CQ(dev, mailbox, cq->cqn, sw_cq_init);
  340. mlx4_free_cmd_mailbox(dev, mailbox);
  341. if (err)
  342. goto err_radix;
  343. cq->cons_index = 0;
  344. cq->arm_sn = 1;
  345. cq->uar = uar;
  346. refcount_set(&cq->refcount, 1);
  347. init_completion(&cq->free);
  348. cq->comp = mlx4_add_cq_to_tasklet;
  349. cq->tasklet_ctx.priv =
  350. &priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].tasklet_ctx;
  351. INIT_LIST_HEAD(&cq->tasklet_ctx.list);
  352. cq->irq = priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].irq;
  353. return 0;
  354. err_radix:
  355. spin_lock(&cq_table->lock);
  356. radix_tree_delete(&cq_table->tree, cq->cqn);
  357. spin_unlock(&cq_table->lock);
  358. err_icm:
  359. mlx4_cq_free_icm(dev, cq->cqn);
  360. return err;
  361. }
  362. EXPORT_SYMBOL_GPL(mlx4_cq_alloc);
  363. void mlx4_cq_free(struct mlx4_dev *dev, struct mlx4_cq *cq)
  364. {
  365. struct mlx4_priv *priv = mlx4_priv(dev);
  366. struct mlx4_cq_table *cq_table = &priv->cq_table;
  367. int err;
  368. err = mlx4_HW2SW_CQ(dev, NULL, cq->cqn);
  369. if (err)
  370. mlx4_warn(dev, "HW2SW_CQ failed (%d) for CQN %06x\n", err, cq->cqn);
  371. spin_lock(&cq_table->lock);
  372. radix_tree_delete(&cq_table->tree, cq->cqn);
  373. spin_unlock(&cq_table->lock);
  374. synchronize_irq(priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq);
  375. if (priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq !=
  376. priv->eq_table.eq[MLX4_EQ_ASYNC].irq)
  377. synchronize_irq(priv->eq_table.eq[MLX4_EQ_ASYNC].irq);
  378. if (refcount_dec_and_test(&cq->refcount))
  379. complete(&cq->free);
  380. wait_for_completion(&cq->free);
  381. mlx4_cq_free_icm(dev, cq->cqn);
  382. }
  383. EXPORT_SYMBOL_GPL(mlx4_cq_free);
  384. int mlx4_init_cq_table(struct mlx4_dev *dev)
  385. {
  386. struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table;
  387. spin_lock_init(&cq_table->lock);
  388. INIT_RADIX_TREE(&cq_table->tree, GFP_ATOMIC);
  389. if (mlx4_is_slave(dev))
  390. return 0;
  391. return mlx4_bitmap_init(&cq_table->bitmap, dev->caps.num_cqs,
  392. dev->caps.num_cqs - 1, dev->caps.reserved_cqs, 0);
  393. }
  394. void mlx4_cleanup_cq_table(struct mlx4_dev *dev)
  395. {
  396. if (mlx4_is_slave(dev))
  397. return;
  398. /* Nothing to do to clean up radix_tree */
  399. mlx4_bitmap_cleanup(&mlx4_priv(dev)->cq_table.bitmap);
  400. }