coredump.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DEBUG_COREDUMP_H_
  7. #define ZEPHYR_INCLUDE_DEBUG_COREDUMP_H_
  8. /* Query ID */
  9. enum coredump_query_id {
  10. /*
  11. * Returns error code from backend.
  12. */
  13. COREDUMP_QUERY_GET_ERROR,
  14. /*
  15. * Check if there is a stored coredump from backend.
  16. *
  17. * Returns 1 if there is a stored coredump.
  18. * 0 if none.
  19. * -ENOTSUP if this query is not supported.
  20. * Otherwise, error code from backend.
  21. */
  22. COREDUMP_QUERY_HAS_STORED_DUMP,
  23. COREDUMP_QUERY_MAX
  24. };
  25. /* Command ID */
  26. enum coredump_cmd_id {
  27. /*
  28. * Clear error code from backend.
  29. *
  30. * Returns 0 if successful, failed otherwise.
  31. */
  32. COREDUMP_CMD_CLEAR_ERROR,
  33. /*
  34. * Verify that the stored coredump is valid.
  35. *
  36. * Returns 1 if valid.
  37. * 0 if not valid or no stored coredump.
  38. * -ENOTSUP if this command is not supported.
  39. * Otherwise, error code from backend.
  40. */
  41. COREDUMP_CMD_VERIFY_STORED_DUMP,
  42. /*
  43. * Erase the stored coredump.
  44. *
  45. * Returns 0 if successful.
  46. * -ENOTSUP if this command is not supported.
  47. * Otherwise, error code from backend.
  48. */
  49. COREDUMP_CMD_ERASE_STORED_DUMP,
  50. COREDUMP_CMD_MAX
  51. };
  52. #ifdef CONFIG_DEBUG_COREDUMP
  53. #include <toolchain.h>
  54. #include <arch/cpu.h>
  55. #include <sys/byteorder.h>
  56. #define COREDUMP_HDR_VER 1
  57. #define COREDUMP_ARCH_HDR_ID 'A'
  58. #define COREDUMP_MEM_HDR_ID 'M'
  59. #define COREDUMP_MEM_HDR_VER 1
  60. /* Target code */
  61. enum coredump_tgt_code {
  62. COREDUMP_TGT_UNKNOWN = 0,
  63. COREDUMP_TGT_X86,
  64. COREDUMP_TGT_X86_64,
  65. COREDUMP_TGT_ARM_CORTEX_M,
  66. };
  67. /* Coredump header */
  68. struct coredump_hdr_t {
  69. /* 'Z', 'E' */
  70. char id[2];
  71. /* Header version */
  72. uint16_t hdr_version;
  73. /* Target code */
  74. uint16_t tgt_code;
  75. /* Pointer size in Log2 */
  76. uint8_t ptr_size_bits;
  77. uint8_t flag;
  78. /* Coredump Reason given */
  79. unsigned int reason;
  80. } __packed;
  81. /* Architecture-specific block header */
  82. struct coredump_arch_hdr_t {
  83. /* COREDUMP_ARCH_HDR_ID */
  84. char id;
  85. /* Header version */
  86. uint16_t hdr_version;
  87. /* Number of bytes in this block (excluding header) */
  88. uint16_t num_bytes;
  89. } __packed;
  90. /* Memory block header */
  91. struct coredump_mem_hdr_t {
  92. /* COREDUMP_MEM_HDR_ID */
  93. char id;
  94. /* Header version */
  95. uint16_t hdr_version;
  96. /* Address of start of memory region */
  97. uintptr_t start;
  98. /* Address of end of memory region */
  99. uintptr_t end;
  100. } __packed;
  101. void coredump(unsigned int reason, const z_arch_esf_t *esf,
  102. struct k_thread *thread);
  103. void coredump_memory_dump(uintptr_t start_addr, uintptr_t end_addr);
  104. void coredump_buffer_output(uint8_t *buf, size_t buflen);
  105. int coredump_query(enum coredump_query_id query_id, void *arg);
  106. int coredump_cmd(enum coredump_cmd_id cmd_id, void *arg);
  107. #else
  108. void coredump(unsigned int reason, const z_arch_esf_t *esf,
  109. struct k_thread *thread)
  110. {
  111. }
  112. void coredump_memory_dump(uintptr_t start_addr, uintptr_t end_addr)
  113. {
  114. }
  115. void coredump_buffer_output(uint8_t *buf, size_t buflen)
  116. {
  117. }
  118. int coredump_query(enum coredump_query_id query_id, void *arg)
  119. {
  120. return -ENOTSUP;
  121. }
  122. int coredump_cmd(enum coredump_cmd_id query_id, void *arg)
  123. {
  124. return -ENOTSUP;
  125. }
  126. #endif /* CONFIG_DEBUG_COREDUMP */
  127. /**
  128. * @defgroup coredump_apis Coredump APIs
  129. * @brief Coredump APIs
  130. * @{
  131. */
  132. /**
  133. * @fn void coredump(unsigned int reason, const z_arch_esf_t *esf, struct k_thread *thread);
  134. * @brief Perform coredump.
  135. *
  136. * Normally, this is called inside z_fatal_error() to generate coredump
  137. * when a fatal error is encountered. This can also be called on demand
  138. * whenever a coredump is desired.
  139. *
  140. * @param reason Reason for the fatal error
  141. * @param esf Exception context
  142. * @param thread Thread information to dump
  143. */
  144. /**
  145. * @fn void coredump_memory_dump(uintptr_t start_addr, uintptr_t end_addr);
  146. * @brief Dump memory region
  147. *
  148. * @param start_addr Start address of memory region to be dumped
  149. * @param end_addr End address of memory region to be dumped
  150. */
  151. /**
  152. * @fn int coredump_buffer_output(uint8_t *buf, size_t buflen);
  153. * @brief Output the buffer via coredump
  154. *
  155. * This outputs the buffer of byte array to the coredump backend.
  156. * For example, this can be called to output the coredump section
  157. * containing registers, or a section for memory dump.
  158. *
  159. * @param buf Buffer to be send to coredump output
  160. * @param buflen Buffer length
  161. */
  162. /**
  163. * @fn int coredump_query(enum coredump_query_id query_id, void *arg);
  164. * @brief Perform query on coredump subsystem.
  165. *
  166. * Query the coredump subsystem for information, for example, if there is
  167. * an error.
  168. *
  169. * @param[in] query_id Query ID
  170. * @param[in,out] arg Pointer to argument for exchanging information
  171. * @return Depends on the query
  172. */
  173. /**
  174. * @fn int coredump_cmd(enum coredump_cmd_id cmd_id, void *arg);
  175. * @brief Perform command on coredump subsystem.
  176. *
  177. * Perform certain on coredump subsystem, for example, output the stored
  178. * coredump via logging.
  179. *
  180. * @param[in] cmd_id Command ID
  181. * @param[in,out] arg Pointer to argument for exchanging information
  182. * @return Depends on the command
  183. */
  184. /**
  185. * @}
  186. */
  187. #endif /* ZEPHYR_INCLUDE_DEBUG_COREDUMP_H_ */