cfg_mlme_power.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * Copyright (c) 2012-2021 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_POWER_H
  22. #define __CFG_MLME_POWER_H
  23. /*
  24. * <cfg>
  25. * max_tx_power_24 - max tx power allowed for 2.4 ghz
  26. * @Min: 0 minimum length of tx power
  27. * @Max: default data length of tx power in string format
  28. * @Default: 1, 14, 20
  29. *
  30. * This ini contains the string in the form of first_channel number,
  31. * number of channels and max tx power triplets
  32. */
  33. #define CFG_MAX_TX_POWER_2_4_DATA "1, 14, 20"
  34. #define CFG_MAX_TX_POWER_2_4 CFG_STRING( \
  35. "max_tx_power_24", \
  36. 0, \
  37. sizeof(CFG_MAX_TX_POWER_2_4_DATA) - 1, \
  38. CFG_MAX_TX_POWER_2_4_DATA, \
  39. "max tx power 24")
  40. /*
  41. * <cfg>
  42. * max_tx_power_5 - max tx power allowed for 5 ghz
  43. * @Min: 0 minimum length of tx power
  44. * @Max: default data length of tx power in string format
  45. * @Default: 36, 126, 20
  46. *
  47. * This ini contains the string in the form of first_channel number,
  48. * number of channels and max tx power triplets
  49. */
  50. #define CFG_MAX_TX_POWER_5_DATA "36, 126, 20"
  51. #define CFG_MAX_TX_POWER_5 CFG_STRING( \
  52. "max_tx_power_5", \
  53. 0, \
  54. sizeof(CFG_MAX_TX_POWER_5_DATA) - 1, \
  55. CFG_MAX_TX_POWER_5_DATA, \
  56. "max tx power 5")
  57. /*
  58. * <ini>
  59. * gPowerUsage - power usage name
  60. * @Min: "Min" - minimum power usage
  61. * @Max: "Max" - maximum power usage
  62. * @Default: "Mod"
  63. *
  64. * Usage: Internal/External
  65. *
  66. * </ini>
  67. */
  68. #define CFG_POWER_USAGE CFG_INI_STRING( \
  69. "gPowerUsage", \
  70. 0, \
  71. 3, \
  72. "Mod", \
  73. "power usage")
  74. /*
  75. * <ini>
  76. * TxPower2g - Limit power in case of 2.4ghz
  77. * @Min: 0
  78. * @Max: 30
  79. * @Default: 30
  80. *
  81. * Usage: Internal/External
  82. *
  83. * </ini>
  84. */
  85. #define CFG_SET_TXPOWER_LIMIT2G CFG_INI_UINT( \
  86. "TxPower2g", \
  87. 0, \
  88. 30, \
  89. 30, \
  90. CFG_VALUE_OR_DEFAULT, \
  91. "power limit 2g")
  92. /*
  93. * <ini>
  94. * TxPower5g - Limit power in case of 5ghz
  95. * @Min: 0
  96. * @Max: 30
  97. * @Default: 30
  98. *
  99. * Usage: Internal/External
  100. *
  101. * </ini>
  102. */
  103. #define CFG_SET_TXPOWER_LIMIT5G CFG_INI_UINT( \
  104. "TxPower5g", \
  105. 0, \
  106. 30, \
  107. 30, \
  108. CFG_VALUE_OR_DEFAULT, \
  109. "power limit 5g")
  110. /*
  111. * <cfg>
  112. * current_tx_power_level - current tx power level
  113. * @Min: 0
  114. * @Max: 128
  115. * @Default: 27
  116. */
  117. #define CFG_CURRENT_TX_POWER_LEVEL CFG_UINT( \
  118. "current_tx_power_level", \
  119. 0, \
  120. 128, \
  121. 27, \
  122. CFG_VALUE_OR_DEFAULT, \
  123. "current tx power level")
  124. /*
  125. * <cfg>
  126. * local_power_constraint - local power constraint
  127. * @Min: 0
  128. * @Max: 255
  129. * @Default: 0
  130. */
  131. #define CFG_LOCAL_POWER_CONSTRAINT CFG_UINT( \
  132. "local_power_constraint", \
  133. 0, \
  134. 255, \
  135. 0, \
  136. CFG_VALUE_OR_DEFAULT, \
  137. "local power constraint")
  138. /*
  139. * <ini>
  140. * use_local_tpe - use local or regulatory TPE
  141. * @Min: 0
  142. * @Max: 1
  143. * @Default: 0
  144. *
  145. * This ini is used to set the preference of local or regulatory TPE. If the
  146. * preferred choice is not available, it will fall back on the other choice.
  147. *
  148. * Related: None
  149. *
  150. * Supported Feature: 6GHz channel transmit power
  151. *
  152. * Usage: External
  153. *
  154. * </ini>
  155. */
  156. #define CFG_USE_LOCAL_TPE CFG_INI_BOOL("use_local_tpe", false, \
  157. "use local or regulatory TPE")
  158. /*
  159. * <ini>
  160. * skip_tpe_consideration - Skip TPE IE value in tx power calculation for
  161. * 2G/5G bands
  162. * @Min: 0
  163. * @Max: 1
  164. * @Default: 1
  165. *
  166. * This ini is to determine if the TPE IE should be considered in the Tx power
  167. * calculation. If the ini is set, host will consider TPE IE in case of 6GHz
  168. * only (skip over in 2GHz or 5GHz case). If the ini is not set, honor the TPE
  169. * IE values in all bands.
  170. *
  171. * Related: None
  172. *
  173. * Supported Feature: Transmit power calculation (TPC)
  174. *
  175. * Usage: External
  176. *
  177. * </ini>
  178. */
  179. #define CFG_SKIP_TPE_CONSIDERATION CFG_INI_BOOL("skip_tpe_consideration", \
  180. true, \
  181. "consider TPE IE in tx power")
  182. #define CFG_MLME_POWER_ALL \
  183. CFG(CFG_MAX_TX_POWER_2_4) \
  184. CFG(CFG_MAX_TX_POWER_5) \
  185. CFG(CFG_POWER_USAGE) \
  186. CFG(CFG_SET_TXPOWER_LIMIT2G) \
  187. CFG(CFG_SET_TXPOWER_LIMIT5G) \
  188. CFG(CFG_CURRENT_TX_POWER_LEVEL) \
  189. CFG(CFG_LOCAL_POWER_CONSTRAINT) \
  190. CFG(CFG_USE_LOCAL_TPE) \
  191. CFG(CFG_SKIP_TPE_CONSIDERATION)
  192. #endif /* __CFG_MLME_POWER_H */