wmi_unified_smart_ant_api.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. * DOC: Implement API's specific to Smart Antenna component.
  20. */
  21. #ifndef _WMI_UNIFIED_SMART_ANT_API_H_
  22. #define _WMI_UNIFIED_SMART_ANT_API_H_
  23. #include "wmi_unified_smart_ant_param.h"
  24. QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
  25. struct smart_ant_enable_params *param);
  26. QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
  27. struct smart_ant_rx_ant_params *param);
  28. QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
  29. uint8_t macaddr[IEEE80211_ADDR_LEN],
  30. struct smart_ant_tx_ant_params *param);
  31. QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
  32. uint8_t macaddr[IEEE80211_ADDR_LEN],
  33. struct smart_ant_training_info_params *param);
  34. QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
  35. uint8_t macaddr[IEEE80211_ADDR_LEN],
  36. struct smart_ant_node_config_params *param);
  37. QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
  38. struct ant_switch_tbl_params *param);
  39. #endif /* _WMI_UNIFIED_SMART_ANT_API_H_ */