sdma_txreq.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright(c) 2016 Intel Corporation.
  3. *
  4. * This file is provided under a dual BSD/GPLv2 license. When using or
  5. * redistributing this file, you may do so under either license.
  6. *
  7. * GPL LICENSE SUMMARY
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of version 2 of the GNU General Public License as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * BSD LICENSE
  19. *
  20. * Redistribution and use in source and binary forms, with or without
  21. * modification, are permitted provided that the following conditions
  22. * are met:
  23. *
  24. * - Redistributions of source code must retain the above copyright
  25. * notice, this list of conditions and the following disclaimer.
  26. * - Redistributions in binary form must reproduce the above copyright
  27. * notice, this list of conditions and the following disclaimer in
  28. * the documentation and/or other materials provided with the
  29. * distribution.
  30. * - Neither the name of Intel Corporation nor the names of its
  31. * contributors may be used to endorse or promote products derived
  32. * from this software without specific prior written permission.
  33. *
  34. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  35. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  36. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  37. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  38. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  39. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  40. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  41. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  42. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  43. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  44. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  45. *
  46. */
  47. #ifndef HFI1_SDMA_TXREQ_H
  48. #define HFI1_SDMA_TXREQ_H
  49. /* increased for AHG */
  50. #define NUM_DESC 6
  51. /*
  52. * struct sdma_desc - canonical fragment descriptor
  53. *
  54. * This is the descriptor carried in the tx request
  55. * corresponding to each fragment.
  56. *
  57. */
  58. struct sdma_desc {
  59. /* private: don't use directly */
  60. u64 qw[2];
  61. };
  62. /**
  63. * struct sdma_txreq - the sdma_txreq structure (one per packet)
  64. * @list: for use by user and by queuing for wait
  65. *
  66. * This is the representation of a packet which consists of some
  67. * number of fragments. Storage is provided to within the structure.
  68. * for all fragments.
  69. *
  70. * The storage for the descriptors are automatically extended as needed
  71. * when the currently allocation is exceeded.
  72. *
  73. * The user (Verbs or PSM) may overload this structure with fields
  74. * specific to their use by putting this struct first in their struct.
  75. * The method of allocation of the overloaded structure is user dependent
  76. *
  77. * The list is the only public field in the structure.
  78. *
  79. */
  80. #define SDMA_TXREQ_S_OK 0
  81. #define SDMA_TXREQ_S_SENDERROR 1
  82. #define SDMA_TXREQ_S_ABORTED 2
  83. #define SDMA_TXREQ_S_SHUTDOWN 3
  84. /* flags bits */
  85. #define SDMA_TXREQ_F_URGENT 0x0001
  86. #define SDMA_TXREQ_F_AHG_COPY 0x0002
  87. #define SDMA_TXREQ_F_USE_AHG 0x0004
  88. struct sdma_txreq;
  89. typedef void (*callback_t)(struct sdma_txreq *, int);
  90. struct iowait;
  91. struct sdma_txreq {
  92. struct list_head list;
  93. /* private: */
  94. struct sdma_desc *descp;
  95. /* private: */
  96. void *coalesce_buf;
  97. /* private: */
  98. struct iowait *wait;
  99. /* private: */
  100. callback_t complete;
  101. #ifdef CONFIG_HFI1_DEBUG_SDMA_ORDER
  102. u64 sn;
  103. #endif
  104. /* private: - used in coalesce/pad processing */
  105. u16 packet_len;
  106. /* private: - down-counted to trigger last */
  107. u16 tlen;
  108. /* private: */
  109. u16 num_desc;
  110. /* private: */
  111. u16 desc_limit;
  112. /* private: */
  113. u16 next_descq_idx;
  114. /* private: */
  115. u16 coalesce_idx;
  116. /* private: flags */
  117. u16 flags;
  118. /* private: */
  119. struct sdma_desc descs[NUM_DESC];
  120. };
  121. static inline int sdma_txreq_built(struct sdma_txreq *tx)
  122. {
  123. return tx->num_desc;
  124. }
  125. #endif /* HFI1_SDMA_TXREQ_H */