son_api.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. /**
  16. * DOC : contains interface prototypes for son api
  17. */
  18. #ifndef _SON_API_H_
  19. #define _SON_API_H_
  20. #include <qdf_types.h>
  21. #include <wlan_objmgr_pdev_obj.h>
  22. #include <reg_services_public_struct.h>
  23. /**
  24. * wlan_son_get_chan_flag() - get chan flag
  25. * @pdev: pointer to pdev
  26. * @freq: qdf_freq_t
  27. * @flag_160: If true, 160 channel info will be obtained;
  28. * otherwise 80+80, 80 channel info will be obtained
  29. * @chan_params: chan parameters
  30. *
  31. * Return: combination of enum qca_wlan_vendor_channel_prop_flags and
  32. * enum qca_wlan_vendor_channel_prop_flags_2
  33. */
  34. uint32_t wlan_son_get_chan_flag(struct wlan_objmgr_pdev *pdev,
  35. qdf_freq_t freq, bool flag_160,
  36. struct ch_params *chan_params);
  37. #endif