qdf_trace.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /*
  2. * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #if !defined(__QDF_TRACE_H)
  27. #define __QDF_TRACE_H
  28. /**
  29. * DOC: qdf_trace
  30. * QCA driver framework trace APIs
  31. * Trace, logging, and debugging definitions and APIs
  32. */
  33. /* Include Files */
  34. #include <qdf_types.h> /* For QDF_MODULE_ID... */
  35. #include <stdarg.h> /* For va_list... */
  36. #include <qdf_status.h>
  37. #include <qdf_nbuf.h>
  38. #include <i_qdf_types.h>
  39. /* Type declarations */
  40. /**
  41. * typedef enum QDF_TRACE_LEVEL - Debug Trace level
  42. * @QDF_TRACE_LEVEL_NONE: no trace will be logged. This value is in place
  43. * for the qdf_trace_setlevel() to allow the user to turn off all traces
  44. * @QDF_TRACE_LEVEL_FATAL: enable trace for fatal Error
  45. * @QDF_TRACE_LEVEL_ERROR: enable trace for errors
  46. * @QDF_TRACE_LEVEL_WARN: enable trace for warnings
  47. * @QDF_TRACE_LEVEL_INFO: enable trace for information
  48. * @QDF_TRACE_LEVEL_INFO_HIGH: enable high level trace information
  49. * @QDF_TRACE_LEVEL_INFO_MED: enable middle level trace information
  50. * @QDF_TRACE_LEVEL_INFO_LOW: enable low level trace information
  51. * @QDF_TRACE_LEVEL_DEBUG: enable trace for debugging
  52. * @QDF_TRACE_LEVEL_ALL: enable all trace
  53. * @QDF_TRACE_LEVEL_MAX: enable max level trace
  54. */
  55. typedef enum {
  56. QDF_TRACE_LEVEL_NONE = 0,
  57. QDF_TRACE_LEVEL_FATAL,
  58. QDF_TRACE_LEVEL_ERROR,
  59. QDF_TRACE_LEVEL_WARN,
  60. QDF_TRACE_LEVEL_INFO,
  61. QDF_TRACE_LEVEL_INFO_HIGH,
  62. QDF_TRACE_LEVEL_INFO_MED,
  63. QDF_TRACE_LEVEL_INFO_LOW,
  64. QDF_TRACE_LEVEL_DEBUG,
  65. QDF_TRACE_LEVEL_ALL,
  66. QDF_TRACE_LEVEL_MAX
  67. } QDF_TRACE_LEVEL;
  68. /*
  69. * Log levels
  70. */
  71. #define QDF_DEBUG_FUNCTRACE 0x01
  72. #define QDF_DEBUG_LEVEL0 0x02
  73. #define QDF_DEBUG_LEVEL1 0x04
  74. #define QDF_DEBUG_LEVEL2 0x08
  75. #define QDF_DEBUG_LEVEL3 0x10
  76. #define QDF_DEBUG_ERROR 0x20
  77. #define QDF_DEBUG_CFG 0x40
  78. #ifdef CONFIG_MCL
  79. /* By default Data Path module will have all log levels enabled, except debug
  80. * log level. Debug level will be left up to the framework or user space modules
  81. * to be enabled when issue is detected
  82. */
  83. #define QDF_DATA_PATH_TRACE_LEVEL \
  84. ((1 << QDF_TRACE_LEVEL_FATAL) | (1 << QDF_TRACE_LEVEL_ERROR) | \
  85. (1 << QDF_TRACE_LEVEL_WARN) | (1 << QDF_TRACE_LEVEL_INFO) | \
  86. (1 << QDF_TRACE_LEVEL_INFO_HIGH) | (1 << QDF_TRACE_LEVEL_INFO_MED) | \
  87. (1 << QDF_TRACE_LEVEL_INFO_LOW))
  88. /* Preprocessor definitions and constants */
  89. #define ASSERT_BUFFER_SIZE (512)
  90. #define MAX_QDF_TRACE_RECORDS 4000
  91. #define INVALID_QDF_TRACE_ADDR 0xffffffff
  92. #define DEFAULT_QDF_TRACE_DUMP_COUNT 0
  93. #include <i_qdf_trace.h>
  94. #ifdef TRACE_RECORD
  95. #define MTRACE(p) p
  96. #define NO_SESSION 0xFF
  97. #else
  98. #define MTRACE(p) { }
  99. #endif
  100. /**
  101. * typedef struct qdf_trace_record_s - keep trace record
  102. * @time: timestamp
  103. * @module: module name
  104. * @code: hold record of code
  105. * @session: hold record of session
  106. * @data: hold data
  107. * @pid: hold pid of the process
  108. */
  109. typedef struct qdf_trace_record_s {
  110. uint64_t time;
  111. uint8_t module;
  112. uint8_t code;
  113. uint16_t session;
  114. uint32_t data;
  115. uint32_t pid;
  116. } qdf_trace_record_t, *tp_qdf_trace_record;
  117. /**
  118. * typedef struct s_qdf_trace_data - MTRACE logs are stored in ring buffer
  119. * @head: position of first record
  120. * @tail: position of last record
  121. * @num: count of total record
  122. * @num_since_last_dump: count from last dump
  123. * @enable: config for controlling the trace
  124. * @dump_count: Dump after number of records reach this number
  125. */
  126. typedef struct s_qdf_trace_data {
  127. uint32_t head;
  128. uint32_t tail;
  129. uint32_t num;
  130. uint16_t num_since_last_dump;
  131. uint8_t enable;
  132. uint16_t dump_count;
  133. } t_qdf_trace_data;
  134. #define CASE_RETURN_STRING(str) case ((str)): return (uint8_t *)(# str);
  135. /* DP Trace Implementation */
  136. #define DPTRACE(p) p
  137. #define MAX_QDF_DP_TRACE_RECORDS 4000
  138. #define QDF_DP_TRACE_RECORD_SIZE 16
  139. #define INVALID_QDF_DP_TRACE_ADDR 0xffffffff
  140. #define QDF_DP_TRACE_VERBOSITY_HIGH 3
  141. #define QDF_DP_TRACE_VERBOSITY_MEDIUM 2
  142. #define QDF_DP_TRACE_VERBOSITY_LOW 1
  143. #define QDF_DP_TRACE_VERBOSITY_DEFAULT 0
  144. /**
  145. * enum QDF_DP_TRACE_ID - Generic ID to identify various events in data path
  146. * @QDF_DP_TRACE_INVALID: Invalid ID
  147. * @QDF_DP_TRACE_DROP_PACKET_RECORD: Dropped packet stored with this id
  148. * @QDF_DP_TRACE_HDD_PACKET_PTR_RECORD: nbuf->data ptr of HDD
  149. * @QDF_DP_TRACE_HDD_PACKET_RECORD: nbuf->data stored with this id
  150. * @QDF_DP_TRACE_CE_PACKET_PTR_RECORD: nbuf->data ptr of CE
  151. * @QDF_DP_TRACE_CE_PACKET_RECORD: nbuf->data stored with this id
  152. * @QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD: nbuf->data ptr of txrx queue
  153. * @QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD: nbuf->data ptr of txrx
  154. * @QDF_DP_TRACE_HTT_PACKET_PTR_RECORD: nbuf->data ptr of htt
  155. * @QDF_DP_TRACE_HTC_PACKET_PTR_RECORD: nbuf->data ptr of htc
  156. * @QDF_DP_TRACE_HIF_PACKET_PTR_RECORD: nbuf->data ptr of hif
  157. * @QDF_DP_TRACE_HDD_TX_TIMEOUT: hdd tx timeout event
  158. * @QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT: hdd tx softap timeout event
  159. * @QDF_DP_TRACE_VDEV_PAUSE: vdev pause event
  160. * @QDF_DP_TRACE_VDEV_UNPAUSE: vdev unpause event
  161. */
  162. enum QDF_DP_TRACE_ID {
  163. QDF_DP_TRACE_INVALID = 0,
  164. QDF_DP_TRACE_DROP_PACKET_RECORD = 1,
  165. QDF_DP_TRACE_HDD_PACKET_PTR_RECORD = 2,
  166. QDF_DP_TRACE_HDD_PACKET_RECORD = 3,
  167. QDF_DP_TRACE_CE_PACKET_PTR_RECORD = 4,
  168. QDF_DP_TRACE_CE_PACKET_RECORD = 5,
  169. QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD = 6,
  170. QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD = 7,
  171. QDF_DP_TRACE_HTT_PACKET_PTR_RECORD = 8,
  172. QDF_DP_TRACE_HTC_PACKET_PTR_RECORD = 9,
  173. QDF_DP_TRACE_HIF_PACKET_PTR_RECORD = 10,
  174. QDF_DP_TRACE_HDD_TX_TIMEOUT = 11,
  175. QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT = 12,
  176. QDF_DP_TRACE_VDEV_PAUSE = 13,
  177. QDF_DP_TRACE_VDEV_UNPAUSE = 14,
  178. QDF_DP_TRACE_MAX
  179. };
  180. /**
  181. * struct qdf_dp_trace_record_s - Describes a record in DP trace
  182. * @time: time when it got stored
  183. * @code: Describes the particular event
  184. * @data: buffer to store data
  185. * @size: Length of the valid data stored in this record
  186. * @pid : process id which stored the data in this record
  187. */
  188. struct qdf_dp_trace_record_s {
  189. uint64_t time;
  190. uint8_t code;
  191. uint8_t data[QDF_DP_TRACE_RECORD_SIZE];
  192. uint8_t size;
  193. uint32_t pid;
  194. };
  195. /**
  196. * struct qdf_dp_trace_data - Parameters to configure/control DP trace
  197. * @head: Position of first record
  198. * @tail: Position of last record
  199. * @num: Current index
  200. * @proto_bitmap: defines which protocol to be traced
  201. * @no_of_record: defines every nth packet to be traced
  202. * @verbosity : defines verbosity level
  203. * @enable: enable/disable DP trace
  204. * @count: current packet number
  205. */
  206. struct s_qdf_dp_trace_data {
  207. uint32_t head;
  208. uint32_t tail;
  209. uint32_t num;
  210. uint8_t proto_bitmap;
  211. uint8_t no_of_record;
  212. uint8_t verbosity;
  213. bool enable;
  214. uint32_t count;
  215. };
  216. /* Function declarations and documenation */
  217. /**
  218. * qdf_trace_set_level() - Set the trace level for a particular module
  219. * @level : trace level
  220. *
  221. * Trace level is a member of the QDF_TRACE_LEVEL enumeration indicating
  222. * the severity of the condition causing the trace message to be issued.
  223. * More severe conditions are more likely to be logged.
  224. *
  225. * This is an external API that allows trace levels to be set for each module.
  226. *
  227. * Return: nothing
  228. */
  229. void qdf_trace_set_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  230. /**
  231. * qdf_trace_get_level() - get the trace level
  232. * @level : trace level
  233. *
  234. * This is an external API that returns a bool value to signify if a
  235. * particular trace level is set for the specified module.
  236. * A member of the QDF_TRACE_LEVEL enumeration indicating the severity
  237. * of the condition causing the trace message to be issued.
  238. *
  239. * Note that individual trace levels are the only valid values
  240. * for this API. QDF_TRACE_LEVEL_NONE and QDF_TRACE_LEVEL_ALL
  241. * are not valid input and will return false
  242. *
  243. * Return:
  244. * false - the specified trace level for the specified module is OFF
  245. * true - the specified trace level for the specified module is ON
  246. */
  247. bool qdf_trace_get_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  248. typedef void (*tp_qdf_trace_cb)(void *p_mac, tp_qdf_trace_record, uint16_t);
  249. void qdf_trace(uint8_t module, uint8_t code, uint16_t session, uint32_t data);
  250. void qdf_trace_register(QDF_MODULE_ID, tp_qdf_trace_cb);
  251. QDF_STATUS qdf_trace_spin_lock_init(void);
  252. void qdf_trace_init(void);
  253. void qdf_trace_enable(uint32_t, uint8_t enable);
  254. void qdf_trace_dump_all(void *, uint8_t, uint8_t, uint32_t, uint32_t);
  255. void qdf_dp_trace_spin_lock_init(void);
  256. void qdf_dp_trace_init(void);
  257. void qdf_dp_trace_set_value(uint8_t proto_bitmap, uint8_t no_of_records,
  258. uint8_t verbosity);
  259. void qdf_dp_trace_set_track(qdf_nbuf_t nbuf);
  260. void qdf_dp_trace(qdf_nbuf_t nbuf, enum QDF_DP_TRACE_ID code,
  261. uint8_t *data, uint8_t size);
  262. void qdf_dp_trace_dump_all(uint32_t count);
  263. typedef void (*tp_qdf_dp_trace_cb)(struct qdf_dp_trace_record_s* , uint16_t);
  264. void qdf_dp_display_record(struct qdf_dp_trace_record_s *record,
  265. uint16_t index);
  266. /**
  267. * qdf_trace_msg()- logging API
  268. * @module: Module identifier. A member of the QDF_MODULE_ID enumeration that
  269. * identifies the module issuing the trace message.
  270. * @level: Trace level. A member of the QDF_TRACE_LEVEL enumeration indicating
  271. * the severity of the condition causing the trace message to be issued.
  272. * More severe conditions are more likely to be logged.
  273. * @str_format: Format string. The message to be logged. This format string
  274. * contains printf-like replacement parameters, which follow this
  275. * parameter in the variable argument list.
  276. *
  277. * Users wishing to add tracing information to their code should use
  278. * QDF_TRACE. QDF_TRACE() will compile into a call to qdf_trace_msg() when
  279. * tracing is enabled.
  280. *
  281. * Return: nothing
  282. *
  283. */
  284. void __printf(3, 4) qdf_trace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  285. char *str_format, ...);
  286. void qdf_trace_hex_dump(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  287. void *data, int buf_len);
  288. void qdf_trace_display(void);
  289. void qdf_trace_set_value(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  290. uint8_t on);
  291. void qdf_trace_set_module_trace_level(QDF_MODULE_ID module, uint32_t level);
  292. void __printf(3, 4) qdf_snprintf(char *str_buffer, unsigned int size,
  293. char *str_format, ...);
  294. #define QDF_SNPRINTF qdf_snprintf
  295. #endif /* CONFIG_MCL */
  296. #endif /* __QDF_TRACE_H */