logger_interface.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * Copyright 2012-15 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: AMD
  23. *
  24. */
  25. #ifndef __DAL_LOGGER_INTERFACE_H__
  26. #define __DAL_LOGGER_INTERFACE_H__
  27. #include "logger_types.h"
  28. struct dc_context;
  29. struct dc_link;
  30. struct dc_surface_update;
  31. struct resource_context;
  32. struct dc_state;
  33. /*
  34. *
  35. * DAL logger functionality
  36. *
  37. */
  38. void dc_conn_log_hex_linux(const uint8_t *hex_data, int hex_data_count);
  39. void pre_surface_trace(
  40. struct dc *dc,
  41. const struct dc_plane_state *const *plane_states,
  42. int surface_count);
  43. void update_surface_trace(
  44. struct dc *dc,
  45. const struct dc_surface_update *updates,
  46. int surface_count);
  47. void post_surface_trace(struct dc *dc);
  48. void context_timing_trace(
  49. struct dc *dc,
  50. struct resource_context *res_ctx);
  51. void context_clock_trace(
  52. struct dc *dc,
  53. struct dc_state *context);
  54. /* Any function which is empty or have incomplete implementation should be
  55. * marked by this macro.
  56. * Note that the message will be printed exactly once for every function
  57. * it is used in order to avoid repeating of the same message. */
  58. #define DAL_LOGGER_NOT_IMPL(fmt, ...) \
  59. do { \
  60. static bool print_not_impl = true; \
  61. if (print_not_impl == true) { \
  62. print_not_impl = false; \
  63. DRM_WARN("DAL_NOT_IMPL: " fmt, ##__VA_ARGS__); \
  64. } \
  65. } while (0)
  66. /******************************************************************************
  67. * Convenience macros to save on typing.
  68. *****************************************************************************/
  69. #define DC_ERROR(...) \
  70. do { \
  71. (void)(dc_ctx); \
  72. DC_LOG_ERROR(__VA_ARGS__); \
  73. } while (0)
  74. #define DC_SYNC_INFO(...) \
  75. do { \
  76. (void)(dc_ctx); \
  77. DC_LOG_SYNC(__VA_ARGS__); \
  78. } while (0)
  79. /* Connectivity log format:
  80. * [time stamp] [drm] [Major_minor] [connector name] message.....
  81. * eg:
  82. * [ 26.590965] [drm] [Conn_LKTN] [DP-1] HBRx4 pass VS=0, PE=0^
  83. * [ 26.881060] [drm] [Conn_Mode] [DP-1] {2560x1080, 2784x1111@185580Khz}^
  84. */
  85. #define CONN_DATA_DETECT(link, hex_data, hex_len, ...) \
  86. do { \
  87. (void)(link); \
  88. dc_conn_log_hex_linux(hex_data, hex_len); \
  89. DC_LOG_EVENT_DETECTION(__VA_ARGS__); \
  90. } while (0)
  91. #define CONN_DATA_LINK_LOSS(link, hex_data, hex_len, ...) \
  92. do { \
  93. (void)(link); \
  94. dc_conn_log_hex_linux(hex_data, hex_len); \
  95. DC_LOG_EVENT_LINK_LOSS(__VA_ARGS__); \
  96. } while (0)
  97. #define CONN_MSG_LT(link, ...) \
  98. do { \
  99. (void)(link); \
  100. DC_LOG_EVENT_LINK_TRAINING(__VA_ARGS__); \
  101. } while (0)
  102. #define CONN_MSG_MODE(link, ...) \
  103. do { \
  104. (void)(link); \
  105. DC_LOG_EVENT_MODE_SET(__VA_ARGS__); \
  106. } while (0)
  107. /*
  108. * Display Test Next logging
  109. */
  110. #define DTN_INFO_BEGIN() \
  111. dm_dtn_log_begin(dc_ctx, log_ctx)
  112. #define DTN_INFO(msg, ...) \
  113. dm_dtn_log_append_v(dc_ctx, log_ctx, msg, ##__VA_ARGS__)
  114. #define DTN_INFO_END() \
  115. dm_dtn_log_end(dc_ctx, log_ctx)
  116. #define PERFORMANCE_TRACE_START() \
  117. unsigned long long perf_trc_start_stmp = dm_get_timestamp(dc->ctx)
  118. #define PERFORMANCE_TRACE_END() \
  119. do { \
  120. unsigned long long perf_trc_end_stmp = dm_get_timestamp(dc->ctx); \
  121. if (dc->debug.performance_trace) { \
  122. DC_LOG_PERF_TRACE("%s duration: %lld ticks\n", __func__, \
  123. perf_trc_end_stmp - perf_trc_start_stmp); \
  124. } \
  125. } while (0)
  126. #define DISPLAY_STATS_BEGIN(entry) (void)(entry)
  127. #define DISPLAY_STATS(msg, ...) DC_LOG_PERF_TRACE(msg, __VA_ARGS__)
  128. #define DISPLAY_STATS_END(entry) (void)(entry)
  129. #endif /* __DAL_LOGGER_INTERFACE_H__ */