wlan_defs.h 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258
  1. /*
  2. * Copyright (c) 2013-2016, 2018-2019 The Linux Foundation. All rights reserved.*
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef __WLAN_DEFS_H__
  27. #define __WLAN_DEFS_H__
  28. #include <a_osapi.h> /* A_COMPILE_TIME_ASSERT */
  29. /*
  30. * This file contains WLAN definitions that may be used across both
  31. * Host and Target software.
  32. */
  33. /*
  34. * MAX_SPATIAL_STREAM should be defined in a fwconfig_xxx.h file,
  35. * but for now provide a default value here in case it's not defined
  36. * in the fwconfig_xxx.h file.
  37. */
  38. #ifndef MAX_SPATIAL_STREAM
  39. #define MAX_SPATIAL_STREAM 3
  40. #endif
  41. /*
  42. * NOTE: The CONFIG_160MHZ_SUPPORT is not used consistently - some code
  43. * uses "#ifdef CONFIG_160MHZ_SUPPORT" while other code uses
  44. * "#if CONFIG_160MHZ_SUPPORT".
  45. * This use is being standardized in the recent versions of code to use
  46. * #ifdef, but is being left as is in the legacy code branches.
  47. * To minimize impact to legacy code branches, this file internally
  48. * converts CONFIG_160MHZ_SUPPORT=0 to having CONFIG_160MHZ_SUPPORT
  49. * undefined.
  50. * For builds that explicitly set CONFIG_160MHZ_SUPPORT=0, the bottom of
  51. * this file restores CONFIG_160MHZ_SUPPORT from being undefined to being 0.
  52. */
  53. // OLD:
  54. //#ifndef CONFIG_160MHZ_SUPPORT
  55. //#define CONFIG_160MHZ_SUPPORT 0 /* default: 160 MHz channels not supported */
  56. //#endif
  57. // NEW:
  58. #ifdef CONFIG_160MHZ_SUPPORT
  59. /* CONFIG_160MHZ_SUPPORT is explicitly enabled or explicitly disabled */
  60. #if !CONFIG_160MHZ_SUPPORT
  61. /* CONFIG_160MHZ_SUPPORT is explicitly disabled */
  62. /* Change from CONFIG_160MHZ_SUPPORT=0 to CONFIG_160MHZ_SUPPORT=<undef> */
  63. #undef CONFIG_160MHZ_SUPPORT
  64. /*
  65. * Set a flag to indicate this CONFIG_160MHZ_SUPPORT = 0 --> undef
  66. * change has been done, so we can undo the change at the bottom
  67. * of the file.
  68. */
  69. #define CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  70. #endif
  71. #else
  72. /*
  73. * For backwards compatibility, if CONFIG_160MHZ_SUPPORT is not defined,
  74. * default it to 0, if this is either a host build or a Rome target build.
  75. * This maintains the prior behavior for the host and Rome target builds.
  76. */
  77. #if defined(AR6320) || !defined(ATH_TARGET)
  78. /*
  79. * Set a flag to indicate that at the end of the file,
  80. * CONFIG_160MHZ_SUPPORT should be set to 0.
  81. */
  82. #define CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  83. #endif
  84. #endif
  85. #ifndef SUPPORT_11AX
  86. #define SUPPORT_11AX 0 /* 11ax not supported by default */
  87. #endif
  88. /*
  89. * MAX_SPATIAL_STREAM_ANY -
  90. * what is the largest number of spatial streams that any target supports
  91. */
  92. #define MAX_SPATIAL_STREAM_ANY_V2 4 /* pre-hawkeye */
  93. #define MAX_SPATIAL_STREAM_ANY_V3 8 /* includes hawkeye */
  94. /*
  95. * (temporarily) leave the old MAX_SPATIAL_STREAM_ANY name in place as an alias,
  96. * and in case some old code is using it
  97. */
  98. #define MAX_SPATIAL_STREAM_ANY MAX_SPATIAL_STREAM_ANY_V2 /* DEPRECATED */
  99. /* defines to set Packet extension values whic can be 0 us, 8 usec or 16 usec */
  100. /* NOTE: Below values cannot be changed without breaking WMI Compatibility */
  101. #define MAX_HE_NSS 8
  102. #define MAX_HE_MODULATION 8
  103. #define MAX_HE_RU 4
  104. #define HE_MODULATION_NONE 7
  105. #define HE_PET_0_USEC 0
  106. #define HE_PET_8_USEC 1
  107. #define HE_PET_16_USEC 2
  108. #define DEFAULT_OFDMA_RU26_COUNT 0
  109. typedef enum {
  110. MODE_11A = 0, /* 11a Mode */
  111. MODE_11G = 1, /* 11b/g Mode */
  112. MODE_11B = 2, /* 11b Mode */
  113. MODE_11GONLY = 3, /* 11g only Mode */
  114. MODE_11NA_HT20 = 4, /* 11a HT20 mode */
  115. MODE_11NG_HT20 = 5, /* 11g HT20 mode */
  116. MODE_11NA_HT40 = 6, /* 11a HT40 mode */
  117. MODE_11NG_HT40 = 7, /* 11g HT40 mode */
  118. MODE_11AC_VHT20 = 8,
  119. MODE_11AC_VHT40 = 9,
  120. MODE_11AC_VHT80 = 10,
  121. MODE_11AC_VHT20_2G = 11,
  122. MODE_11AC_VHT40_2G = 12,
  123. MODE_11AC_VHT80_2G = 13,
  124. #ifdef CONFIG_160MHZ_SUPPORT
  125. MODE_11AC_VHT80_80 = 14,
  126. MODE_11AC_VHT160 = 15,
  127. #endif
  128. #if SUPPORT_11AX
  129. MODE_11AX_HE20 = 16,
  130. MODE_11AX_HE40 = 17,
  131. MODE_11AX_HE80 = 18,
  132. MODE_11AX_HE80_80 = 19,
  133. MODE_11AX_HE160 = 20,
  134. MODE_11AX_HE20_2G = 21,
  135. MODE_11AX_HE40_2G = 22,
  136. MODE_11AX_HE80_2G = 23,
  137. #endif
  138. /*
  139. * MODE_UNKNOWN should not be used within the host / target interface.
  140. * Thus, it is permissible for ODE_UNKNOWN to be conditionally-defined,
  141. * taking different values when compiling for different targets.
  142. */
  143. MODE_UNKNOWN,
  144. MODE_UNKNOWN_NO_160MHZ_SUPPORT = 14, /* not needed? */
  145. #if 0
  146. MODE_UNKNOWN_NO_11AX_SUPPORT = 16, /* not needed? */
  147. MODE_UNKNOWN_11AX_SUPPORT = 24, /* not needed? */
  148. #endif
  149. MODE_UNKNOWN_160MHZ_SUPPORT = MODE_UNKNOWN, /* not needed? */
  150. #ifdef ATHR_WIN_NWF
  151. PHY_MODE_MAX = MODE_UNKNOWN,
  152. PHY_MODE_MAX_NO_160_MHZ_SUPPORT = MODE_UNKNOWN_NO_160MHZ_SUPPORT,
  153. PHY_MODE_MAX_160_MHZ_SUPPORT = MODE_UNKNOWN_160MHZ_SUPPORT,
  154. #else
  155. MODE_MAX = MODE_UNKNOWN,
  156. MODE_MAX_NO_160_MHZ_SUPPORT = MODE_UNKNOWN_NO_160MHZ_SUPPORT,
  157. MODE_MAX_160_MHZ_SUPPORT = MODE_UNKNOWN_160MHZ_SUPPORT,
  158. #endif
  159. } WLAN_PHY_MODE;
  160. #if (!defined(CONFIG_160MHZ_SUPPORT)) && (!defined(SUPPORT_11AX))
  161. A_COMPILE_TIME_ASSERT(
  162. mode_unknown_value_consistency_Check,
  163. MODE_UNKNOWN == MODE_UNKNOWN_NO_160MHZ_SUPPORT);
  164. #else
  165. /*
  166. * If SUPPORT_11AX is defined but CONFIG_160MHZ_SUPPORT is not defined,
  167. * there will be a gap in the mode values, with 14 and 15 being unused.
  168. * But MODE_UNKNOWN_NO_160MHZ_SUPPORT will have an invalid value, since
  169. * mode values 16 through 23 will be used for 11AX modes.
  170. * Thus, MODE_UNKNOWN would still be MODE_UNKNOWN_160MHZ_SUPPORT, for
  171. * cases where 160 MHz is not supported by 11AX is supported.
  172. * (Ideally, MODE_UNKNOWN_160MHZ_SUPPORT and NO_160MHZ_SUPPORT should be
  173. * renamed to cover the 4 permutations of support or no support for
  174. * 11AX and 160 MHZ, but that is impractical, due to backwards
  175. * compatibility concerns.)
  176. */
  177. A_COMPILE_TIME_ASSERT(
  178. mode_unknown_value_consistency_Check,
  179. MODE_UNKNOWN == MODE_UNKNOWN_160MHZ_SUPPORT);
  180. #endif
  181. typedef enum {
  182. VHT_MODE_NONE = 0, /* NON VHT Mode, e.g., HT, DSSS, CCK */
  183. VHT_MODE_20M = 1,
  184. VHT_MODE_40M = 2,
  185. VHT_MODE_80M = 3,
  186. VHT_MODE_160M = 4
  187. } VHT_OPER_MODE;
  188. typedef enum {
  189. WLAN_11A_CAPABILITY = 1,
  190. WLAN_11G_CAPABILITY = 2,
  191. WLAN_11AG_CAPABILITY = 3,
  192. } WLAN_CAPABILITY;
  193. #ifdef CONFIG_160MHZ_SUPPORT
  194. #define IS_MODE_VHT(mode) (((mode) == MODE_11AC_VHT20) || \
  195. ((mode) == MODE_11AC_VHT40) || \
  196. ((mode) == MODE_11AC_VHT80) || \
  197. ((mode) == MODE_11AC_VHT80_80) || \
  198. ((mode) == MODE_11AC_VHT160))
  199. #else
  200. #define IS_MODE_VHT(mode) (((mode) == MODE_11AC_VHT20) || \
  201. ((mode) == MODE_11AC_VHT40) || \
  202. ((mode) == MODE_11AC_VHT80))
  203. #endif
  204. #if SUPPORT_11AX
  205. #define IS_MODE_HE(mode) (((mode) == MODE_11AX_HE20) || \
  206. ((mode) == MODE_11AX_HE40) || \
  207. ((mode) == MODE_11AX_HE80) || \
  208. ((mode) == MODE_11AX_HE80_80) || \
  209. ((mode) == MODE_11AX_HE160) || \
  210. ((mode) == MODE_11AX_HE20_2G) || \
  211. ((mode) == MODE_11AX_HE40_2G) || \
  212. ((mode) == MODE_11AX_HE80_2G))
  213. #define IS_MODE_HE_2G(mode) (((mode) == MODE_11AX_HE20_2G) || \
  214. ((mode) == MODE_11AX_HE40_2G) || \
  215. ((mode) == MODE_11AX_HE80_2G))
  216. #endif /* SUPPORT_11AX */
  217. #define IS_MODE_VHT_2G(mode) (((mode) == MODE_11AC_VHT20_2G) || \
  218. ((mode) == MODE_11AC_VHT40_2G) || \
  219. ((mode) == MODE_11AC_VHT80_2G))
  220. #define IS_MODE_11A(mode) (((mode) == MODE_11A) || \
  221. ((mode) == MODE_11NA_HT20) || \
  222. ((mode) == MODE_11NA_HT40) || \
  223. (IS_MODE_VHT(mode)))
  224. #define IS_MODE_11B(mode) ((mode) == MODE_11B)
  225. #define IS_MODE_11G(mode) (((mode) == MODE_11G) || \
  226. ((mode) == MODE_11GONLY) || \
  227. ((mode) == MODE_11NG_HT20) || \
  228. ((mode) == MODE_11NG_HT40) || \
  229. (IS_MODE_VHT_2G(mode)))
  230. #define IS_MODE_11GN(mode) (((mode) == MODE_11NG_HT20) || \
  231. ((mode) == MODE_11NG_HT40))
  232. #define IS_MODE_11GONLY(mode) ((mode) == MODE_11GONLY)
  233. #define IS_MODE_LEGACY(phymode) ((phymode == MODE_11A) || \
  234. (phymode == MODE_11G) || \
  235. (phymode == MODE_11B) || \
  236. (phymode == MODE_11GONLY))
  237. #define IS_MODE_11N(phymode) ((phymode >= MODE_11NA_HT20) && \
  238. (phymode <= MODE_11NG_HT40))
  239. #ifdef CONFIG_160MHZ_SUPPORT
  240. #define IS_MODE_11AC(phymode) ((phymode >= MODE_11AC_VHT20) && \
  241. (phymode <= MODE_11AC_VHT160))
  242. #else
  243. #define IS_MODE_11AC(phymode) ((phymode >= MODE_11AC_VHT20) && \
  244. (phymode <= MODE_11AC_VHT80_2G))
  245. #endif /* CONFIG_160MHZ_SUPPORT */
  246. #if SUPPORT_11AX
  247. #define IS_MODE_80MHZ(phymode) ((phymode == MODE_11AC_VHT80_2G) || \
  248. (phymode == MODE_11AC_VHT80) || \
  249. (phymode == MODE_11AX_HE80) || \
  250. (phymode == MODE_11AX_HE80_2G))
  251. #define IS_MODE_40MHZ(phymode) ((phymode == MODE_11AC_VHT40_2G) || \
  252. (phymode == MODE_11AC_VHT40) || \
  253. (phymode == MODE_11NG_HT40) || \
  254. (phymode == MODE_11NA_HT40) || \
  255. (phymode == MODE_11AX_HE40) || \
  256. (phymode == MODE_11AX_HE40_2G))
  257. #else
  258. #define IS_MODE_80MHZ(phymode) ((phymode == MODE_11AC_VHT80_2G) || \
  259. (phymode == MODE_11AC_VHT80))
  260. #define IS_MODE_40MHZ(phymode) ((phymode == MODE_11AC_VHT40_2G) || \
  261. (phymode == MODE_11AC_VHT40) || \
  262. (phymode == MODE_11NG_HT40) || \
  263. (phymode == MODE_11NA_HT40))
  264. #endif /* SUPPORT_11AX */
  265. enum {
  266. REGDMN_MODE_11A_BIT = 0, /* 11a channels */
  267. REGDMN_MODE_TURBO_BIT = 1, /* 11a turbo-only channels */
  268. REGDMN_MODE_11B_BIT = 2, /* 11b channels */
  269. REGDMN_MODE_PUREG_BIT = 3, /* 11g channels (OFDM only) */
  270. REGDMN_MODE_11G_BIT = 3, /* XXX historical */
  271. /* bit 4 is reserved */
  272. REGDMN_MODE_108G_BIT = 5, /* 11g+Turbo channels */
  273. REGDMN_MODE_108A_BIT = 6, /* 11a+Turbo channels */
  274. /* bit 7 is reserved */
  275. REGDMN_MODE_XR_BIT = 8, /* XR channels */
  276. REGDMN_MODE_11A_HALF_RATE_BIT = 9, /* 11A half rate channels */
  277. REGDMN_MODE_11A_QUARTER_RATE_BIT = 10, /* 11A quarter rate channels */
  278. REGDMN_MODE_11NG_HT20_BIT = 11, /* 11N-G HT20 channels */
  279. REGDMN_MODE_11NA_HT20_BIT = 12, /* 11N-A HT20 channels */
  280. REGDMN_MODE_11NG_HT40PLUS_BIT = 13, /* 11N-G HT40 + channels */
  281. REGDMN_MODE_11NG_HT40MINUS_BIT = 14, /* 11N-G HT40 - channels */
  282. REGDMN_MODE_11NA_HT40PLUS_BIT = 15, /* 11N-A HT40 + channels */
  283. REGDMN_MODE_11NA_HT40MINUS_BIT = 16, /* 11N-A HT40 - channels */
  284. REGDMN_MODE_11AC_VHT20_BIT = 17, /* 5Ghz, VHT20 */
  285. REGDMN_MODE_11AC_VHT40PLUS_BIT = 18, /* 5Ghz, VHT40 + channels */
  286. REGDMN_MODE_11AC_VHT40MINUS_BIT = 19, /* 5Ghz VHT40 - channels */
  287. REGDMN_MODE_11AC_VHT80_BIT = 20, /* 5Ghz, VHT80 channels */
  288. REGDMN_MODE_11AC_VHT20_2G_BIT = 21, /* 2Ghz, VHT20 */
  289. REGDMN_MODE_11AC_VHT40_2G_BIT = 22, /* 2Ghz, VHT40 */
  290. REGDMN_MODE_11AC_VHT80_2G_BIT = 23, /* 2Ghz, VHT80 */
  291. REGDMN_MODE_11AC_VHT160_BIT = 24, /* 5Ghz, VHT160 */
  292. REGDMN_MODE_11AC_VHT40_2GPLUS_BIT = 25, /* 2Ghz, VHT40+ */
  293. REGDMN_MODE_11AC_VHT40_2GMINUS_BIT = 26, /* 2Ghz, VHT40- */
  294. REGDMN_MODE_11AC_VHT80_80_BIT = 27, /* 5GHz, VHT80+80 */
  295. /* bits 28 to 31 are reserved */
  296. REGDMN_MODE_11AXG_HE20_BIT = 32, /* 2Ghz, HE20 */
  297. REGDMN_MODE_11AXA_HE20_BIT = 33, /* 5Ghz, HE20 */
  298. REGDMN_MODE_11AXG_HE40PLUS_BIT = 34, /* 2Ghz, HE40+ */
  299. REGDMN_MODE_11AXG_HE40MINUS_BIT = 35, /* 2Ghz, HE40- */
  300. REGDMN_MODE_11AXA_HE40PLUS_BIT = 36, /* 5Ghz, HE40+ */
  301. REGDMN_MODE_11AXA_HE40MINUS_BIT = 37, /* 5Ghz, HE40- */
  302. REGDMN_MODE_11AXA_HE80_BIT = 38, /* 5Ghz, HE80 */
  303. REGDMN_MODE_11AXA_HE160_BIT = 39, /* 5Ghz, HE160 */
  304. REGDMN_MODE_11AXA_HE80_80_BIT = 40, /* 5Ghz, HE80+80 */
  305. };
  306. enum {
  307. REGDMN_MODE_11A = 1 << REGDMN_MODE_11A_BIT, /* 11a channels */
  308. REGDMN_MODE_TURBO = 1 << REGDMN_MODE_TURBO_BIT, /* 11a turbo-only channels */
  309. REGDMN_MODE_11B = 1 << REGDMN_MODE_11B_BIT, /* 11b channels */
  310. REGDMN_MODE_PUREG = 1 << REGDMN_MODE_PUREG_BIT, /* 11g channels (OFDM only) */
  311. REGDMN_MODE_11G = 1 << REGDMN_MODE_11G_BIT, /* XXX historical */
  312. REGDMN_MODE_108G = 1 << REGDMN_MODE_108G_BIT, /* 11g+Turbo channels */
  313. REGDMN_MODE_108A = 1 << REGDMN_MODE_108A_BIT, /* 11a+Turbo channels */
  314. REGDMN_MODE_XR = 1 << REGDMN_MODE_XR_BIT, /* XR channels */
  315. REGDMN_MODE_11A_HALF_RATE = 1 << REGDMN_MODE_11A_HALF_RATE_BIT, /* 11A half rate channels */
  316. REGDMN_MODE_11A_QUARTER_RATE = 1 << REGDMN_MODE_11A_QUARTER_RATE_BIT, /* 11A quarter rate channels */
  317. REGDMN_MODE_11NG_HT20 = 1 << REGDMN_MODE_11NG_HT20_BIT, /* 11N-G HT20 channels */
  318. REGDMN_MODE_11NA_HT20 = 1 << REGDMN_MODE_11NA_HT20_BIT, /* 11N-A HT20 channels */
  319. REGDMN_MODE_11NG_HT40PLUS = 1 << REGDMN_MODE_11NG_HT40PLUS_BIT, /* 11N-G HT40 + channels */
  320. REGDMN_MODE_11NG_HT40MINUS = 1 << REGDMN_MODE_11NG_HT40MINUS_BIT, /* 11N-G HT40 - channels */
  321. REGDMN_MODE_11NA_HT40PLUS = 1 << REGDMN_MODE_11NA_HT40PLUS_BIT, /* 11N-A HT40 + channels */
  322. REGDMN_MODE_11NA_HT40MINUS = 1 << REGDMN_MODE_11NA_HT40MINUS_BIT, /* 11N-A HT40 - channels */
  323. REGDMN_MODE_11AC_VHT20 = 1 << REGDMN_MODE_11AC_VHT20_BIT, /* 5Ghz, VHT20 */
  324. REGDMN_MODE_11AC_VHT40PLUS = 1 << REGDMN_MODE_11AC_VHT40PLUS_BIT, /* 5Ghz, VHT40 + channels */
  325. REGDMN_MODE_11AC_VHT40MINUS = 1 << REGDMN_MODE_11AC_VHT40MINUS_BIT, /* 5Ghz VHT40 - channels */
  326. REGDMN_MODE_11AC_VHT80 = 1 << REGDMN_MODE_11AC_VHT80_BIT, /* 5Ghz, VHT80 channels */
  327. REGDMN_MODE_11AC_VHT20_2G = 1 << REGDMN_MODE_11AC_VHT20_2G_BIT, /* 2Ghz, VHT20 */
  328. REGDMN_MODE_11AC_VHT40_2G = 1 << REGDMN_MODE_11AC_VHT40_2G_BIT, /* 2Ghz, VHT40 */
  329. REGDMN_MODE_11AC_VHT80_2G = 1 << REGDMN_MODE_11AC_VHT80_2G_BIT, /* 2Ghz, VHT80 */
  330. REGDMN_MODE_11AC_VHT160 = 1 << REGDMN_MODE_11AC_VHT160_BIT, /* 5Ghz, VHT160 */
  331. REGDMN_MODE_11AC_VHT40_2GPLUS = 1 << REGDMN_MODE_11AC_VHT40_2GPLUS_BIT, /* 2Ghz, VHT40+ */
  332. REGDMN_MODE_11AC_VHT40_2GMINUS = 1 << REGDMN_MODE_11AC_VHT40_2GMINUS_BIT, /* 2Ghz, VHT40- */
  333. REGDMN_MODE_11AC_VHT80_80 = 1 << REGDMN_MODE_11AC_VHT80_80_BIT, /* 5GHz, VHT80+80 */
  334. };
  335. enum {
  336. REGDMN_MODE_U32_11AXG_HE20 = 1 << (REGDMN_MODE_11AXG_HE20_BIT - 32),
  337. REGDMN_MODE_U32_11AXA_HE20 = 1 << (REGDMN_MODE_11AXA_HE20_BIT - 32),
  338. REGDMN_MODE_U32_11AXG_HE40PLUS = 1 << (REGDMN_MODE_11AXG_HE40PLUS_BIT - 32),
  339. REGDMN_MODE_U32_11AXG_HE40MINUS = 1 << (REGDMN_MODE_11AXG_HE40MINUS_BIT - 32),
  340. REGDMN_MODE_U32_11AXA_HE40PLUS = 1 << (REGDMN_MODE_11AXA_HE40PLUS_BIT - 32),
  341. REGDMN_MODE_U32_11AXA_HE40MINUS = 1 << (REGDMN_MODE_11AXA_HE40MINUS_BIT - 32),
  342. REGDMN_MODE_U32_11AXA_HE80 = 1 << (REGDMN_MODE_11AXA_HE80_BIT - 32),
  343. REGDMN_MODE_U32_11AXA_HE160 = 1 << (REGDMN_MODE_11AXA_HE160_BIT - 32),
  344. REGDMN_MODE_U32_11AXA_HE80_80 = 1 << (REGDMN_MODE_11AXA_HE80_80_BIT - 32),
  345. };
  346. #define REGDMN_MODE_ALL (0xFFFFFFFF) /* REGDMN_MODE_ALL is defined out of the enum
  347. * to prevent the ARM compile "warning #66:
  348. * enumeration value is out of int range"
  349. * Anyway, this is a BIT-OR of all possible values.
  350. */
  351. #define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
  352. #define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
  353. #define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
  354. /* regulatory capabilities */
  355. #define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
  356. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
  357. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
  358. #define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
  359. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
  360. #define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
  361. typedef struct {
  362. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMI_TLVTAG_STRUC_HAL_REG_CAPABILITIES */
  363. A_UINT32 eeprom_rd; /* regdomain value specified in EEPROM */
  364. A_UINT32 eeprom_rd_ext; /* regdomain */
  365. A_UINT32 regcap1; /* CAP1 capabilities bit map. */
  366. A_UINT32 regcap2; /* REGDMN EEPROM CAP. */
  367. A_UINT32 wireless_modes; /* REGDMN MODE */
  368. A_UINT32 low_2ghz_chan;
  369. A_UINT32 high_2ghz_chan;
  370. A_UINT32 low_5ghz_chan;
  371. A_UINT32 high_5ghz_chan;
  372. A_UINT32 wireless_modes_ext; /* REGDMN MODE ext */
  373. } HAL_REG_CAPABILITIES;
  374. #ifdef NUM_SPATIAL_STREAM
  375. /*
  376. * The rate control definitions below are only used in the target.
  377. * (Host-based rate control is no longer applicable.)
  378. * Maintain the defs in wlanfw_cmn for the sake of existing Rome / Helium
  379. * targets, but for Lithium targets remove them from wlanfw_cmn and define
  380. * them in a target-only location instead.
  381. * SUPPORT_11AX is essentially used as a condition to identify Lithium targets.
  382. * Some host drivers would also have SUPPORT_11AX defined, and thus would lose
  383. * the definition of RATE_CODE, RC_TX_DONE_PARAMS, and related macros, but
  384. * that's okay because the host should have no references to these
  385. * target-only data structures.
  386. */
  387. #if !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) /* following N/A for Lithium */
  388. /*
  389. * Used to update rate-control logic with the status of the tx-completion.
  390. * In host-based implementation of the rate-control feature, this struture is used to
  391. * create the payload for HTT message/s from target to host.
  392. */
  393. #ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE
  394. #if (NUM_SPATIAL_STREAM > 3)
  395. #define A_RATEMASK A_UINT64
  396. #else
  397. #define A_RATEMASK A_UINT32
  398. #endif
  399. #endif /* CONFIG_MOVE_RC_STRUCT_TO_MACCORE */
  400. typedef A_UINT8 A_RATE;
  401. typedef A_UINT8 A_RATECODE;
  402. #define A_RATEMASK_NUM_OCTET (sizeof (A_RATEMASK))
  403. #define A_RATEMASK_NUM_BITS ((sizeof (A_RATEMASK)) << 3)
  404. typedef struct {
  405. A_RATECODE rateCode;
  406. A_UINT8 flags;
  407. } RATE_CODE;
  408. typedef struct {
  409. RATE_CODE ptx_rc; /* rate code, bw, chain mask sgi */
  410. A_UINT8 reserved[2];
  411. A_UINT32 flags; /* Encodes information such as excessive
  412. retransmission, aggregate, some info
  413. from .11 frame control,
  414. STBC, LDPC, (SGI and Tx Chain Mask
  415. are encoded in ptx_rc->flags field),
  416. AMPDU truncation (BT/time based etc.),
  417. RTS/CTS attempt */
  418. A_UINT32 num_enqued; /* # of MPDUs (for non-AMPDU 1) for this rate */
  419. A_UINT32 num_retries; /* Total # of transmission attempt for this rate */
  420. A_UINT32 num_failed; /* # of failed MPDUs in A-MPDU, 0 otherwise */
  421. A_UINT32 ack_rssi; /* ACK RSSI: b'7..b'0 avg RSSI across all chain */
  422. A_UINT32 time_stamp ; /* ACK timestamp (helps determine age) */
  423. A_UINT32 is_probe; /* Valid if probing. Else, 0 */
  424. A_UINT32 ba_win_size; /* b'7..b0, block Ack Window size, b'31..b8 Resvd */
  425. A_UINT32 failed_ba_bmap_0_31; /* failed BA bitmap 0..31 */
  426. A_UINT32 failed_ba_bmap_32_63; /* failed BA bitmap 32..63 */
  427. A_UINT32 bmap_tried_0_31; /* enqued bitmap 0..31 */
  428. A_UINT32 bmap_tried_32_63; /* enqued bitmap 32..63 */
  429. } RC_TX_DONE_PARAMS;
  430. #define RC_SET_TX_DONE_INFO(_dst, _rc, _f, _nq, _nr, _nf, _rssi, _ts) \
  431. do { \
  432. (_dst).ptx_rc.rateCode = (_rc).rateCode; \
  433. (_dst).ptx_rc.flags = (_rc).flags; \
  434. (_dst).flags = (_f); \
  435. (_dst).num_enqued = (_nq); \
  436. (_dst).num_retries = (_nr); \
  437. (_dst).num_failed = (_nf); \
  438. (_dst).ack_rssi = (_rssi); \
  439. (_dst).time_stamp = (_ts); \
  440. } while (0)
  441. #define RC_SET_TXBF_DONE_INFO(_dst, _f) \
  442. do { \
  443. (_dst).flags |= (_f); \
  444. } while (0)
  445. /*
  446. * NOTE: NUM_SCHED_ENTRIES is not used in the host/target interface, but for
  447. * historical reasons has been defined in the host/target interface files.
  448. * The NUM_SCHED_ENTRIES definition is being moved into a target-only
  449. * header file for newer (Lithium) targets, but is being left here for
  450. * non-Lithium cases, to avoid having to rework legacy targets to move
  451. * the NUM_SCHED_ENTRIES definition into a target-only header file.
  452. * Moving the NUM_SCHED_ENTRIES definition into a non-Lithium conditional
  453. * block should have no impact on the host, since the host does not use
  454. * NUM_SCHED_ENTRIES.
  455. */
  456. #define NUM_SCHED_ENTRIES 2
  457. #endif /* !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) */ /* above N/A for Lithium */
  458. #endif /* NUM_SPATIAL_STREAM */
  459. /* NOTE: NUM_DYN_BW cannot be changed without breaking WMI Compatibility */
  460. #define NUM_DYN_BW_MAX 4
  461. /* Some products only use 20/40/80; some use 20/40/80/160 */
  462. #ifndef NUM_DYN_BW
  463. #define NUM_DYN_BW 3 /* default: support up through 80 MHz */
  464. #endif
  465. #define NUM_DYN_BW_MASK 0x3
  466. #define PROD_SCHED_BW_ENTRIES (NUM_SCHED_ENTRIES * NUM_DYN_BW)
  467. #if NUM_DYN_BW > 4
  468. /* Extend rate table module first */
  469. #error "Extend rate table module first"
  470. #endif
  471. #define MAX_IBSS_PEERS 32
  472. #ifdef NUM_SPATIAL_STREAM
  473. /*
  474. * RC_TX_RATE_SCHEDULE and RC_TX_RATE_INFO defs are used only in the target.
  475. * (Host-based rate control is no longer applicable.)
  476. * Maintain the defs in wlanfw_cmn for the sake of existing Rome / Helium
  477. * targets, but for Lithium targets remove them from wlanfw_cmn and define
  478. * them in a target-only location instead.
  479. * SUPPORT_11AX is essentially used as a condition to identify Lithium targets.
  480. * Some host drivers would also have SUPPORT_11AX defined, and thus would lose
  481. * the definition of RC_TX_RATE_SCHEDULE and RC_TX_RATE_INFO, but that's okay
  482. * because the host should have no references to these target-only data
  483. * structures.
  484. */
  485. #ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE
  486. #if !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX)
  487. #if defined(CONFIG_AR900B_SUPPORT) || defined(AR900B)
  488. typedef struct{
  489. A_UINT32 psdu_len[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  490. A_UINT16 flags[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  491. A_RATE rix[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  492. A_UINT8 tpc[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  493. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  494. A_UINT8 num_mpdus[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  495. A_UINT16 txbf_cv_len;
  496. A_UINT32 txbf_cv_ptr;
  497. A_UINT16 txbf_flags;
  498. A_UINT16 txbf_cv_size;
  499. A_UINT8 txbf_nc_idx;
  500. A_UINT8 tries[NUM_SCHED_ENTRIES];
  501. A_UINT8 bw_mask[NUM_SCHED_ENTRIES];
  502. A_UINT8 max_bw[NUM_SCHED_ENTRIES];
  503. A_UINT8 num_sched_entries;
  504. A_UINT8 paprd_mask;
  505. A_RATE rts_rix;
  506. A_UINT8 sh_pream;
  507. A_UINT8 min_spacing_1_4_us;
  508. A_UINT8 fixed_delims;
  509. A_UINT8 bw_in_service;
  510. A_RATE probe_rix;
  511. A_UINT8 num_valid_rates;
  512. A_UINT8 rtscts_tpc;
  513. A_UINT8 dd_profile;
  514. } RC_TX_RATE_SCHEDULE;
  515. #else
  516. typedef struct{
  517. A_UINT32 psdu_len[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  518. A_UINT16 flags[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  519. A_RATE rix[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  520. A_UINT8 tpc[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  521. A_UINT8 num_mpdus[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  522. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  523. A_UINT32 txbf_cv_ptr;
  524. A_UINT16 txbf_cv_len;
  525. A_UINT8 tries[NUM_SCHED_ENTRIES];
  526. A_UINT8 num_valid_rates;
  527. A_UINT8 paprd_mask;
  528. A_RATE rts_rix;
  529. A_UINT8 sh_pream;
  530. A_UINT8 min_spacing_1_4_us;
  531. A_UINT8 fixed_delims;
  532. A_UINT8 bw_in_service;
  533. A_RATE probe_rix;
  534. } RC_TX_RATE_SCHEDULE;
  535. #endif
  536. typedef struct{
  537. A_UINT16 flags[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  538. A_RATE rix[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  539. #ifdef DYN_TPC_ENABLE
  540. A_UINT8 tpc[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  541. #endif
  542. #ifdef SECTORED_ANTENNA
  543. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  544. #endif
  545. A_UINT8 tries[NUM_SCHED_ENTRIES];
  546. A_UINT8 num_valid_rates;
  547. A_RATE rts_rix;
  548. A_UINT8 sh_pream;
  549. A_UINT8 bw_in_service;
  550. A_RATE probe_rix;
  551. A_UINT8 dd_profile;
  552. } RC_TX_RATE_INFO;
  553. #endif /* !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) */
  554. #endif /* CONFIG_MOVE_RC_STRUCT_TO_MACCORE */
  555. #endif
  556. /*
  557. * Temporarily continue to provide the WHAL_RC_INIT_RC_MASKS def in wlan_defs.h
  558. * for older targets.
  559. * The WHAL_RX_INIT_RC_MASKS macro def needs to be moved into ratectrl_11ac.h
  560. * for all targets, but until this is complete, the WHAL_RC_INIT_RC_MASKS def
  561. * will be maintained here in its old location.
  562. */
  563. #ifndef CONFIG_160MHZ_SUPPORT
  564. #define WHAL_RC_INIT_RC_MASKS(_rm) do { \
  565. _rm[WHAL_RC_MASK_IDX_NON_HT] = A_RATEMASK_OFDM_CCK; \
  566. _rm[WHAL_RC_MASK_IDX_HT_20] = A_RATEMASK_HT_20; \
  567. _rm[WHAL_RC_MASK_IDX_HT_40] = A_RATEMASK_HT_40; \
  568. _rm[WHAL_RC_MASK_IDX_VHT_20] = A_RATEMASK_VHT_20; \
  569. _rm[WHAL_RC_MASK_IDX_VHT_40] = A_RATEMASK_VHT_40; \
  570. _rm[WHAL_RC_MASK_IDX_VHT_80] = A_RATEMASK_VHT_80; \
  571. } while (0)
  572. #endif
  573. /**
  574. * strucutre describing host memory chunk.
  575. */
  576. typedef struct {
  577. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wlan_host_memory_chunk */
  578. /** id of the request that is passed up in service ready */
  579. A_UINT32 req_id;
  580. /** the physical address the memory chunk */
  581. A_UINT32 ptr;
  582. /** size of the chunk */
  583. A_UINT32 size;
  584. /** ptr_high
  585. * most significant bits of physical address of the memory chunk
  586. * Only applicable for addressing more than 32 bit.
  587. * This will only be non-zero if the target has set
  588. * WMI_SERVICE_SUPPORT_EXTEND_ADDRESS flag.
  589. */
  590. A_UINT32 ptr_high;
  591. } wlan_host_memory_chunk;
  592. #define NUM_UNITS_IS_NUM_VDEVS 0x1
  593. #define NUM_UNITS_IS_NUM_PEERS 0x2
  594. #define NUM_UNITS_IS_NUM_ACTIVE_PEERS 0x4
  595. /* request host to allocate memory contiguously */
  596. #define REQ_TO_HOST_FOR_CONT_MEMORY 0x8
  597. /**
  598. * structure used by FW for requesting host memory
  599. */
  600. typedef struct {
  601. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMI_TLVTAG_STRUC_wlan_host_mem_req */
  602. /** ID of the request */
  603. A_UINT32 req_id;
  604. /** size of the of each unit */
  605. A_UINT32 unit_size;
  606. /**
  607. * flags to indicate that
  608. * the number units is dependent
  609. * on number of resources(num vdevs num peers .. etc)
  610. */
  611. A_UINT32 num_unit_info;
  612. /*
  613. * actual number of units to allocate . if flags in the num_unit_info
  614. * indicate that number of units is tied to number of a particular
  615. * resource to allocate then num_units filed is set to 0 and host
  616. * will derive the number units from number of the resources it is
  617. * requesting.
  618. */
  619. A_UINT32 num_units;
  620. } wlan_host_mem_req;
  621. typedef enum {
  622. IGNORE_DTIM = 0x01,
  623. NORMAL_DTIM = 0x02,
  624. STICK_DTIM = 0x03,
  625. AUTO_DTIM = 0x04,
  626. } BEACON_DTIM_POLICY;
  627. /* During test it is observed that 6 * 400 = 2400 can
  628. * be alloced in addition to CFG_TGT_NUM_MSDU_DESC.
  629. * If there is any change memory requirement, this number
  630. * needs to be revisited. */
  631. #define TOTAL_VOW_ALLOCABLE 2400
  632. #define VOW_DESC_GRAB_MAX 800
  633. #define VOW_GET_NUM_VI_STA(vow_config) (((vow_config) & 0xffff0000) >> 16)
  634. #define VOW_GET_DESC_PER_VI_STA(vow_config) ((vow_config) & 0x0000ffff)
  635. /***TODO!!! Get these values dynamically in WMI_READY event and use it to calculate the mem req*/
  636. /* size in bytes required for msdu descriptor. If it changes, this should be updated. LARGE_AP
  637. * case is not considered. LARGE_AP is disabled when VoW is enabled.*/
  638. #define MSDU_DESC_SIZE 20
  639. /* size in bytes required to support a peer in target.
  640. * This obtained by considering Two tids per peer.
  641. * peer structure = 168 bytes
  642. * tid = 96 bytes (per sta 2 means we need 192 bytes)
  643. * peer_cb = 16 * 2
  644. * key = 52 * 2
  645. * AST = 12 * 2
  646. * rate, reorder.. = 384
  647. * smart antenna = 50
  648. */
  649. #define MEMORY_REQ_FOR_PEER 800
  650. /*
  651. * NB: it is important to keep all the fields in the structure dword long
  652. * so that it is easy to handle the statistics in BE host.
  653. */
  654. /*
  655. * wlan_dbg_tx_stats_v1, _v2:
  656. * differing versions of the wlan_dbg_tx_stats struct used by different
  657. * targets
  658. */
  659. struct wlan_dbg_tx_stats_v1 {
  660. /* Num HTT cookies queued to dispatch list */
  661. A_INT32 comp_queued;
  662. /* Num HTT cookies dispatched */
  663. A_INT32 comp_delivered;
  664. /* Num MSDU queued to WAL */
  665. A_INT32 msdu_enqued;
  666. /* Num MPDU queue to WAL */
  667. A_INT32 mpdu_enqued;
  668. /* Num MSDUs dropped by WMM limit */
  669. A_INT32 wmm_drop;
  670. /* Num Local frames queued */
  671. A_INT32 local_enqued;
  672. /* Num Local frames done */
  673. A_INT32 local_freed;
  674. /* Num queued to HW */
  675. A_INT32 hw_queued;
  676. /* Num PPDU reaped from HW */
  677. A_INT32 hw_reaped;
  678. /* Num underruns */
  679. A_INT32 underrun;
  680. /* Num PPDUs cleaned up in TX abort */
  681. A_INT32 tx_abort;
  682. /* Num MPDUs requed by SW */
  683. A_INT32 mpdus_requed;
  684. /* excessive retries */
  685. A_UINT32 tx_ko;
  686. /* data hw rate code */
  687. A_UINT32 data_rc;
  688. /* Scheduler self triggers */
  689. A_UINT32 self_triggers;
  690. /* frames dropped due to excessive sw retries */
  691. A_UINT32 sw_retry_failure;
  692. /* illegal rate phy errors */
  693. A_UINT32 illgl_rate_phy_err;
  694. /* wal pdev continous xretry */
  695. A_UINT32 pdev_cont_xretry;
  696. /* wal pdev continous xretry */
  697. A_UINT32 pdev_tx_timeout;
  698. /* wal pdev resets */
  699. A_UINT32 pdev_resets;
  700. /* frames dropped due to non-availability of stateless TIDs */
  701. A_UINT32 stateless_tid_alloc_failure;
  702. /* PhY/BB underrun */
  703. A_UINT32 phy_underrun;
  704. /* MPDU is more than txop limit */
  705. A_UINT32 txop_ovf;
  706. };
  707. struct wlan_dbg_tx_stats_v2 {
  708. /* Num HTT cookies queued to dispatch list */
  709. A_INT32 comp_queued;
  710. /* Num HTT cookies dispatched */
  711. A_INT32 comp_delivered;
  712. /* Num MSDU queued to WAL */
  713. A_INT32 msdu_enqued;
  714. /* Num MPDU queue to WAL */
  715. A_INT32 mpdu_enqued;
  716. /* Num MSDUs dropped by WMM limit */
  717. A_INT32 wmm_drop;
  718. /* Num Local frames queued */
  719. A_INT32 local_enqued;
  720. /* Num Local frames done */
  721. A_INT32 local_freed;
  722. /* Num queued to HW */
  723. A_INT32 hw_queued;
  724. /* Num PPDU reaped from HW */
  725. A_INT32 hw_reaped;
  726. /* Num underruns */
  727. A_INT32 underrun;
  728. /* HW Paused. */
  729. A_UINT32 hw_paused;
  730. /* Num PPDUs cleaned up in TX abort */
  731. A_INT32 tx_abort;
  732. /* Num MPDUs requed by SW */
  733. A_INT32 mpdus_requed;
  734. /* excessive retries */
  735. A_UINT32 tx_ko;
  736. A_UINT32 tx_xretry;
  737. /* data hw rate code */
  738. A_UINT32 data_rc;
  739. /* Scheduler self triggers */
  740. A_UINT32 self_triggers;
  741. /* frames dropped due to excessive sw retries */
  742. A_UINT32 sw_retry_failure;
  743. /* illegal rate phy errors */
  744. A_UINT32 illgl_rate_phy_err;
  745. /* wal pdev continous xretry */
  746. A_UINT32 pdev_cont_xretry;
  747. /* wal pdev continous xretry */
  748. A_UINT32 pdev_tx_timeout;
  749. /* wal pdev resets */
  750. A_UINT32 pdev_resets;
  751. /* frames dropped due to non-availability of stateless TIDs */
  752. A_UINT32 stateless_tid_alloc_failure;
  753. /* PhY/BB underrun */
  754. A_UINT32 phy_underrun;
  755. /* MPDU is more than txop limit */
  756. A_UINT32 txop_ovf;
  757. /* Number of Sequences posted */
  758. A_UINT32 seq_posted;
  759. /* Number of Sequences failed queueing */
  760. A_UINT32 seq_failed_queueing;
  761. /* Number of Sequences completed */
  762. A_UINT32 seq_completed;
  763. /* Number of Sequences restarted */
  764. A_UINT32 seq_restarted;
  765. /* Number of MU Sequences posted */
  766. A_UINT32 mu_seq_posted;
  767. /* Num MPDUs flushed by SW, HWPAUSED, SW TXABORT (Reset,channel change) */
  768. A_INT32 mpdus_sw_flush;
  769. /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
  770. A_INT32 mpdus_hw_filter;
  771. /* Num MPDUs truncated by PDG (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) */
  772. A_INT32 mpdus_truncated;
  773. /* Num MPDUs that was tried but didn't receive ACK or BA */
  774. A_INT32 mpdus_ack_failed;
  775. /* Num MPDUs that was dropped du to expiry. */
  776. A_INT32 mpdus_expired;
  777. };
  778. #if defined(AR900B)
  779. #define wlan_dbg_tx_stats wlan_dbg_tx_stats_v2
  780. #else
  781. #define wlan_dbg_tx_stats wlan_dbg_tx_stats_v1
  782. #endif
  783. /*
  784. * wlan_dbg_rx_stats_v1, _v2:
  785. * differing versions of the wlan_dbg_rx_stats struct used by different
  786. * targets
  787. */
  788. struct wlan_dbg_rx_stats_v1 {
  789. /* Cnts any change in ring routing mid-ppdu */
  790. A_INT32 mid_ppdu_route_change;
  791. /* Total number of statuses processed */
  792. A_INT32 status_rcvd;
  793. /* Extra frags on rings 0-3 */
  794. A_INT32 r0_frags;
  795. A_INT32 r1_frags;
  796. A_INT32 r2_frags;
  797. A_INT32 r3_frags;
  798. /* MSDUs / MPDUs delivered to HTT */
  799. A_INT32 htt_msdus;
  800. A_INT32 htt_mpdus;
  801. /* MSDUs / MPDUs delivered to local stack */
  802. A_INT32 loc_msdus;
  803. A_INT32 loc_mpdus;
  804. /* AMSDUs that have more MSDUs than the status ring size */
  805. A_INT32 oversize_amsdu;
  806. /* Number of PHY errors */
  807. A_INT32 phy_errs;
  808. /* Number of PHY errors drops */
  809. A_INT32 phy_err_drop;
  810. /* Number of mpdu errors - FCS, MIC, ENC etc. */
  811. A_INT32 mpdu_errs;
  812. };
  813. struct wlan_dbg_rx_stats_v2 {
  814. /* Cnts any change in ring routing mid-ppdu */
  815. A_INT32 mid_ppdu_route_change;
  816. /* Total number of statuses processed */
  817. A_INT32 status_rcvd;
  818. /* Extra frags on rings 0-3 */
  819. A_INT32 r0_frags;
  820. A_INT32 r1_frags;
  821. A_INT32 r2_frags;
  822. A_INT32 r3_frags;
  823. /* MSDUs / MPDUs delivered to HTT */
  824. A_INT32 htt_msdus;
  825. A_INT32 htt_mpdus;
  826. /* MSDUs / MPDUs delivered to local stack */
  827. A_INT32 loc_msdus;
  828. A_INT32 loc_mpdus;
  829. /* AMSDUs that have more MSDUs than the status ring size */
  830. A_INT32 oversize_amsdu;
  831. /* Number of PHY errors */
  832. A_INT32 phy_errs;
  833. /* Number of PHY errors drops */
  834. A_INT32 phy_err_drop;
  835. /* Number of mpdu errors - FCS, MIC, ENC etc. */
  836. A_INT32 mpdu_errs;
  837. /* Number of rx overflow errors. */
  838. A_INT32 rx_ovfl_errs;
  839. };
  840. #if defined(AR900B)
  841. #define wlan_dbg_rx_stats wlan_dbg_rx_stats_v2
  842. #else
  843. #define wlan_dbg_rx_stats wlan_dbg_rx_stats_v1
  844. #endif
  845. struct wlan_dbg_mem_stats {
  846. A_UINT32 iram_free_size;
  847. A_UINT32 dram_free_size;
  848. };
  849. struct wlan_dbg_peer_stats {
  850. A_INT32 dummy; /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
  851. };
  852. /*
  853. * wlan_dbg_rx_rate_info_v1a_t, _v1b_t:
  854. * differing versions of the wlan_dbg_rx_rate_info struct used by different
  855. * targets
  856. */
  857. typedef struct {
  858. A_UINT32 mcs[10];
  859. A_UINT32 sgi[10];
  860. A_UINT32 nss[4];
  861. A_UINT32 nsts;
  862. A_UINT32 stbc[10];
  863. A_UINT32 bw[3];
  864. A_UINT32 pream[6];
  865. A_UINT32 ldpc;
  866. A_UINT32 txbf;
  867. A_UINT32 mgmt_rssi;
  868. A_UINT32 data_rssi;
  869. A_UINT32 rssi_chain0;
  870. A_UINT32 rssi_chain1;
  871. A_UINT32 rssi_chain2;
  872. } wlan_dbg_rx_rate_info_v1a_t;
  873. typedef struct {
  874. A_UINT32 mcs[10];
  875. A_UINT32 sgi[10];
  876. A_UINT32 nss[4];
  877. A_UINT32 nsts;
  878. A_UINT32 stbc[10];
  879. A_UINT32 bw[3];
  880. A_UINT32 pream[6];
  881. A_UINT32 ldpc;
  882. A_UINT32 txbf;
  883. A_UINT32 mgmt_rssi;
  884. A_UINT32 data_rssi;
  885. A_UINT32 rssi_chain0;
  886. A_UINT32 rssi_chain1;
  887. A_UINT32 rssi_chain2;
  888. /*
  889. * TEMPORARY: leave rssi_chain3 in place for AR900B builds until code using
  890. * rssi_chain3 has been converted to use wlan_dbg_rx_rate_info_v2_t.
  891. */
  892. A_UINT32 rssi_chain3;
  893. } wlan_dbg_rx_rate_info_v1b_t;
  894. #if defined(AR900B)
  895. #define wlan_dbg_rx_rate_info_t wlan_dbg_rx_rate_info_v1b_t
  896. #else
  897. #define wlan_dbg_rx_rate_info_t wlan_dbg_rx_rate_info_v1a_t
  898. #endif
  899. typedef struct {
  900. A_UINT32 mcs[10];
  901. A_UINT32 sgi[10];
  902. /*
  903. * TEMPORARY: leave nss conditionally defined, until all code that
  904. * requires nss[4] is converted to use wlan_dbg_tx_rate_info_v2_t.
  905. * At that time, this nss array will be made length = 3 unconditionally.
  906. */
  907. #if defined(CONFIG_AR900B_SUPPORT) || defined(AR900B)
  908. A_UINT32 nss[4];
  909. #else
  910. A_UINT32 nss[3];
  911. #endif
  912. A_UINT32 stbc[10];
  913. A_UINT32 bw[3];
  914. A_UINT32 pream[4];
  915. A_UINT32 ldpc;
  916. A_UINT32 rts_cnt;
  917. A_UINT32 ack_rssi;
  918. } wlan_dbg_tx_rate_info_t ;
  919. #define WLAN_MAX_MCS 10
  920. typedef struct {
  921. A_UINT32 mcs[WLAN_MAX_MCS];
  922. A_UINT32 sgi[WLAN_MAX_MCS];
  923. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V2];
  924. A_UINT32 nsts;
  925. A_UINT32 stbc[WLAN_MAX_MCS];
  926. A_UINT32 bw[NUM_DYN_BW_MAX];
  927. A_UINT32 pream[6];
  928. A_UINT32 ldpc;
  929. A_UINT32 txbf;
  930. A_UINT32 mgmt_rssi;
  931. A_UINT32 data_rssi;
  932. A_UINT32 rssi_chain0;
  933. A_UINT32 rssi_chain1;
  934. A_UINT32 rssi_chain2;
  935. A_UINT32 rssi_chain3;
  936. A_UINT32 reserved[8];
  937. } wlan_dbg_rx_rate_info_v2_t;
  938. typedef struct {
  939. A_UINT32 mcs[WLAN_MAX_MCS];
  940. A_UINT32 sgi[WLAN_MAX_MCS];
  941. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V2];
  942. A_UINT32 stbc[WLAN_MAX_MCS];
  943. A_UINT32 bw[NUM_DYN_BW_MAX];
  944. A_UINT32 pream[4];
  945. A_UINT32 ldpc;
  946. A_UINT32 rts_cnt;
  947. A_UINT32 ack_rssi;
  948. A_UINT32 reserved[8];
  949. } wlan_dbg_tx_rate_info_v2_t;
  950. typedef struct {
  951. A_UINT32 mcs[WLAN_MAX_MCS];
  952. A_UINT32 sgi[WLAN_MAX_MCS];
  953. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V3];
  954. A_UINT32 nsts;
  955. A_UINT32 stbc[WLAN_MAX_MCS];
  956. A_UINT32 bw[NUM_DYN_BW_MAX];
  957. A_UINT32 pream[6];
  958. A_UINT32 ldpc;
  959. A_UINT32 txbf;
  960. A_UINT32 mgmt_rssi;
  961. A_UINT32 data_rssi;
  962. A_UINT32 rssi_chain0;
  963. A_UINT32 rssi_chain1;
  964. A_UINT32 rssi_chain2;
  965. A_UINT32 rssi_chain3;
  966. A_UINT32 reserved[8];
  967. } wlan_dbg_rx_rate_info_v3_t;
  968. typedef struct {
  969. A_UINT32 mcs[WLAN_MAX_MCS];
  970. A_UINT32 sgi[WLAN_MAX_MCS];
  971. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V3];
  972. A_UINT32 stbc[WLAN_MAX_MCS];
  973. A_UINT32 bw[NUM_DYN_BW_MAX];
  974. A_UINT32 pream[4];
  975. A_UINT32 ldpc;
  976. A_UINT32 rts_cnt;
  977. A_UINT32 ack_rssi;
  978. A_UINT32 reserved[8];
  979. } wlan_dbg_tx_rate_info_v3_t;
  980. #define WHAL_DBG_PHY_ERR_MAXCNT 18
  981. #define WHAL_DBG_SIFS_STATUS_MAXCNT 8
  982. #define WHAL_DBG_SIFS_ERR_MAXCNT 8
  983. #define WHAL_DBG_CMD_RESULT_MAXCNT 11
  984. #define WHAL_DBG_CMD_STALL_ERR_MAXCNT 4
  985. #define WHAL_DBG_FLUSH_REASON_MAXCNT 40
  986. typedef enum {
  987. WIFI_URRN_STATS_FIRST_PKT,
  988. WIFI_URRN_STATS_BETWEEN_MPDU,
  989. WIFI_URRN_STATS_WITHIN_MPDU,
  990. WHAL_MAX_URRN_STATS
  991. } wifi_urrn_type_t;
  992. typedef struct wlan_dbg_txbf_snd_stats {
  993. A_UINT32 cbf_20[4];
  994. A_UINT32 cbf_40[4];
  995. A_UINT32 cbf_80[4];
  996. A_UINT32 sounding[9];
  997. A_UINT32 cbf_160[4];
  998. } wlan_dbg_txbf_snd_stats_t;
  999. typedef struct wlan_dbg_wifi2_error_stats {
  1000. A_UINT32 urrn_stats[WHAL_MAX_URRN_STATS];
  1001. A_UINT32 flush_errs[WHAL_DBG_FLUSH_REASON_MAXCNT];
  1002. A_UINT32 schd_stall_errs[WHAL_DBG_CMD_STALL_ERR_MAXCNT];
  1003. A_UINT32 schd_cmd_result[WHAL_DBG_CMD_RESULT_MAXCNT];
  1004. A_UINT32 sifs_status[WHAL_DBG_SIFS_STATUS_MAXCNT];
  1005. A_UINT8 phy_errs[WHAL_DBG_PHY_ERR_MAXCNT];
  1006. A_UINT32 rx_rate_inval;
  1007. } wlan_dbg_wifi2_error_stats_t;
  1008. typedef struct wlan_dbg_wifi2_error2_stats {
  1009. A_UINT32 schd_errs[WHAL_DBG_CMD_STALL_ERR_MAXCNT];
  1010. A_UINT32 sifs_errs[WHAL_DBG_SIFS_ERR_MAXCNT];
  1011. } wlan_dbg_wifi2_error2_stats_t;
  1012. #define WLAN_DBG_STATS_SIZE_TXBF_VHT 10
  1013. #define WLAN_DBG_STATS_SIZE_TXBF_HT 8
  1014. #define WLAN_DBG_STATS_SIZE_TXBF_OFDM 8
  1015. #define WLAN_DBG_STATS_SIZE_TXBF_CCK 7
  1016. typedef struct wlan_dbg_txbf_data_stats {
  1017. A_UINT32 tx_txbf_vht[WLAN_DBG_STATS_SIZE_TXBF_VHT];
  1018. A_UINT32 rx_txbf_vht[WLAN_DBG_STATS_SIZE_TXBF_VHT];
  1019. A_UINT32 tx_txbf_ht[WLAN_DBG_STATS_SIZE_TXBF_HT];
  1020. A_UINT32 tx_txbf_ofdm[WLAN_DBG_STATS_SIZE_TXBF_OFDM];
  1021. A_UINT32 tx_txbf_cck[WLAN_DBG_STATS_SIZE_TXBF_CCK];
  1022. } wlan_dbg_txbf_data_stats_t;
  1023. struct wlan_dbg_tx_mu_stats {
  1024. A_UINT32 mu_sch_nusers_2;
  1025. A_UINT32 mu_sch_nusers_3;
  1026. A_UINT32 mu_mpdus_queued_usr[4];
  1027. A_UINT32 mu_mpdus_tried_usr[4];
  1028. A_UINT32 mu_mpdus_failed_usr[4];
  1029. A_UINT32 mu_mpdus_requeued_usr[4];
  1030. A_UINT32 mu_err_no_ba_usr[4];
  1031. A_UINT32 mu_mpdu_underrun_usr[4];
  1032. A_UINT32 mu_ampdu_underrun_usr[4];
  1033. };
  1034. struct wlan_dbg_tx_selfgen_stats {
  1035. A_UINT32 su_ndpa;
  1036. A_UINT32 su_ndp;
  1037. A_UINT32 mu_ndpa;
  1038. A_UINT32 mu_ndp;
  1039. A_UINT32 mu_brpoll_1;
  1040. A_UINT32 mu_brpoll_2;
  1041. A_UINT32 mu_bar_1;
  1042. A_UINT32 mu_bar_2;
  1043. A_UINT32 cts_burst;
  1044. A_UINT32 su_ndp_err;
  1045. A_UINT32 su_ndpa_err;
  1046. A_UINT32 mu_ndp_err;
  1047. A_UINT32 mu_brp1_err;
  1048. A_UINT32 mu_brp2_err;
  1049. };
  1050. typedef struct wlan_dbg_sifs_resp_stats {
  1051. A_UINT32 ps_poll_trigger; /* num ps-poll trigger frames */
  1052. A_UINT32 uapsd_trigger; /* num uapsd trigger frames */
  1053. A_UINT32 qb_data_trigger[2]; /* num data trigger frames; idx 0: explicit and idx 1: implicit */
  1054. A_UINT32 qb_bar_trigger[2]; /* num bar trigger frames; idx 0: explicit and idx 1: implicit */
  1055. A_UINT32 sifs_resp_data; /* num ppdus transmitted at SIFS interval */
  1056. A_UINT32 sifs_resp_err; /* num ppdus failed to meet SIFS resp timing */
  1057. } wlan_dgb_sifs_resp_stats_t;
  1058. /** wlan_dbg_wifi2_error_stats_t is not grouped with the
  1059. * following structure as it is allocated differently and only
  1060. * belongs to whal
  1061. */
  1062. typedef struct wlan_dbg_stats_wifi2 {
  1063. wlan_dbg_txbf_snd_stats_t txbf_snd_info;
  1064. wlan_dbg_txbf_data_stats_t txbf_data_info;
  1065. struct wlan_dbg_tx_selfgen_stats tx_selfgen;
  1066. struct wlan_dbg_tx_mu_stats tx_mu;
  1067. wlan_dgb_sifs_resp_stats_t sifs_resp_info;
  1068. } wlan_dbg_wifi2_stats_t;
  1069. /*
  1070. * wlan_dbg_rx_rate_info_v1a, _v1b:
  1071. * differing versions of the wlan_dbg_rx_rate_info struct used by different
  1072. * targets
  1073. */
  1074. typedef struct {
  1075. wlan_dbg_rx_rate_info_v1a_t rx_phy_info;
  1076. wlan_dbg_tx_rate_info_t tx_rate_info;
  1077. } wlan_dbg_rate_info_v1a_t;
  1078. typedef struct {
  1079. wlan_dbg_rx_rate_info_v1b_t rx_phy_info;
  1080. wlan_dbg_tx_rate_info_t tx_rate_info;
  1081. } wlan_dbg_rate_info_v1b_t;
  1082. #if defined(AR900B)
  1083. #define wlan_dbg_rate_info_t wlan_dbg_rate_info_v1b_t
  1084. #else
  1085. #define wlan_dbg_rate_info_t wlan_dbg_rate_info_v1a_t
  1086. #endif
  1087. typedef struct {
  1088. wlan_dbg_rx_rate_info_v2_t rx_phy_info;
  1089. wlan_dbg_tx_rate_info_v2_t tx_rate_info;
  1090. } wlan_dbg_rate_info_v2_t;
  1091. /*
  1092. * wlan_dbg_stats_v1, _v2:
  1093. * differing versions of the wlan_dbg_stats struct used by different
  1094. * targets
  1095. */
  1096. struct wlan_dbg_stats_v1 {
  1097. struct wlan_dbg_tx_stats_v1 tx;
  1098. struct wlan_dbg_rx_stats_v1 rx;
  1099. struct wlan_dbg_peer_stats peer;
  1100. };
  1101. struct wlan_dbg_stats_v2 {
  1102. struct wlan_dbg_tx_stats_v2 tx;
  1103. struct wlan_dbg_rx_stats_v2 rx;
  1104. struct wlan_dbg_mem_stats mem;
  1105. struct wlan_dbg_peer_stats peer;
  1106. };
  1107. #if defined(AR900B)
  1108. #define wlan_dbg_stats wlan_dbg_stats_v2
  1109. #else
  1110. #define wlan_dbg_stats wlan_dbg_stats_v1
  1111. #endif
  1112. #define DBG_STATS_MAX_HWQ_NUM 10
  1113. #define DBG_STATS_MAX_TID_NUM 20
  1114. #define DBG_STATS_MAX_CONG_NUM 16
  1115. struct wlan_dbg_txq_stats {
  1116. A_UINT16 num_pkts_queued[DBG_STATS_MAX_HWQ_NUM];
  1117. A_UINT16 tid_hw_qdepth[DBG_STATS_MAX_TID_NUM]; /* WAL_MAX_TID is 20 */
  1118. A_UINT16 tid_sw_qdepth[DBG_STATS_MAX_TID_NUM]; /* WAL_MAX_TID is 20 */
  1119. };
  1120. struct wlan_dbg_tidq_stats {
  1121. A_UINT32 wlan_dbg_tid_txq_status;
  1122. struct wlan_dbg_txq_stats txq_st;
  1123. };
  1124. typedef enum {
  1125. WLAN_DBG_DATA_STALL_NONE = 0,
  1126. WLAN_DBG_DATA_STALL_VDEV_PAUSE, /* 1 */
  1127. WLAN_DBG_DATA_STALL_HWSCHED_CMD_FILTER, /* 2 */
  1128. WLAN_DBG_DATA_STALL_HWSCHED_CMD_FLUSH, /* 3 */
  1129. WLAN_DBG_DATA_STALL_RX_REFILL_FAILED, /* 4 */
  1130. WLAN_DBG_DATA_STALL_RX_FCS_LEN_ERROR, /* 5 */
  1131. WLAN_DBG_DATA_STALL_MAC_WDOG_ERRORS, /* 6 */ /* Mac watch dog */
  1132. WLAN_DBG_DATA_STALL_PHY_BB_WDOG_ERROR, /* 7 */ /* PHY watch dog */
  1133. WLAN_DBG_DATA_STALL_POST_TIM_NO_TXRX_ERROR, /* 8 */
  1134. WLAN_DBG_DATA_STALL_MAX,
  1135. } wlan_dbg_data_stall_type_e;
  1136. typedef enum {
  1137. WLAN_DBG_DATA_STALL_RECOVERY_NONE = 0,
  1138. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_DISCONNECT,
  1139. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_MAC_PHY_RESET,
  1140. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_PDR,
  1141. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_SSR,
  1142. } wlan_dbg_data_stall_recovery_type_e;
  1143. /*
  1144. * NOTE: If necessary, restore the explicit disabling of CONFIG_160MHZ_SUPPORT
  1145. * See the corresponding comment + pre-processor block at the top of the file.
  1146. */
  1147. #ifdef CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  1148. #define CONFIG_160MHZ_SUPPORT 0
  1149. #undef CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  1150. #endif
  1151. #endif /* __WLANDEFS_H__ */