dbglog_common.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2011, 2014-2015 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _DBGLOG_COMMON_H_
  19. #define _DBGLOG_COMMON_H_
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #include "dbglog_id.h"
  24. #include "dbglog.h"
  25. #define MAX_DBG_MSGS 256
  26. #define ATH6KL_FWLOG_PAYLOAD_SIZE 1500
  27. #define DBGLOG_PRINT_PREFIX "FWLOG: "
  28. /* Handy Macros to read data length and type from FW */
  29. #define WLAN_DIAG_0_TYPE_S 0
  30. #define WLAN_DIAG_0_TYPE 0x000000ff
  31. #define WLAN_DIAG_0_TYPE_GET(x) WMI_F_MS(x, WLAN_DIAG_0_TYPE)
  32. #define WLAN_DIAG_0_TYPE_SET(x, y) WMI_F_RMW(x, y, WLAN_DIAG_0_TYPE)
  33. /* bits 8-15 reserved */
  34. /* length includes the size of wlan_diag_data */
  35. #define WLAN_DIAG_0_LEN_S 16
  36. #define WLAN_DIAG_0_LEN 0xffff0000
  37. #define WLAN_DIAG_0_LEN_GET(x) WMI_F_MS(x, WLAN_DIAG_0_LEN)
  38. #define WLAN_DIAG_0_LEN_SET(x, y) WMI_F_RMW(x, y, WLAN_DIAG_0_LEN)
  39. #define CNSS_DIAG_SLEEP_INTERVAL 5 /* In secs */
  40. #define ATH6KL_FWLOG_MAX_ENTRIES 20
  41. #define ATH6KL_FWLOG_PAYLOAD_SIZE 1500
  42. #define DIAG_WLAN_DRIVER_UNLOADED 6
  43. #define DIAG_WLAN_DRIVER_LOADED 7
  44. #define DIAG_TYPE_LOGS 1
  45. #define DIAG_TYPE_EVENTS 2
  46. typedef enum {
  47. DBGLOG_PROCESS_DEFAULT = 0,
  48. DBGLOG_PROCESS_PRINT_RAW, /* print them in debug view */
  49. DBGLOG_PROCESS_POOL_RAW, /* user buffer pool to save them */
  50. DBGLOG_PROCESS_NET_RAW, /* user buffer pool to save them */
  51. DBGLOG_PROCESS_MAX,
  52. } dbglog_process_t;
  53. enum cnss_diag_type {
  54. DIAG_TYPE_FW_EVENT, /* send fw event- to diag */
  55. DIAG_TYPE_FW_LOG, /* send log event- to diag */
  56. DIAG_TYPE_FW_DEBUG_MSG, /* send dbg message- to diag */
  57. DIAG_TYPE_INIT_REQ, /* cnss_diag initialization- from diag */
  58. DIAG_TYPE_FW_MSG, /* fw msg command-to diag */
  59. DIAG_TYPE_HOST_MSG, /* host command-to diag */
  60. DIAG_TYPE_CRASH_INJECT, /*crash inject-from diag */
  61. DIAG_TYPE_DBG_LEVEL, /* DBG LEVEL-from diag */
  62. };
  63. enum wlan_diag_config_type {
  64. DIAG_VERSION_INFO,
  65. };
  66. enum wlan_diag_frame_type {
  67. WLAN_DIAG_TYPE_CONFIG,
  68. WLAN_DIAG_TYPE_EVENT,
  69. WLAN_DIAG_TYPE_LOG,
  70. WLAN_DIAG_TYPE_MSG,
  71. WLAN_DIAG_TYPE_LEGACY_MSG,
  72. };
  73. /* log/event are always 32-bit aligned. Padding is inserted after
  74. * optional payload to satisify this requirement */
  75. struct wlan_diag_data {
  76. unsigned int word0; /* type, length */
  77. unsigned int target_time;
  78. unsigned int code; /* Diag log or event Code */
  79. uint8_t payload[0];
  80. };
  81. struct dbglog_slot {
  82. unsigned int diag_type;
  83. unsigned int timestamp;
  84. unsigned int length;
  85. unsigned int dropped;
  86. /* max ATH6KL_FWLOG_PAYLOAD_SIZE bytes */
  87. uint8_t payload[0];
  88. } __packed;
  89. typedef struct event_report_s {
  90. unsigned int diag_type;
  91. unsigned short event_id;
  92. unsigned short length;
  93. } event_report_t;
  94. /*
  95. * Custom debug_print handlers
  96. * Args:
  97. * module Id
  98. * vap id
  99. * debug msg id
  100. * Time stamp
  101. * no of arguments
  102. * pointer to the buffer holding the args
  103. */
  104. typedef A_BOOL (*module_dbg_print)(A_UINT32, A_UINT16, A_UINT32,
  105. A_UINT32, A_UINT16, A_UINT32 *);
  106. /** Register module specific dbg print*/
  107. void dbglog_reg_modprint(A_UINT32 mod_id, module_dbg_print printfn);
  108. #ifdef __cplusplus
  109. }
  110. #endif
  111. #endif /* _DBGLOG_COMMON_H_ */