wmi_unified_non_tlv.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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 "ol_defines.h" /* Fix Me: wmi_unified_t structure definition */
  30. QDF_STATUS send_vdev_create_cmd_non_tlv(wmi_unified_t wmi_handle,
  31. uint8_t macaddr[IEEE80211_ADDR_LEN],
  32. struct vdev_create_params *param);
  33. QDF_STATUS send_vdev_delete_cmd_non_tlv(wmi_unified_t wmi_handle,
  34. uint8_t if_id);
  35. QDF_STATUS send_vdev_stop_cmd_non_tlv(wmi_unified_t wmi,
  36. uint8_t vdev_id);
  37. QDF_STATUS send_vdev_down_cmd_non_tlv(wmi_unified_t wmi,
  38. uint8_t vdev_id);
  39. QDF_STATUS send_peer_flush_tids_cmd_non_tlv(wmi_unified_t wmi,
  40. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  41. struct peer_flush_params *param);
  42. QDF_STATUS send_peer_delete_cmd_non_tlv(wmi_unified_t wmi,
  43. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  44. uint8_t vdev_id);
  45. QDF_STATUS send_peer_param_cmd_non_tlv(wmi_unified_t wmi,
  46. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  47. struct peer_set_params *param);
  48. QDF_STATUS send_vdev_up_cmd_non_tlv(wmi_unified_t wmi,
  49. uint8_t bssid[IEEE80211_ADDR_LEN],
  50. struct vdev_up_params *params);
  51. QDF_STATUS send_peer_create_cmd_non_tlv(wmi_unified_t wmi,
  52. struct peer_create_params *param);
  53. QDF_STATUS send_green_ap_ps_cmd_non_tlv(wmi_unified_t wmi_handle,
  54. uint32_t value, uint8_t mac_id);
  55. QDF_STATUS
  56. send_pdev_utf_cmd_non_tlv(wmi_unified_t wmi_handle,
  57. struct pdev_utf_params *param,
  58. uint8_t mac_id);
  59. QDF_STATUS
  60. send_pdev_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  61. struct pdev_params *param,
  62. uint8_t mac_id);
  63. QDF_STATUS send_suspend_cmd_non_tlv(wmi_unified_t wmi_handle,
  64. struct suspend_params *param,
  65. uint8_t mac_id);
  66. QDF_STATUS send_resume_cmd_non_tlv(wmi_unified_t wmi_handle,
  67. uint8_t mac_id);
  68. QDF_STATUS send_wow_enable_cmd_non_tlv(wmi_unified_t wmi_handle,
  69. struct wow_cmd_params *param,
  70. uint8_t mac_id);
  71. QDF_STATUS send_set_ap_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  72. uint8_t *peer_addr,
  73. struct ap_ps_params *param);
  74. QDF_STATUS send_set_sta_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  75. struct sta_ps_params *param);
  76. QDF_STATUS send_crash_inject_cmd_non_tlv(wmi_unified_t wmi_handle,
  77. struct crash_inject *param);
  78. QDF_STATUS
  79. send_dbglog_cmd_non_tlv(wmi_unified_t wmi_handle,
  80. struct dbglog_params *dbglog_param);
  81. QDF_STATUS send_vdev_set_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  82. struct vdev_set_params *param);
  83. QDF_STATUS send_stats_request_cmd_non_tlv(wmi_unified_t wmi_handle,
  84. uint8_t macaddr[IEEE80211_ADDR_LEN],
  85. struct stats_request_params *param);
  86. QDF_STATUS send_packet_log_enable_cmd_non_tlv(wmi_unified_t wmi_handle,
  87. uint8_t macaddr[IEEE80211_ADDR_LEN],
  88. struct packet_enable_params *param);
  89. QDF_STATUS send_beacon_send_cmd_non_tlv(wmi_unified_t wmi_handle,
  90. struct beacon_params *param);
  91. QDF_STATUS send_peer_assoc_cmd_non_tlv(wmi_unified_t wmi_handle,
  92. struct peer_assoc_params *param);
  93. QDF_STATUS send_scan_start_cmd_non_tlv(wmi_unified_t wmi_handle,
  94. struct scan_start_params *param);
  95. QDF_STATUS send_scan_stop_cmd_non_tlv(wmi_unified_t wmi_handle,
  96. struct scan_stop_params *param);
  97. QDF_STATUS send_scan_chan_list_cmd_non_tlv(wmi_unified_t wmi_handle,
  98. struct scan_chan_list_params *param);