wlan_tgt_def_config_hl.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*
  2. * Copyright (c) 2013-2016 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. #ifndef __WLAN_TGT_DEF_CONFIG_H__
  19. #define __WLAN_TGT_DEF_CONFIG_H__
  20. /*
  21. * TODO: please help to consider if we need a seperate config file from LL case.
  22. */
  23. /*
  24. * set of default target config , that can be over written by platform
  25. */
  26. #ifdef QCA_SUPPORT_INTEGRATED_SOC
  27. #define CFG_TGT_NUM_VDEV 3 /*STA, P2P device, P2P GO/Cli*/
  28. #else
  29. /*
  30. * default limit of VAPs per device.
  31. */
  32. #define CFG_TGT_NUM_VDEV 3
  33. #endif
  34. /*
  35. * We would need 1 AST entry per peer. Scale it by a factor of 2 to minimize
  36. * hash collisions.
  37. * TODO: This scaling factor would be taken care inside the WAL in the future.
  38. */
  39. #define CFG_TGT_NUM_PEER_AST 2
  40. /* # of WDS entries to support.
  41. */
  42. #define CFG_TGT_WDS_ENTRIES 2
  43. /* MAC DMA burst size. 0: 128B - default, 1: 256B, 2: 64B
  44. */
  45. #define CFG_TGT_DEFAULT_DMA_BURST_SIZE 0
  46. /* Fixed delimiters to be inserted after every MPDU
  47. */
  48. #define CFG_TGT_DEFAULT_MAC_AGGR_DELIM 0
  49. /*
  50. * This value may need to be fine tuned, but a constant value will
  51. * probably always be appropriate; it is probably not necessary to
  52. * determine this value dynamically.
  53. */
  54. #define CFG_TGT_AST_SKID_LIMIT 6
  55. /*
  56. * total number of peers per device.
  57. * currently set to 8 to bring up IP3.9 for memory size problem
  58. */
  59. #define CFG_TGT_NUM_PEERS 8
  60. /*
  61. * max number of peers per device.
  62. */
  63. #define CFG_TGT_NUM_PEERS_MAX 8
  64. /*
  65. * In offload mode target supports features like WOW, chatter and other
  66. * protocol offloads. In order to support them some functionalities like
  67. * reorder buffering, PN checking need to be done in target. This determines
  68. * maximum number of peers suported by target in offload mode
  69. */
  70. #define CFG_TGT_NUM_OFFLOAD_PEERS 0
  71. /*
  72. * Number of reorder buffers used in offload mode
  73. */
  74. #define CFG_TGT_NUM_OFFLOAD_REORDER_BUFFS 0
  75. /*
  76. * keys per peer node
  77. */
  78. #define CFG_TGT_NUM_PEER_KEYS 2
  79. /*
  80. * total number of TX/RX data TIDs
  81. */
  82. #define CFG_TGT_NUM_TIDS (2 * (CFG_TGT_NUM_PEERS + \
  83. CFG_TGT_NUM_VDEV))
  84. /*
  85. * max number of Tx TIDS
  86. */
  87. #define CFG_TGT_NUM_TIDS_MAX (2 * (CFG_TGT_NUM_PEERS_MAX + \
  88. CFG_TGT_NUM_VDEV))
  89. /*
  90. * number of multicast keys.
  91. */
  92. #define CFG_TGT_NUM_MCAST_KEYS 8
  93. /*
  94. * A value of 3 would probably suffice - one for the control stack, one for
  95. * the data stack, and one for debugging.
  96. * This value may need to be fine tuned, but a constant value will
  97. * probably always be appropriate; it is probably not necessary to
  98. * determine this value dynamically.
  99. */
  100. #define CFG_TGT_NUM_PDEV_HANDLERS 8
  101. /*
  102. * A value of 3 would probably suffice - one for the control stack, one for
  103. * the data stack, and one for debugging.
  104. * This value may need to be fine tuned, but a constant value will
  105. * probably always be appropriate; it is probably not necessary to
  106. * determine this value dynamically.
  107. */
  108. #define CFG_TGT_NUM_VDEV_HANDLERS 4
  109. /*
  110. * set this to 8:
  111. * one for WAL interals (connection pause)
  112. * one for the control stack,
  113. * one for the data stack
  114. * and one for debugging
  115. * This value may need to be fine tuned, but a constant value will
  116. * probably always be appropriate; it is probably not necessary to
  117. * determine this value dynamically.
  118. */
  119. #define CFG_TGT_NUM_HANDLERS 14
  120. /*
  121. * set this to 3: one for the control stack, one for
  122. * the data stack, and one for debugging.
  123. * This value may need to be fine tuned, but a constant value will
  124. * probably always be appropriate; it is probably not necessary to
  125. * determine this value dynamically.
  126. */
  127. #define CFG_TGT_NUM_PEER_HANDLERS 32
  128. /*
  129. * set this to 0x7 (Peregrine = 3 chains).
  130. * need to be set dynamically based on the HW capability.
  131. * this is rome
  132. */
  133. #define CFG_TGT_DEFAULT_TX_CHAIN_MASK 0x3
  134. /*
  135. * set this to 0x7 (Peregrine = 3 chains).
  136. * need to be set dynamically based on the HW capability.
  137. * this is rome
  138. */
  139. #define CFG_TGT_DEFAULT_RX_CHAIN_MASK 0x3
  140. /* 100 ms for video, best-effort, and background */
  141. #define CFG_TGT_RX_TIMEOUT_LO_PRI 100
  142. /* 40 ms for voice*/
  143. #define CFG_TGT_RX_TIMEOUT_HI_PRI 40
  144. /* AR9888 unified is default in ethernet mode */
  145. #define CFG_TGT_RX_DECAP_MODE (0x2)
  146. /* Decap to native Wifi header */
  147. #define CFG_TGT_RX_DECAP_MODE_NWIFI (0x1)
  148. /* Decap to raw mode header */
  149. #define CFG_TGT_RX_DECAP_MODE_RAW (0x0)
  150. /* maximum number of pending scan requests */
  151. #define CFG_TGT_DEFAULT_SCAN_MAX_REQS 0x4
  152. /* maximum number of scan event handlers */
  153. #define CFG_TGT_DEFAULT_SCAN_MAX_HANDLERS 0x4
  154. /* maximum number of VDEV that could use BMISS offload */
  155. #define CFG_TGT_DEFAULT_BMISS_OFFLOAD_MAX_VDEV 0x2
  156. /* maximum number of VDEV offload Roaming to support */
  157. #define CFG_TGT_DEFAULT_ROAM_OFFLOAD_MAX_VDEV 0x2
  158. /* maximum number of AP profiles pushed to offload Roaming */
  159. #define CFG_TGT_DEFAULT_ROAM_OFFLOAD_MAX_PROFILES 0x8
  160. /* maximum number of VDEV offload GTK to support */
  161. #define CFG_TGT_DEFAULT_GTK_OFFLOAD_MAX_VDEV 0x2
  162. /* default: mcast->ucast disabled */
  163. #define CFG_TGT_DEFAULT_NUM_MCAST_GROUPS 0
  164. #define CFG_TGT_DEFAULT_NUM_MCAST_TABLE_ELEMS 0
  165. #define CFG_TGT_DEFAULT_MCAST2UCAST_MODE 0 /* disabled */
  166. /*
  167. * Specify how much memory the target should allocate for a debug log of
  168. * tx PPDU meta-information (how large the PPDU was, when it was sent,
  169. * whether it was successful, etc.)
  170. * The size of the log records is configurable, from a minimum of 28 bytes
  171. * to a maximum of about 300 bytes. A typical configuration would result
  172. * in each log record being about 124 bytes.
  173. * Thus, 1KB of log space can hold about 30 small records, 3 large records,
  174. * or about 8 typical-sized records.
  175. */
  176. #define CFG_TGT_DEFAULT_TX_DBG_LOG_SIZE 1024 /* bytes */
  177. /* target based fragment timeout and MPDU duplicate detection */
  178. #define CFG_TGT_DEFAULT_RX_SKIP_DEFRAG_TIMEOUT_DUP_DETECTION_CHECK 0
  179. /* Default VoW configuration
  180. */
  181. #define CFG_TGT_DEFAULT_VOW_CONFIG 0
  182. /*
  183. * total number of descriptors to use in the target
  184. */
  185. #ifndef HIF_SDIO
  186. #define CFG_TGT_NUM_MSDU_DESC (32)
  187. #else
  188. #define CFG_TGT_NUM_MSDU_DESC (0)
  189. #endif
  190. /*
  191. * Maximum number of frag table entries
  192. */
  193. #define CFG_TGT_MAX_FRAG_TABLE_ENTRIES 2
  194. /*
  195. * number of vdevs that can support tdls
  196. */
  197. #define CFG_TGT_NUM_TDLS_VDEVS 1
  198. /*
  199. * number of peers that each Tdls vdev can track
  200. */
  201. #define CFG_TGT_NUM_TDLS_CONN_TABLE_ENTRIES 32
  202. /*
  203. * number of TDLS concurrent sleep STAs
  204. */
  205. #define CFG_TGT_NUM_TDLS_CONC_SLEEP_STAS 1
  206. /*
  207. * number of TDLS concurrent buffer STAs
  208. */
  209. #define CFG_TGT_NUM_TDLS_CONC_BUFFER_STAS 1
  210. #define CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES 16
  211. /*
  212. * Maximum number of VDEV that beacon tx offload will support
  213. */
  214. #ifdef HIF_SDIO
  215. #define CFG_TGT_DEFAULT_BEACON_TX_OFFLOAD_MAX_VDEV 2
  216. #else
  217. #define CFG_TGT_DEFAULT_BEACON_TX_OFFLOAD_MAX_VDEV 1
  218. #endif
  219. /*
  220. * ht enable highest MCS by default
  221. */
  222. #define CFG_TGT_DEFAULT_GTX_HT_MASK 0x8080
  223. /*
  224. * vht enable highest MCS by default
  225. */
  226. #define CFG_TGT_DEFAULT_GTX_VHT_MASK 0x80200
  227. /*
  228. * threshold to enable GTX
  229. */
  230. #define CFG_TGT_DEFAULT_GTX_PER_THRESHOLD 3
  231. /*
  232. * margin to move back when per > margin + threshold
  233. */
  234. #define CFG_TGT_DEFAULT_GTX_PER_MARGIN 2
  235. /*
  236. * step for every move
  237. */
  238. #define CFG_TGT_DEFAULT_GTX_TPC_STEP 1
  239. /*
  240. * lowest TPC
  241. */
  242. #define CFG_TGT_DEFAULT_GTX_TPC_MIN 0
  243. /*
  244. * enable all BW 20/40/80/160
  245. */
  246. #define CFG_TGT_DEFAULT_GTX_BW_MASK 0xf
  247. /*
  248. * number of vdevs that can support OCB
  249. */
  250. #define CFG_TGT_NUM_OCB_VDEVS 1
  251. /*
  252. * maximum number of channels that can do OCB
  253. */
  254. #define CFG_TGT_NUM_OCB_CHANNELS 2
  255. /*
  256. * maximum number of channels in an OCB schedule
  257. */
  258. #define CFG_TGT_NUM_OCB_SCHEDULES 2
  259. #endif /*__WLAN_TGT_DEF_CONFIG_H__ */