wmi_unified_priv.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2013-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. /*
  27. * This file contains the API definitions for the Unified Wireless Module Interface (WMI).
  28. */
  29. #ifndef _WMI_UNIFIED_PRIV_H_
  30. #define _WMI_UNIFIED_PRIV_H_
  31. #include <osdep.h>
  32. #include "a_types.h"
  33. #include "wmi.h"
  34. #include "wmi_unified.h"
  35. #include "cdf_atomic.h"
  36. #define WMI_UNIFIED_MAX_EVENT 0x100
  37. #define WMI_MAX_CMDS 1024
  38. typedef cdf_nbuf_t wmi_buf_t;
  39. #ifdef WMI_INTERFACE_EVENT_LOGGING
  40. #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
  41. struct wmi_command_debug {
  42. uint32_t command;
  43. uint32_t data[4]; /*16 bytes of WMI cmd excluding TLV and WMI headers */
  44. uint64_t time;
  45. };
  46. struct wmi_event_debug {
  47. uint32_t event;
  48. uint32_t data[4]; /*16 bytes of WMI event data excluding TLV header */
  49. uint64_t time;
  50. };
  51. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  52. #ifdef WLAN_OPEN_SOURCE
  53. struct fwdebug {
  54. struct sk_buff_head fwlog_queue;
  55. struct completion fwlog_completion;
  56. A_BOOL fwlog_open;
  57. };
  58. #endif /* WLAN_OPEN_SOURCE */
  59. struct wmi_unified {
  60. ol_scn_t scn_handle; /* handle to device */
  61. cdf_atomic_t pending_cmds;
  62. HTC_ENDPOINT_ID wmi_endpoint_id;
  63. uint16_t max_msg_len;
  64. WMI_EVT_ID event_id[WMI_UNIFIED_MAX_EVENT];
  65. wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
  66. uint32_t max_event_idx;
  67. void *htc_handle;
  68. cdf_spinlock_t eventq_lock;
  69. cdf_nbuf_queue_t event_queue;
  70. struct work_struct rx_event_work;
  71. #ifdef WLAN_OPEN_SOURCE
  72. struct fwdebug dbglog;
  73. struct dentry *debugfs_phy;
  74. #endif /* WLAN_OPEN_SOURCE */
  75. #ifdef WMI_INTERFACE_EVENT_LOGGING
  76. cdf_spinlock_t wmi_record_lock;
  77. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  78. cdf_atomic_t is_target_suspended;
  79. #ifdef FEATURE_RUNTIME_PM
  80. cdf_atomic_t runtime_pm_inprogress;
  81. #endif
  82. int (*wma_process_fw_event_handler_cbk)(struct wmi_unified *wmi_handle,
  83. wmi_buf_t evt_buf);
  84. };
  85. #endif