trace.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * Copyright(c) 2015, 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. #define CREATE_TRACE_POINTS
  48. #include "trace.h"
  49. u8 ibhdr_exhdr_len(struct ib_header *hdr)
  50. {
  51. struct ib_other_headers *ohdr;
  52. u8 opcode;
  53. if (ib_get_lnh(hdr) == HFI1_LRH_BTH)
  54. ohdr = &hdr->u.oth;
  55. else
  56. ohdr = &hdr->u.l.oth;
  57. opcode = ib_bth_get_opcode(ohdr);
  58. return hdr_len_by_opcode[opcode] == 0 ?
  59. 0 : hdr_len_by_opcode[opcode] - (12 + 8);
  60. }
  61. #define IMM_PRN "imm %d"
  62. #define RETH_PRN "reth vaddr 0x%.16llx rkey 0x%.8x dlen 0x%.8x"
  63. #define AETH_PRN "aeth syn 0x%.2x %s msn 0x%.8x"
  64. #define DETH_PRN "deth qkey 0x%.8x sqpn 0x%.6x"
  65. #define IETH_PRN "ieth rkey 0x%.8x"
  66. #define ATOMICACKETH_PRN "origdata %llx"
  67. #define ATOMICETH_PRN "vaddr 0x%llx rkey 0x%.8x sdata %llx cdata %llx"
  68. #define OP(transport, op) IB_OPCODE_## transport ## _ ## op
  69. static const char *parse_syndrome(u8 syndrome)
  70. {
  71. switch (syndrome >> 5) {
  72. case 0:
  73. return "ACK";
  74. case 1:
  75. return "RNRNAK";
  76. case 3:
  77. return "NAK";
  78. }
  79. return "";
  80. }
  81. const char *parse_everbs_hdrs(
  82. struct trace_seq *p,
  83. u8 opcode,
  84. void *ehdrs)
  85. {
  86. union ib_ehdrs *eh = ehdrs;
  87. const char *ret = trace_seq_buffer_ptr(p);
  88. switch (opcode) {
  89. /* imm */
  90. case OP(RC, SEND_LAST_WITH_IMMEDIATE):
  91. case OP(UC, SEND_LAST_WITH_IMMEDIATE):
  92. case OP(RC, SEND_ONLY_WITH_IMMEDIATE):
  93. case OP(UC, SEND_ONLY_WITH_IMMEDIATE):
  94. case OP(RC, RDMA_WRITE_LAST_WITH_IMMEDIATE):
  95. case OP(UC, RDMA_WRITE_LAST_WITH_IMMEDIATE):
  96. trace_seq_printf(p, IMM_PRN,
  97. be32_to_cpu(eh->imm_data));
  98. break;
  99. /* reth + imm */
  100. case OP(RC, RDMA_WRITE_ONLY_WITH_IMMEDIATE):
  101. case OP(UC, RDMA_WRITE_ONLY_WITH_IMMEDIATE):
  102. trace_seq_printf(p, RETH_PRN " " IMM_PRN,
  103. get_ib_reth_vaddr(&eh->rc.reth),
  104. be32_to_cpu(eh->rc.reth.rkey),
  105. be32_to_cpu(eh->rc.reth.length),
  106. be32_to_cpu(eh->rc.imm_data));
  107. break;
  108. /* reth */
  109. case OP(RC, RDMA_READ_REQUEST):
  110. case OP(RC, RDMA_WRITE_FIRST):
  111. case OP(UC, RDMA_WRITE_FIRST):
  112. case OP(RC, RDMA_WRITE_ONLY):
  113. case OP(UC, RDMA_WRITE_ONLY):
  114. trace_seq_printf(p, RETH_PRN,
  115. get_ib_reth_vaddr(&eh->rc.reth),
  116. be32_to_cpu(eh->rc.reth.rkey),
  117. be32_to_cpu(eh->rc.reth.length));
  118. break;
  119. case OP(RC, RDMA_READ_RESPONSE_FIRST):
  120. case OP(RC, RDMA_READ_RESPONSE_LAST):
  121. case OP(RC, RDMA_READ_RESPONSE_ONLY):
  122. case OP(RC, ACKNOWLEDGE):
  123. trace_seq_printf(p, AETH_PRN, be32_to_cpu(eh->aeth) >> 24,
  124. parse_syndrome(be32_to_cpu(eh->aeth) >> 24),
  125. be32_to_cpu(eh->aeth) & IB_MSN_MASK);
  126. break;
  127. /* aeth + atomicacketh */
  128. case OP(RC, ATOMIC_ACKNOWLEDGE):
  129. trace_seq_printf(p, AETH_PRN " " ATOMICACKETH_PRN,
  130. be32_to_cpu(eh->at.aeth) >> 24,
  131. parse_syndrome(be32_to_cpu(eh->at.aeth) >> 24),
  132. be32_to_cpu(eh->at.aeth) & IB_MSN_MASK,
  133. ib_u64_get(&eh->at.atomic_ack_eth));
  134. break;
  135. /* atomiceth */
  136. case OP(RC, COMPARE_SWAP):
  137. case OP(RC, FETCH_ADD):
  138. trace_seq_printf(p, ATOMICETH_PRN,
  139. get_ib_ateth_vaddr(&eh->atomic_eth),
  140. eh->atomic_eth.rkey,
  141. get_ib_ateth_swap(&eh->atomic_eth),
  142. get_ib_ateth_compare(&eh->atomic_eth));
  143. break;
  144. /* deth */
  145. case OP(UD, SEND_ONLY):
  146. case OP(UD, SEND_ONLY_WITH_IMMEDIATE):
  147. trace_seq_printf(p, DETH_PRN,
  148. be32_to_cpu(eh->ud.deth[0]),
  149. be32_to_cpu(eh->ud.deth[1]) & RVT_QPN_MASK);
  150. break;
  151. /* ieth */
  152. case OP(RC, SEND_LAST_WITH_INVALIDATE):
  153. case OP(RC, SEND_ONLY_WITH_INVALIDATE):
  154. trace_seq_printf(p, IETH_PRN,
  155. be32_to_cpu(eh->ieth));
  156. break;
  157. }
  158. trace_seq_putc(p, 0);
  159. return ret;
  160. }
  161. const char *parse_sdma_flags(
  162. struct trace_seq *p,
  163. u64 desc0, u64 desc1)
  164. {
  165. const char *ret = trace_seq_buffer_ptr(p);
  166. char flags[5] = { 'x', 'x', 'x', 'x', 0 };
  167. flags[0] = (desc1 & SDMA_DESC1_INT_REQ_FLAG) ? 'I' : '-';
  168. flags[1] = (desc1 & SDMA_DESC1_HEAD_TO_HOST_FLAG) ? 'H' : '-';
  169. flags[2] = (desc0 & SDMA_DESC0_FIRST_DESC_FLAG) ? 'F' : '-';
  170. flags[3] = (desc0 & SDMA_DESC0_LAST_DESC_FLAG) ? 'L' : '-';
  171. trace_seq_printf(p, "%s", flags);
  172. if (desc0 & SDMA_DESC0_FIRST_DESC_FLAG)
  173. trace_seq_printf(p, " amode:%u aidx:%u alen:%u",
  174. (u8)((desc1 >> SDMA_DESC1_HEADER_MODE_SHIFT) &
  175. SDMA_DESC1_HEADER_MODE_MASK),
  176. (u8)((desc1 >> SDMA_DESC1_HEADER_INDEX_SHIFT) &
  177. SDMA_DESC1_HEADER_INDEX_MASK),
  178. (u8)((desc1 >> SDMA_DESC1_HEADER_DWS_SHIFT) &
  179. SDMA_DESC1_HEADER_DWS_MASK));
  180. return ret;
  181. }
  182. const char *print_u32_array(
  183. struct trace_seq *p,
  184. u32 *arr, int len)
  185. {
  186. int i;
  187. const char *ret = trace_seq_buffer_ptr(p);
  188. for (i = 0; i < len ; i++)
  189. trace_seq_printf(p, "%s%#x", i == 0 ? "" : " ", arr[i]);
  190. trace_seq_putc(p, 0);
  191. return ret;
  192. }
  193. __hfi1_trace_fn(PKT);
  194. __hfi1_trace_fn(PROC);
  195. __hfi1_trace_fn(SDMA);
  196. __hfi1_trace_fn(LINKVERB);
  197. __hfi1_trace_fn(DEBUG);
  198. __hfi1_trace_fn(SNOOP);
  199. __hfi1_trace_fn(CNTR);
  200. __hfi1_trace_fn(PIO);
  201. __hfi1_trace_fn(DC8051);
  202. __hfi1_trace_fn(FIRMWARE);
  203. __hfi1_trace_fn(RCVCTRL);
  204. __hfi1_trace_fn(TID);
  205. __hfi1_trace_fn(MMU);
  206. __hfi1_trace_fn(IOCTL);