feature.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. * MBSS: multiple BSSID support (eg. guest network in AP mode).
  22. * MCHAN: multi-channel for concurrent P2P.
  23. * PNO: preferred network offload.
  24. * WOWL: Wake-On-WLAN.
  25. * P2P: peer-to-peer
  26. * RSDB: Real Simultaneous Dual Band
  27. * TDLS: Tunneled Direct Link Setup
  28. * SCAN_RANDOM_MAC: Random MAC during (net detect) scheduled scan.
  29. * WOWL_ND: WOWL net detect (PNO)
  30. * WOWL_GTK: (WOWL) GTK rekeying offload
  31. * WOWL_ARP_ND: ARP and Neighbor Discovery offload support during WOWL.
  32. * MFP: 802.11w Management Frame Protection.
  33. * GSCAN: enhanced scan offload feature.
  34. * FWSUP: Firmware supplicant.
  35. */
  36. #define BRCMF_FEAT_LIST \
  37. BRCMF_FEAT_DEF(MBSS) \
  38. BRCMF_FEAT_DEF(MCHAN) \
  39. BRCMF_FEAT_DEF(PNO) \
  40. BRCMF_FEAT_DEF(WOWL) \
  41. BRCMF_FEAT_DEF(P2P) \
  42. BRCMF_FEAT_DEF(RSDB) \
  43. BRCMF_FEAT_DEF(TDLS) \
  44. BRCMF_FEAT_DEF(SCAN_RANDOM_MAC) \
  45. BRCMF_FEAT_DEF(WOWL_ND) \
  46. BRCMF_FEAT_DEF(WOWL_GTK) \
  47. BRCMF_FEAT_DEF(WOWL_ARP_ND) \
  48. BRCMF_FEAT_DEF(MFP) \
  49. BRCMF_FEAT_DEF(GSCAN) \
  50. BRCMF_FEAT_DEF(FWSUP)
  51. /*
  52. * Quirks:
  53. *
  54. * AUTO_AUTH: workaround needed for automatic authentication type.
  55. * NEED_MPC: driver needs to disable MPC during scanning operation.
  56. */
  57. #define BRCMF_QUIRK_LIST \
  58. BRCMF_QUIRK_DEF(AUTO_AUTH) \
  59. BRCMF_QUIRK_DEF(NEED_MPC)
  60. #define BRCMF_FEAT_DEF(_f) \
  61. BRCMF_FEAT_ ## _f,
  62. /*
  63. * expand feature list to enumeration.
  64. */
  65. enum brcmf_feat_id {
  66. BRCMF_FEAT_LIST
  67. BRCMF_FEAT_LAST
  68. };
  69. #undef BRCMF_FEAT_DEF
  70. #define BRCMF_QUIRK_DEF(_q) \
  71. BRCMF_FEAT_QUIRK_ ## _q,
  72. /*
  73. * expand quirk list to enumeration.
  74. */
  75. enum brcmf_feat_quirk {
  76. BRCMF_QUIRK_LIST
  77. BRCMF_FEAT_QUIRK_LAST
  78. };
  79. #undef BRCMF_QUIRK_DEF
  80. /**
  81. * brcmf_feat_attach() - determine features and quirks.
  82. *
  83. * @drvr: driver instance.
  84. */
  85. void brcmf_feat_attach(struct brcmf_pub *drvr);
  86. /**
  87. * brcmf_feat_is_enabled() - query feature.
  88. *
  89. * @ifp: interface instance.
  90. * @id: feature id to check.
  91. *
  92. * Return: true is feature is enabled; otherwise false.
  93. */
  94. bool brcmf_feat_is_enabled(struct brcmf_if *ifp, enum brcmf_feat_id id);
  95. /**
  96. * brcmf_feat_is_quirk_enabled() - query chip quirk.
  97. *
  98. * @ifp: interface instance.
  99. * @quirk: quirk id to check.
  100. *
  101. * Return: true is quirk is enabled; otherwise false.
  102. */
  103. bool brcmf_feat_is_quirk_enabled(struct brcmf_if *ifp,
  104. enum brcmf_feat_quirk quirk);
  105. #endif /* _BRCMF_FEATURE_H */