wmi_unified_atf_api.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. /*
  19. * This file contains the API definitions for ATF
  20. */
  21. #ifndef _WMI_UNIFIED_ATF_API_H_
  22. #define _WMI_UNIFIED_ATF_API_H_
  23. #include "wmi_unified_atf_param.h"
  24. QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
  25. struct set_bwf_params *param);
  26. #ifdef WLAN_ATF_ENABLE
  27. QDF_STATUS
  28. wmi_unified_set_atf_cmd_send(void *wmi_hdl,
  29. struct set_atf_params *param);
  30. QDF_STATUS
  31. wmi_send_atf_peer_request_cmd(void *wmi_hdl,
  32. struct atf_peer_request_params *param);
  33. QDF_STATUS
  34. wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
  35. struct atf_grouping_params *param);
  36. QDF_STATUS
  37. wmi_send_set_atf_group_ac_cmd(void *wmi_hdl,
  38. struct atf_group_ac_params *param);
  39. QDF_STATUS
  40. wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
  41. wmi_host_atf_peer_stats_event *ev);
  42. QDF_STATUS
  43. wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf, uint8_t idx,
  44. wmi_host_atf_peer_stats_info *atf_token_info);
  45. #endif
  46. void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle);
  47. #endif /* _WMI_UNIFIED_ATF_API_H_ */