qdf_trace.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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. #define FL(x) "%s: %d: " x, __func__, __LINE__
  41. /**
  42. * typedef enum QDF_TRACE_LEVEL - Debug Trace level
  43. * @QDF_TRACE_LEVEL_NONE: no trace will be logged. This value is in place
  44. * for the qdf_trace_setlevel() to allow the user to turn off all traces
  45. * @QDF_TRACE_LEVEL_FATAL: enable trace for fatal Error
  46. * @QDF_TRACE_LEVEL_ERROR: enable trace for errors
  47. * @QDF_TRACE_LEVEL_WARN: enable trace for warnings
  48. * @QDF_TRACE_LEVEL_INFO: enable trace for information
  49. * @QDF_TRACE_LEVEL_INFO_HIGH: enable high level trace information
  50. * @QDF_TRACE_LEVEL_INFO_MED: enable middle level trace information
  51. * @QDF_TRACE_LEVEL_INFO_LOW: enable low level trace information
  52. * @QDF_TRACE_LEVEL_DEBUG: enable trace for debugging
  53. * @QDF_TRACE_LEVEL_ALL: enable all trace
  54. * @QDF_TRACE_LEVEL_MAX: enable max level trace
  55. */
  56. typedef enum {
  57. QDF_TRACE_LEVEL_NONE = 0,
  58. QDF_TRACE_LEVEL_FATAL,
  59. QDF_TRACE_LEVEL_ERROR,
  60. QDF_TRACE_LEVEL_WARN,
  61. QDF_TRACE_LEVEL_INFO,
  62. QDF_TRACE_LEVEL_INFO_HIGH,
  63. QDF_TRACE_LEVEL_INFO_MED,
  64. QDF_TRACE_LEVEL_INFO_LOW,
  65. QDF_TRACE_LEVEL_DEBUG,
  66. QDF_TRACE_LEVEL_ALL,
  67. QDF_TRACE_LEVEL_MAX
  68. } QDF_TRACE_LEVEL;
  69. /*
  70. * Log levels
  71. */
  72. #define QDF_DEBUG_FUNCTRACE 0x01
  73. #define QDF_DEBUG_LEVEL0 0x02
  74. #define QDF_DEBUG_LEVEL1 0x04
  75. #define QDF_DEBUG_LEVEL2 0x08
  76. #define QDF_DEBUG_LEVEL3 0x10
  77. #define QDF_DEBUG_ERROR 0x20
  78. #define QDF_DEBUG_CFG 0x40
  79. #ifdef CONFIG_MCL
  80. /* By default Data Path module will have all log levels enabled, except debug
  81. * log level. Debug level will be left up to the framework or user space modules
  82. * to be enabled when issue is detected
  83. */
  84. #define QDF_DATA_PATH_TRACE_LEVEL \
  85. ((1 << QDF_TRACE_LEVEL_FATAL) | (1 << QDF_TRACE_LEVEL_ERROR) | \
  86. (1 << QDF_TRACE_LEVEL_WARN) | (1 << QDF_TRACE_LEVEL_INFO) | \
  87. (1 << QDF_TRACE_LEVEL_INFO_HIGH) | (1 << QDF_TRACE_LEVEL_INFO_MED) | \
  88. (1 << QDF_TRACE_LEVEL_INFO_LOW))
  89. /* Preprocessor definitions and constants */
  90. #define ASSERT_BUFFER_SIZE (512)
  91. #define MAX_QDF_TRACE_RECORDS 4000
  92. #define INVALID_QDF_TRACE_ADDR 0xffffffff
  93. #define DEFAULT_QDF_TRACE_DUMP_COUNT 0
  94. #include <i_qdf_trace.h>
  95. #define DUMP_DP_TRACE 0
  96. #define ENABLE_DP_TRACE_LIVE_MODE 1
  97. #define CLEAR_DP_TRACE_BUFFER 2
  98. #ifdef TRACE_RECORD
  99. #define MTRACE(p) p
  100. #define NO_SESSION 0xFF
  101. #else
  102. #define MTRACE(p) { }
  103. #endif
  104. /**
  105. * typedef struct qdf_trace_record_s - keep trace record
  106. * @qtime: qtimer ticks
  107. * @time: user timestamp
  108. * @module: module name
  109. * @code: hold record of code
  110. * @session: hold record of session
  111. * @data: hold data
  112. * @pid: hold pid of the process
  113. */
  114. typedef struct qdf_trace_record_s {
  115. uint64_t qtime;
  116. char time[18];
  117. uint8_t module;
  118. uint8_t code;
  119. uint16_t session;
  120. uint32_t data;
  121. uint32_t pid;
  122. } qdf_trace_record_t, *tp_qdf_trace_record;
  123. /**
  124. * typedef struct s_qdf_trace_data - MTRACE logs are stored in ring buffer
  125. * @head: position of first record
  126. * @tail: position of last record
  127. * @num: count of total record
  128. * @num_since_last_dump: count from last dump
  129. * @enable: config for controlling the trace
  130. * @dump_count: Dump after number of records reach this number
  131. */
  132. typedef struct s_qdf_trace_data {
  133. uint32_t head;
  134. uint32_t tail;
  135. uint32_t num;
  136. uint16_t num_since_last_dump;
  137. uint8_t enable;
  138. uint16_t dump_count;
  139. } t_qdf_trace_data;
  140. #define CASE_RETURN_STRING(str) case ((str)): return (uint8_t *)(# str);
  141. /* DP Trace Implementation */
  142. #ifdef FEATURE_DP_TRACE
  143. #define DPTRACE(p) p
  144. #else
  145. #define DPTRACE(p)
  146. #endif
  147. #define MAX_QDF_DP_TRACE_RECORDS 4000
  148. #define QDF_DP_TRACE_RECORD_SIZE 16
  149. #define INVALID_QDF_DP_TRACE_ADDR 0xffffffff
  150. #define QDF_DP_TRACE_VERBOSITY_HIGH 3
  151. #define QDF_DP_TRACE_VERBOSITY_MEDIUM 2
  152. #define QDF_DP_TRACE_VERBOSITY_LOW 1
  153. #define QDF_DP_TRACE_VERBOSITY_DEFAULT 0
  154. /**
  155. * enum QDF_DP_TRACE_ID - Generic ID to identify various events in data path
  156. * @QDF_DP_TRACE_INVALID - invalid
  157. * @QDF_DP_TRACE_DROP_PACKET_RECORD - record drop packet
  158. * @QDF_DP_TRACE_EAPOL_PACKET_RECORD - record EAPOL packet
  159. * @QDF_DP_TRACE_DHCP_PACKET_RECORD - record DHCP packet
  160. * @QDF_DP_TRACE_ARP_PACKET_RECORD - record ARP packet
  161. * @QDF_DP_TRACE_MGMT_PACKET_RECORD - record MGMT pacekt
  162. * QDF_DP_TRACE_EVENT_RECORD - record events
  163. * @QDF_DP_TRACE_DEFAULT_VERBOSITY - below this are part of default verbosity
  164. * @QDF_DP_TRACE_HDD_TX_TIMEOUT - HDD tx timeout
  165. * @QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT- SOFTAP HDD tx timeout
  166. * @QDF_DP_TRACE_HDD_TX_PACKET_PTR_RECORD - HDD layer ptr record
  167. * @QDF_DP_TRACE_CE_PACKET_PTR_RECORD - CE layer ptr record
  168. * @QDF_DP_TRACE_CE_FAST_PACKET_PTR_RECORD- CE fastpath ptr record
  169. * @QDF_DP_TRACE_FREE_PACKET_PTR_RECORD - tx completion ptr record
  170. * @QDF_DP_TRACE_RX_HTT_PACKET_PTR_RECORD - HTT RX record
  171. * @QDF_DP_TRACE_RX_OFFLOAD_HTT_PACKET_PTR_RECORD- HTT RX offload record
  172. * @QDF_DP_TRACE_RX_HDD_PACKET_PTR_RECORD - HDD RX record
  173. * @QDF_DP_TRACE_LOW_VERBOSITY - below this are part of low verbosity
  174. * @QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD -tx queue ptr record
  175. * @QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD - txrx packet ptr record
  176. * @QDF_DP_TRACE_TXRX_FAST_PACKET_PTR_RECORD - txrx fast path record
  177. * @QDF_DP_TRACE_HTT_PACKET_PTR_RECORD - htt packet ptr record
  178. * @QDF_DP_TRACE_HTC_PACKET_PTR_RECORD - htc packet ptr record
  179. * @QDF_DP_TRACE_HIF_PACKET_PTR_RECORD - hif packet ptr record
  180. * @QDF_DP_TRACE_RX_TXRX_PACKET_PTR_RECORD - txrx packet ptr record
  181. * @QDF_DP_TRACE_MED_VERBOSITY - below this are part of med verbosity
  182. * @QDF_DP_TRACE_HDD_TX_PACKET_RECORD - record 32 bytes at HDD
  183. * @QDF_DP_TRACE_HIGH_VERBOSITY - below this are part of high verbosity
  184. */
  185. enum QDF_DP_TRACE_ID {
  186. QDF_DP_TRACE_INVALID,
  187. QDF_DP_TRACE_DROP_PACKET_RECORD,
  188. QDF_DP_TRACE_EAPOL_PACKET_RECORD,
  189. QDF_DP_TRACE_DHCP_PACKET_RECORD,
  190. QDF_DP_TRACE_ARP_PACKET_RECORD,
  191. QDF_DP_TRACE_MGMT_PACKET_RECORD,
  192. QDF_DP_TRACE_EVENT_RECORD,
  193. QDF_DP_TRACE_DEFAULT_VERBOSITY,
  194. QDF_DP_TRACE_HDD_TX_TIMEOUT,
  195. QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT,
  196. QDF_DP_TRACE_HDD_TX_PACKET_PTR_RECORD,
  197. QDF_DP_TRACE_CE_PACKET_PTR_RECORD,
  198. QDF_DP_TRACE_CE_FAST_PACKET_PTR_RECORD,
  199. QDF_DP_TRACE_FREE_PACKET_PTR_RECORD,
  200. QDF_DP_TRACE_RX_HTT_PACKET_PTR_RECORD,
  201. QDF_DP_TRACE_RX_OFFLOAD_HTT_PACKET_PTR_RECORD,
  202. QDF_DP_TRACE_RX_HDD_PACKET_PTR_RECORD,
  203. QDF_DP_TRACE_LOW_VERBOSITY,
  204. QDF_DP_TRACE_TXRX_QUEUE_PACKET_PTR_RECORD,
  205. QDF_DP_TRACE_TXRX_PACKET_PTR_RECORD,
  206. QDF_DP_TRACE_TXRX_FAST_PACKET_PTR_RECORD,
  207. QDF_DP_TRACE_HTT_PACKET_PTR_RECORD,
  208. QDF_DP_TRACE_HTC_PACKET_PTR_RECORD,
  209. QDF_DP_TRACE_HIF_PACKET_PTR_RECORD,
  210. QDF_DP_TRACE_RX_TXRX_PACKET_PTR_RECORD,
  211. QDF_DP_TRACE_MED_VERBOSITY,
  212. QDF_DP_TRACE_HDD_TX_PACKET_RECORD,
  213. QDF_DP_TRACE_HIGH_VERBOSITY,
  214. QDF_DP_TRACE_MAX
  215. };
  216. /**
  217. * qdf_proto_dir - direction
  218. * @QDF_TX: TX direction
  219. * @QDF_RX: RX direction
  220. * @QDF_NA: not applicable
  221. */
  222. enum qdf_proto_dir {
  223. QDF_TX,
  224. QDF_RX,
  225. QDF_NA
  226. };
  227. /**
  228. * struct qdf_dp_trace_ptr_buf - pointer record buffer
  229. * @cookie: cookie value
  230. * @msdu_id: msdu_id
  231. * @status: completion status
  232. */
  233. struct qdf_dp_trace_ptr_buf {
  234. uint64_t cookie;
  235. uint16_t msdu_id;
  236. uint16_t status;
  237. };
  238. /**
  239. * struct qdf_dp_trace_proto_buf - proto packet buffer
  240. * @sa: source address
  241. * @da: destination address
  242. * @vdev_id : vdev id
  243. * @type: packet type
  244. * @subtype: packet subtype
  245. * @dir: direction
  246. */
  247. struct qdf_dp_trace_proto_buf {
  248. struct qdf_mac_addr sa;
  249. struct qdf_mac_addr da;
  250. uint8_t vdev_id;
  251. uint8_t type;
  252. uint8_t subtype;
  253. uint8_t dir;
  254. };
  255. /**
  256. * struct qdf_dp_trace_mgmt_buf - mgmt packet buffer
  257. * @vdev_id : vdev id
  258. * @type: packet type
  259. * @subtype: packet subtype
  260. */
  261. struct qdf_dp_trace_mgmt_buf {
  262. uint8_t vdev_id;
  263. uint8_t type;
  264. uint8_t subtype;
  265. };
  266. /**
  267. * struct qdf_dp_trace_event_buf - event buffer
  268. * @vdev_id : vdev id
  269. * @type: packet type
  270. * @subtype: packet subtype
  271. */
  272. struct qdf_dp_trace_event_buf {
  273. uint8_t vdev_id;
  274. uint8_t type;
  275. uint8_t subtype;
  276. };
  277. /**
  278. * struct qdf_dp_trace_record_s - Describes a record in DP trace
  279. * @time: time when it got stored
  280. * @code: Describes the particular event
  281. * @data: buffer to store data
  282. * @size: Length of the valid data stored in this record
  283. * @pid : process id which stored the data in this record
  284. */
  285. struct qdf_dp_trace_record_s {
  286. char time[20];
  287. uint8_t code;
  288. uint8_t data[QDF_DP_TRACE_RECORD_SIZE];
  289. uint8_t size;
  290. uint32_t pid;
  291. };
  292. /**
  293. * struct qdf_dp_trace_data - Parameters to configure/control DP trace
  294. * @head: Position of first record
  295. * @tail: Position of last record
  296. * @num: Current index
  297. * @proto_bitmap: defines which protocol to be traced
  298. * @no_of_record: defines every nth packet to be traced
  299. * @verbosity : defines verbosity level
  300. * @enable: enable/disable DP trace
  301. * @count: current packet number
  302. */
  303. struct s_qdf_dp_trace_data {
  304. uint32_t head;
  305. uint32_t tail;
  306. uint32_t num;
  307. uint8_t proto_bitmap;
  308. uint8_t no_of_record;
  309. uint8_t verbosity;
  310. bool enable;
  311. uint32_t tx_count;
  312. uint32_t rx_count;
  313. bool live_mode;
  314. };
  315. /* Function declarations and documenation */
  316. /**
  317. * qdf_trace_set_level() - Set the trace level for a particular module
  318. * @level : trace level
  319. *
  320. * Trace level is a member of the QDF_TRACE_LEVEL enumeration indicating
  321. * the severity of the condition causing the trace message to be issued.
  322. * More severe conditions are more likely to be logged.
  323. *
  324. * This is an external API that allows trace levels to be set for each module.
  325. *
  326. * Return: nothing
  327. */
  328. void qdf_trace_set_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  329. /**
  330. * qdf_trace_get_level() - get the trace level
  331. * @level : trace level
  332. *
  333. * This is an external API that returns a bool value to signify if a
  334. * particular trace level is set for the specified module.
  335. * A member of the QDF_TRACE_LEVEL enumeration indicating the severity
  336. * of the condition causing the trace message to be issued.
  337. *
  338. * Note that individual trace levels are the only valid values
  339. * for this API. QDF_TRACE_LEVEL_NONE and QDF_TRACE_LEVEL_ALL
  340. * are not valid input and will return false
  341. *
  342. * Return:
  343. * false - the specified trace level for the specified module is OFF
  344. * true - the specified trace level for the specified module is ON
  345. */
  346. bool qdf_trace_get_level(QDF_MODULE_ID module, QDF_TRACE_LEVEL level);
  347. typedef void (*tp_qdf_trace_cb)(void *p_mac, tp_qdf_trace_record, uint16_t);
  348. typedef void (*tp_qdf_state_info_cb) (char **buf, uint16_t *size);
  349. void qdf_register_debugcb_init(void);
  350. void qdf_register_debug_callback(QDF_MODULE_ID module_id,
  351. tp_qdf_state_info_cb qdf_state_infocb);
  352. QDF_STATUS qdf_state_info_dump_all(char *buf, uint16_t size,
  353. uint16_t *driver_dump_size);
  354. void qdf_trace(uint8_t module, uint8_t code, uint16_t session, uint32_t data);
  355. void qdf_trace_register(QDF_MODULE_ID, tp_qdf_trace_cb);
  356. QDF_STATUS qdf_trace_spin_lock_init(void);
  357. void qdf_trace_init(void);
  358. void qdf_trace_enable(uint32_t, uint8_t enable);
  359. void qdf_trace_dump_all(void *, uint8_t, uint8_t, uint32_t, uint32_t);
  360. #ifdef FEATURE_DP_TRACE
  361. void qdf_dp_trace_log_pkt(uint8_t session_id, struct sk_buff *skb,
  362. enum qdf_proto_dir dir);
  363. void qdf_dp_trace_init(void);
  364. void qdf_dp_trace_spin_lock_init(void);
  365. void qdf_dp_trace_set_value(uint8_t proto_bitmap, uint8_t no_of_records,
  366. uint8_t verbosity);
  367. void qdf_dp_trace_set_track(qdf_nbuf_t nbuf, enum qdf_proto_dir dir);
  368. void qdf_dp_trace(qdf_nbuf_t nbuf, enum QDF_DP_TRACE_ID code,
  369. uint8_t *data, uint8_t size, enum qdf_proto_dir dir);
  370. void qdf_dp_trace_dump_all(uint32_t count);
  371. typedef void (*tp_qdf_dp_trace_cb)(struct qdf_dp_trace_record_s* , uint16_t);
  372. void qdf_dp_display_record(struct qdf_dp_trace_record_s *record,
  373. uint16_t index);
  374. void qdf_dp_trace_ptr(qdf_nbuf_t nbuf, enum QDF_DP_TRACE_ID code,
  375. uint8_t *data, uint8_t size, uint16_t msdu_id, uint16_t status);
  376. void qdf_dp_display_ptr_record(struct qdf_dp_trace_record_s *pRecord,
  377. uint16_t recIndex);
  378. uint8_t qdf_dp_get_proto_bitmap(void);
  379. void
  380. qdf_dp_trace_proto_pkt(enum QDF_DP_TRACE_ID code, uint8_t vdev_id,
  381. uint8_t *sa, uint8_t *da, enum qdf_proto_type type,
  382. enum qdf_proto_subtype subtype, enum qdf_proto_dir dir);
  383. void qdf_dp_display_proto_pkt(struct qdf_dp_trace_record_s *record,
  384. uint16_t index);
  385. void qdf_dp_trace_enable_live_mode(void);
  386. void qdf_dp_trace_clear_buffer(void);
  387. void qdf_dp_trace_mgmt_pkt(enum QDF_DP_TRACE_ID code, uint8_t vdev_id,
  388. enum qdf_proto_type type, enum qdf_proto_subtype subtype);
  389. void qdf_dp_display_mgmt_pkt(struct qdf_dp_trace_record_s *record,
  390. uint16_t index);
  391. void qdf_dp_display_event_record(struct qdf_dp_trace_record_s *record,
  392. uint16_t index);
  393. void qdf_dp_trace_record_event(enum QDF_DP_TRACE_ID code, uint8_t vdev_id,
  394. enum qdf_proto_type type, enum qdf_proto_subtype subtype);
  395. #else
  396. static inline
  397. void qdf_dp_trace_log_pkt(uint8_t session_id, struct sk_buff *skb,
  398. enum qdf_proto_dir dir)
  399. {
  400. }
  401. static inline
  402. void qdf_dp_trace_init(void)
  403. {
  404. }
  405. static inline
  406. void qdf_dp_trace_set_track(qdf_nbuf_t nbuf, enum qdf_proto_dir dir)
  407. {
  408. }
  409. static inline
  410. void qdf_dp_trace_set_value(uint8_t proto_bitmap, uint8_t no_of_records,
  411. uint8_t verbosity)
  412. {
  413. }
  414. static inline
  415. void qdf_dp_trace_dump_all(uint32_t count)
  416. {
  417. }
  418. static inline
  419. void qdf_dp_trace_enable_live_mode(void)
  420. {
  421. }
  422. static inline
  423. void qdf_dp_trace_clear_buffer(void)
  424. {
  425. }
  426. #endif
  427. /**
  428. * qdf_trace_msg()- logging API
  429. * @module: Module identifier. A member of the QDF_MODULE_ID enumeration that
  430. * identifies the module issuing the trace message.
  431. * @level: Trace level. A member of the QDF_TRACE_LEVEL enumeration indicating
  432. * the severity of the condition causing the trace message to be issued.
  433. * More severe conditions are more likely to be logged.
  434. * @str_format: Format string. The message to be logged. This format string
  435. * contains printf-like replacement parameters, which follow this
  436. * parameter in the variable argument list.
  437. *
  438. * Users wishing to add tracing information to their code should use
  439. * QDF_TRACE. QDF_TRACE() will compile into a call to qdf_trace_msg() when
  440. * tracing is enabled.
  441. *
  442. * Return: nothing
  443. *
  444. */
  445. void __printf(3, 4) qdf_trace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  446. char *str_format, ...);
  447. void qdf_trace_hex_dump(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  448. void *data, int buf_len);
  449. void qdf_trace_display(void);
  450. void qdf_trace_set_value(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
  451. uint8_t on);
  452. void qdf_trace_set_module_trace_level(QDF_MODULE_ID module, uint32_t level);
  453. void __printf(3, 4) qdf_snprintf(char *str_buffer, unsigned int size,
  454. char *str_format, ...);
  455. #define QDF_SNPRINTF qdf_snprintf
  456. #else
  457. #define DPTRACE(x)
  458. #define qdf_trace_hex_dump(x, y, z, q)
  459. #endif /* CONFIG_MCL */
  460. #endif /* __QDF_TRACE_H */