wmi_unified_reg_api.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2017-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: This file contains the API definitions for the Unified Wireless Module
  20. * Interface (WMI) which are specific to Regulatory module.
  21. */
  22. #ifndef _WMI_UNIFIED_REG_API_H_
  23. #define _WMI_UNIFIED_REG_API_H_
  24. #include "reg_services_public_struct.h"
  25. /**
  26. * reg_chan_list_update_handler() - function to update channel list
  27. * @handle: wma handle
  28. * @event_buf: event buffer
  29. * @len: length of buffer
  30. *
  31. * Return: 0 for success or error code
  32. */
  33. QDF_STATUS wmi_extract_reg_chan_list_update_event(void *wmi_hdl,
  34. uint8_t *evt_buf,
  35. struct cur_regulatory_info
  36. *reg_info,
  37. uint32_t len);
  38. /*
  39. * wmi_unified_send_stop_11d_scan_cmd() - stop 11d scan
  40. * @wmi_handle: wmi handle
  41. * @stop_11d_scan: pointer to 11d scan stop req.
  42. *
  43. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
  44. */
  45. QDF_STATUS wmi_unified_send_stop_11d_scan_cmd(wmi_unified_t wmi_handle,
  46. struct reg_stop_11d_scan_req *stop_11d_scan);
  47. /*
  48. * wmi_unified_send_start_11d_scan_cmd() - start 11d scan
  49. * @wmi_handle: wmi handle
  50. * @start_11d_scan: pointer to 11d scan start req.
  51. *
  52. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
  53. */
  54. QDF_STATUS wmi_unified_send_start_11d_scan_cmd(wmi_unified_t wmi_handle,
  55. struct reg_start_11d_scan_req *start_11d_scan);
  56. /**
  57. * wmi_extract_reg_11d_new_cc_event() - function to extract the 11d new country
  58. * @wmi_hdl: wmi handle
  59. * @evt_buf: event buffer
  60. * @reg_11d_new_cc: pointer to new 11d country info
  61. * @len: length of buffer
  62. *
  63. * Return: 0 for success or error code
  64. */
  65. QDF_STATUS wmi_extract_reg_11d_new_cc_event(void *wmi_hdl,
  66. uint8_t *evt_buf,
  67. struct reg_11d_new_country *reg_11d_new_cc,
  68. uint32_t len);
  69. /**
  70. * wmi_unified_set_user_country_code_cmd_send() - WMI set country function
  71. * @wmi_handle: wmi handle.
  72. * @pdev_id: Pdev id
  73. * @rd: User country code or regdomain
  74. *
  75. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  76. */
  77. QDF_STATUS wmi_unified_set_user_country_code_cmd_send(void *wmi_hdl,
  78. uint8_t pdev_id, struct cc_regdmn_s *rd);
  79. /**
  80. * wmi_extract_reg_ch_avoid_event() - process freq avoid event
  81. * @wmi_hdl: wmi handle.
  82. * @evt_buf: event buffer
  83. * @ch_avoid_ind: buffer pointer to save the event processed data
  84. * @len: length of buffer
  85. *
  86. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  87. */
  88. QDF_STATUS wmi_extract_reg_ch_avoid_event(void *wmi_hdl,
  89. uint8_t *evt_buf,
  90. struct ch_avoid_ind_type *ch_avoid_ind,
  91. uint32_t len);
  92. #endif /* _WMI_UNIFIED_REG_API_H_ */