rdmavt_cq.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. #ifndef DEF_RDMAVT_INCCQ_H
  2. #define DEF_RDMAVT_INCCQ_H
  3. /*
  4. *
  5. * This file is provided under a dual BSD/GPLv2 license. When using or
  6. * redistributing this file, you may do so under either license.
  7. *
  8. * GPL LICENSE SUMMARY
  9. *
  10. * Copyright(c) 2016 Intel Corporation.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of version 2 of the GNU General Public License as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * BSD LICENSE
  22. *
  23. * Copyright(c) 2015 Intel Corporation.
  24. *
  25. * Redistribution and use in source and binary forms, with or without
  26. * modification, are permitted provided that the following conditions
  27. * are met:
  28. *
  29. * - Redistributions of source code must retain the above copyright
  30. * notice, this list of conditions and the following disclaimer.
  31. * - Redistributions in binary form must reproduce the above copyright
  32. * notice, this list of conditions and the following disclaimer in
  33. * the documentation and/or other materials provided with the
  34. * distribution.
  35. * - Neither the name of Intel Corporation nor the names of its
  36. * contributors may be used to endorse or promote products derived
  37. * from this software without specific prior written permission.
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  40. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  41. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  42. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  43. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  45. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  46. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  47. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  48. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  49. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  50. *
  51. */
  52. #include <linux/kthread.h>
  53. #include <rdma/ib_user_verbs.h>
  54. /*
  55. * Define an ib_cq_notify value that is not valid so we know when CQ
  56. * notifications are armed.
  57. */
  58. #define RVT_CQ_NONE (IB_CQ_NEXT_COMP + 1)
  59. /*
  60. * This structure is used to contain the head pointer, tail pointer,
  61. * and completion queue entries as a single memory allocation so
  62. * it can be mmap'ed into user space.
  63. */
  64. struct rvt_cq_wc {
  65. u32 head; /* index of next entry to fill */
  66. u32 tail; /* index of next ib_poll_cq() entry */
  67. union {
  68. /* these are actually size ibcq.cqe + 1 */
  69. struct ib_uverbs_wc uqueue[0];
  70. struct ib_wc kqueue[0];
  71. };
  72. };
  73. /*
  74. * The completion queue structure.
  75. */
  76. struct rvt_cq {
  77. struct ib_cq ibcq;
  78. struct kthread_work comptask;
  79. spinlock_t lock; /* protect changes in this struct */
  80. u8 notify;
  81. u8 triggered;
  82. struct rvt_dev_info *rdi;
  83. struct rvt_cq_wc *queue;
  84. struct rvt_mmap_info *ip;
  85. };
  86. static inline struct rvt_cq *ibcq_to_rvtcq(struct ib_cq *ibcq)
  87. {
  88. return container_of(ibcq, struct rvt_cq, ibcq);
  89. }
  90. void rvt_cq_enter(struct rvt_cq *cq, struct ib_wc *entry, bool solicited);
  91. #endif /* DEF_RDMAVT_INCCQH */