ramdump.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file Ram dump interface
  8. *
  9. * NOTE: All Ram dump functions cannot be called in interrupt context.
  10. */
  11. #ifndef _RAMDUMP__H_
  12. #define _RAMDUMP__H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #include <toolchain.h>
  17. #include <arch/cpu.h>
  18. #ifdef CONFIG_DEBUG_RAMDUMP
  19. /**
  20. * @brief Save ramdump.
  21. *
  22. * This routine saves ramdump to flash.
  23. *
  24. * @param esf mcpu exception context
  25. * @param dump_bt btcpu exception flag
  26. *
  27. * @return true if success, otherwise return false
  28. */
  29. extern int ramdump_save(const z_arch_esf_t *esf, int btcpu_info);
  30. /**
  31. * @brief Dump ramdump.
  32. *
  33. * This routine dump ramdump region from flash.
  34. *
  35. * @param N/A
  36. *
  37. * @return true if success, otherwise return false
  38. */
  39. extern int ramdump_dump(void);
  40. /**
  41. * @brief calling traverse_cb to transfer ramdump.
  42. *
  43. * This routine transfer ramdump region from flash.
  44. *
  45. * @param N/A
  46. *
  47. * @return transfer length.
  48. */
  49. extern int ramdump_transfer(int (*traverse_cb)(uint8_t *data, uint32_t max_len));
  50. #else
  51. #define ramdump_save(x,y) do{}while(0)
  52. #define ramdump_dump() do{}while(0)
  53. #endif
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* CONFIG_DEBUG_RAMDUMP */