feature.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2014 Broadcom Corporation
  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. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  11. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  13. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  14. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef _BRCMF_FEATURE_H
  17. #define _BRCMF_FEATURE_H
  18. /*
  19. * Features:
  20. *
  21. * MCHAN: multi-channel for concurrent P2P.
  22. */
  23. #define BRCMF_FEAT_LIST \
  24. BRCMF_FEAT_DEF(MBSS) \
  25. BRCMF_FEAT_DEF(MCHAN) \
  26. BRCMF_FEAT_DEF(WOWL)
  27. /*
  28. * Quirks:
  29. *
  30. * AUTO_AUTH: workaround needed for automatic authentication type.
  31. * NEED_MPC: driver needs to disable MPC during scanning operation.
  32. */
  33. #define BRCMF_QUIRK_LIST \
  34. BRCMF_QUIRK_DEF(AUTO_AUTH) \
  35. BRCMF_QUIRK_DEF(NEED_MPC)
  36. #define BRCMF_FEAT_DEF(_f) \
  37. BRCMF_FEAT_ ## _f,
  38. /*
  39. * expand feature list to enumeration.
  40. */
  41. enum brcmf_feat_id {
  42. BRCMF_FEAT_LIST
  43. BRCMF_FEAT_LAST
  44. };
  45. #undef BRCMF_FEAT_DEF
  46. #define BRCMF_QUIRK_DEF(_q) \
  47. BRCMF_FEAT_QUIRK_ ## _q,
  48. /*
  49. * expand quirk list to enumeration.
  50. */
  51. enum brcmf_feat_quirk {
  52. BRCMF_QUIRK_LIST
  53. BRCMF_FEAT_QUIRK_LAST
  54. };
  55. #undef BRCMF_QUIRK_DEF
  56. /**
  57. * brcmf_feat_attach() - determine features and quirks.
  58. *
  59. * @drvr: driver instance.
  60. */
  61. void brcmf_feat_attach(struct brcmf_pub *drvr);
  62. /**
  63. * brcmf_feat_is_enabled() - query feature.
  64. *
  65. * @ifp: interface instance.
  66. * @id: feature id to check.
  67. *
  68. * Return: true is feature is enabled; otherwise false.
  69. */
  70. bool brcmf_feat_is_enabled(struct brcmf_if *ifp, enum brcmf_feat_id id);
  71. /**
  72. * brcmf_feat_is_quirk_enabled() - query chip quirk.
  73. *
  74. * @ifp: interface instance.
  75. * @quirk: quirk id to check.
  76. *
  77. * Return: true is quirk is enabled; otherwise false.
  78. */
  79. bool brcmf_feat_is_quirk_enabled(struct brcmf_if *ifp,
  80. enum brcmf_feat_quirk quirk);
  81. #endif /* _BRCMF_FEATURE_H */