wlan_defs.h 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203
  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 = 0x00000001, /* 11a channels */
  267. REGDMN_MODE_TURBO = 0x00000002, /* 11a turbo-only channels */
  268. REGDMN_MODE_11B = 0x00000004, /* 11b channels */
  269. REGDMN_MODE_PUREG = 0x00000008, /* 11g channels (OFDM only) */
  270. REGDMN_MODE_11G = 0x00000008, /* XXX historical */
  271. REGDMN_MODE_108G = 0x00000020, /* 11g+Turbo channels */
  272. REGDMN_MODE_108A = 0x00000040, /* 11a+Turbo channels */
  273. REGDMN_MODE_XR = 0x00000100, /* XR channels */
  274. REGDMN_MODE_11A_HALF_RATE = 0x00000200, /* 11A half rate channels */
  275. REGDMN_MODE_11A_QUARTER_RATE = 0x00000400, /* 11A quarter rate channels */
  276. REGDMN_MODE_11NG_HT20 = 0x00000800, /* 11N-G HT20 channels */
  277. REGDMN_MODE_11NA_HT20 = 0x00001000, /* 11N-A HT20 channels */
  278. REGDMN_MODE_11NG_HT40PLUS = 0x00002000, /* 11N-G HT40 + channels */
  279. REGDMN_MODE_11NG_HT40MINUS = 0x00004000, /* 11N-G HT40 - channels */
  280. REGDMN_MODE_11NA_HT40PLUS = 0x00008000, /* 11N-A HT40 + channels */
  281. REGDMN_MODE_11NA_HT40MINUS = 0x00010000, /* 11N-A HT40 - channels */
  282. REGDMN_MODE_11AC_VHT20 = 0x00020000, /* 5Ghz, VHT20 */
  283. REGDMN_MODE_11AC_VHT40PLUS = 0x00040000, /* 5Ghz, VHT40 + channels */
  284. REGDMN_MODE_11AC_VHT40MINUS = 0x00080000, /* 5Ghz VHT40 - channels */
  285. REGDMN_MODE_11AC_VHT80 = 0x000100000, /* 5Ghz, VHT80 channels */
  286. REGDMN_MODE_11AC_VHT20_2G = 0x000200000, /* 2Ghz, VHT20 */
  287. REGDMN_MODE_11AC_VHT40_2G = 0x000400000, /* 2Ghz, VHT40 */
  288. REGDMN_MODE_11AC_VHT80_2G = 0x000800000, /* 2Ghz, VHT80 */
  289. REGDMN_MODE_11AC_VHT160 = 0x001000000, /* 5Ghz, VHT160 */
  290. REGDMN_MODE_11AC_VHT40_2GPLUS = 0x002000000, /* 2Ghz, VHT40+ */
  291. REGDMN_MODE_11AC_VHT40_2GMINUS = 0x004000000, /* 2Ghz, VHT40- */
  292. REGDMN_MODE_11AC_VHT80_80 = 0x008000000, /* 5GHz, VHT80+80 */
  293. };
  294. #define REGDMN_MODE_ALL (0xFFFFFFFF) /* REGDMN_MODE_ALL is defined out of the enum
  295. * to prevent the ARM compile "warning #66:
  296. * enumeration value is out of int range"
  297. * Anyway, this is a BIT-OR of all possible values.
  298. */
  299. #define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
  300. #define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
  301. #define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
  302. /* regulatory capabilities */
  303. #define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
  304. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
  305. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
  306. #define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
  307. #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
  308. #define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
  309. typedef struct {
  310. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMI_TLVTAG_STRUC_HAL_REG_CAPABILITIES */
  311. A_UINT32 eeprom_rd; /* regdomain value specified in EEPROM */
  312. A_UINT32 eeprom_rd_ext; /* regdomain */
  313. A_UINT32 regcap1; /* CAP1 capabilities bit map. */
  314. A_UINT32 regcap2; /* REGDMN EEPROM CAP. */
  315. A_UINT32 wireless_modes; /* REGDMN MODE */
  316. A_UINT32 low_2ghz_chan;
  317. A_UINT32 high_2ghz_chan;
  318. A_UINT32 low_5ghz_chan;
  319. A_UINT32 high_5ghz_chan;
  320. } HAL_REG_CAPABILITIES;
  321. #ifdef NUM_SPATIAL_STREAM
  322. /*
  323. * The rate control definitions below are only used in the target.
  324. * (Host-based rate control is no longer applicable.)
  325. * Maintain the defs in wlanfw_cmn for the sake of existing Rome / Helium
  326. * targets, but for Lithium targets remove them from wlanfw_cmn and define
  327. * them in a target-only location instead.
  328. * SUPPORT_11AX is essentially used as a condition to identify Lithium targets.
  329. * Some host drivers would also have SUPPORT_11AX defined, and thus would lose
  330. * the definition of RATE_CODE, RC_TX_DONE_PARAMS, and related macros, but
  331. * that's okay because the host should have no references to these
  332. * target-only data structures.
  333. */
  334. #if !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) /* following N/A for Lithium */
  335. /*
  336. * Used to update rate-control logic with the status of the tx-completion.
  337. * In host-based implementation of the rate-control feature, this struture is used to
  338. * create the payload for HTT message/s from target to host.
  339. */
  340. #ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE
  341. #if (NUM_SPATIAL_STREAM > 3)
  342. #define A_RATEMASK A_UINT64
  343. #else
  344. #define A_RATEMASK A_UINT32
  345. #endif
  346. #endif /* CONFIG_MOVE_RC_STRUCT_TO_MACCORE */
  347. typedef A_UINT8 A_RATE;
  348. typedef A_UINT8 A_RATECODE;
  349. #define A_RATEMASK_NUM_OCTET (sizeof (A_RATEMASK))
  350. #define A_RATEMASK_NUM_BITS ((sizeof (A_RATEMASK)) << 3)
  351. typedef struct {
  352. A_RATECODE rateCode;
  353. A_UINT8 flags;
  354. } RATE_CODE;
  355. typedef struct {
  356. RATE_CODE ptx_rc; /* rate code, bw, chain mask sgi */
  357. A_UINT8 reserved[2];
  358. A_UINT32 flags; /* Encodes information such as excessive
  359. retransmission, aggregate, some info
  360. from .11 frame control,
  361. STBC, LDPC, (SGI and Tx Chain Mask
  362. are encoded in ptx_rc->flags field),
  363. AMPDU truncation (BT/time based etc.),
  364. RTS/CTS attempt */
  365. A_UINT32 num_enqued; /* # of MPDUs (for non-AMPDU 1) for this rate */
  366. A_UINT32 num_retries; /* Total # of transmission attempt for this rate */
  367. A_UINT32 num_failed; /* # of failed MPDUs in A-MPDU, 0 otherwise */
  368. A_UINT32 ack_rssi; /* ACK RSSI: b'7..b'0 avg RSSI across all chain */
  369. A_UINT32 time_stamp ; /* ACK timestamp (helps determine age) */
  370. A_UINT32 is_probe; /* Valid if probing. Else, 0 */
  371. A_UINT32 ba_win_size; /* b'7..b0, block Ack Window size, b'31..b8 Resvd */
  372. A_UINT32 failed_ba_bmap_0_31; /* failed BA bitmap 0..31 */
  373. A_UINT32 failed_ba_bmap_32_63; /* failed BA bitmap 32..63 */
  374. A_UINT32 bmap_tried_0_31; /* enqued bitmap 0..31 */
  375. A_UINT32 bmap_tried_32_63; /* enqued bitmap 32..63 */
  376. } RC_TX_DONE_PARAMS;
  377. #define RC_SET_TX_DONE_INFO(_dst, _rc, _f, _nq, _nr, _nf, _rssi, _ts) \
  378. do { \
  379. (_dst).ptx_rc.rateCode = (_rc).rateCode; \
  380. (_dst).ptx_rc.flags = (_rc).flags; \
  381. (_dst).flags = (_f); \
  382. (_dst).num_enqued = (_nq); \
  383. (_dst).num_retries = (_nr); \
  384. (_dst).num_failed = (_nf); \
  385. (_dst).ack_rssi = (_rssi); \
  386. (_dst).time_stamp = (_ts); \
  387. } while (0)
  388. #define RC_SET_TXBF_DONE_INFO(_dst, _f) \
  389. do { \
  390. (_dst).flags |= (_f); \
  391. } while (0)
  392. /*
  393. * NOTE: NUM_SCHED_ENTRIES is not used in the host/target interface, but for
  394. * historical reasons has been defined in the host/target interface files.
  395. * The NUM_SCHED_ENTRIES definition is being moved into a target-only
  396. * header file for newer (Lithium) targets, but is being left here for
  397. * non-Lithium cases, to avoid having to rework legacy targets to move
  398. * the NUM_SCHED_ENTRIES definition into a target-only header file.
  399. * Moving the NUM_SCHED_ENTRIES definition into a non-Lithium conditional
  400. * block should have no impact on the host, since the host does not use
  401. * NUM_SCHED_ENTRIES.
  402. */
  403. #define NUM_SCHED_ENTRIES 2
  404. #endif /* !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) */ /* above N/A for Lithium */
  405. #endif /* NUM_SPATIAL_STREAM */
  406. /* NOTE: NUM_DYN_BW cannot be changed without breaking WMI Compatibility */
  407. #define NUM_DYN_BW_MAX 4
  408. /* Some products only use 20/40/80; some use 20/40/80/160 */
  409. #ifndef NUM_DYN_BW
  410. #define NUM_DYN_BW 3 /* default: support up through 80 MHz */
  411. #endif
  412. #define NUM_DYN_BW_MASK 0x3
  413. #define PROD_SCHED_BW_ENTRIES (NUM_SCHED_ENTRIES * NUM_DYN_BW)
  414. #if NUM_DYN_BW > 4
  415. /* Extend rate table module first */
  416. #error "Extend rate table module first"
  417. #endif
  418. #define MAX_IBSS_PEERS 32
  419. #ifdef NUM_SPATIAL_STREAM
  420. /*
  421. * RC_TX_RATE_SCHEDULE and RC_TX_RATE_INFO defs are used only in the target.
  422. * (Host-based rate control is no longer applicable.)
  423. * Maintain the defs in wlanfw_cmn for the sake of existing Rome / Helium
  424. * targets, but for Lithium targets remove them from wlanfw_cmn and define
  425. * them in a target-only location instead.
  426. * SUPPORT_11AX is essentially used as a condition to identify Lithium targets.
  427. * Some host drivers would also have SUPPORT_11AX defined, and thus would lose
  428. * the definition of RC_TX_RATE_SCHEDULE and RC_TX_RATE_INFO, but that's okay
  429. * because the host should have no references to these target-only data
  430. * structures.
  431. */
  432. #ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE
  433. #if !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX)
  434. #if defined(CONFIG_AR900B_SUPPORT) || defined(AR900B)
  435. typedef struct{
  436. A_UINT32 psdu_len[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  437. A_UINT16 flags[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  438. A_RATE rix[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  439. A_UINT8 tpc[NUM_SCHED_ENTRIES][NUM_DYN_BW];
  440. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  441. A_UINT8 num_mpdus[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  442. A_UINT16 txbf_cv_len;
  443. A_UINT32 txbf_cv_ptr;
  444. A_UINT16 txbf_flags;
  445. A_UINT16 txbf_cv_size;
  446. A_UINT8 txbf_nc_idx;
  447. A_UINT8 tries[NUM_SCHED_ENTRIES];
  448. A_UINT8 bw_mask[NUM_SCHED_ENTRIES];
  449. A_UINT8 max_bw[NUM_SCHED_ENTRIES];
  450. A_UINT8 num_sched_entries;
  451. A_UINT8 paprd_mask;
  452. A_RATE rts_rix;
  453. A_UINT8 sh_pream;
  454. A_UINT8 min_spacing_1_4_us;
  455. A_UINT8 fixed_delims;
  456. A_UINT8 bw_in_service;
  457. A_RATE probe_rix;
  458. A_UINT8 num_valid_rates;
  459. A_UINT8 rtscts_tpc;
  460. A_UINT8 dd_profile;
  461. } RC_TX_RATE_SCHEDULE;
  462. #else
  463. typedef struct{
  464. A_UINT32 psdu_len[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  465. A_UINT16 flags[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  466. A_RATE rix[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  467. A_UINT8 tpc[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  468. A_UINT8 num_mpdus[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  469. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  470. A_UINT32 txbf_cv_ptr;
  471. A_UINT16 txbf_cv_len;
  472. A_UINT8 tries[NUM_SCHED_ENTRIES];
  473. A_UINT8 num_valid_rates;
  474. A_UINT8 paprd_mask;
  475. A_RATE rts_rix;
  476. A_UINT8 sh_pream;
  477. A_UINT8 min_spacing_1_4_us;
  478. A_UINT8 fixed_delims;
  479. A_UINT8 bw_in_service;
  480. A_RATE probe_rix;
  481. } RC_TX_RATE_SCHEDULE;
  482. #endif
  483. typedef struct{
  484. A_UINT16 flags[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  485. A_RATE rix[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  486. #ifdef DYN_TPC_ENABLE
  487. A_UINT8 tpc[NUM_DYN_BW * NUM_SCHED_ENTRIES];
  488. #endif
  489. #ifdef SECTORED_ANTENNA
  490. A_UINT32 antmask[NUM_SCHED_ENTRIES];
  491. #endif
  492. A_UINT8 tries[NUM_SCHED_ENTRIES];
  493. A_UINT8 num_valid_rates;
  494. A_RATE rts_rix;
  495. A_UINT8 sh_pream;
  496. A_UINT8 bw_in_service;
  497. A_RATE probe_rix;
  498. A_UINT8 dd_profile;
  499. } RC_TX_RATE_INFO;
  500. #endif /* !((NUM_SPATIAL_STREAM > 4) || SUPPORT_11AX) */
  501. #endif /* CONFIG_MOVE_RC_STRUCT_TO_MACCORE */
  502. #endif
  503. /*
  504. * Temporarily continue to provide the WHAL_RC_INIT_RC_MASKS def in wlan_defs.h
  505. * for older targets.
  506. * The WHAL_RX_INIT_RC_MASKS macro def needs to be moved into ratectrl_11ac.h
  507. * for all targets, but until this is complete, the WHAL_RC_INIT_RC_MASKS def
  508. * will be maintained here in its old location.
  509. */
  510. #ifndef CONFIG_160MHZ_SUPPORT
  511. #define WHAL_RC_INIT_RC_MASKS(_rm) do { \
  512. _rm[WHAL_RC_MASK_IDX_NON_HT] = A_RATEMASK_OFDM_CCK; \
  513. _rm[WHAL_RC_MASK_IDX_HT_20] = A_RATEMASK_HT_20; \
  514. _rm[WHAL_RC_MASK_IDX_HT_40] = A_RATEMASK_HT_40; \
  515. _rm[WHAL_RC_MASK_IDX_VHT_20] = A_RATEMASK_VHT_20; \
  516. _rm[WHAL_RC_MASK_IDX_VHT_40] = A_RATEMASK_VHT_40; \
  517. _rm[WHAL_RC_MASK_IDX_VHT_80] = A_RATEMASK_VHT_80; \
  518. } while (0)
  519. #endif
  520. /**
  521. * strucutre describing host memory chunk.
  522. */
  523. typedef struct {
  524. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wlan_host_memory_chunk */
  525. /** id of the request that is passed up in service ready */
  526. A_UINT32 req_id;
  527. /** the physical address the memory chunk */
  528. A_UINT32 ptr;
  529. /** size of the chunk */
  530. A_UINT32 size;
  531. /** ptr_high
  532. * most significant bits of physical address of the memory chunk
  533. * Only applicable for addressing more than 32 bit.
  534. * This will only be non-zero if the target has set
  535. * WMI_SERVICE_SUPPORT_EXTEND_ADDRESS flag.
  536. */
  537. A_UINT32 ptr_high;
  538. } wlan_host_memory_chunk;
  539. #define NUM_UNITS_IS_NUM_VDEVS 0x1
  540. #define NUM_UNITS_IS_NUM_PEERS 0x2
  541. #define NUM_UNITS_IS_NUM_ACTIVE_PEERS 0x4
  542. /* request host to allocate memory contiguously */
  543. #define REQ_TO_HOST_FOR_CONT_MEMORY 0x8
  544. /**
  545. * structure used by FW for requesting host memory
  546. */
  547. typedef struct {
  548. A_UINT32 tlv_header; /* TLV tag and len; tag equals WMI_TLVTAG_STRUC_wlan_host_mem_req */
  549. /** ID of the request */
  550. A_UINT32 req_id;
  551. /** size of the of each unit */
  552. A_UINT32 unit_size;
  553. /**
  554. * flags to indicate that
  555. * the number units is dependent
  556. * on number of resources(num vdevs num peers .. etc)
  557. */
  558. A_UINT32 num_unit_info;
  559. /*
  560. * actual number of units to allocate . if flags in the num_unit_info
  561. * indicate that number of units is tied to number of a particular
  562. * resource to allocate then num_units filed is set to 0 and host
  563. * will derive the number units from number of the resources it is
  564. * requesting.
  565. */
  566. A_UINT32 num_units;
  567. } wlan_host_mem_req;
  568. typedef enum {
  569. IGNORE_DTIM = 0x01,
  570. NORMAL_DTIM = 0x02,
  571. STICK_DTIM = 0x03,
  572. AUTO_DTIM = 0x04,
  573. } BEACON_DTIM_POLICY;
  574. /* During test it is observed that 6 * 400 = 2400 can
  575. * be alloced in addition to CFG_TGT_NUM_MSDU_DESC.
  576. * If there is any change memory requirement, this number
  577. * needs to be revisited. */
  578. #define TOTAL_VOW_ALLOCABLE 2400
  579. #define VOW_DESC_GRAB_MAX 800
  580. #define VOW_GET_NUM_VI_STA(vow_config) (((vow_config) & 0xffff0000) >> 16)
  581. #define VOW_GET_DESC_PER_VI_STA(vow_config) ((vow_config) & 0x0000ffff)
  582. /***TODO!!! Get these values dynamically in WMI_READY event and use it to calculate the mem req*/
  583. /* size in bytes required for msdu descriptor. If it changes, this should be updated. LARGE_AP
  584. * case is not considered. LARGE_AP is disabled when VoW is enabled.*/
  585. #define MSDU_DESC_SIZE 20
  586. /* size in bytes required to support a peer in target.
  587. * This obtained by considering Two tids per peer.
  588. * peer structure = 168 bytes
  589. * tid = 96 bytes (per sta 2 means we need 192 bytes)
  590. * peer_cb = 16 * 2
  591. * key = 52 * 2
  592. * AST = 12 * 2
  593. * rate, reorder.. = 384
  594. * smart antenna = 50
  595. */
  596. #define MEMORY_REQ_FOR_PEER 800
  597. /*
  598. * NB: it is important to keep all the fields in the structure dword long
  599. * so that it is easy to handle the statistics in BE host.
  600. */
  601. /*
  602. * wlan_dbg_tx_stats_v1, _v2:
  603. * differing versions of the wlan_dbg_tx_stats struct used by different
  604. * targets
  605. */
  606. struct wlan_dbg_tx_stats_v1 {
  607. /* Num HTT cookies queued to dispatch list */
  608. A_INT32 comp_queued;
  609. /* Num HTT cookies dispatched */
  610. A_INT32 comp_delivered;
  611. /* Num MSDU queued to WAL */
  612. A_INT32 msdu_enqued;
  613. /* Num MPDU queue to WAL */
  614. A_INT32 mpdu_enqued;
  615. /* Num MSDUs dropped by WMM limit */
  616. A_INT32 wmm_drop;
  617. /* Num Local frames queued */
  618. A_INT32 local_enqued;
  619. /* Num Local frames done */
  620. A_INT32 local_freed;
  621. /* Num queued to HW */
  622. A_INT32 hw_queued;
  623. /* Num PPDU reaped from HW */
  624. A_INT32 hw_reaped;
  625. /* Num underruns */
  626. A_INT32 underrun;
  627. /* Num PPDUs cleaned up in TX abort */
  628. A_INT32 tx_abort;
  629. /* Num MPDUs requed by SW */
  630. A_INT32 mpdus_requed;
  631. /* excessive retries */
  632. A_UINT32 tx_ko;
  633. /* data hw rate code */
  634. A_UINT32 data_rc;
  635. /* Scheduler self triggers */
  636. A_UINT32 self_triggers;
  637. /* frames dropped due to excessive sw retries */
  638. A_UINT32 sw_retry_failure;
  639. /* illegal rate phy errors */
  640. A_UINT32 illgl_rate_phy_err;
  641. /* wal pdev continous xretry */
  642. A_UINT32 pdev_cont_xretry;
  643. /* wal pdev continous xretry */
  644. A_UINT32 pdev_tx_timeout;
  645. /* wal pdev resets */
  646. A_UINT32 pdev_resets;
  647. /* frames dropped due to non-availability of stateless TIDs */
  648. A_UINT32 stateless_tid_alloc_failure;
  649. /* PhY/BB underrun */
  650. A_UINT32 phy_underrun;
  651. /* MPDU is more than txop limit */
  652. A_UINT32 txop_ovf;
  653. };
  654. struct wlan_dbg_tx_stats_v2 {
  655. /* Num HTT cookies queued to dispatch list */
  656. A_INT32 comp_queued;
  657. /* Num HTT cookies dispatched */
  658. A_INT32 comp_delivered;
  659. /* Num MSDU queued to WAL */
  660. A_INT32 msdu_enqued;
  661. /* Num MPDU queue to WAL */
  662. A_INT32 mpdu_enqued;
  663. /* Num MSDUs dropped by WMM limit */
  664. A_INT32 wmm_drop;
  665. /* Num Local frames queued */
  666. A_INT32 local_enqued;
  667. /* Num Local frames done */
  668. A_INT32 local_freed;
  669. /* Num queued to HW */
  670. A_INT32 hw_queued;
  671. /* Num PPDU reaped from HW */
  672. A_INT32 hw_reaped;
  673. /* Num underruns */
  674. A_INT32 underrun;
  675. /* HW Paused. */
  676. A_UINT32 hw_paused;
  677. /* Num PPDUs cleaned up in TX abort */
  678. A_INT32 tx_abort;
  679. /* Num MPDUs requed by SW */
  680. A_INT32 mpdus_requed;
  681. /* excessive retries */
  682. A_UINT32 tx_ko;
  683. A_UINT32 tx_xretry;
  684. /* data hw rate code */
  685. A_UINT32 data_rc;
  686. /* Scheduler self triggers */
  687. A_UINT32 self_triggers;
  688. /* frames dropped due to excessive sw retries */
  689. A_UINT32 sw_retry_failure;
  690. /* illegal rate phy errors */
  691. A_UINT32 illgl_rate_phy_err;
  692. /* wal pdev continous xretry */
  693. A_UINT32 pdev_cont_xretry;
  694. /* wal pdev continous xretry */
  695. A_UINT32 pdev_tx_timeout;
  696. /* wal pdev resets */
  697. A_UINT32 pdev_resets;
  698. /* frames dropped due to non-availability of stateless TIDs */
  699. A_UINT32 stateless_tid_alloc_failure;
  700. /* PhY/BB underrun */
  701. A_UINT32 phy_underrun;
  702. /* MPDU is more than txop limit */
  703. A_UINT32 txop_ovf;
  704. /* Number of Sequences posted */
  705. A_UINT32 seq_posted;
  706. /* Number of Sequences failed queueing */
  707. A_UINT32 seq_failed_queueing;
  708. /* Number of Sequences completed */
  709. A_UINT32 seq_completed;
  710. /* Number of Sequences restarted */
  711. A_UINT32 seq_restarted;
  712. /* Number of MU Sequences posted */
  713. A_UINT32 mu_seq_posted;
  714. /* Num MPDUs flushed by SW, HWPAUSED, SW TXABORT (Reset,channel change) */
  715. A_INT32 mpdus_sw_flush;
  716. /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
  717. A_INT32 mpdus_hw_filter;
  718. /* Num MPDUs truncated by PDG (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) */
  719. A_INT32 mpdus_truncated;
  720. /* Num MPDUs that was tried but didn't receive ACK or BA */
  721. A_INT32 mpdus_ack_failed;
  722. /* Num MPDUs that was dropped du to expiry. */
  723. A_INT32 mpdus_expired;
  724. };
  725. #if defined(AR900B)
  726. #define wlan_dbg_tx_stats wlan_dbg_tx_stats_v2
  727. #else
  728. #define wlan_dbg_tx_stats wlan_dbg_tx_stats_v1
  729. #endif
  730. /*
  731. * wlan_dbg_rx_stats_v1, _v2:
  732. * differing versions of the wlan_dbg_rx_stats struct used by different
  733. * targets
  734. */
  735. struct wlan_dbg_rx_stats_v1 {
  736. /* Cnts any change in ring routing mid-ppdu */
  737. A_INT32 mid_ppdu_route_change;
  738. /* Total number of statuses processed */
  739. A_INT32 status_rcvd;
  740. /* Extra frags on rings 0-3 */
  741. A_INT32 r0_frags;
  742. A_INT32 r1_frags;
  743. A_INT32 r2_frags;
  744. A_INT32 r3_frags;
  745. /* MSDUs / MPDUs delivered to HTT */
  746. A_INT32 htt_msdus;
  747. A_INT32 htt_mpdus;
  748. /* MSDUs / MPDUs delivered to local stack */
  749. A_INT32 loc_msdus;
  750. A_INT32 loc_mpdus;
  751. /* AMSDUs that have more MSDUs than the status ring size */
  752. A_INT32 oversize_amsdu;
  753. /* Number of PHY errors */
  754. A_INT32 phy_errs;
  755. /* Number of PHY errors drops */
  756. A_INT32 phy_err_drop;
  757. /* Number of mpdu errors - FCS, MIC, ENC etc. */
  758. A_INT32 mpdu_errs;
  759. };
  760. struct wlan_dbg_rx_stats_v2 {
  761. /* Cnts any change in ring routing mid-ppdu */
  762. A_INT32 mid_ppdu_route_change;
  763. /* Total number of statuses processed */
  764. A_INT32 status_rcvd;
  765. /* Extra frags on rings 0-3 */
  766. A_INT32 r0_frags;
  767. A_INT32 r1_frags;
  768. A_INT32 r2_frags;
  769. A_INT32 r3_frags;
  770. /* MSDUs / MPDUs delivered to HTT */
  771. A_INT32 htt_msdus;
  772. A_INT32 htt_mpdus;
  773. /* MSDUs / MPDUs delivered to local stack */
  774. A_INT32 loc_msdus;
  775. A_INT32 loc_mpdus;
  776. /* AMSDUs that have more MSDUs than the status ring size */
  777. A_INT32 oversize_amsdu;
  778. /* Number of PHY errors */
  779. A_INT32 phy_errs;
  780. /* Number of PHY errors drops */
  781. A_INT32 phy_err_drop;
  782. /* Number of mpdu errors - FCS, MIC, ENC etc. */
  783. A_INT32 mpdu_errs;
  784. /* Number of rx overflow errors. */
  785. A_INT32 rx_ovfl_errs;
  786. };
  787. #if defined(AR900B)
  788. #define wlan_dbg_rx_stats wlan_dbg_rx_stats_v2
  789. #else
  790. #define wlan_dbg_rx_stats wlan_dbg_rx_stats_v1
  791. #endif
  792. struct wlan_dbg_mem_stats {
  793. A_UINT32 iram_free_size;
  794. A_UINT32 dram_free_size;
  795. };
  796. struct wlan_dbg_peer_stats {
  797. A_INT32 dummy; /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
  798. };
  799. /*
  800. * wlan_dbg_rx_rate_info_v1a_t, _v1b_t:
  801. * differing versions of the wlan_dbg_rx_rate_info struct used by different
  802. * targets
  803. */
  804. typedef struct {
  805. A_UINT32 mcs[10];
  806. A_UINT32 sgi[10];
  807. A_UINT32 nss[4];
  808. A_UINT32 nsts;
  809. A_UINT32 stbc[10];
  810. A_UINT32 bw[3];
  811. A_UINT32 pream[6];
  812. A_UINT32 ldpc;
  813. A_UINT32 txbf;
  814. A_UINT32 mgmt_rssi;
  815. A_UINT32 data_rssi;
  816. A_UINT32 rssi_chain0;
  817. A_UINT32 rssi_chain1;
  818. A_UINT32 rssi_chain2;
  819. } wlan_dbg_rx_rate_info_v1a_t;
  820. typedef struct {
  821. A_UINT32 mcs[10];
  822. A_UINT32 sgi[10];
  823. A_UINT32 nss[4];
  824. A_UINT32 nsts;
  825. A_UINT32 stbc[10];
  826. A_UINT32 bw[3];
  827. A_UINT32 pream[6];
  828. A_UINT32 ldpc;
  829. A_UINT32 txbf;
  830. A_UINT32 mgmt_rssi;
  831. A_UINT32 data_rssi;
  832. A_UINT32 rssi_chain0;
  833. A_UINT32 rssi_chain1;
  834. A_UINT32 rssi_chain2;
  835. /*
  836. * TEMPORARY: leave rssi_chain3 in place for AR900B builds until code using
  837. * rssi_chain3 has been converted to use wlan_dbg_rx_rate_info_v2_t.
  838. */
  839. A_UINT32 rssi_chain3;
  840. } wlan_dbg_rx_rate_info_v1b_t;
  841. #if defined(AR900B)
  842. #define wlan_dbg_rx_rate_info_t wlan_dbg_rx_rate_info_v1b_t
  843. #else
  844. #define wlan_dbg_rx_rate_info_t wlan_dbg_rx_rate_info_v1a_t
  845. #endif
  846. typedef struct {
  847. A_UINT32 mcs[10];
  848. A_UINT32 sgi[10];
  849. /*
  850. * TEMPORARY: leave nss conditionally defined, until all code that
  851. * requires nss[4] is converted to use wlan_dbg_tx_rate_info_v2_t.
  852. * At that time, this nss array will be made length = 3 unconditionally.
  853. */
  854. #if defined(CONFIG_AR900B_SUPPORT) || defined(AR900B)
  855. A_UINT32 nss[4];
  856. #else
  857. A_UINT32 nss[3];
  858. #endif
  859. A_UINT32 stbc[10];
  860. A_UINT32 bw[3];
  861. A_UINT32 pream[4];
  862. A_UINT32 ldpc;
  863. A_UINT32 rts_cnt;
  864. A_UINT32 ack_rssi;
  865. } wlan_dbg_tx_rate_info_t ;
  866. #define WLAN_MAX_MCS 10
  867. typedef struct {
  868. A_UINT32 mcs[WLAN_MAX_MCS];
  869. A_UINT32 sgi[WLAN_MAX_MCS];
  870. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V2];
  871. A_UINT32 nsts;
  872. A_UINT32 stbc[WLAN_MAX_MCS];
  873. A_UINT32 bw[NUM_DYN_BW_MAX];
  874. A_UINT32 pream[6];
  875. A_UINT32 ldpc;
  876. A_UINT32 txbf;
  877. A_UINT32 mgmt_rssi;
  878. A_UINT32 data_rssi;
  879. A_UINT32 rssi_chain0;
  880. A_UINT32 rssi_chain1;
  881. A_UINT32 rssi_chain2;
  882. A_UINT32 rssi_chain3;
  883. A_UINT32 reserved[8];
  884. } wlan_dbg_rx_rate_info_v2_t;
  885. typedef struct {
  886. A_UINT32 mcs[WLAN_MAX_MCS];
  887. A_UINT32 sgi[WLAN_MAX_MCS];
  888. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V2];
  889. A_UINT32 stbc[WLAN_MAX_MCS];
  890. A_UINT32 bw[NUM_DYN_BW_MAX];
  891. A_UINT32 pream[4];
  892. A_UINT32 ldpc;
  893. A_UINT32 rts_cnt;
  894. A_UINT32 ack_rssi;
  895. A_UINT32 reserved[8];
  896. } wlan_dbg_tx_rate_info_v2_t;
  897. typedef struct {
  898. A_UINT32 mcs[WLAN_MAX_MCS];
  899. A_UINT32 sgi[WLAN_MAX_MCS];
  900. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V3];
  901. A_UINT32 nsts;
  902. A_UINT32 stbc[WLAN_MAX_MCS];
  903. A_UINT32 bw[NUM_DYN_BW_MAX];
  904. A_UINT32 pream[6];
  905. A_UINT32 ldpc;
  906. A_UINT32 txbf;
  907. A_UINT32 mgmt_rssi;
  908. A_UINT32 data_rssi;
  909. A_UINT32 rssi_chain0;
  910. A_UINT32 rssi_chain1;
  911. A_UINT32 rssi_chain2;
  912. A_UINT32 rssi_chain3;
  913. A_UINT32 reserved[8];
  914. } wlan_dbg_rx_rate_info_v3_t;
  915. typedef struct {
  916. A_UINT32 mcs[WLAN_MAX_MCS];
  917. A_UINT32 sgi[WLAN_MAX_MCS];
  918. A_UINT32 nss[MAX_SPATIAL_STREAM_ANY_V3];
  919. A_UINT32 stbc[WLAN_MAX_MCS];
  920. A_UINT32 bw[NUM_DYN_BW_MAX];
  921. A_UINT32 pream[4];
  922. A_UINT32 ldpc;
  923. A_UINT32 rts_cnt;
  924. A_UINT32 ack_rssi;
  925. A_UINT32 reserved[8];
  926. } wlan_dbg_tx_rate_info_v3_t;
  927. #define WHAL_DBG_PHY_ERR_MAXCNT 18
  928. #define WHAL_DBG_SIFS_STATUS_MAXCNT 8
  929. #define WHAL_DBG_SIFS_ERR_MAXCNT 8
  930. #define WHAL_DBG_CMD_RESULT_MAXCNT 11
  931. #define WHAL_DBG_CMD_STALL_ERR_MAXCNT 4
  932. #define WHAL_DBG_FLUSH_REASON_MAXCNT 40
  933. typedef enum {
  934. WIFI_URRN_STATS_FIRST_PKT,
  935. WIFI_URRN_STATS_BETWEEN_MPDU,
  936. WIFI_URRN_STATS_WITHIN_MPDU,
  937. WHAL_MAX_URRN_STATS
  938. } wifi_urrn_type_t;
  939. typedef struct wlan_dbg_txbf_snd_stats {
  940. A_UINT32 cbf_20[4];
  941. A_UINT32 cbf_40[4];
  942. A_UINT32 cbf_80[4];
  943. A_UINT32 sounding[9];
  944. A_UINT32 cbf_160[4];
  945. } wlan_dbg_txbf_snd_stats_t;
  946. typedef struct wlan_dbg_wifi2_error_stats {
  947. A_UINT32 urrn_stats[WHAL_MAX_URRN_STATS];
  948. A_UINT32 flush_errs[WHAL_DBG_FLUSH_REASON_MAXCNT];
  949. A_UINT32 schd_stall_errs[WHAL_DBG_CMD_STALL_ERR_MAXCNT];
  950. A_UINT32 schd_cmd_result[WHAL_DBG_CMD_RESULT_MAXCNT];
  951. A_UINT32 sifs_status[WHAL_DBG_SIFS_STATUS_MAXCNT];
  952. A_UINT8 phy_errs[WHAL_DBG_PHY_ERR_MAXCNT];
  953. A_UINT32 rx_rate_inval;
  954. } wlan_dbg_wifi2_error_stats_t;
  955. typedef struct wlan_dbg_wifi2_error2_stats {
  956. A_UINT32 schd_errs[WHAL_DBG_CMD_STALL_ERR_MAXCNT];
  957. A_UINT32 sifs_errs[WHAL_DBG_SIFS_ERR_MAXCNT];
  958. } wlan_dbg_wifi2_error2_stats_t;
  959. #define WLAN_DBG_STATS_SIZE_TXBF_VHT 10
  960. #define WLAN_DBG_STATS_SIZE_TXBF_HT 8
  961. #define WLAN_DBG_STATS_SIZE_TXBF_OFDM 8
  962. #define WLAN_DBG_STATS_SIZE_TXBF_CCK 7
  963. typedef struct wlan_dbg_txbf_data_stats {
  964. A_UINT32 tx_txbf_vht[WLAN_DBG_STATS_SIZE_TXBF_VHT];
  965. A_UINT32 rx_txbf_vht[WLAN_DBG_STATS_SIZE_TXBF_VHT];
  966. A_UINT32 tx_txbf_ht[WLAN_DBG_STATS_SIZE_TXBF_HT];
  967. A_UINT32 tx_txbf_ofdm[WLAN_DBG_STATS_SIZE_TXBF_OFDM];
  968. A_UINT32 tx_txbf_cck[WLAN_DBG_STATS_SIZE_TXBF_CCK];
  969. } wlan_dbg_txbf_data_stats_t;
  970. struct wlan_dbg_tx_mu_stats {
  971. A_UINT32 mu_sch_nusers_2;
  972. A_UINT32 mu_sch_nusers_3;
  973. A_UINT32 mu_mpdus_queued_usr[4];
  974. A_UINT32 mu_mpdus_tried_usr[4];
  975. A_UINT32 mu_mpdus_failed_usr[4];
  976. A_UINT32 mu_mpdus_requeued_usr[4];
  977. A_UINT32 mu_err_no_ba_usr[4];
  978. A_UINT32 mu_mpdu_underrun_usr[4];
  979. A_UINT32 mu_ampdu_underrun_usr[4];
  980. };
  981. struct wlan_dbg_tx_selfgen_stats {
  982. A_UINT32 su_ndpa;
  983. A_UINT32 su_ndp;
  984. A_UINT32 mu_ndpa;
  985. A_UINT32 mu_ndp;
  986. A_UINT32 mu_brpoll_1;
  987. A_UINT32 mu_brpoll_2;
  988. A_UINT32 mu_bar_1;
  989. A_UINT32 mu_bar_2;
  990. A_UINT32 cts_burst;
  991. A_UINT32 su_ndp_err;
  992. A_UINT32 su_ndpa_err;
  993. A_UINT32 mu_ndp_err;
  994. A_UINT32 mu_brp1_err;
  995. A_UINT32 mu_brp2_err;
  996. };
  997. typedef struct wlan_dbg_sifs_resp_stats {
  998. A_UINT32 ps_poll_trigger; /* num ps-poll trigger frames */
  999. A_UINT32 uapsd_trigger; /* num uapsd trigger frames */
  1000. A_UINT32 qb_data_trigger[2]; /* num data trigger frames; idx 0: explicit and idx 1: implicit */
  1001. A_UINT32 qb_bar_trigger[2]; /* num bar trigger frames; idx 0: explicit and idx 1: implicit */
  1002. A_UINT32 sifs_resp_data; /* num ppdus transmitted at SIFS interval */
  1003. A_UINT32 sifs_resp_err; /* num ppdus failed to meet SIFS resp timing */
  1004. } wlan_dgb_sifs_resp_stats_t;
  1005. /** wlan_dbg_wifi2_error_stats_t is not grouped with the
  1006. * following structure as it is allocated differently and only
  1007. * belongs to whal
  1008. */
  1009. typedef struct wlan_dbg_stats_wifi2 {
  1010. wlan_dbg_txbf_snd_stats_t txbf_snd_info;
  1011. wlan_dbg_txbf_data_stats_t txbf_data_info;
  1012. struct wlan_dbg_tx_selfgen_stats tx_selfgen;
  1013. struct wlan_dbg_tx_mu_stats tx_mu;
  1014. wlan_dgb_sifs_resp_stats_t sifs_resp_info;
  1015. } wlan_dbg_wifi2_stats_t;
  1016. /*
  1017. * wlan_dbg_rx_rate_info_v1a, _v1b:
  1018. * differing versions of the wlan_dbg_rx_rate_info struct used by different
  1019. * targets
  1020. */
  1021. typedef struct {
  1022. wlan_dbg_rx_rate_info_v1a_t rx_phy_info;
  1023. wlan_dbg_tx_rate_info_t tx_rate_info;
  1024. } wlan_dbg_rate_info_v1a_t;
  1025. typedef struct {
  1026. wlan_dbg_rx_rate_info_v1b_t rx_phy_info;
  1027. wlan_dbg_tx_rate_info_t tx_rate_info;
  1028. } wlan_dbg_rate_info_v1b_t;
  1029. #if defined(AR900B)
  1030. #define wlan_dbg_rate_info_t wlan_dbg_rate_info_v1b_t
  1031. #else
  1032. #define wlan_dbg_rate_info_t wlan_dbg_rate_info_v1a_t
  1033. #endif
  1034. typedef struct {
  1035. wlan_dbg_rx_rate_info_v2_t rx_phy_info;
  1036. wlan_dbg_tx_rate_info_v2_t tx_rate_info;
  1037. } wlan_dbg_rate_info_v2_t;
  1038. /*
  1039. * wlan_dbg_stats_v1, _v2:
  1040. * differing versions of the wlan_dbg_stats struct used by different
  1041. * targets
  1042. */
  1043. struct wlan_dbg_stats_v1 {
  1044. struct wlan_dbg_tx_stats_v1 tx;
  1045. struct wlan_dbg_rx_stats_v1 rx;
  1046. struct wlan_dbg_peer_stats peer;
  1047. };
  1048. struct wlan_dbg_stats_v2 {
  1049. struct wlan_dbg_tx_stats_v2 tx;
  1050. struct wlan_dbg_rx_stats_v2 rx;
  1051. struct wlan_dbg_mem_stats mem;
  1052. struct wlan_dbg_peer_stats peer;
  1053. };
  1054. #if defined(AR900B)
  1055. #define wlan_dbg_stats wlan_dbg_stats_v2
  1056. #else
  1057. #define wlan_dbg_stats wlan_dbg_stats_v1
  1058. #endif
  1059. #define DBG_STATS_MAX_HWQ_NUM 10
  1060. #define DBG_STATS_MAX_TID_NUM 20
  1061. #define DBG_STATS_MAX_CONG_NUM 16
  1062. struct wlan_dbg_txq_stats {
  1063. A_UINT16 num_pkts_queued[DBG_STATS_MAX_HWQ_NUM];
  1064. A_UINT16 tid_hw_qdepth[DBG_STATS_MAX_TID_NUM]; /* WAL_MAX_TID is 20 */
  1065. A_UINT16 tid_sw_qdepth[DBG_STATS_MAX_TID_NUM]; /* WAL_MAX_TID is 20 */
  1066. };
  1067. struct wlan_dbg_tidq_stats {
  1068. A_UINT32 wlan_dbg_tid_txq_status;
  1069. struct wlan_dbg_txq_stats txq_st;
  1070. };
  1071. typedef enum {
  1072. WLAN_DBG_DATA_STALL_NONE = 0,
  1073. WLAN_DBG_DATA_STALL_VDEV_PAUSE, /* 1 */
  1074. WLAN_DBG_DATA_STALL_HWSCHED_CMD_FILTER, /* 2 */
  1075. WLAN_DBG_DATA_STALL_HWSCHED_CMD_FLUSH, /* 3 */
  1076. WLAN_DBG_DATA_STALL_RX_REFILL_FAILED, /* 4 */
  1077. WLAN_DBG_DATA_STALL_RX_FCS_LEN_ERROR, /* 5 */
  1078. WLAN_DBG_DATA_STALL_MAC_WDOG_ERRORS, /* 6 */ /* Mac watch dog */
  1079. WLAN_DBG_DATA_STALL_PHY_BB_WDOG_ERROR, /* 7 */ /* PHY watch dog */
  1080. WLAN_DBG_DATA_STALL_POST_TIM_NO_TXRX_ERROR, /* 8 */
  1081. WLAN_DBG_DATA_STALL_MAX,
  1082. } wlan_dbg_data_stall_type_e;
  1083. typedef enum {
  1084. WLAN_DBG_DATA_STALL_RECOVERY_NONE = 0,
  1085. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_DISCONNECT,
  1086. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_MAC_PHY_RESET,
  1087. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_PDR,
  1088. WLAN_DBG_DATA_STALL_RECOVERY_CONNECT_SSR,
  1089. } wlan_dbg_data_stall_recovery_type_e;
  1090. /*
  1091. * NOTE: If necessary, restore the explicit disabling of CONFIG_160MHZ_SUPPORT
  1092. * See the corresponding comment + pre-processor block at the top of the file.
  1093. */
  1094. #ifdef CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  1095. #define CONFIG_160MHZ_SUPPORT 0
  1096. #undef CONFIG_160MHZ_SUPPORT_UNDEF_WAR
  1097. #endif
  1098. #endif /* __WLANDEFS_H__ */