qp.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. #ifndef _QP_H
  2. #define _QP_H
  3. /*
  4. * Copyright(c) 2015, 2016 Intel Corporation.
  5. *
  6. * This file is provided under a dual BSD/GPLv2 license. When using or
  7. * redistributing this file, you may do so under either license.
  8. *
  9. * GPL LICENSE SUMMARY
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of version 2 of the GNU General Public License as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * BSD LICENSE
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. *
  26. * - Redistributions of source code must retain the above copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * - Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in
  30. * the documentation and/or other materials provided with the
  31. * distribution.
  32. * - Neither the name of Intel Corporation nor the names of its
  33. * contributors may be used to endorse or promote products derived
  34. * from this software without specific prior written permission.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  37. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  38. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  39. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  40. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  43. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  44. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  45. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  46. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. *
  48. */
  49. #include <linux/hash.h>
  50. #include <rdma/rdmavt_qp.h>
  51. #include "verbs.h"
  52. #include "sdma.h"
  53. extern unsigned int hfi1_qp_table_size;
  54. extern const struct rvt_operation_params hfi1_post_parms[];
  55. /*
  56. * free_ahg - clear ahg from QP
  57. */
  58. static inline void clear_ahg(struct rvt_qp *qp)
  59. {
  60. struct hfi1_qp_priv *priv = qp->priv;
  61. priv->s_ahg->ahgcount = 0;
  62. qp->s_flags &= ~(RVT_S_AHG_VALID | RVT_S_AHG_CLEAR);
  63. if (priv->s_sde && qp->s_ahgidx >= 0)
  64. sdma_ahg_free(priv->s_sde, qp->s_ahgidx);
  65. qp->s_ahgidx = -1;
  66. }
  67. /**
  68. * hfi1_compute_aeth - compute the AETH (syndrome + MSN)
  69. * @qp: the queue pair to compute the AETH for
  70. *
  71. * Returns the AETH.
  72. */
  73. __be32 hfi1_compute_aeth(struct rvt_qp *qp);
  74. /**
  75. * hfi1_create_qp - create a queue pair for a device
  76. * @ibpd: the protection domain who's device we create the queue pair for
  77. * @init_attr: the attributes of the queue pair
  78. * @udata: user data for libibverbs.so
  79. *
  80. * Returns the queue pair on success, otherwise returns an errno.
  81. *
  82. * Called by the ib_create_qp() core verbs function.
  83. */
  84. struct ib_qp *hfi1_create_qp(struct ib_pd *ibpd,
  85. struct ib_qp_init_attr *init_attr,
  86. struct ib_udata *udata);
  87. /**
  88. * hfi1_get_credit - flush the send work queue of a QP
  89. * @qp: the qp who's send work queue to flush
  90. * @aeth: the Acknowledge Extended Transport Header
  91. *
  92. * The QP s_lock should be held.
  93. */
  94. void hfi1_get_credit(struct rvt_qp *qp, u32 aeth);
  95. /**
  96. * hfi1_qp_wakeup - wake up on the indicated event
  97. * @qp: the QP
  98. * @flag: flag the qp on which the qp is stalled
  99. */
  100. void hfi1_qp_wakeup(struct rvt_qp *qp, u32 flag);
  101. struct sdma_engine *qp_to_sdma_engine(struct rvt_qp *qp, u8 sc5);
  102. struct send_context *qp_to_send_context(struct rvt_qp *qp, u8 sc5);
  103. struct qp_iter;
  104. /**
  105. * qp_iter_init - initialize the iterator for the qp hash list
  106. * @dev: the hfi1_ibdev
  107. */
  108. struct qp_iter *qp_iter_init(struct hfi1_ibdev *dev);
  109. /**
  110. * qp_iter_next - Find the next qp in the hash list
  111. * @iter: the iterator for the qp hash list
  112. */
  113. int qp_iter_next(struct qp_iter *iter);
  114. /**
  115. * qp_iter_print - print the qp information to seq_file
  116. * @s: the seq_file to emit the qp information on
  117. * @iter: the iterator for the qp hash list
  118. */
  119. void qp_iter_print(struct seq_file *s, struct qp_iter *iter);
  120. /**
  121. * qp_comm_est - handle trap with QP established
  122. * @qp: the QP
  123. */
  124. void qp_comm_est(struct rvt_qp *qp);
  125. void _hfi1_schedule_send(struct rvt_qp *qp);
  126. void hfi1_schedule_send(struct rvt_qp *qp);
  127. void hfi1_migrate_qp(struct rvt_qp *qp);
  128. /*
  129. * Functions provided by hfi1 driver for rdmavt to use
  130. */
  131. void *qp_priv_alloc(struct rvt_dev_info *rdi, struct rvt_qp *qp,
  132. gfp_t gfp);
  133. void qp_priv_free(struct rvt_dev_info *rdi, struct rvt_qp *qp);
  134. unsigned free_all_qps(struct rvt_dev_info *rdi);
  135. void notify_qp_reset(struct rvt_qp *qp);
  136. int get_pmtu_from_attr(struct rvt_dev_info *rdi, struct rvt_qp *qp,
  137. struct ib_qp_attr *attr);
  138. void flush_qp_waiters(struct rvt_qp *qp);
  139. void notify_error_qp(struct rvt_qp *qp);
  140. void stop_send_queue(struct rvt_qp *qp);
  141. void quiesce_qp(struct rvt_qp *qp);
  142. u32 mtu_from_qp(struct rvt_dev_info *rdi, struct rvt_qp *qp, u32 pmtu);
  143. int mtu_to_path_mtu(u32 mtu);
  144. void hfi1_error_port_qps(struct hfi1_ibport *ibp, u8 sl);
  145. #endif /* _QP_H */