wmi_unified_non_tlv.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #include <osdep.h>
  27. #include "a_types.h"
  28. #include "wmi_unified_param.h"
  29. #include "legacy/wmi.h"
  30. #include "legacy/wmi_unified.h"
  31. #include "ol_defines.h" /* Fix Me: wmi_unified_t structure definition */
  32. QDF_STATUS send_vdev_create_cmd_non_tlv(wmi_unified_t wmi_handle,
  33. uint8_t macaddr[IEEE80211_ADDR_LEN],
  34. struct vdev_create_params *param);
  35. QDF_STATUS send_vdev_delete_cmd_non_tlv(wmi_unified_t wmi_handle,
  36. uint8_t if_id);
  37. QDF_STATUS send_vdev_stop_cmd_non_tlv(wmi_unified_t wmi,
  38. uint8_t vdev_id);
  39. QDF_STATUS send_vdev_down_cmd_non_tlv(wmi_unified_t wmi,
  40. uint8_t vdev_id);
  41. QDF_STATUS send_peer_flush_tids_cmd_non_tlv(wmi_unified_t wmi,
  42. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  43. struct peer_flush_params *param);
  44. QDF_STATUS send_peer_delete_cmd_non_tlv(wmi_unified_t wmi,
  45. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  46. uint8_t vdev_id);
  47. QDF_STATUS send_peer_param_cmd_non_tlv(wmi_unified_t wmi,
  48. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  49. struct peer_set_params *param);
  50. QDF_STATUS send_vdev_up_cmd_non_tlv(wmi_unified_t wmi,
  51. uint8_t bssid[IEEE80211_ADDR_LEN],
  52. struct vdev_up_params *params);
  53. QDF_STATUS send_peer_create_cmd_non_tlv(wmi_unified_t wmi,
  54. struct peer_create_params *param);
  55. QDF_STATUS send_green_ap_ps_cmd_non_tlv(wmi_unified_t wmi_handle,
  56. uint32_t value, uint8_t mac_id);
  57. QDF_STATUS
  58. send_pdev_utf_cmd_non_tlv(wmi_unified_t wmi_handle,
  59. struct pdev_utf_params *param,
  60. uint8_t mac_id);
  61. QDF_STATUS
  62. send_pdev_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  63. struct pdev_params *param,
  64. uint8_t mac_id);
  65. QDF_STATUS send_suspend_cmd_non_tlv(wmi_unified_t wmi_handle,
  66. struct suspend_params *param,
  67. uint8_t mac_id);
  68. QDF_STATUS send_resume_cmd_non_tlv(wmi_unified_t wmi_handle,
  69. uint8_t mac_id);
  70. QDF_STATUS send_wow_enable_cmd_non_tlv(wmi_unified_t wmi_handle,
  71. struct wow_cmd_params *param,
  72. uint8_t mac_id);
  73. QDF_STATUS send_set_ap_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  74. uint8_t *peer_addr,
  75. struct ap_ps_params *param);
  76. QDF_STATUS send_set_sta_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  77. struct sta_ps_params *param);
  78. QDF_STATUS send_crash_inject_cmd_non_tlv(wmi_unified_t wmi_handle,
  79. struct crash_inject *param);
  80. QDF_STATUS
  81. send_dbglog_cmd_non_tlv(wmi_unified_t wmi_handle,
  82. struct dbglog_params *dbglog_param);
  83. QDF_STATUS send_vdev_set_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  84. struct vdev_set_params *param);
  85. QDF_STATUS send_stats_request_cmd_non_tlv(wmi_unified_t wmi_handle,
  86. uint8_t macaddr[IEEE80211_ADDR_LEN],
  87. struct stats_request_params *param);
  88. QDF_STATUS send_beacon_send_cmd_non_tlv(wmi_unified_t wmi_handle,
  89. struct beacon_params *param);
  90. QDF_STATUS send_peer_assoc_cmd_non_tlv(wmi_unified_t wmi_handle,
  91. struct peer_assoc_params *param);
  92. QDF_STATUS send_scan_start_cmd_non_tlv(wmi_unified_t wmi_handle,
  93. struct scan_start_params *param);
  94. QDF_STATUS send_scan_stop_cmd_non_tlv(wmi_unified_t wmi_handle,
  95. struct scan_stop_params *param);
  96. QDF_STATUS send_scan_chan_list_cmd_non_tlv(wmi_unified_t wmi_handle,
  97. struct scan_chan_list_params *param);