os_if_nan.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright (c) 2012-2019 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. /**
  19. * DOC: declares nan component os interface APIs
  20. */
  21. #ifndef _OS_IF_NAN_H_
  22. #define _OS_IF_NAN_H_
  23. #include "qdf_types.h"
  24. #ifdef WLAN_FEATURE_NAN
  25. #include "nan_public_structs.h"
  26. #include "nan_ucfg_api.h"
  27. /**
  28. * os_if_nan_process_ndp_cmd: os_if api to handle nan request message
  29. * @psoc: pointer to psoc object
  30. * @data: request data. contains vendor cmd tlvs
  31. * @data_len: length of data
  32. *
  33. * Return: status of operation
  34. */
  35. int os_if_nan_process_ndp_cmd(struct wlan_objmgr_psoc *psoc,
  36. const void *data, int data_len);
  37. /**
  38. * os_if_nan_register_hdd_callbacks: os_if api to register hdd callbacks
  39. * @psoc: pointer to psoc object
  40. * @cb_obj: struct pointer containing callbacks
  41. *
  42. * Return: status of operation
  43. */
  44. int os_if_nan_register_hdd_callbacks(struct wlan_objmgr_psoc *psoc,
  45. struct nan_callbacks *cb_obj);
  46. /**
  47. * os_if_nan_register_lim_callbacks: os_if api to register lim callbacks
  48. * @psoc: pointer to psoc object
  49. * @cb_obj: struct pointer containing callbacks
  50. *
  51. * Return: status of operation
  52. */
  53. int os_if_nan_register_lim_callbacks(struct wlan_objmgr_psoc *psoc,
  54. struct nan_callbacks *cb_obj);
  55. /**
  56. * os_if_nan_post_ndi_create_rsp: os_if api to pos ndi create rsp to umac nan
  57. * component
  58. * @psoc: pointer to psoc object
  59. * @vdev_id: vdev id of ndi
  60. * @success: if create was success or failure
  61. *
  62. * Return: None
  63. */
  64. void os_if_nan_post_ndi_create_rsp(struct wlan_objmgr_psoc *psoc,
  65. uint8_t vdev_id, bool success);
  66. /**
  67. * os_if_nan_post_ndi_delete_rsp: os_if api to pos ndi delete rsp to umac nan
  68. * component
  69. * @psoc: pointer to psoc object
  70. * @vdev_id: vdev id of ndi
  71. * @success: if delete was success or failure
  72. *
  73. * Return: None
  74. */
  75. void os_if_nan_post_ndi_delete_rsp(struct wlan_objmgr_psoc *psoc,
  76. uint8_t vdev_id, bool success);
  77. /**
  78. * os_if_nan_ndi_session_end: os_if api to process ndi session end
  79. * component
  80. * @vdev: pointer to vdev deleted
  81. *
  82. * Return: None
  83. */
  84. void os_if_nan_ndi_session_end(struct wlan_objmgr_vdev *vdev);
  85. /**
  86. * os_if_nan_set_ndi_state: os_if api set NDI state
  87. * @vdev: pointer to vdev deleted
  88. * @state: value to set
  89. *
  90. * Return: status of operation
  91. */
  92. static inline QDF_STATUS os_if_nan_set_ndi_state(struct wlan_objmgr_vdev *vdev,
  93. uint32_t state)
  94. {
  95. return ucfg_nan_set_ndi_state(vdev, state);
  96. }
  97. /**
  98. * os_if_nan_set_ndp_create_transaction_id: set ndp create transaction id
  99. * @vdev: pointer to vdev object
  100. * @val: value to set
  101. *
  102. * Return: status of operation
  103. */
  104. static inline QDF_STATUS os_if_nan_set_ndp_create_transaction_id(
  105. struct wlan_objmgr_vdev *vdev,
  106. uint16_t val)
  107. {
  108. return ucfg_nan_set_ndp_create_transaction_id(vdev, val);
  109. }
  110. /**
  111. * os_if_nan_set_ndp_delete_transaction_id: set ndp delete transaction id
  112. * @vdev: pointer to vdev object
  113. * @val: value to set
  114. *
  115. * Return: status of operation
  116. */
  117. static inline QDF_STATUS os_if_nan_set_ndp_delete_transaction_id(
  118. struct wlan_objmgr_vdev *vdev,
  119. uint16_t val)
  120. {
  121. return ucfg_nan_set_ndp_delete_transaction_id(vdev, val);
  122. }
  123. /**
  124. * os_if_nan_legacy_req: os_if api to handle NAN requests attached to the vendor
  125. * command QCA_NL80211_VENDOR_SUBCMD_NAN
  126. * @psoc: pointer to psoc object
  127. * @data: request data. contains vendor cmd tlvs
  128. * @data_len: length of data
  129. *
  130. * Return: status of operation
  131. */
  132. int os_if_nan_legacy_req(struct wlan_objmgr_psoc *psoc, const void *data,
  133. int data_len);
  134. /**
  135. * os_if_process_nan_req: os_if api to handle NAN requests attached to the
  136. * vendor command QCA_NL80211_VENDOR_SUBCMD_NAN_EXT
  137. * @psoc: pointer to psoc object
  138. * @data: request data. contains vendor cmd tlvs
  139. * @data_len: length of data
  140. *
  141. * Return: status of operation
  142. */
  143. int os_if_process_nan_req(struct wlan_objmgr_psoc *psoc,
  144. const void *data, int data_len);
  145. #else
  146. static inline void os_if_nan_post_ndi_create_rsp(struct wlan_objmgr_psoc *psoc,
  147. uint8_t vdev_id, bool success)
  148. {
  149. }
  150. static inline void os_if_nan_post_ndi_delete_rsp(struct wlan_objmgr_psoc *psoc,
  151. uint8_t vdev_id, bool success)
  152. {
  153. }
  154. #endif /* WLAN_FEATURE_NAN */
  155. #endif