spectral_offload.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. /*
  2. * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
  3. *
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. #include "spectral_cmn_api_i.h"
  20. #include "spectral_ol_api_i.h"
  21. /**
  22. * spectral_control_ol()- handler for demultiplexing requests from higher layer
  23. * @pdev: reference to global pdev object
  24. * @id: spectral config command id
  25. * @indata: reference to input data
  26. * @insize: input data size
  27. * @outdata: reference to output data
  28. * @outsize: output data size
  29. *
  30. * This function processes the spectral config command
  31. * and appropriate handlers are invoked.
  32. *
  33. * Return: 0 success else failure
  34. */
  35. int
  36. spectral_control_ol(struct wlan_objmgr_pdev *pdev,
  37. u_int id,
  38. void *indata,
  39. uint32_t insize, void *outdata, uint32_t *outsize)
  40. {
  41. struct spectral_context *sc;
  42. if (!pdev) {
  43. spectral_err("PDEV is NULL!");
  44. return -EPERM;
  45. }
  46. sc = spectral_get_spectral_ctx_from_pdev(pdev);
  47. if (!sc) {
  48. spectral_err("spectral context is NULL!");
  49. return -EPERM;
  50. }
  51. return spectral_control_cmn(pdev, id, indata, insize, outdata, outsize);
  52. }
  53. /**
  54. * pdev_spectral_init_ol() - offload implementation for spectral init
  55. * @pdev: Pointer to pdev
  56. *
  57. * Return: On success, pointer to Spectral target_if internal private data, on
  58. * failure, NULL
  59. */
  60. static void *
  61. pdev_spectral_init_ol(struct wlan_objmgr_pdev *pdev)
  62. {
  63. struct wlan_objmgr_psoc *psoc = NULL;
  64. psoc = wlan_pdev_get_psoc(pdev);
  65. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_pdev_spectral_init(
  66. pdev);
  67. }
  68. /**
  69. * pdev_spectral_deinit_ol() - offload implementation for spectral de-init
  70. * @pdev: Pointer to pdev
  71. *
  72. * Return: None
  73. */
  74. static void
  75. pdev_spectral_deinit_ol(struct wlan_objmgr_pdev *pdev)
  76. {
  77. struct wlan_objmgr_psoc *psoc = NULL;
  78. psoc = wlan_pdev_get_psoc(pdev);
  79. psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_pdev_spectral_deinit(pdev);
  80. }
  81. /**
  82. * set_spectral_config_ol() - Set spectral config
  83. * @pdev: Pointer to pdev object
  84. * @threshtype: spectral parameter type
  85. * @value: value to be configured for the given spectral parameter
  86. *
  87. * Offload implementation for setting spectral config
  88. *
  89. * Return: 0 on success else failure
  90. */
  91. static int
  92. set_spectral_config_ol(struct wlan_objmgr_pdev *pdev,
  93. const uint32_t threshtype, const uint32_t value)
  94. {
  95. struct wlan_objmgr_psoc *psoc = NULL;
  96. psoc = wlan_pdev_get_psoc(pdev);
  97. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_set_spectral_config(
  98. pdev, threshtype, value);
  99. }
  100. /**
  101. * get_spectral_config_ol() - Get spectral configuration
  102. * @pdev: Pointer to pdev object
  103. * @param: Pointer to spectral_config structure in which the configuration
  104. * should be returned
  105. *
  106. * Offload implementation for getting the current spectral configuration
  107. *
  108. * Return: None
  109. */
  110. static void
  111. get_spectral_config_ol(struct wlan_objmgr_pdev *pdev,
  112. struct spectral_config *sptrl_config)
  113. {
  114. struct wlan_objmgr_psoc *psoc = NULL;
  115. psoc = wlan_pdev_get_psoc(pdev);
  116. psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_get_spectral_config(
  117. pdev,
  118. sptrl_config);
  119. }
  120. /**
  121. * start_spectral_scan_ol() - Start spectral scan
  122. * @pdev: Pointer to pdev object
  123. *
  124. * Offload implementation for starting spectral scan
  125. *
  126. * Return: 0 in case of success, -1 on failure
  127. */
  128. static int
  129. start_spectral_scan_ol(struct wlan_objmgr_pdev *pdev)
  130. {
  131. struct wlan_objmgr_psoc *psoc = NULL;
  132. psoc = wlan_pdev_get_psoc(pdev);
  133. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_start_spectral_scan(
  134. pdev);
  135. }
  136. /**
  137. * stop_spectral_scan_ol() - Stop spectral scan
  138. * @pdev: Pointer to pdev object
  139. *
  140. * Offload implementation for stop spectral scan
  141. *
  142. * Return: None
  143. */
  144. static void
  145. stop_spectral_scan_ol(struct wlan_objmgr_pdev *pdev)
  146. {
  147. struct wlan_objmgr_psoc *psoc = NULL;
  148. psoc = wlan_pdev_get_psoc(pdev);
  149. psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_stop_spectral_scan(pdev);
  150. }
  151. /**
  152. * is_spectral_active_ol() - Get whether Spectral is active
  153. * @pdev: Pointer to pdev object
  154. *
  155. * Offload implementation to get whether Spectral is active
  156. *
  157. * Return: True if Spectral is active, false if Spectral is not active
  158. */
  159. static bool
  160. is_spectral_active_ol(struct wlan_objmgr_pdev *pdev)
  161. {
  162. struct wlan_objmgr_psoc *psoc = NULL;
  163. psoc = wlan_pdev_get_psoc(pdev);
  164. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_is_spectral_active(
  165. pdev);
  166. }
  167. /**
  168. * is_spectral_enabled_ol() - Get whether Spectral is active
  169. * @pdev: Pointer to pdev object
  170. *
  171. * Offload implementation to get whether Spectral is active
  172. *
  173. * Return: True if Spectral is active, false if Spectral is not active
  174. */
  175. static bool
  176. is_spectral_enabled_ol(struct wlan_objmgr_pdev *pdev)
  177. {
  178. struct wlan_objmgr_psoc *psoc = NULL;
  179. psoc = wlan_pdev_get_psoc(pdev);
  180. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_is_spectral_enabled(
  181. pdev);
  182. }
  183. /**
  184. * set_debug_level_ol() - Set debug level for Spectral
  185. * @pdev: Pointer to pdev object
  186. * @debug_level: Debug level
  187. *
  188. * Offload implementation to set the debug level for Spectral
  189. *
  190. * Return: 0 in case of success
  191. */
  192. static int
  193. set_debug_level_ol(struct wlan_objmgr_pdev *pdev, uint32_t debug_level)
  194. {
  195. struct wlan_objmgr_psoc *psoc = NULL;
  196. psoc = wlan_pdev_get_psoc(pdev);
  197. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_set_debug_level(
  198. pdev,
  199. debug_level);
  200. }
  201. /**
  202. * get_debug_level_ol() - Get debug level for Spectral
  203. * @pdev: Pointer to pdev object
  204. *
  205. * Offload implementation to get the debug level for Spectral
  206. *
  207. * Return: Current debug level
  208. */
  209. static uint32_t
  210. get_debug_level_ol(struct wlan_objmgr_pdev *pdev)
  211. {
  212. struct wlan_objmgr_psoc *psoc = NULL;
  213. psoc = wlan_pdev_get_psoc(pdev);
  214. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_get_debug_level(pdev);
  215. }
  216. /**
  217. * get_spectral_capinfo_ol() - Get Spectral capability information
  218. * @pdev: Pointer to pdev object
  219. * @outdata: Buffer into which data should be copied
  220. *
  221. * Offload implementation to get the spectral capability information
  222. *
  223. * Return: void
  224. */
  225. static void
  226. get_spectral_capinfo_ol(struct wlan_objmgr_pdev *pdev, void *outdata)
  227. {
  228. struct wlan_objmgr_psoc *psoc = NULL;
  229. psoc = wlan_pdev_get_psoc(pdev);
  230. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_get_spectral_capinfo(
  231. pdev, outdata);
  232. }
  233. /**
  234. * get_spectral_diagstats_ol() - Get Spectral diagnostic statistics
  235. * @pdev: Pointer to pdev object
  236. * @outdata: Buffer into which data should be copied
  237. *
  238. * Offload implementation to get the spectral diagnostic statistics
  239. *
  240. * Return: void
  241. */
  242. static void
  243. get_spectral_diagstats_ol(struct wlan_objmgr_pdev *pdev, void *outdata)
  244. {
  245. struct wlan_objmgr_psoc *psoc = NULL;
  246. psoc = wlan_pdev_get_psoc(pdev);
  247. return psoc->soc_cb.tx_ops.sptrl_tx_ops.sptrlto_get_spectral_diagstats(
  248. pdev, outdata);
  249. }
  250. /**
  251. * register_wmi_spectral_cmd_ops_ol() - Register wmi_spectral_cmd_ops
  252. * @cmd_ops: Pointer to the structure having wmi_spectral_cmd function pointers
  253. * @pdev: Pointer to pdev object
  254. *
  255. * Offload implementation to register wmi_spectral_cmd_ops in spectral
  256. * internal data structure
  257. *
  258. * Return: void
  259. */
  260. static void
  261. register_wmi_spectral_cmd_ops_ol(struct wlan_objmgr_pdev *pdev,
  262. struct wmi_spectral_cmd_ops *cmd_ops)
  263. {
  264. struct wlan_objmgr_psoc *psoc = NULL;
  265. struct wlan_lmac_if_sptrl_tx_ops *psptrl_tx_ops = NULL;
  266. psoc = wlan_pdev_get_psoc(pdev);
  267. psptrl_tx_ops = &psoc->soc_cb.tx_ops.sptrl_tx_ops;
  268. return psptrl_tx_ops->sptrlto_register_wmi_spectral_cmd_ops(pdev,
  269. cmd_ops);
  270. }
  271. void
  272. spectral_ctx_init_ol(struct spectral_context *sc)
  273. {
  274. if (!sc) {
  275. spectral_err("spectral context is null!");
  276. return;
  277. }
  278. sc->sptrlc_spectral_control = spectral_control_ol;
  279. sc->sptrlc_pdev_spectral_init = pdev_spectral_init_ol;
  280. sc->sptrlc_pdev_spectral_deinit = pdev_spectral_deinit_ol;
  281. sc->sptrlc_set_spectral_config = set_spectral_config_ol;
  282. sc->sptrlc_get_spectral_config = get_spectral_config_ol;
  283. sc->sptrlc_start_spectral_scan = start_spectral_scan_ol;
  284. sc->sptrlc_stop_spectral_scan = stop_spectral_scan_ol;
  285. sc->sptrlc_is_spectral_active = is_spectral_active_ol;
  286. sc->sptrlc_is_spectral_enabled = is_spectral_enabled_ol;
  287. sc->sptrlc_set_debug_level = set_debug_level_ol;
  288. sc->sptrlc_get_debug_level = get_debug_level_ol;
  289. sc->sptrlc_get_spectral_capinfo = get_spectral_capinfo_ol;
  290. sc->sptrlc_get_spectral_diagstats = get_spectral_diagstats_ol;
  291. sc->sptrlc_register_wmi_spectral_cmd_ops =
  292. register_wmi_spectral_cmd_ops_ol;
  293. }