cfg_mlme_dfs.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. * Copyright (c) 2012-2019 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 centralized definitions of converged configuration.
  20. */
  21. #ifndef __CFG_MLME_DFS_H
  22. #define __CFG_MLME_DFS_H
  23. /*
  24. * <ini>
  25. * gsap_tx_leakage_threshold - sap tx leakage threshold
  26. * @Min: 100
  27. * @Max: 1000
  28. * @Default: 310
  29. *
  30. * customer can set this value from 100 to 1000 which means
  31. * sap tx leakage threshold is -10db to -100db
  32. *
  33. * Related: none
  34. *
  35. * Usage: External
  36. *
  37. * </ini>
  38. */
  39. #define CFG_SAP_TX_LEAKAGE_THRESHOLD CFG_INI_UINT( \
  40. "gsap_tx_leakage_threshold", \
  41. 100, \
  42. 1000, \
  43. 310, \
  44. CFG_VALUE_OR_DEFAULT, \
  45. "sap tx leakage threshold")
  46. /*
  47. * <ini>
  48. * gDFSradarMappingPriMultiplier - dfs pri multiplier
  49. * @Min: 1
  50. * @Max: 10
  51. * @Default: 2
  52. *
  53. * customer can set this value from 1 to 10 which means
  54. * host could handle missing pulses while there is high
  55. * channel loading, for example: 30% ETSI and 50% Japan W53
  56. *
  57. * Related: none
  58. *
  59. * Usage: External
  60. *
  61. * </ini>
  62. */
  63. #define CFG_DFS_RADAR_PRI_MULTIPLIER CFG_INI_UINT( \
  64. "gDFSradarMappingPriMultiplier", \
  65. 1, \
  66. 10, \
  67. 2, \
  68. CFG_VALUE_OR_DEFAULT, \
  69. "dfs pri multiplier")
  70. /*
  71. * <ini>
  72. * gDfsBeaconTxEnhanced - beacon tx enhanced
  73. * @Min: 0
  74. * @Max: 1
  75. * @Default: 0
  76. *
  77. * This ini is used to enhance dfs beacon tx
  78. *
  79. * Related: none
  80. *
  81. * Usage: External
  82. *
  83. * </ini>
  84. */
  85. #define CFG_DFS_BEACON_TX_ENHANCED CFG_INI_BOOL( \
  86. "gDfsBeaconTxEnhanced", \
  87. 0, \
  88. "beacon tx enhanced")
  89. /*
  90. * <ini>
  91. * gPreferNonDfsChanOnRadar - During random channel selection prefer non dfs
  92. * @Min: 0
  93. * @Max: 1
  94. * @Default: 0
  95. *
  96. * During random channel selection prefer non dfs.
  97. *
  98. * Related: none
  99. *
  100. * Usage: External
  101. *
  102. * </ini>
  103. */
  104. #define CFG_ENABLE_NON_DFS_CHAN_ON_RADAR CFG_INI_BOOL( \
  105. "gPreferNonDfsChanOnRadar", \
  106. 0, \
  107. "channel selection prefer non dfs")
  108. /*
  109. * <ini>
  110. * dfsPhyerrFilterOffload - Enable dfs phyerror filtering offload in FW
  111. * @Min: 0
  112. * @Max: 1
  113. * @Default: 0
  114. *
  115. * This ini is used to to enable dfs phyerror filtering offload to firmware
  116. * Enabling it will cause basic phy error to be discarding in firmware.
  117. * Related: NA.
  118. *
  119. * Supported Feature: DFS
  120. *
  121. * Usage: Internal/External
  122. *
  123. * </ini>
  124. */
  125. #define CFG_ENABLE_DFS_PHYERR_FILTEROFFLOAD CFG_INI_BOOL( \
  126. "dfsPhyerrFilterOffload", \
  127. 0, \
  128. "dfs phyerror filtering offload")
  129. /*
  130. * <ini>
  131. * gIgnoreCAC - Used to ignore CAC
  132. * @Min: 0
  133. * @Max: 1
  134. * @Default: 0
  135. *
  136. * This ini is used to set default CAC
  137. *
  138. * Related: None
  139. *
  140. * Supported Feature: DFS
  141. *
  142. * Usage: Internal/External
  143. *
  144. * </ini>
  145. */
  146. #define CFG_IGNORE_CAC CFG_INI_BOOL( \
  147. "gIgnoreCAC", \
  148. 0, \
  149. "ignore CAC on DFS channel")
  150. /*
  151. * <ini>
  152. * gDisableDFSChSwitch - Disable channel switch if radar is found
  153. * @Min: 0
  154. * @Max: 1
  155. * @Default: 0
  156. *
  157. * This ini is used to disable channel switch if radar is found
  158. * on that channel.
  159. * Related: NA.
  160. *
  161. * Supported Feature: DFS
  162. *
  163. * Usage: Internal
  164. *
  165. * </ini>
  166. */
  167. #define CFG_DISABLE_DFS_CH_SWITCH CFG_INI_BOOL( \
  168. "gDisableDFSChSwitch", \
  169. 0, \
  170. "Disable channel switch on radar")
  171. /*
  172. * <ini>
  173. * gEnableDFSMasterCap - Enable DFS master capability
  174. * @Min: 0
  175. * @Max: 1
  176. * @Default: 0
  177. *
  178. * This ini is used to enable/disable the DFS master capability.
  179. * Disabling it will cause driver to not advertise the spectrum
  180. * management capability
  181. * Related: NA.
  182. *
  183. * upported Feature: DFS
  184. *
  185. * Usage: Internal/External
  186. *
  187. * </ini>
  188. */
  189. #define CFG_ENABLE_DFS_MASTER_CAPABILITY CFG_INI_BOOL( \
  190. "gEnableDFSMasterCap", \
  191. 0, \
  192. "DFS master mode capability")
  193. /*
  194. * <ini>
  195. * gDisableDfsJapanW53 - Block W53 channels in random channel selection
  196. * @Min: 0
  197. * @Max: 1
  198. * @Default: 0
  199. *
  200. * This ini is used to block W53 Japan channel in random channel selection
  201. *
  202. * Related: none
  203. *
  204. * Supported Feature: DFS
  205. *
  206. * Usage: External
  207. *
  208. * </ini>
  209. */
  210. #define CFG_DISABLE_DFS_JAPAN_W53 CFG_INI_BOOL( \
  211. "gDisableDfsJapanW53", \
  212. 0, \
  213. "Block W53 channels in random selection")
  214. #define CFG_DFS_ALL \
  215. CFG(CFG_IGNORE_CAC) \
  216. CFG(CFG_DISABLE_DFS_CH_SWITCH) \
  217. CFG(CFG_DFS_BEACON_TX_ENHANCED) \
  218. CFG(CFG_SAP_TX_LEAKAGE_THRESHOLD) \
  219. CFG(CFG_DFS_RADAR_PRI_MULTIPLIER) \
  220. CFG(CFG_ENABLE_NON_DFS_CHAN_ON_RADAR) \
  221. CFG(CFG_ENABLE_DFS_MASTER_CAPABILITY) \
  222. CFG(CFG_DISABLE_DFS_JAPAN_W53) \
  223. CFG(CFG_ENABLE_DFS_PHYERR_FILTEROFFLOAD)
  224. #endif /* __CFG_MLME_DFS_H */