qdf_trace.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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. /* By default Data Path module will have all log levels enabled, except debug
  69. * log level. Debug level will be left up to the framework or user space modules
  70. * to be enabled when issue is detected
  71. */
  72. #define QDF_DATA_PATH_TRACE_LEVEL \
  73. ((1 << QDF_TRACE_LEVEL_FATAL) | (1 << QDF_TRACE_LEVEL_ERROR) | \
  74. (1 << QDF_TRACE_LEVEL_WARN) | (1 << QDF_TRACE_LEVEL_INFO) | \
  75. (1 << QDF_TRACE_LEVEL_INFO_HIGH) | (1 << QDF_TRACE_LEVEL_INFO_MED) | \
  76. (1 << QDF_TRACE_LEVEL_INFO_LOW))
  77. /* Preprocessor definitions and constants */
  78. #define ASSERT_BUFFER_SIZE (512)
  79. #define MAX_QDF_TRACE_RECORDS 4000
  80. #define INVALID_QDF_TRACE_ADDR 0xffffffff
  81. #define DEFAULT_QDF_TRACE_DUMP_COUNT 0
  82. #include <i_qdf_trace.h>
  83. #ifdef TRACE_RECORD
  84. #define MTRACE(p) p
  85. #define NO_SESSION 0xFF
  86. #else
  87. #define MTRACE(p) { }
  88. #endif
  89. /**
  90. * typedef struct qdf_trace_record_s - keep trace record
  91. * @time: timestamp
  92. * @module: module name
  93. * @code: hold record of code
  94. * @session: hold record of session
  95. * @data: hold data
  96. * @pid: hold pid of the process
  97. */
  98. typedef struct qdf_trace_record_s {
  99. uint64_t time;
  100. uint8_t module;
  101. uint8_t code;
  102. uint16_t session;
  103. uint32_t data;
  104. uint32_t pid;
  105. } qdf_trace_record_t, *tp_qdf_trace_record;
  106. /**
  107. * typedef struct s_qdf_trace_data - MTRACE logs are stored in ring buffer
  108. * @head: position of first record
  109. * @tail: position of last record
  110. * @num: count of total record
  111. * @num_since_last_dump: count from last dump
  112. * @enable: config for controlling the trace
  113. * @dump_count: Dump after number of records reach this number
  114. */
  115. typedef struct s_qdf_trace_data {
  116. uint32_t head;
  117. uint32_t tail;
  118. uint32_t num;
  119. uint16_t num_since_last_dump;
  120. uint8_t enable;
  121. uint16_t dump_count;
  122. } t_qdf_trace_data;
  123. #define CASE_RETURN_STRING(str) case ((str)): return (uint8_t *)(# str);
  124. /* DP Trace Implementation */
  125. #define DPTRACE(p) p
  126. #define MAX_QDF_DP_TRACE_RECORDS 4000
  127. #define QDF_DP_TRACE_RECORD_SIZE 16
  128. #define INVALID_QDF_DP_TRACE_ADDR 0xffffffff
  129. #define QDF_DP_TRACE_VERBOSITY_HIGH 3
  130. #define QDF_DP_TRACE_VERBOSITY_MEDIUM 2
  131. #define QDF_DP_TRACE_VERBOSITY_LOW 1
  132. #define QDF_DP_TRACE_VERBOSITY_DEFAULT 0
  133. /**
  134. * enum QDF_DP_TRACE_ID - Generic ID to identify various events in data path
  135. * @QDF_DP_TRACE_INVALID: Invalid ID
  136. * @QDF_DP_TRACE_DROP_PACKET_RECORD: Dropped packet stored with this id
  137. * @QDF_DP_TRACE_HDD_PACKET_PTR_RECORD: nbuf->data ptr of HDD
  138. * @QDF_DP_TRACE_HDD_PACKET_RECORD: nbuf->data stored with this id
  139. * @QDF_DP_TRACE_CE_PACKET_PTR_RECORD: nbuf->data ptr of CE
  140. * @QDF_DP_TRACE_CE_PACKET_RECORD: nbuf->data stored with this id
  141. * @QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD: nbuf->data ptr of txrx queue
  142. * @QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD: nbuf->data ptr of txrx
  143. * @QDF_DP_TRACE_HTT_PACKET_PTR_RECORD: nbuf->data ptr of htt
  144. * @QDF_DP_TRACE_HTC_PACKET_PTR_RECORD: nbuf->data ptr of htc
  145. * @QDF_DP_TRACE_HIF_PACKET_PTR_RECORD: nbuf->data ptr of hif
  146. * @QDF_DP_TRACE_HDD_TX_TIMEOUT: hdd tx timeout event
  147. * @QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT: hdd tx softap timeout event
  148. * @QDF_DP_TRACE_VDEV_PAUSE: vdev pause event
  149. * @QDF_DP_TRACE_VDEV_UNPAUSE: vdev unpause event
  150. */
  151. enum QDF_DP_TRACE_ID {
  152. QDF_DP_TRACE_INVALID = 0,
  153. QDF_DP_TRACE_DROP_PACKET_RECORD = 1,
  154. QDF_DP_TRACE_HDD_PACKET_PTR_RECORD = 2,
  155. QDF_DP_TRACE_HDD_PACKET_RECORD = 3,
  156. QDF_DP_TRACE_CE_PACKET_PTR_RECORD = 4,
  157. QDF_DP_TRACE_CE_PACKET_RECORD = 5,
  158. QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD = 6,
  159. QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD = 7,
  160. QDF_DP_TRACE_HTT_PACKET_PTR_RECORD = 8,
  161. QDF_DP_TRACE_HTC_PACKET_PTR_RECORD = 9,
  162. QDF_DP_TRACE_HIF_PACKET_PTR_RECORD = 10,
  163. QDF_DP_TRACE_HDD_TX_TIMEOUT = 11,
  164. QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT = 12,
  165. QDF_DP_TRACE_VDEV_PAUSE = 13,
  166. QDF_DP_TRACE_VDEV_UNPAUSE = 14,
  167. QDF_DP_TRACE_MAX
  168. };
  169. /*
  170. * Log levels
  171. */
  172. #define QDF_DEBUG_FUNCTRACE 0x01
  173. #define QDF_DEBUG_LEVEL0 0x02
  174. #define QDF_DEBUG_LEVEL1 0x04
  175. #define QDF_DEBUG_LEVEL2 0x08
  176. #define QDF_DEBUG_LEVEL3 0x10
  177. #define QDF_DEBUG_ERROR 0x20
  178. #define QDF_DEBUG_CFG 0x40
  179. /**
  180. * struct qdf_dp_trace_record_s - Describes a record in DP trace
  181. * @time: time when it got stored
  182. * @code: Describes the particular event
  183. * @data: buffer to store data
  184. * @size: Length of the valid data stored in this record
  185. * @pid : process id which stored the data in this record
  186. */
  187. struct qdf_dp_trace_record_s {
  188. uint64_t time;
  189. uint8_t code;
  190. uint8_t data[QDF_DP_TRACE_RECORD_SIZE];
  191. uint8_t size;
  192. uint32_t pid;
  193. };
  194. /**
  195. * struct qdf_dp_trace_data - Parameters to configure/control DP trace
  196. * @head: Position of first record
  197. * @tail: Position of last record
  198. * @num: Current index
  199. * @proto_bitmap: defines which protocol to be traced
  200. * @no_of_record: defines every nth packet to be traced
  201. * @verbosity : defines verbosity level
  202. * @enable: enable/disable DP trace
  203. * @count: current packet number
  204. */
  205. struct s_qdf_dp_trace_data {
  206. uint32_t head;
  207. uint32_t tail;
  208. uint32_t num;
  209. uint8_t proto_bitmap;
  210. uint8_t no_of_record;
  211. uint8_t verbosity;
  212. bool enable;
  213. uint32_t count;
  214. };
  215. /* Function declarations and documenation */
  216. /**
  217. * qdf_trace_set_level() - Set the trace level for a particular module
  218. * @level : trace level
  219. *
  220. * Trace level is a member of the QDF_TRACE_LEVEL enumeration indicating
  221. * the severity of the condition causing the trace message to be issued.
  222. * More severe conditions are more likely to be logged.
  223. *
  224. * This is an external API that allows trace levels to be set for each module.
  225. *
  226. * Return: nothing
  227. */
  228. void qdf_trace_set_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  229. /**
  230. * qdf_trace_get_level() - get the trace level
  231. * @level : trace level
  232. *
  233. * This is an external API that returns a bool value to signify if a
  234. * particular trace level is set for the specified module.
  235. * A member of the QDF_TRACE_LEVEL enumeration indicating the severity
  236. * of the condition causing the trace message to be issued.
  237. *
  238. * Note that individual trace levels are the only valid values
  239. * for this API. QDF_TRACE_LEVEL_NONE and QDF_TRACE_LEVEL_ALL
  240. * are not valid input and will return false
  241. *
  242. * Return:
  243. * false - the specified trace level for the specified module is OFF
  244. * true - the specified trace level for the specified module is ON
  245. */
  246. bool qdf_trace_get_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  247. typedef void (*tp_qdf_trace_cb)(void *p_mac, tp_qdf_trace_record, uint16_t);
  248. void qdf_trace(uint8_t module, uint8_t code, uint16_t session, uint32_t data);
  249. void qdf_trace_register(QDF_MODULE_ID, tp_qdf_trace_cb);
  250. QDF_STATUS qdf_trace_spin_lock_init(void);
  251. void qdf_trace_init(void);
  252. void qdf_trace_enable(uint32_t, uint8_t enable);
  253. void qdf_trace_dump_all(void *, uint8_t, uint8_t, uint32_t, uint32_t);
  254. void qdf_dp_trace_spin_lock_init(void);
  255. void qdf_dp_trace_init(void);
  256. void qdf_dp_trace_set_value(uint8_t proto_bitmap, uint8_t no_of_records,
  257. uint8_t verbosity);
  258. void qdf_dp_trace_set_track(qdf_nbuf_t nbuf);
  259. void qdf_dp_trace(qdf_nbuf_t nbuf, enum QDF_DP_TRACE_ID code,
  260. uint8_t *data, uint8_t size);
  261. void qdf_dp_trace_dump_all(uint32_t count);
  262. typedef void (*tp_qdf_dp_trace_cb)(struct qdf_dp_trace_record_s* , uint16_t);
  263. void qdf_dp_display_record(struct qdf_dp_trace_record_s *record,
  264. uint16_t index);
  265. /**
  266. * qdf_trace_msg()- logging API
  267. * @module: Module identifier. A member of the QDF_MODULE_ID enumeration that
  268. * identifies the module issuing the trace message.
  269. * @level: Trace level. A member of the QDF_TRACE_LEVEL enumeration indicating
  270. * the severity of the condition causing the trace message to be issued.
  271. * More severe conditions are more likely to be logged.
  272. * @str_format: Format string. The message to be logged. This format string
  273. * contains printf-like replacement parameters, which follow this
  274. * parameter in the variable argument list.
  275. *
  276. * Users wishing to add tracing information to their code should use
  277. * QDF_TRACE. QDF_TRACE() will compile into a call to qdf_trace_msg() when
  278. * tracing is enabled.
  279. *
  280. * Return: nothing
  281. *
  282. */
  283. void __printf(3, 4) qdf_trace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  284. char *str_format, ...);
  285. void qdf_trace_hex_dump(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  286. void *data, int buf_len);
  287. void qdf_trace_display(void);
  288. void qdf_trace_set_value(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  289. uint8_t on);
  290. void qdf_trace_set_module_trace_level(QDF_MODULE_ID module, uint32_t level);
  291. /* QDF_TRACE is the macro invoked to add trace messages to code. See the
  292. * documenation for qdf_trace_msg() for the parameters etc. for this function.
  293. *
  294. * NOTE: Code QDF_TRACE() macros into the source code. Do not code directly
  295. * to the qdf_trace_msg() function.
  296. *
  297. * NOTE 2: qdf tracing is totally turned off if WLAN_DEBUG is *not* defined.
  298. * This allows us to build 'performance' builds where we can measure performance
  299. * without being bogged down by all the tracing in the code
  300. */
  301. #ifdef CONFIG_MCL
  302. #if defined(WLAN_DEBUG)
  303. #define QDF_TRACE qdf_trace_msg
  304. #define QDF_TRACE_HEX_DUMP qdf_trace_hex_dump
  305. #else
  306. #define QDF_TRACE(arg ...)
  307. #define QDF_TRACE_HEX_DUMP(arg ...)
  308. #endif
  309. #else
  310. #define QDF_TRACE qdf_trace
  311. #define qdf_trace(log_level, args...) \
  312. do { \
  313. extern int qdf_dbg_mask; \
  314. if (qdf_dbg_mask >= log_level) { \
  315. printk("qdf: "args); \
  316. printk("\n"); \
  317. } \
  318. } while (0)
  319. #endif
  320. void __printf(3, 4) qdf_snprintf(char *str_buffer, unsigned int size,
  321. char *str_format, ...);
  322. #define QDF_SNPRINTF qdf_snprintf
  323. #endif /* __QDF_TRACE_H */