wmi_unified_extscan_api.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2013-2018 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. #ifndef _WMI_UNIFIED_EXTSCAN_API_H_
  19. #define _WMI_UNIFIED_EXTSCAN_API_H_
  20. QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
  21. struct wifi_passpoint_req_param *req);
  22. QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
  23. struct wifi_passpoint_req_param *req);
  24. QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
  25. struct wifi_enhanced_pno_params *req);
  26. QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
  27. struct extscan_capabilities_params *pgetcapab);
  28. QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
  29. struct extscan_cached_result_params *pcached_results);
  30. QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
  31. struct extscan_capabilities_reset_params *reset_req);
  32. QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
  33. struct extscan_set_sig_changereq_params *
  34. psigchange);
  35. QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
  36. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  37. /**
  38. * wmi_unified_extscan_start_hotlist_monitor_cmd() - start hotlist monitor
  39. * @wmi_hdl: wmi handle
  40. * @params: hotlist params
  41. *
  42. * This function configures hotlist monitor to start in fw.
  43. *
  44. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  45. */
  46. QDF_STATUS wmi_unified_extscan_start_hotlist_monitor_cmd(void *wmi_hdl,
  47. struct extscan_bssid_hotlist_set_params *params);
  48. QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
  49. struct extscan_stop_req_params *pstopcmd);
  50. QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
  51. struct wifi_scan_cmd_req_params *pstart);
  52. #endif /* _WMI_UNIFIED_EXTSCAN_API_H_ */