log_instance.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_INSTANCE_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_INSTANCE_H_
  8. #include <zephyr/types.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /** @brief Constant data associated with the source of log messages. */
  13. struct log_source_const_data {
  14. const char *name;
  15. uint8_t level;
  16. #ifdef CONFIG_NIOS2
  17. /* Workaround alert! Dummy data to ensure that structure is >8 bytes.
  18. * Nios2 uses global pointer register for structures <=8 bytes and
  19. * apparently does not handle well variables placed in custom sections.
  20. */
  21. uint32_t dummy;
  22. #endif
  23. };
  24. /** @brief Dynamic data associated with the source of log messages. */
  25. struct log_source_dynamic_data {
  26. uint32_t filters;
  27. #ifdef CONFIG_NIOS2
  28. /* Workaround alert! Dummy data to ensure that structure is >8 bytes.
  29. * Nios2 uses global pointer register for structures <=8 bytes and
  30. * apparently does not handle well variables placed in custom sections.
  31. */
  32. uint32_t dummy[2];
  33. #endif
  34. #if defined(CONFIG_RISCV) && defined(CONFIG_64BIT)
  35. /* Workaround: RV64 needs to ensure that structure is just 8 bytes. */
  36. uint32_t dummy;
  37. #endif
  38. };
  39. /** @brief Creates name of variable and section for constant log data.
  40. *
  41. * @param _name Name.
  42. */
  43. #define LOG_ITEM_CONST_DATA(_name) UTIL_CAT(log_const_, _name)
  44. #define Z_LOG_CONST_ITEM_REGISTER(_name, _str_name, _level) \
  45. const struct log_source_const_data LOG_ITEM_CONST_DATA(_name) \
  46. __attribute__ ((section("." STRINGIFY(LOG_ITEM_CONST_DATA(_name))))) \
  47. __attribute__((used)) = { \
  48. .name = _str_name, \
  49. .level = (_level), \
  50. }
  51. /** @def LOG_INSTANCE_PTR_DECLARE
  52. * @brief Macro for declaring a logger instance pointer in the module structure.
  53. */
  54. /** @def LOG_INSTANCE_REGISTER
  55. * @brief Macro for registering instance for logging with independent filtering.
  56. *
  57. * Module instance provides filtering of logs on instance level instead of
  58. * module level.
  59. */
  60. /** @def LOG_INSTANCE_PTR_INIT
  61. * @brief Macro for initializing a pointer to the logger instance.
  62. */
  63. #ifdef CONFIG_LOG
  64. #define LOG_INSTANCE_FULL_NAME(_module_name, _inst_name) \
  65. UTIL_CAT(_module_name, UTIL_CAT(_, _inst_name))
  66. #if defined(CONFIG_LOG_RUNTIME_FILTERING)
  67. #define LOG_INSTANCE_PTR_DECLARE(_name) \
  68. struct log_source_dynamic_data *_name
  69. #define LOG_INSTANCE_REGISTER(_module_name, _inst_name, _level) \
  70. Z_LOG_CONST_ITEM_REGISTER( \
  71. LOG_INSTANCE_FULL_NAME(_module_name, _inst_name), \
  72. STRINGIFY(_module_name._inst_name), \
  73. _level); \
  74. struct log_source_dynamic_data LOG_INSTANCE_DYNAMIC_DATA( \
  75. _module_name, _inst_name) \
  76. __attribute__ ((section("." STRINGIFY( \
  77. LOG_INSTANCE_DYNAMIC_DATA(_module_name, \
  78. _inst_name) \
  79. ) \
  80. ))) __attribute__((used))
  81. #define LOG_INSTANCE_PTR_INIT(_name, _module_name, _inst_name) \
  82. ._name = &LOG_ITEM_DYNAMIC_DATA( \
  83. LOG_INSTANCE_FULL_NAME(_module_name, _inst_name)),
  84. #else /* CONFIG_LOG_RUNTIME_FILTERING */
  85. #define LOG_INSTANCE_PTR_DECLARE(_name) \
  86. const struct log_source_const_data *_name
  87. #define LOG_INSTANCE_REGISTER(_module_name, _inst_name, _level) \
  88. Z_LOG_CONST_ITEM_REGISTER( \
  89. LOG_INSTANCE_FULL_NAME(_module_name, _inst_name), \
  90. STRINGIFY(_module_name._inst_name), \
  91. _level)
  92. #define LOG_INSTANCE_PTR_INIT(_name, _module_name, _inst_name) \
  93. ._name = &LOG_ITEM_CONST_DATA( \
  94. LOG_INSTANCE_FULL_NAME(_module_name, _inst_name)),
  95. #endif /* CONFIG_LOG_RUNTIME_FILTERING */
  96. #else /* CONFIG_LOG */
  97. #define LOG_INSTANCE_PTR_DECLARE(_name) /* empty */
  98. #define LOG_INSTANCE_REGISTER(_module_name, _inst_name, _level) /* empty */
  99. #define LOG_INSTANCE_PTR_INIT(_name, _module_name, _inst_name) /* empty */
  100. #endif
  101. #ifdef __cplusplus
  102. }
  103. #endif
  104. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_INSTANCE_H_ */