wlan_spectral_ucfg_api.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2017-2019 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. #ifndef _WLAN_SPECTRAL_UCFG_API_H_
  20. #define _WLAN_SPECTRAL_UCFG_API_H_
  21. #include <wlan_objmgr_cmn.h>
  22. #include <wlan_spectral_public_structs.h>
  23. /* Spectral specific UCFG set operations */
  24. /**
  25. * ucfg_spectral_control() - Carry out Spectral control operations
  26. * @pdev: Pointer to pdev
  27. * @sscan_req: spectral related control request
  28. *
  29. * Carry out Spectral specific UCFG control get/set operations
  30. *
  31. * Return: 0 on success, negative value on failure
  32. */
  33. QDF_STATUS ucfg_spectral_control(struct wlan_objmgr_pdev *pdev,
  34. struct spectral_cp_request *sscan_req);
  35. /**
  36. * ucfg_spectral_scan_set_ppid() - configure pid of spectral tool
  37. * @pdev: Pointer to pdev
  38. * @ppid: Spectral tool pid
  39. *
  40. * Configure pid of spectral tool
  41. *
  42. * Return: None
  43. */
  44. void ucfg_spectral_scan_set_ppid(struct wlan_objmgr_pdev *pdev,
  45. uint32_t ppid);
  46. /**
  47. * ucfg_spectral_create_cp_req() - Create Spectral control path request
  48. * @sscan_req: Pointer to Spectral scan request
  49. * @indata: pointer input data
  50. * @insize: Size of input data
  51. *
  52. * Create Spectral control path request structure
  53. *
  54. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_FAILURE on failure
  55. */
  56. QDF_STATUS ucfg_spectral_create_cp_req(struct spectral_cp_request *sscan_req,
  57. void *indata, u_int32_t insize);
  58. /**
  59. * ucfg_spectral_create_cp_req() - Extract response from Spectral CP request
  60. * @sscan_req: Pointer to Spectral scan request
  61. * @outdata: pointer output data
  62. * @outsize: Size of output data
  63. *
  64. * Extract response from Spectral control path request
  65. *
  66. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_FAILURE on failure
  67. */
  68. QDF_STATUS ucfg_spectral_extract_response(struct spectral_cp_request *sscan_req,
  69. void *outdata, u_int32_t *outsize);
  70. /**
  71. * ucfg_spectral_register_to_dbr() - Register spectral to DBR
  72. * @pdev: Pointer to pdev object
  73. *
  74. * Register spectral to Direct Buffer RX component
  75. *
  76. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_FAILURE on failure
  77. */
  78. QDF_STATUS ucfg_spectral_register_to_dbr(struct wlan_objmgr_pdev *pdev);
  79. #endif /* _WLAN_SPECTRAL_UCFG_API_H_ */