wlan_spectral_ucfg_api.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #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. * @id: Spectral operation ID
  28. * @indata: Pointer to input data
  29. * @insize: Size of indata buffer
  30. * @outdata: Pointer to buffer where the output should be stored
  31. * @outsize: Size of outdata buffer
  32. *
  33. * Carry out Spectral specific UCFG control get/set operations
  34. *
  35. * Return: 0 on success, negative value on failure
  36. */
  37. int ucfg_spectral_control(struct wlan_objmgr_pdev *pdev,
  38. u_int id,
  39. void *indata,
  40. uint32_t insize, void *outdata, uint32_t *outsize);
  41. /**
  42. * ucfg_spectral_scan_set_ppid() - configure pid of spectral tool
  43. * @pdev: Pointer to pdev
  44. * @ppid: Spectral tool pid
  45. *
  46. * Configure pid of spectral tool
  47. *
  48. * Return: None
  49. */
  50. void ucfg_spectral_scan_set_ppid(struct wlan_objmgr_pdev *pdev,
  51. uint32_t ppid);
  52. #endif /* _WLAN_SPECTRAL_UCFG_API_H_ */