msm_cvp_debug.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __MSM_CVP_DEBUG__
  6. #define __MSM_CVP_DEBUG__
  7. #include <linux/debugfs.h>
  8. #include <linux/delay.h>
  9. #include "msm_cvp_internal.h"
  10. #include "trace/events/msm_cvp_events.h"
  11. #ifndef CVP_DBG_LABEL
  12. #define CVP_DBG_LABEL "msm_cvp"
  13. #endif
  14. #define CVP_DBG_TAG CVP_DBG_LABEL ": %4s: "
  15. /* To enable messages OR these values and
  16. * echo the result to debugfs file.
  17. *
  18. * To enable all messages set debug_level = 0x101F
  19. */
  20. enum cvp_msg_prio {
  21. CVP_ERR = 0x000001,
  22. CVP_WARN = 0x000002,
  23. CVP_INFO = 0x000004,
  24. CVP_PROF = 0x000010,
  25. CVP_PKT = 0x000020,
  26. CVP_MEM = 0x000040,
  27. CVP_SYNX = 0x000080,
  28. CVP_CORE = 0x000100,
  29. CVP_REG = 0x000200,
  30. CVP_PWR = 0x000400,
  31. CVP_DSP = 0x000800,
  32. CVP_FW = 0x001000,
  33. CVP_SESS = 0x002000,
  34. CVP_HFI = 0x004000,
  35. CVP_DBG = CVP_MEM | CVP_SYNX | CVP_CORE | CVP_REG |
  36. CVP_PWR | CVP_DSP | CVP_SESS | CVP_HFI | CVP_PKT,
  37. };
  38. enum cvp_msg_out {
  39. CVP_OUT_PRINTK = 0,
  40. };
  41. enum msm_cvp_debugfs_event {
  42. MSM_CVP_DEBUGFS_EVENT_ETB,
  43. MSM_CVP_DEBUGFS_EVENT_EBD,
  44. MSM_CVP_DEBUGFS_EVENT_FTB,
  45. MSM_CVP_DEBUGFS_EVENT_FBD,
  46. };
  47. extern int msm_cvp_debug;
  48. extern int msm_cvp_debug_out;
  49. extern int msm_cvp_fw_debug;
  50. extern int msm_cvp_fw_debug_mode;
  51. extern int msm_cvp_fw_low_power_mode;
  52. extern bool msm_cvp_fw_coverage;
  53. extern bool msm_cvp_thermal_mitigation_disabled;
  54. extern bool msm_cvp_cacheop_disabled;
  55. extern int msm_cvp_clock_voting;
  56. extern bool msm_cvp_syscache_disable;
  57. extern bool msm_cvp_dsp_disable;
  58. extern bool msm_cvp_mmrm_enabled;
  59. #define dprintk(__level, __fmt, arg...) \
  60. do { \
  61. if (msm_cvp_debug & __level) { \
  62. if (msm_cvp_debug_out == CVP_OUT_PRINTK) { \
  63. pr_info(CVP_DBG_TAG __fmt, \
  64. get_debug_level_str(__level), \
  65. ## arg); \
  66. } \
  67. } \
  68. } while (0)
  69. #define MSM_CVP_ERROR(value) \
  70. do { if (value) \
  71. dprintk(CVP_ERR, "BugOn"); \
  72. WARN_ON(value); \
  73. } while (0)
  74. struct dentry *msm_cvp_debugfs_init_drv(void);
  75. struct dentry *msm_cvp_debugfs_init_core(struct msm_cvp_core *core,
  76. struct dentry *parent);
  77. struct dentry *msm_cvp_debugfs_init_inst(struct msm_cvp_inst *inst,
  78. struct dentry *parent);
  79. void msm_cvp_debugfs_deinit_inst(struct msm_cvp_inst *inst);
  80. static inline char *get_debug_level_str(int level)
  81. {
  82. switch (level) {
  83. case CVP_ERR:
  84. return "err";
  85. case CVP_WARN:
  86. return "warn";
  87. case CVP_INFO:
  88. return "info";
  89. case CVP_DBG:
  90. return "dbg";
  91. case CVP_PROF:
  92. return "prof";
  93. case CVP_PKT:
  94. return "pkt";
  95. case CVP_MEM:
  96. return "mem";
  97. case CVP_SYNX:
  98. return "synx";
  99. case CVP_CORE:
  100. return "core";
  101. case CVP_REG:
  102. return "reg";
  103. case CVP_PWR:
  104. return "pwr";
  105. case CVP_DSP:
  106. return "dsp";
  107. case CVP_FW:
  108. return "fw";
  109. case CVP_SESS:
  110. return "sess";
  111. case CVP_HFI:
  112. return "hfi";
  113. default:
  114. return "???";
  115. }
  116. }
  117. static inline void show_stats(struct msm_cvp_inst *i)
  118. {
  119. int x;
  120. for (x = 0; x < MAX_PROFILING_POINTS; x++) {
  121. if (i->debug.pdata[x].name[0] &&
  122. (msm_cvp_debug & CVP_PROF)) {
  123. if (i->debug.samples) {
  124. dprintk(CVP_PROF, "%s averaged %d ms/sample\n",
  125. i->debug.pdata[x].name,
  126. i->debug.pdata[x].cumulative /
  127. i->debug.samples);
  128. }
  129. dprintk(CVP_PROF, "%s Samples: %d\n",
  130. i->debug.pdata[x].name,
  131. i->debug.samples);
  132. }
  133. }
  134. }
  135. static inline void msm_cvp_res_handle_fatal_hw_error(
  136. struct msm_cvp_platform_resources *resources,
  137. bool enable_fatal)
  138. {
  139. enable_fatal &= resources->debug_timeout;
  140. MSM_CVP_ERROR(enable_fatal);
  141. }
  142. static inline void msm_cvp_handle_hw_error(struct msm_cvp_core *core)
  143. {
  144. bool enable_fatal = true;
  145. /*
  146. * In current implementation user-initiated SSR triggers
  147. * a fatal error from hardware. However, there is no way
  148. * to know if fatal error is due to SSR or not. Handle
  149. * user SSR as non-fatal.
  150. */
  151. if (core->trigger_ssr) {
  152. core->trigger_ssr = false;
  153. enable_fatal = false;
  154. }
  155. /* CVP driver can decide FATAL handling of HW errors
  156. * based on multiple factors. This condition check will
  157. * be enhanced later.
  158. */
  159. msm_cvp_res_handle_fatal_hw_error(&core->resources, enable_fatal);
  160. }
  161. #endif