cdp_txrx_cmn_struct.h 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. /*
  2. * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file cdp_txrx_cmn_struct.h
  20. * @brief Define the host data path converged API functions
  21. * called by the host control SW and the OS interface module
  22. */
  23. #ifndef _CDP_TXRX_CMN_STRUCT_H_
  24. #define _CDP_TXRX_CMN_STRUCT_H_
  25. /**
  26. * For WIN legacy header compilation
  27. * Temporary add dummy definitions
  28. * should be removed properly WIN legacy code handle
  29. */
  30. #include "htc_api.h"
  31. #include "qdf_types.h"
  32. #include "qdf_nbuf.h"
  33. #include "qdf_atomic.h"
  34. #ifdef DP_MOB_DEFS
  35. #include <cdp_txrx_mob_def.h>
  36. #endif
  37. #include <cdp_txrx_handle.h>
  38. #include <cdp_txrx_stats_struct.h>
  39. #ifdef WLAN_RX_PKT_CAPTURE_ENH
  40. #include "cdp_txrx_extd_struct.h"
  41. #endif
  42. #ifdef WLAN_MAX_CLIENTS_ALLOWED
  43. #define OL_TXRX_NUM_LOCAL_PEER_IDS (WLAN_MAX_CLIENTS_ALLOWED + 1 + 1 + 1)
  44. #endif
  45. #ifndef OL_TXRX_NUM_LOCAL_PEER_IDS
  46. /*
  47. * Each AP will occupy one ID, so it will occupy two IDs for AP-AP mode.
  48. * Clients will be assigned max 32 IDs.
  49. * STA(associated)/P2P DEV(self-PEER) will get one ID.
  50. */
  51. #define OL_TXRX_NUM_LOCAL_PEER_IDS (32 + 1 + 1 + 1)
  52. #endif
  53. #define CDP_BA_256_BIT_MAP_SIZE_DWORDS 8
  54. #define CDP_BA_64_BIT_MAP_SIZE_DWORDS 2
  55. #define CDP_RSSI_CHAIN_LEN 8
  56. #define OL_TXRX_INVALID_PDEV_ID 0xff
  57. #define OL_TXRX_INVALID_LOCAL_PEER_ID 0xffff
  58. #define CDP_INVALID_VDEV_ID 0xff
  59. /* Options for Dump Statistics */
  60. #define CDP_HDD_STATS 0
  61. #define CDP_TXRX_PATH_STATS 1
  62. #define CDP_TXRX_HIST_STATS 2
  63. #define CDP_TXRX_TSO_STATS 3
  64. #define CDP_HDD_NETIF_OPER_HISTORY 4
  65. #define CDP_DUMP_TX_FLOW_POOL_INFO 5
  66. #define CDP_TXRX_DESC_STATS 6
  67. #define CDP_HIF_STATS 7
  68. #define CDP_LRO_STATS 8
  69. #define CDP_NAPI_STATS 9
  70. #define CDP_WLAN_RX_BUF_DEBUG_STATS 10
  71. #define CDP_RX_RING_STATS 11
  72. #define CDP_DP_NAPI_STATS 12
  73. #define CDP_DP_RX_THREAD_STATS 13
  74. #define CDP_SCHEDULER_STATS 21
  75. #define CDP_TX_QUEUE_STATS 22
  76. #define CDP_BUNDLE_STATS 23
  77. #define CDP_CREDIT_STATS 24
  78. #define CDP_DISCONNECT_STATS 25
  79. #define CDP_DP_RX_FISA_STATS 26
  80. #define CDP_DP_SWLM_STATS 27
  81. #define WME_AC_TO_TID(_ac) ( \
  82. ((_ac) == WME_AC_VO) ? 6 : \
  83. ((_ac) == WME_AC_VI) ? 5 : \
  84. ((_ac) == WME_AC_BK) ? 1 : \
  85. 0)
  86. #define TID_TO_WME_AC(_tid) ( \
  87. (((_tid) == 0) || ((_tid) == 3)) ? WME_AC_BE : \
  88. (((_tid) == 1) || ((_tid) == 2)) ? WME_AC_BK : \
  89. (((_tid) == 4) || ((_tid) == 5)) ? WME_AC_VI : \
  90. WME_AC_VO)
  91. #define CDP_MU_MAX_USERS 37
  92. #define CDP_MU_MAX_USER_INDEX (CDP_MU_MAX_USERS - 1)
  93. #define CDP_INVALID_PEER 0xffff
  94. #define CDP_INVALID_TID 31
  95. #define CDP_INVALID_TX_ENCAP_TYPE 6
  96. #define CDP_INVALID_SEC_TYPE 12
  97. #define CDP_DATA_TID_MAX 8
  98. #define CDP_DATA_NON_QOS_TID 16
  99. #define CDP_NUM_SA_BW 4
  100. #define CDP_PERCENT_MACRO 100
  101. #define CDP_NUM_KB_IN_MB 1000
  102. /*
  103. * advance rx monitor filter
  104. * */
  105. #define MON_FILTER_PASS 0x0001
  106. #define MON_FILTER_OTHER 0x0002
  107. #define MON_FILTER_ALL 0x0003
  108. #define FILTER_MGMT_ALL 0xFFFF
  109. #define FILTER_MGMT_ASSOC_REQ 0x0001
  110. #define FILTER_MGMT_ASSOC_RES 0x0002
  111. #define FILTER_MGMT_REASSOC_REQ 0x0004
  112. #define FILTER_MGMT_REASSOC_RES 0x0008
  113. #define FILTER_MGMT_PROBE_REQ 0x0010
  114. #define FILTER_MGMT_PROBE_RES 0x0020
  115. #define FILTER_MGMT_TIM_ADVT 0x0040
  116. #define FILTER_MGMT_RESERVED_7 0x0080
  117. #define FILTER_MGMT_BEACON 0x0100
  118. #define FILTER_MGMT_ATIM 0x0200
  119. #define FILTER_MGMT_DISASSOC 0x0400
  120. #define FILTER_MGMT_AUTH 0x0800
  121. #define FILTER_MGMT_DEAUTH 0x1000
  122. #define FILTER_MGMT_ACTION 0x2000
  123. #define FILTER_MGMT_ACT_NO_ACK 0x4000
  124. #define FILTER_MGMT_RESERVED_15 0x8000
  125. #define FILTER_CTRL_ALL 0xFFFF
  126. #define FILTER_CTRL_RESERVED_1 0x0001
  127. #define FILTER_CTRL_RESERVED_2 0x0002
  128. #define FILTER_CTRL_TRIGGER 0x0004
  129. #define FILTER_CTRL_RESERVED_4 0x0008
  130. #define FILTER_CTRL_BF_REP_POLL 0x0010
  131. #define FILTER_CTRL_VHT_NDP 0x0020
  132. #define FILTER_CTRL_FRAME_EXT 0x0040
  133. #define FILTER_CTRL_CTRLWRAP 0x0080
  134. #define FILTER_CTRL_BA_REQ 0x0100
  135. #define FILTER_CTRL_BA 0x0200
  136. #define FILTER_CTRL_PSPOLL 0x0400
  137. #define FILTER_CTRL_RTS 0x0800
  138. #define FILTER_CTRL_CTS 0x1000
  139. #define FILTER_CTRL_ACK 0x2000
  140. #define FILTER_CTRL_CFEND 0x4000
  141. #define FILTER_CTRL_CFEND_CFACK 0x8000
  142. #define FILTER_DATA_ALL 0xFFFF
  143. #define FILTER_DATA_MCAST 0x4000
  144. #define FILTER_DATA_UCAST 0x8000
  145. #define FILTER_DATA_DATA 0x0001
  146. #define FILTER_DATA_NULL 0x0008
  147. /*
  148. * Multiply rate by 2 to avoid float point
  149. * and get rate in units of 500kbps
  150. */
  151. #define CDP_11B_RATE_0MCS (11 * 2)
  152. #define CDP_11B_RATE_1MCS (5.5 * 2)
  153. #define CDP_11B_RATE_2MCS (2 * 2)
  154. #define CDP_11B_RATE_3MCS (1 * 2)
  155. #define CDP_11B_RATE_4MCS (11 * 2)
  156. #define CDP_11B_RATE_5MCS (5.5 * 2)
  157. #define CDP_11B_RATE_6MCS (2 * 2)
  158. #define CDP_11A_RATE_0MCS (48 * 2)
  159. #define CDP_11A_RATE_1MCS (24 * 2)
  160. #define CDP_11A_RATE_2MCS (12 * 2)
  161. #define CDP_11A_RATE_3MCS (6 * 2)
  162. #define CDP_11A_RATE_4MCS (54 * 2)
  163. #define CDP_11A_RATE_5MCS (36 * 2)
  164. #define CDP_11A_RATE_6MCS (18 * 2)
  165. #define CDP_11A_RATE_7MCS (9 * 2)
  166. #define CDP_LEGACY_MCS0 0
  167. #define CDP_LEGACY_MCS1 1
  168. #define CDP_LEGACY_MCS2 2
  169. #define CDP_LEGACY_MCS3 3
  170. #define CDP_LEGACY_MCS4 4
  171. #define CDP_LEGACY_MCS5 5
  172. #define CDP_LEGACY_MCS6 6
  173. #define CDP_LEGACY_MCS7 7
  174. QDF_DECLARE_EWMA(tx_lag, 1024, 8)
  175. struct cdp_stats_cookie;
  176. /*
  177. * DP configuration parameters
  178. */
  179. enum cdp_cfg_param_type {
  180. CDP_CFG_MAX_PEER_ID,
  181. CDP_CFG_CCE_DISABLE,
  182. CDP_CFG_NUM_PARAMS
  183. };
  184. /*
  185. * PPDU TYPE from FW -
  186. * @CDP_PPDU_STATS_PPDU_TYPE_SU: single user type
  187. * @CDP_PPDU_STATS_PPDU_TYPE_MU_MIMO: multi user mu-mimo
  188. * @CDP_PPDU_STATS_PPDU_TYPE_MU_OFDMA: multi user ofdma
  189. * @CDP_PPDU_STATS_PPDU_TYPE_MU_MIMO_OFDMA: multi user mu-mimo ofdma
  190. * @CDP_PPDU_STATS_PPDU_TYPE_UL_TRIG: ul trigger ppdu
  191. * @CDP_PPDU_STATS_PPDU_TYPE_BURST_BCN: burst beacon
  192. * @CDP_PPDU_STATS_PPDU_TYPE_UL_BSR_RESP: bsr respond
  193. * @CDP_PPDU_STATS_PPDU_TYPE_UL_BSR_TRIG: bsr trigger
  194. * @CDP_PPDU_STATS_PPDU_TYPE_UL_RESP: ul response
  195. * @CDP_PPDU_STATS_PPDU_TYPE_UNKNOWN
  196. */
  197. enum CDP_PPDU_STATS_PPDU_TYPE {
  198. CDP_PPDU_STATS_PPDU_TYPE_SU = 0,
  199. CDP_PPDU_STATS_PPDU_TYPE_MU_MIMO = 1,
  200. CDP_PPDU_STATS_PPDU_TYPE_MU_OFDMA = 2,
  201. CDP_PPDU_STATS_PPDU_TYPE_MU_MIMO_OFDMA = 4,
  202. CDP_PPDU_STATS_PPDU_TYPE_UL_TRIG = 5,
  203. CDP_PPDU_STATS_PPDU_TYPE_BURST_BCN = 6,
  204. CDP_PPDU_STATS_PPDU_TYPE_UL_BSR_RESP = 7,
  205. CDP_PPDU_STATS_PPDU_TYPE_UL_BSR_TRIG = 8,
  206. CDP_PPDU_STATS_PPDU_TYPE_UL_RESP = 9,
  207. CDP_PPDU_STATS_PPDU_TYPE_UNKNOWN = 0x1F,
  208. };
  209. /*
  210. * htt_dbg_stats_type -
  211. * bit positions for each stats type within a stats type bitmask
  212. * The bitmask contains 24 bits.
  213. */
  214. enum htt_cmn_dbg_stats_type {
  215. HTT_DBG_CMN_STATS_WAL_PDEV_TXRX = 0, /* bit 0 -> 0x1 */
  216. HTT_DBG_CMN_STATS_RX_REORDER = 1, /* bit 1 -> 0x2 */
  217. HTT_DBG_CMN_STATS_RX_RATE_INFO = 2, /* bit 2 -> 0x4 */
  218. HTT_DBG_CMN_STATS_TX_PPDU_LOG = 3, /* bit 3 -> 0x8 */
  219. HTT_DBG_CMN_STATS_TX_RATE_INFO = 4, /* bit 4 -> 0x10 */
  220. HTT_DBG_CMN_STATS_TIDQ = 5, /* bit 5 -> 0x20 */
  221. HTT_DBG_CMN_STATS_TXBF_INFO = 6, /* bit 6 -> 0x40 */
  222. HTT_DBG_CMN_STATS_SND_INFO = 7, /* bit 7 -> 0x80 */
  223. HTT_DBG_CMN_STATS_ERROR_INFO = 8, /* bit 8 -> 0x100 */
  224. HTT_DBG_CMN_STATS_TX_SELFGEN_INFO = 9, /* bit 9 -> 0x200 */
  225. HTT_DBG_CMN_STATS_TX_MU_INFO = 10, /* bit 10 -> 0x400 */
  226. HTT_DBG_CMN_STATS_SIFS_RESP_INFO = 11, /* bit 11 -> 0x800 */
  227. HTT_DBG_CMN_STATS_RESET_INFO = 12, /* bit 12 -> 0x1000 */
  228. HTT_DBG_CMN_STATS_MAC_WDOG_INFO = 13, /* bit 13 -> 0x2000 */
  229. HTT_DBG_CMN_STATS_TX_DESC_INFO = 14, /* bit 14 -> 0x4000 */
  230. HTT_DBG_CMN_STATS_TX_FETCH_MGR_INFO = 15, /* bit 15 -> 0x8000 */
  231. HTT_DBG_CMN_STATS_TX_PFSCHED_INFO = 16, /* bit 16 -> 0x10000 */
  232. HTT_DBG_CMN_STATS_TX_PATH_STATS_INFO = 17, /* bit 17 -> 0x20000 */
  233. /* bits 18-23 currently reserved */
  234. /* keep this last */
  235. HTT_DBG_CMN_NUM_STATS,
  236. HTT_DBG_CMN_NUM_STATS_INVALID = 31, /* bit 31 -> 0x80000000 */
  237. };
  238. /*
  239. * cdp_host_txrx_stats: Different types of host stats
  240. * @TXRX_HOST_STATS_INVALID: Invalid option
  241. * @TXRX_RX_RATE_STATS: Rx rate info
  242. * @TXRX_TX_RATE_STATS: Tx rate info
  243. * @TXRX_TX_HOST_STATS: Print Tx stats
  244. * @TXRX_RX_HOST_STATS: Print host Rx stats
  245. * @TXRX_CLEAR_STATS: clear all host stats
  246. * @TXRX_SRNG_PTR_STATS: Print SRNG pointer stats
  247. * @TXRX_RX_MON_STATS: Print monitor mode stats
  248. * @TXRX_REO_QUEUE_STATS: Print Per peer REO Queue Stats
  249. * @TXRX_SOC_CFG_PARAMS: Print soc cfg params info
  250. * @TXRX_PDEV_CFG_PARAMS: Print pdev cfg params info
  251. * @TXRX_NAPI_STATS: Print NAPI scheduling statistics
  252. * @TXRX_SOC_INTERRUPT_STATS: Print soc interrupt stats
  253. * @TXRX_HAL_REG_WRITE_STATS: Hal Reg Write stats
  254. */
  255. enum cdp_host_txrx_stats {
  256. TXRX_HOST_STATS_INVALID = -1,
  257. TXRX_CLEAR_STATS = 0,
  258. TXRX_RX_RATE_STATS = 1,
  259. TXRX_TX_RATE_STATS = 2,
  260. TXRX_TX_HOST_STATS = 3,
  261. TXRX_RX_HOST_STATS = 4,
  262. TXRX_AST_STATS = 5,
  263. TXRX_SRNG_PTR_STATS = 6,
  264. TXRX_RX_MON_STATS = 7,
  265. TXRX_REO_QUEUE_STATS = 8,
  266. TXRX_SOC_CFG_PARAMS = 9,
  267. TXRX_PDEV_CFG_PARAMS = 10,
  268. TXRX_NAPI_STATS = 11,
  269. TXRX_SOC_INTERRUPT_STATS = 12,
  270. TXRX_SOC_FSE_STATS = 13,
  271. TXRX_HAL_REG_WRITE_STATS = 14,
  272. TXRX_SOC_REO_HW_DESC_DUMP = 15,
  273. TXRX_HOST_STATS_MAX,
  274. };
  275. /*
  276. * cdp_ppdu_ftype: PPDU Frame Type
  277. * @CDP_PPDU_FTYPE_DATA: SU or MU Data Frame
  278. * @CDP_PPDU_FTYPE_CTRL: Control/Management Frames
  279. * @CDP_PPDU_FTYPE_BAR: SU or MU BAR frames
  280. */
  281. enum cdp_ppdu_ftype {
  282. CDP_PPDU_FTYPE_CTRL,
  283. CDP_PPDU_FTYPE_DATA,
  284. CDP_PPDU_FTYPE_BAR,
  285. CDP_PPDU_FTYPE_MAX
  286. };
  287. /**
  288. * @brief General specification of the tx frame contents
  289. *
  290. * @details
  291. * for efficiency, the HTT packet type values correspond
  292. * to the bit positions of the WAL packet type values, so the
  293. * translation is a simple shift operation.
  294. */
  295. enum htt_cmn_pkt_type {
  296. htt_cmn_pkt_type_raw = 0,
  297. htt_cmn_pkt_type_native_wifi = 1,
  298. htt_cmn_pkt_type_ethernet = 2,
  299. htt_cmn_pkt_type_mgmt = 3,
  300. htt_cmn_pkt_type_eth2 = 4,
  301. /* keep this last */
  302. htt_cmn_pkt_num_types
  303. };
  304. /**
  305. * @General description of HTT received packets status
  306. * It is similar to htt_rx_status enum
  307. * but is added as a cdp enum can be freely used in OL_IF layer
  308. */
  309. enum htt_cmn_rx_status {
  310. htt_cmn_rx_status_unknown = 0x0,
  311. htt_cmn_rx_status_ok,
  312. htt_cmn_rx_status_err_fcs,
  313. htt_cmn_rx_status_err_dup,
  314. htt_cmn_rx_status_err_replay,
  315. htt_cmn_rx_status_inv_peer,
  316. htt_cmn_rx_status_ctrl_mgmt_null = 0x08,
  317. htt_cmn_rx_status_tkip_mic_err = 0x09,
  318. htt_cmn_rx_status_decrypt_err = 0x0A,
  319. htt_cmn_rx_status_mpdu_length_err = 0x0B,
  320. htt_cmn_rx_status_err_misc = 0xFF
  321. };
  322. enum cdp_host_reo_dest_ring {
  323. cdp_host_reo_dest_ring_unknown = 0,
  324. cdp_host_reo_dest_ring_1 = 1,
  325. cdp_host_reo_dest_ring_2 = 2,
  326. cdp_host_reo_dest_ring_3 = 3,
  327. cdp_host_reo_dest_ring_4 = 4,
  328. };
  329. enum htt_cmn_t2h_en_stats_type {
  330. /* keep this alwyas first */
  331. HTT_CMN_T2H_EN_STATS_TYPE_START = 0,
  332. /** ppdu_common_stats is the payload */
  333. HTT_CMN_T2H_EN_STATS_TYPE_COMMON = 1,
  334. /** ppdu_sant_stats is the payload */
  335. HTT_CMN_T2H_EN_STATS_TYPE_SANT = 2,
  336. /** ppdu_common_stats_v2 is the payload */
  337. HTT_CMN_T2H_EN_STATS_TYPE_COMMON_V2 = 3,
  338. /* Keep this last */
  339. HTT_CMN_T2H_EN_STATS_TYPE_END = 0x1f,
  340. };
  341. enum htt_cmn_t2h_en_stats_status {
  342. /* Keep this first always */
  343. HTT_CMN_T2H_EN_STATS_STATUS_PARTIAL = 0,
  344. HTT_CMN_T2H_EN_STATS_STATUS_PRESENT = 1,
  345. HTT_CMN_T2H_EN_STATS_STATUS_ERROR = 2,
  346. HTT_CMN_T2H_EN_STATS_STATUS_INVALID = 3,
  347. /* keep this always last */
  348. HTT_CMN_T2H_EN_STATS_STATUS_SERIES_DONE = 7,
  349. };
  350. /**
  351. * struct ol_txrx_peer_state - Peer state information
  352. */
  353. enum ol_txrx_peer_state {
  354. OL_TXRX_PEER_STATE_INVALID,
  355. OL_TXRX_PEER_STATE_DISC, /* initial state */
  356. OL_TXRX_PEER_STATE_CONN, /* authentication in progress */
  357. OL_TXRX_PEER_STATE_AUTH, /* authentication successful */
  358. };
  359. /**
  360. * struct ol_txrx_ast_type - AST entry type information
  361. */
  362. enum cdp_txrx_ast_entry_type {
  363. CDP_TXRX_AST_TYPE_NONE, /* static ast entry for connected peer */
  364. CDP_TXRX_AST_TYPE_STATIC, /* static ast entry for connected peer */
  365. CDP_TXRX_AST_TYPE_SELF, /* static ast entry for self peer (STA mode) */
  366. CDP_TXRX_AST_TYPE_WDS, /* WDS peer ast entry type*/
  367. CDP_TXRX_AST_TYPE_WDS_HM, /* HM WDS entry */
  368. CDP_TXRX_AST_TYPE_STA_BSS, /* BSS entry(STA mode) */
  369. CDP_TXRX_AST_TYPE_DA, /* AST entry based on Destination address */
  370. CDP_TXRX_AST_TYPE_WDS_HM_SEC, /* HM WDS entry for secondary radio */
  371. CDP_TXRX_AST_TYPE_MAX
  372. };
  373. /*
  374. * cdp_ast_free_status: status passed to callback function before freeing ast
  375. * @CDP_TXRX_AST_DELETED - AST is deleted from FW and delete response received
  376. * @CDP_TXRX_AST_DELETE_IN_PROGRESS - AST delete command sent to FW and host
  377. * is waiting for FW response
  378. */
  379. enum cdp_ast_free_status {
  380. CDP_TXRX_AST_DELETED,
  381. CDP_TXRX_AST_DELETE_IN_PROGRESS,
  382. };
  383. /**
  384. * txrx_ast_free_cb - callback registered for ast free
  385. * @ctrl_soc: control path soc context
  386. * @cdp_soc: DP soc context
  387. * @cookie: cookie
  388. * @cdp_ast_free_status: ast free status
  389. */
  390. typedef void (*txrx_ast_free_cb)(struct cdp_ctrl_objmgr_psoc *ctrl_soc,
  391. struct cdp_soc *cdp_soc,
  392. void *cookie,
  393. enum cdp_ast_free_status);
  394. /**
  395. * struct cdp_ast_entry_info - AST entry information
  396. * @peer_mac_addr: mac address of peer on which AST entry is added
  397. * @type: ast entry type
  398. * @vdev_id: vdev_id
  399. * @pdev_id: pdev_id
  400. * @peer_id: peer_id
  401. *
  402. * This structure holds the ast entry information
  403. *
  404. */
  405. struct cdp_ast_entry_info {
  406. uint8_t peer_mac_addr[QDF_MAC_ADDR_SIZE];
  407. enum cdp_txrx_ast_entry_type type;
  408. uint8_t vdev_id;
  409. uint8_t pdev_id;
  410. uint16_t peer_id;
  411. };
  412. #define MIC_SEQ_CTR_SIZE 6
  413. enum cdp_rx_frame_type {
  414. cdp_rx_frame_type_802_11,
  415. cdp_rx_frame_type_802_3,
  416. };
  417. /**
  418. * struct cdp_rx_mic_err_info - rx mic error information
  419. * @frame_type: frame type - 0 - 802.11 frame
  420. * - 1 - 802.3 frame
  421. * @data: 802.11 frame
  422. * @ta_mac_addr: transmitter mac address
  423. * @da_mac_addr: destination mac address
  424. * @tsc: sequence number
  425. * @key_id: Key ID
  426. * @multicast: flag for multicast
  427. * @vdev_id: vdev ID
  428. *
  429. * This structure holds rx mic error information
  430. *
  431. */
  432. struct cdp_rx_mic_err_info {
  433. uint8_t frame_type;
  434. uint8_t *data;
  435. struct qdf_mac_addr ta_mac_addr;
  436. struct qdf_mac_addr da_mac_addr;
  437. uint8_t tsc[MIC_SEQ_CTR_SIZE];
  438. uint8_t key_id;
  439. bool multicast;
  440. uint16_t vdev_id;
  441. };
  442. #ifdef WLAN_SUPPORT_SCS
  443. /* SCS Procedure data structures
  444. */
  445. #define IEEE80211_SCS_MAX_SIZE 10
  446. #define IEEE80211_IPV4_LEN 4
  447. #define IEEE80211_IPV6_LEN 16
  448. struct cdp_tclas_tuple_ipv4 {
  449. u_int8_t version;
  450. uint8_t src_ip[IEEE80211_IPV4_LEN];
  451. uint8_t dst_ip[IEEE80211_IPV4_LEN];
  452. u_int16_t src_port;
  453. u_int16_t dst_port;
  454. u_int8_t dscp;
  455. u_int8_t protocol;
  456. u_int8_t reserved;
  457. } __packed;
  458. struct cdp_tclas_tuple_ipv6 {
  459. u_int8_t version;
  460. u_int8_t src_ip[IEEE80211_IPV6_LEN];
  461. u_int8_t dst_ip[IEEE80211_IPV6_LEN];
  462. u_int16_t src_port;
  463. u_int16_t dst_port;
  464. u_int8_t type4_dscp;
  465. u_int8_t next_header;
  466. u_int8_t flow_label[3];
  467. } __packed;
  468. struct cdp_tclas_tuple_ipsec {
  469. u_int8_t protocol_number;
  470. u_int8_t protocol_instance;
  471. u_int8_t filter_len;
  472. u_int8_t *filter_mask;
  473. u_int8_t *filter_val;
  474. } __packed;
  475. struct cdp_tclas_tuple {
  476. uint8_t type;
  477. uint8_t mask;
  478. union {
  479. union {
  480. struct cdp_tclas_tuple_ipv4 v4;
  481. struct cdp_tclas_tuple_ipv6 v6;
  482. } type4;
  483. struct cdp_tclas_tuple_ipsec ips;
  484. } tclas;
  485. } __packed;
  486. /**
  487. * struct cdp_scs_params - SCS parameters
  488. * obtained from handshake
  489. * @scsid - SCS ID
  490. * @access_priority - User Access Priority
  491. * containing tid value.
  492. * @tclas_elements - Number of TCLAS elements
  493. * @tclas - TCLAS tuple parameters
  494. * @tclas_processing - TCLAS processing value
  495. */
  496. struct cdp_scs_params {
  497. uint8_t scsid;
  498. uint8_t access_priority;
  499. uint8_t tclas_elements;
  500. struct cdp_tclas_tuple tclas[IEEE80211_SCS_MAX_SIZE];
  501. uint8_t tclas_process;
  502. };
  503. #endif
  504. #ifdef WLAN_SUPPORT_MSCS
  505. /**
  506. * struct cdp_mscs_params - MSCS parameters obtained
  507. * from handshake
  508. * @user_pri_bitmap - User priority bitmap
  509. * @user_pri_limit - User priority limit
  510. * @classifier_type - TCLAS Classifier type
  511. * @classifier_mask - TCLAS Classifier mask
  512. */
  513. struct cdp_mscs_params {
  514. uint8_t user_pri_bitmap;
  515. uint8_t user_pri_limit;
  516. uint8_t classifier_type;
  517. uint8_t classifier_mask;
  518. };
  519. #endif
  520. /**
  521. * struct cdp_sec_type - security type information
  522. */
  523. enum cdp_sec_type {
  524. cdp_sec_type_none,
  525. cdp_sec_type_wep128,
  526. cdp_sec_type_wep104,
  527. cdp_sec_type_wep40,
  528. cdp_sec_type_tkip,
  529. cdp_sec_type_tkip_nomic,
  530. cdp_sec_type_aes_ccmp,
  531. cdp_sec_type_wapi,
  532. cdp_sec_type_aes_ccmp_256,
  533. cdp_sec_type_aes_gcmp,
  534. cdp_sec_type_aes_gcmp_256,
  535. /* keep this last! */
  536. cdp_num_sec_types
  537. };
  538. /**
  539. * struct cdp_tx_exception_metadata - Exception path parameters
  540. * @peer_id: Peer id of the peer
  541. * @tid: Transmit Identifier
  542. * @tx_encap_type: Transmit encap type (i.e. Raw, Native Wi-Fi, Ethernet)
  543. * @sec_type: sec_type to be passed to HAL
  544. * @is_tx_sniffer: Indicates if the packet has to be sniffed
  545. * @ppdu_cookie: 16-bit ppdu cookie that has to be replayed back in completions
  546. *
  547. * This structure holds the parameters needed in the exception path of tx
  548. *
  549. */
  550. struct cdp_tx_exception_metadata {
  551. uint16_t peer_id;
  552. uint8_t tid;
  553. uint16_t tx_encap_type;
  554. enum cdp_sec_type sec_type;
  555. uint8_t is_tx_sniffer;
  556. uint16_t ppdu_cookie;
  557. #ifdef QCA_SUPPORT_WDS_EXTENDED
  558. uint8_t is_wds_extended;
  559. #endif
  560. };
  561. typedef struct cdp_soc_t *ol_txrx_soc_handle;
  562. /**
  563. * ol_txrx_vdev_delete_cb - callback registered during vdev
  564. * detach
  565. */
  566. typedef void (*ol_txrx_vdev_delete_cb)(void *context);
  567. /**
  568. * ol_txrx_peer_unmap_sync_cb - callback registered during peer detach sync
  569. */
  570. typedef QDF_STATUS(*ol_txrx_peer_unmap_sync_cb)(uint8_t vdev_id,
  571. uint32_t peer_id_cnt,
  572. uint16_t *peer_id_list);
  573. /**
  574. * ol_txrx_pkt_direction - Packet Direction
  575. * @rx_direction: rx path packet
  576. * @tx_direction: tx path packet
  577. */
  578. enum txrx_direction {
  579. rx_direction = 1,
  580. tx_direction = 0,
  581. };
  582. /**
  583. * cdp_capabilities- DP capabilities
  584. */
  585. enum cdp_capabilities {
  586. CDP_CFG_DP_TSO,
  587. CDP_CFG_DP_LRO,
  588. CDP_CFG_DP_SG,
  589. CDP_CFG_DP_GRO,
  590. CDP_CFG_DP_OL_TX_CSUM,
  591. CDP_CFG_DP_OL_RX_CSUM,
  592. CDP_CFG_DP_RAWMODE,
  593. CDP_CFG_DP_PEER_FLOW_CTRL,
  594. };
  595. /**
  596. * ol_txrx_nbuf_classify - Packet classification object
  597. * @peer_id: unique peer identifier from fw
  598. * @tid: traffic identifier(could be overridden)
  599. * @pkt_tid: traffic identifier(cannot be overridden)
  600. * @pkt_tos: ip header tos value
  601. * @pkt_dscp: ip header dscp value
  602. * @tos: index value in map
  603. * @dscp: DSCP_TID map index
  604. * @is_mcast: multicast pkt check
  605. * @is_eap: eapol pkt check
  606. * @is_arp: arp pkt check
  607. * @is_tcp: tcp pkt check
  608. * @is_dhcp: dhcp pkt check
  609. * @is_igmp: igmp pkt check
  610. * @is_ipv4: ip version 4 pkt check
  611. * @is_ipv6: ip version 6 pkt check
  612. */
  613. struct ol_txrx_nbuf_classify {
  614. uint16_t peer_id;
  615. uint8_t tid;
  616. uint8_t pkt_tid;
  617. uint8_t pkt_tos;
  618. uint8_t pkt_dscp;
  619. uint8_t tos;
  620. uint8_t dscp;
  621. uint8_t is_mcast;
  622. uint8_t is_eap;
  623. uint8_t is_arp;
  624. uint8_t is_tcp;
  625. uint8_t is_dhcp;
  626. uint8_t is_igmp;
  627. uint8_t is_ipv4;
  628. uint8_t is_ipv6;
  629. };
  630. /**
  631. * ol_osif_vdev_handle - paque handle for OS shim virtual device
  632. * object
  633. */
  634. struct ol_osif_vdev_t;
  635. typedef struct ol_osif_vdev_t *ol_osif_vdev_handle;
  636. #ifdef QCA_SUPPORT_WDS_EXTENDED
  637. struct ol_osif_peer_t;
  638. typedef struct ol_osif_peer_t *ol_osif_peer_handle;
  639. #endif
  640. /**
  641. * wlan_op_mode - Virtual device operation mode
  642. * @wlan_op_mode_unknown: Unknown mode
  643. * @wlan_op_mode_ap: AP mode
  644. * @wlan_op_mode_ibss: IBSS mode
  645. * @wlan_op_mode_sta: STA (client) mode
  646. * @wlan_op_mode_monitor: Monitor mode
  647. * @wlan_op_mode_ocb: OCB mode
  648. */
  649. enum wlan_op_mode {
  650. wlan_op_mode_unknown,
  651. wlan_op_mode_ap,
  652. wlan_op_mode_ibss,
  653. wlan_op_mode_sta,
  654. wlan_op_mode_monitor,
  655. wlan_op_mode_ocb,
  656. wlan_op_mode_ndi,
  657. };
  658. /**
  659. * enum wlan_op_subtype - Virtual device subtype
  660. * @wlan_op_subtype_none: Subtype not applicable
  661. * @wlan_op_subtype_p2p_device: P2P device
  662. * @wlan_op_subtye_p2p_cli: P2P Client
  663. * @wlan_op_subtype_p2p_go: P2P GO
  664. *
  665. * This enum lists the subtypes of a particular virtual
  666. * device.
  667. */
  668. enum wlan_op_subtype {
  669. wlan_op_subtype_none,
  670. wlan_op_subtype_p2p_device,
  671. wlan_op_subtype_p2p_cli,
  672. wlan_op_subtype_p2p_go,
  673. };
  674. /**
  675. * connectivity_stats_pkt_status - data pkt type
  676. * @PKT_TYPE_REQ: Request packet
  677. * @PKT_TYPE_RSP: Response packet
  678. * @PKT_TYPE_TX_DROPPED: TX packet dropped
  679. * @PKT_TYPE_RX_DROPPED: RX packet dropped
  680. * @PKT_TYPE_RX_DELIVERED: RX packet delivered
  681. * @PKT_TYPE_RX_REFUSED: RX packet refused
  682. * @PKT_TYPE_TX_HOST_FW_SENT: TX packet FW sent
  683. * @PKT_TYPE_TX_ACK_CNT:TC packet acked
  684. * @PKT_TYPE_NONE: Invalid packet
  685. */
  686. enum connectivity_stats_pkt_status {
  687. PKT_TYPE_REQ,
  688. PKT_TYPE_RSP,
  689. PKT_TYPE_TX_DROPPED,
  690. PKT_TYPE_RX_DROPPED,
  691. PKT_TYPE_RX_DELIVERED,
  692. PKT_TYPE_RX_REFUSED,
  693. PKT_TYPE_TX_HOST_FW_SENT,
  694. PKT_TYPE_TX_ACK_CNT,
  695. PKT_TYPE_NONE,
  696. };
  697. /**
  698. * ol_txrx_mgmt_tx_cb - tx management delivery notification
  699. * callback function
  700. */
  701. typedef void
  702. (*ol_txrx_mgmt_tx_cb)(void *ctxt, qdf_nbuf_t tx_mgmt_frm, int had_error);
  703. /**
  704. * ol_txrx_data_tx_cb - Function registered with the data path
  705. * that is called when tx frames marked as "no free" are
  706. * done being transmitted
  707. */
  708. typedef void
  709. (*ol_txrx_data_tx_cb)(void *ctxt, qdf_nbuf_t tx_frm, int had_error);
  710. /**
  711. * ol_txrx_tx_fp - top-level transmit function
  712. * @soc - dp soc handle
  713. * @vdev_id - handle to the virtual device object
  714. * @msdu_list - list of network buffers
  715. */
  716. typedef qdf_nbuf_t (*ol_txrx_tx_fp)(struct cdp_soc_t *soc, uint8_t vdev_id,
  717. qdf_nbuf_t msdu_list);
  718. /**
  719. * ol_txrx_tx_exc_fp - top-level transmit function on exception path
  720. * @soc - dp soc handle
  721. * @vdev_id - handle to the virtual device object
  722. * @msdu_list - list of network buffers
  723. * @tx_exc_metadata - structure that holds parameters to exception path
  724. */
  725. typedef qdf_nbuf_t (*ol_txrx_tx_exc_fp)(struct cdp_soc_t *soc, uint8_t vdev_id,
  726. qdf_nbuf_t msdu_list,
  727. struct cdp_tx_exception_metadata
  728. *tx_exc_metadata);
  729. /**
  730. * ol_txrx_completion_fp - top-level transmit function
  731. * for tx completion
  732. * @skb: skb data
  733. * @osif_dev: the virtual device's OS shim object
  734. * @flag: flag
  735. */
  736. typedef void (*ol_txrx_completion_fp)(qdf_nbuf_t skb,
  737. void *osif_dev, uint16_t flag);
  738. /**
  739. * ol_txrx_tx_flow_control_fp - tx flow control notification
  740. * function from txrx to OS shim
  741. * @osif_dev - the virtual device's OS shim object
  742. * @tx_resume - tx os q should be resumed or not
  743. */
  744. typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev,
  745. bool tx_resume);
  746. /**
  747. * ol_txrx_tx_flow_control_is_pause_fp - is tx paused by flow control
  748. * function from txrx to OS shim
  749. * @osif_dev - the virtual device's OS shim object
  750. *
  751. * Return: true if tx is paused by flow control
  752. */
  753. typedef bool (*ol_txrx_tx_flow_control_is_pause_fp)(void *osif_dev);
  754. /**
  755. * ol_txrx_rx_fp - receive function to hand batches of data
  756. * frames from txrx to OS shim
  757. * @data_vdev - handle to the OSIF virtual device object
  758. * @msdu_list - list of network buffers
  759. */
  760. typedef QDF_STATUS(*ol_txrx_rx_fp)(void *osif_dev, qdf_nbuf_t msdu_list);
  761. typedef QDF_STATUS(*ol_txrx_fisa_rx_fp)(void *soc,
  762. void *dp_vdev,
  763. qdf_nbuf_t msdu_list);
  764. typedef QDF_STATUS(*ol_txrx_fisa_flush_fp)(void *soc, int ring_num);
  765. /**
  766. * ol_txrx_rx_flush_fp - receive function to hand batches of data
  767. * frames from txrx to OS shim
  768. * @osif_dev: handle to the OSIF virtual device object
  769. * @vdev_id: vdev_if of the packets to be flushed
  770. */
  771. typedef QDF_STATUS(*ol_txrx_rx_flush_fp)(void *osif_dev, uint8_t vdev_id);
  772. /**
  773. * ol_txrx_rx_gro_flush_ind - function to send GRO flush indication to stack
  774. * for a given RX Context Id.
  775. * @osif_dev - handle to the OSIF virtual device object
  776. * @rx_ctx_id - Rx context Id for which gro flush should happen
  777. */
  778. typedef QDF_STATUS(*ol_txrx_rx_gro_flush_ind_fp)(void *osif_dev,
  779. int rx_ctx_id);
  780. /**
  781. * ol_txrx_stats_rx_fp - receive function to hand batches of data
  782. * frames from txrx to OS shim
  783. * @skb: skb data
  784. * @osif_dev: the virtual device's OS shim object
  785. * @action: data packet type
  786. * @pkt_type: packet data type
  787. */
  788. typedef void (*ol_txrx_stats_rx_fp)(struct sk_buff *skb,
  789. void *osif_dev, enum connectivity_stats_pkt_status action,
  790. uint8_t *pkt_type);
  791. /**
  792. * ol_txrx_get_key_fp - function to gey key based on keyix and peer
  793. * mac address
  794. * @osif_dev - the virtual device's OS shim object
  795. * @key_buf - pointer to store key
  796. * @mac_addr - pointer to mac address
  797. * @keyix - key id
  798. */
  799. typedef QDF_STATUS(*ol_txrx_get_key_fp)(void *osif_dev, uint8_t *key_buf, uint8_t *mac_addr, uint8_t keyix);
  800. /**
  801. * ol_txrx_rsim_rx_decap_fp - raw mode simulation function to decap the
  802. * packets in receive path.
  803. * @osif_dev - the virtual device's OS shim object
  804. * @list_head - poniter to head of receive packet queue to decap
  805. * @list_tail - poniter to tail of receive packet queue to decap
  806. * @peer_mac - mac address of peer handler
  807. */
  808. typedef QDF_STATUS(*ol_txrx_rsim_rx_decap_fp)(void *osif_dev,
  809. qdf_nbuf_t *list_head,
  810. qdf_nbuf_t *list_tail,
  811. uint8_t *peer_mac);
  812. /* ol_txrx_rx_fp - external tx free function to read per packet stats and
  813. * free tx buffer externally
  814. * @netbuf - tx network buffer
  815. */
  816. typedef void (*ol_txrx_tx_free_ext_fp)(qdf_nbuf_t netbuf);
  817. /**
  818. * ol_txrx_rx_check_wai_fp - OSIF WAPI receive function
  819. */
  820. typedef bool (*ol_txrx_rx_check_wai_fp)(ol_osif_vdev_handle vdev,
  821. qdf_nbuf_t mpdu_head,
  822. qdf_nbuf_t mpdu_tail);
  823. /**
  824. * ol_txrx_rx_mon_fp - OSIF monitor mode receive function for single
  825. * MPDU (802.11 format)
  826. */
  827. typedef void (*ol_txrx_rx_mon_fp)(ol_osif_vdev_handle vdev,
  828. qdf_nbuf_t mpdu,
  829. void *rx_status);
  830. /**
  831. * ol_txrx_proxy_arp_fp - proxy arp function pointer
  832. */
  833. typedef int (*ol_txrx_proxy_arp_fp)(ol_osif_vdev_handle vdev,
  834. qdf_nbuf_t netbuf);
  835. /*
  836. * ol_txrx_mcast_me_fp - function pointer for multicast enhancement
  837. */
  838. typedef int (*ol_txrx_mcast_me_fp)(ol_osif_vdev_handle vdev,
  839. qdf_nbuf_t netbuf);
  840. /**
  841. * ol_txrx_stats_callback - statistics notify callback
  842. */
  843. typedef void (*ol_txrx_stats_callback)(void *ctxt,
  844. enum htt_cmn_dbg_stats_type type,
  845. uint8_t *buf, int bytes);
  846. /**
  847. * ol_txrx_pktdump_cb - callback for packet dump feature
  848. */
  849. typedef void (*ol_txrx_pktdump_cb)(ol_txrx_soc_handle soc,
  850. uint8_t pdev_id,
  851. uint8_t vdev_id,
  852. qdf_nbuf_t netbuf,
  853. uint8_t status,
  854. uint8_t type);
  855. /**
  856. * ol_txrx_ops - (pointers to) the functions used for tx and rx
  857. * data xfer
  858. *
  859. * There are two portions of these txrx operations.
  860. * The rx portion is filled in by OSIF SW before calling
  861. * ol_txrx_osif_vdev_register; inside the ol_txrx_osif_vdev_register
  862. * the txrx SW stores a copy of these rx function pointers, to use
  863. * as it delivers rx data frames to the OSIF SW.
  864. * The tx portion is filled in by the txrx SW inside
  865. * ol_txrx_osif_vdev_register; when the function call returns,
  866. * the OSIF SW stores a copy of these tx functions to use as it
  867. * delivers tx data frames to the txrx SW.
  868. *
  869. * @tx.std - the tx function pointer for standard data
  870. * frames This function pointer is set by the txrx SW
  871. * perform host-side transmit operations based on
  872. * whether a HL or LL host/target interface is in use.
  873. * @tx.flow_control_cb - the transmit flow control
  874. * function that is registered by the
  875. * OSIF which is called from txrx to
  876. * indicate whether the transmit OS
  877. * queues should be paused/resumed
  878. * @rx.rx - the OS shim rx function to deliver rx data
  879. * frames to. This can have different values for
  880. * different virtual devices, e.g. so one virtual
  881. * device's OS shim directly hands rx frames to the OS,
  882. * but another virtual device's OS shim filters out P2P
  883. * messages before sending the rx frames to the OS. The
  884. * netbufs delivered to the osif_rx function are in the
  885. * format specified by the OS to use for tx and rx
  886. * frames (either 802.3 or native WiFi). In case RX Threads are enabled, pkts
  887. * are given to the thread, instead of the stack via this pointer.
  888. * @rx.rx_eapol - This rx function pointer used to receive only eapol frames
  889. * @rx.stack - function to give packets to the stack. Differs from @rx.rx.
  890. * In case RX Threads are enabled, this pointer holds the callback to give
  891. * packets to the stack.
  892. * @rx.rx_gro_flush - GRO flush indication to stack for a given RX CTX ID
  893. * @rx.wai_check - the tx function pointer for WAPI frames
  894. * @rx.mon - the OS shim rx monitor function to deliver
  895. * monitor data to Though in practice, it is probable
  896. * that the same function will be used for delivering
  897. * rx monitor data for all virtual devices, in theory
  898. * each different virtual device can have a different
  899. * OS shim function for accepting rx monitor data. The
  900. * netbufs delivered to the osif_rx_mon function are in
  901. * 802.11 format. Each netbuf holds a 802.11 MPDU, not
  902. * an 802.11 MSDU. Depending on compile-time
  903. * configuration, each netbuf may also have a
  904. * monitor-mode encapsulation header such as a radiotap
  905. * header added before the MPDU contents.
  906. * @rx.std - the OS shim rx function to deliver rx data
  907. * @proxy_arp - proxy arp function pointer - specified by
  908. * OS shim, stored by txrx
  909. * @get_key - function pointer to get key of the peer with
  910. * specific key index
  911. */
  912. struct ol_txrx_ops {
  913. /* tx function pointers - specified by txrx, stored by OS shim */
  914. struct {
  915. ol_txrx_tx_fp tx;
  916. ol_txrx_tx_exc_fp tx_exception;
  917. ol_txrx_tx_free_ext_fp tx_free_ext;
  918. ol_txrx_completion_fp tx_comp;
  919. } tx;
  920. /* rx function pointers - specified by OS shim, stored by txrx */
  921. struct {
  922. ol_txrx_rx_fp rx;
  923. #ifdef QCA_SUPPORT_EAPOL_OVER_CONTROL_PORT
  924. ol_txrx_rx_fp rx_eapol;
  925. #endif
  926. ol_txrx_rx_fp rx_stack;
  927. ol_txrx_rx_flush_fp rx_flush;
  928. ol_txrx_rx_gro_flush_ind_fp rx_gro_flush;
  929. ol_txrx_rx_check_wai_fp wai_check;
  930. ol_txrx_rx_mon_fp mon;
  931. ol_txrx_stats_rx_fp stats_rx;
  932. ol_txrx_rsim_rx_decap_fp rsim_rx_decap;
  933. ol_txrx_fisa_rx_fp osif_fisa_rx;
  934. ol_txrx_fisa_flush_fp osif_fisa_flush;
  935. } rx;
  936. /* proxy arp function pointer - specified by OS shim, stored by txrx */
  937. ol_txrx_proxy_arp_fp proxy_arp;
  938. ol_txrx_mcast_me_fp me_convert;
  939. ol_txrx_get_key_fp get_key;
  940. };
  941. /**
  942. * ol_txrx_stats_req - specifications of the requested
  943. * statistics
  944. */
  945. struct ol_txrx_stats_req {
  946. uint32_t stats_type_upload_mask; /* which stats to upload */
  947. uint32_t stats_type_reset_mask; /* which stats to reset */
  948. /* stats will be printed if either print element is set */
  949. struct {
  950. int verbose; /* verbose stats printout */
  951. int concise; /* concise stats printout (takes precedence) */
  952. } print; /* print uploaded stats */
  953. /* stats notify callback will be invoked if fp is non-NULL */
  954. struct {
  955. ol_txrx_stats_callback fp;
  956. void *ctxt;
  957. } callback;
  958. /* stats will be copied into the specified buffer if buf is non-NULL */
  959. struct {
  960. uint8_t *buf;
  961. int byte_limit; /* don't copy more than this */
  962. } copy;
  963. /*
  964. * If blocking is true, the caller will take the specified semaphore
  965. * to wait for the stats to be uploaded, and the driver will release
  966. * the semaphore when the stats are done being uploaded.
  967. */
  968. struct {
  969. int blocking;
  970. /*Note: this needs to change to some qdf_* type */
  971. qdf_semaphore_t *sem_ptr;
  972. } wait;
  973. };
  974. /* DP soc struct definition */
  975. struct cdp_soc_t {
  976. struct cdp_ops *ops;
  977. struct ol_if_ops *ol_ops;
  978. };
  979. /*
  980. * cdp_peer_param_type: different types of parameters
  981. * to set values in peer
  982. * @CDP_CONFIG_NAWDS: Enable nawds mode
  983. * @CDP_CONFIG_NAC: Enable nac
  984. * @CDP_CONFIG_ISOLATION : Enable isolation
  985. * @CDP_CONFIG_IN_TWT : In TWT session or not
  986. */
  987. enum cdp_peer_param_type {
  988. CDP_CONFIG_NAWDS,
  989. CDP_CONFIG_NAC,
  990. CDP_CONFIG_ISOLATION,
  991. CDP_CONFIG_IN_TWT,
  992. };
  993. /*
  994. * cdp_pdev_param_type: different types of parameters
  995. * to set values in pdev
  996. * @CDP_CONFIG_DEBUG_SNIFFER: Enable debug sniffer feature
  997. * @CDP_CONFIG_BPR_ENABLE: Enable bcast probe feature
  998. * @CDP_CONFIG_PRIMARY_RADIO: Configure radio as primary
  999. * @CDP_CONFIG_ENABLE_PERPKT_TXSTATS: Enable per packet statistics
  1000. * @CDP_CONFIG_IGMPMLD_OVERRIDE: Override IGMP/MLD
  1001. * @CDP_CONFIG_IGMPMLD_TID: Configurable TID value when igmmld_override is set
  1002. * @CDP_CONFIG_ARP_DBG_CONF: Enable ARP debug
  1003. * @CDP_CONFIG_CAPTURE_LATENCY: Capture time latency
  1004. * @CDP_INGRESS_STATS: Accumulate ingress statistics
  1005. * @CDP_OSIF_DROP: Accumulate drops in OSIF layer
  1006. * @CDP_CONFIG_ENH_RX_CAPTURE: Enable enhanced RX capture
  1007. * @CDP_CONFIG_ENH_TX_CAPTURE: Enable enhanced TX capture
  1008. * @CDP_CONFIG_HMMC_TID_OVERRIDE: Enable hmmc tid override
  1009. * @CDP_CONFIG_HMMC_TID_VALUE: set hmmc tid value
  1010. * @CDP_CONFIG_TX_CAPTURE: set tx capture
  1011. * @CDP_CHAN_NOISE_FLOOR: set channel noise floor
  1012. * @CDP_CONFIG_VOW: set/get vow config
  1013. * @CDP_TIDQ_OVERRIDE: set/get tid queue override
  1014. * @CDP_TIDMAP_PRTY: set/get tid map prty
  1015. * @CDP_TX_PENDING: get tx pending
  1016. * @CDP_FILTER_NEIGH_PEERS: filter neighbour peers
  1017. * @CDP_FILTER_UCAST_DATA: filter unicast data
  1018. * @CDP_FILTER_MCAST_DATA: filter multicast data
  1019. * @CDP_FILTER_NO_DATA: filter no data
  1020. * @CDP_MONITOR_CHANNEL: monitor channel
  1021. * @CDP_MONITOR_FREQUENCY: monitor frequency
  1022. * @CDP_CONFIG_BSS_COLOR: configure bss color
  1023. * @CDP_SET_ATF_STATS_ENABLE: set ATF stats flag
  1024. * @CDP_CONFIG_SPECIAL_VAP: Configure Special vap
  1025. * @CDP_RESET_SCAN_SPCL_VAP_STATS_ENABLE: Enable scan spcl vap stats reset
  1026. */
  1027. enum cdp_pdev_param_type {
  1028. CDP_CONFIG_DEBUG_SNIFFER,
  1029. CDP_CONFIG_BPR_ENABLE,
  1030. CDP_CONFIG_PRIMARY_RADIO,
  1031. CDP_CONFIG_ENABLE_PERPKT_TXSTATS,
  1032. CDP_CONFIG_IGMPMLD_OVERRIDE,
  1033. CDP_CONFIG_IGMPMLD_TID,
  1034. CDP_CONFIG_ARP_DBG_CONF,
  1035. CDP_CONFIG_CAPTURE_LATENCY,
  1036. CDP_INGRESS_STATS,
  1037. CDP_OSIF_DROP,
  1038. CDP_CONFIG_ENH_RX_CAPTURE,
  1039. CDP_CONFIG_ENH_TX_CAPTURE,
  1040. CDP_CONFIG_HMMC_TID_OVERRIDE,
  1041. CDP_CONFIG_HMMC_TID_VALUE,
  1042. CDP_CONFIG_TX_CAPTURE,
  1043. CDP_CHAN_NOISE_FLOOR,
  1044. CDP_CONFIG_VOW,
  1045. CDP_TIDQ_OVERRIDE,
  1046. CDP_TIDMAP_PRTY,
  1047. CDP_TX_PENDING,
  1048. CDP_FILTER_NEIGH_PEERS,
  1049. CDP_FILTER_UCAST_DATA,
  1050. CDP_FILTER_MCAST_DATA,
  1051. CDP_FILTER_NO_DATA,
  1052. CDP_MONITOR_CHANNEL,
  1053. CDP_MONITOR_FREQUENCY,
  1054. CDP_CONFIG_BSS_COLOR,
  1055. CDP_SET_ATF_STATS_ENABLE,
  1056. CDP_CONFIG_SPECIAL_VAP,
  1057. CDP_RESET_SCAN_SPCL_VAP_STATS_ENABLE,
  1058. };
  1059. /*
  1060. * cdp_config_param_type: union of different types of parameters
  1061. * to set values into dp handles.
  1062. *
  1063. * @cdp_peer_param_nawds: Enable nawds mode
  1064. * @cdp_peer_param_isolation: Enable isolation
  1065. * @cdp_peer_param_in_twt: in TWT session or not
  1066. * @cdp_peer_param_nac: Enable nac
  1067. *
  1068. * @cdp_vdev_param_nawds: set nawds enable/disable
  1069. * @cdp_vdev_param_mcast_en: enable/disable multicast enhancement
  1070. * @cdp_vdev_param_wds: wds sta
  1071. * @cdp_vdev_param_mec: MEC enable flags
  1072. * @cdp_vdev_param_proxysta: proxy sta
  1073. * @cdp_vdev_param_tdls_flags: tdls link flags
  1074. * @cdp_vdev_param_ap_brdg_en: set ap_bridging enable/disable
  1075. * @cdp_vdev_param_cipher_en: set cipher type based on security
  1076. * @cdp_vdev_param_qwrap_isolation: qwrap isolation mode
  1077. * @cdp_vdev_param_tx_encap: tx encap type
  1078. * @cdp_vdev_param_rx_decap: rx decap type
  1079. * @cdp_vdev_param_mesh_rx_filter: set mesh rx filter
  1080. * @cdp_vdev_param_tidmap_prty: set tid vdev prty
  1081. * @cdp_vdev_param_tidmap_tbl_id: set tidmap table id
  1082. * @cdp_vdev_param_mesh_mode: set mesh mode
  1083. * @cdp_vdev_param_safe_mode: set safe mode
  1084. * @cdp_vdev_param_drop_unenc: set drop unencrypted flag
  1085. * @cdp_vdev_param_hlos_tid_override: set hlos tid override
  1086. * @cdp_vdev_param_peer_authorize: set peer authorize
  1087. * @cdp_vdev_param_peer_tid_latency_enable: set peer tid latency enable flag
  1088. * @cdp_vdev_param_mesh_tid: config tatency tid on vdev
  1089. *
  1090. * @cdp_pdev_param_dbg_snf: Enable debug sniffer feature
  1091. * @cdp_pdev_param_bpr_enable: Enable bcast probe feature
  1092. * @cdp_pdev_param_primary_radio: Configure radio as primary
  1093. * @cdp_pdev_param_en_perpkt_txstats: Enable per packet statistics
  1094. * @cdp_pdev_param_igmpmld_override: Override IGMP/MLD
  1095. * @cdp_pdev_param_igmpmld_tid: TID value when igmmld_override is set
  1096. * @cdp_pdev_param_arp_dbg_conf: Enable ARP debug
  1097. * @cdp_pdev_param_cptr_latcy: Capture time latency
  1098. * @cdp_pdev_param_ingrs_stats: Accumulate ingress statistics
  1099. * @cdp_pdev_param_osif_drop: Accumulate drops in OSIF layer
  1100. * @cdp_pdev_param_en_rx_cap: Enable enhanced RX capture
  1101. * @cdp_pdev_param_en_tx_cap: Enable enhanced TX capture
  1102. * @cdp_pdev_param_hmmc_tid_ovrd: Enable hmmc tid override
  1103. * @cdp_pdev_param_hmmc_tid: set hmmc tid value
  1104. * @cdp_pdev_param_tx_capture: set tx capture
  1105. * @cdp_pdev_param_chn_noise_flr: set channel noise floor
  1106. * @cdp_pdev_param_cfg_vow: set/get vow config
  1107. * @cdp_pdev_param_tidq_override: set/get tid queue override
  1108. * @cdp_pdev_param_mon_freq: set monitor frequency
  1109. * @cdp_pdev_param_bss_color: configure bss color
  1110. * @cdp_pdev_param_tidmap_prty: set/get tid map prty
  1111. * @cdp_pdev_param_tx_pending: get tx pending
  1112. * @cdp_pdev_param_fltr_neigh_peers: filter neighbour peers
  1113. * @cdp_pdev_param_fltr_ucast: filter unicast data
  1114. * @cdp_pdev_param_fltr_mcast: filter multicast data
  1115. * @cdp_pdev_param_fltr_none: filter no data
  1116. * @cdp_pdev_param_monitor_chan: monitor channel
  1117. * @cdp_pdev_param_atf_stats_enable: ATF stats enable
  1118. * @cdp_pdev_param_config_special_vap: Configure Special vap
  1119. *
  1120. * @cdp_psoc_param_en_rate_stats: set rate stats enable/disable
  1121. * @cdp_psoc_param_en_nss_cfg: set nss cfg
  1122. *
  1123. * @cdp_enable_tx_checksum: Flag to specify if HW Tx checksum enabled
  1124. */
  1125. typedef union cdp_config_param_t {
  1126. /* peer params */
  1127. bool cdp_peer_param_nawds;
  1128. bool cdp_peer_param_isolation;
  1129. uint8_t cdp_peer_param_nac;
  1130. bool cdp_peer_param_in_twt;
  1131. /* vdev params */
  1132. bool cdp_vdev_param_wds;
  1133. bool cdp_vdev_param_mec;
  1134. bool cdp_vdev_param_nawds;
  1135. bool cdp_vdev_param_proxysta;
  1136. bool cdp_vdev_param_tdls_flags;
  1137. bool cdp_vdev_param_ap_brdg_en;
  1138. bool cdp_vdev_param_qwrap_isolation;
  1139. bool cdp_vdev_param_update_multipass;
  1140. uint8_t cdp_vdev_param_da_war;
  1141. uint8_t cdp_vdev_param_mcast_en;
  1142. uint8_t cdp_vdev_param_igmp_mcast_en;
  1143. uint8_t cdp_vdev_param_tidmap_prty;
  1144. uint8_t cdp_vdev_param_tidmap_tbl_id;
  1145. uint32_t cdp_vdev_param_aging_tmr;
  1146. uint32_t cdp_vdev_param_cipher_en;
  1147. uint32_t cdp_vdev_param_tx_encap;
  1148. uint32_t cdp_vdev_param_rx_decap;
  1149. uint32_t cdp_vdev_param_mesh_rx_filter;
  1150. uint32_t cdp_vdev_param_mesh_mode;
  1151. uint32_t cdp_vdev_param_safe_mode;
  1152. uint32_t cdp_vdev_param_drop_unenc;
  1153. uint8_t cdp_vdev_param_hlos_tid_override;
  1154. bool cdp_vdev_param_wds_ext;
  1155. uint8_t cdp_vdev_param_peer_authorize;
  1156. uint8_t cdp_vdev_param_peer_tid_latency_enable;
  1157. uint8_t cdp_vdev_param_mesh_tid;
  1158. /* pdev params */
  1159. bool cdp_pdev_param_cptr_latcy;
  1160. bool cdp_pdev_param_hmmc_tid_ovrd;
  1161. bool cdp_pdev_param_fltr_neigh_peers;
  1162. bool cdp_pdev_param_cfg_vow;
  1163. bool cdp_pdev_param_fltr_mcast;
  1164. bool cdp_pdev_param_fltr_none;
  1165. bool cdp_pdev_param_fltr_ucast;
  1166. uint8_t cdp_pdev_param_primary_radio;
  1167. uint8_t cdp_pdev_param_en_rx_cap;
  1168. uint8_t cdp_pdev_param_en_tx_cap;
  1169. uint8_t cdp_pdev_param_tx_capture;
  1170. uint8_t cdp_pdev_param_hmmc_tid;
  1171. uint8_t cdp_pdev_param_tidmap_prty;
  1172. uint8_t cdp_pdev_param_igmpmld_override;
  1173. uint8_t cdp_pdev_param_igmpmld_tid;
  1174. uint8_t cdp_pdev_param_arp_dbg_conf;
  1175. uint8_t cdp_pdev_param_tidq_override;
  1176. uint8_t cdp_pdev_param_bss_color;
  1177. uint16_t cdp_pdev_param_chn_noise_flr;
  1178. qdf_freq_t cdp_pdev_param_mon_freq;
  1179. int cdp_pdev_param_dbg_snf;
  1180. int cdp_pdev_param_bpr_enable;
  1181. int cdp_pdev_param_monitor_chan;
  1182. uint32_t cdp_pdev_param_ingrs_stats;
  1183. uint32_t cdp_pdev_param_osif_drop;
  1184. uint32_t cdp_pdev_param_en_perpkt_txstats;
  1185. uint32_t cdp_pdev_param_tx_pending;
  1186. bool cdp_pdev_param_atf_stats_enable;
  1187. bool cdp_pdev_param_config_special_vap;
  1188. bool cdp_pdev_param_reset_scan_spcl_vap_stats_enable;
  1189. /* psoc params */
  1190. bool cdp_psoc_param_en_rate_stats;
  1191. int cdp_psoc_param_en_nss_cfg;
  1192. int cdp_psoc_param_preferred_hw_mode;
  1193. bool cdp_psoc_param_pext_stats;
  1194. bool cdp_enable_tx_checksum;
  1195. bool cdp_skip_bar_update;
  1196. } cdp_config_param_type;
  1197. /**
  1198. * cdp_rx_enh_capture_mode - Rx enhanced capture modes
  1199. * @CDP_RX_ENH_CAPTURE_DISABLED: Disable Rx enhance capture
  1200. * @CDP_RX_ENH_CAPTURE_MPDU: Enable capture of 128 bytes of each MPDU
  1201. * @CDP_RX_ENH_CAPTURE_MPDU_MSDU: Enable capture of 128 bytes of each MSDU
  1202. */
  1203. enum cdp_rx_enh_capture_mode {
  1204. CDP_RX_ENH_CAPTURE_DISABLED = 0,
  1205. CDP_RX_ENH_CAPTURE_MPDU,
  1206. CDP_RX_ENH_CAPTURE_MPDU_MSDU,
  1207. };
  1208. /**
  1209. * cdp_rx_enh_capture_peer - Rx enhanced capture peer filtering
  1210. * @CDP_RX_ENH_CAPTURE_PEER_DISABLED: Disable Rx ENH capture peer filtering
  1211. * @CDP_RX_ENH_CAPTURE_PEER_ENABLED: Enable Rx ENH capture peer filtering
  1212. */
  1213. enum cdp_rx_enh_capture_peer {
  1214. CDP_RX_ENH_CAPTURE_PEER_DISABLED = 0,
  1215. CDP_RX_ENH_CAPTURE_PEER_ENABLED,
  1216. };
  1217. /**
  1218. * cdp_tx_enh_capture_mode - Tx enhanced capture modes
  1219. * @CDP_TX_ENH_CAPTURE_DISABLED: Disable Tx enhance capture for all peers
  1220. * @CDP_TX_ENH_CAPTURE_ENABLE_ALL_PEERS: Enable tx capture for all peers
  1221. * @CDP_TX_ENH_CAPTURE_ENDIS_PER_PEER: Enable/disable per peer as necessary
  1222. */
  1223. enum cdp_tx_enh_capture_mode {
  1224. CDP_TX_ENH_CAPTURE_DISABLED = 0,
  1225. CDP_TX_ENH_CAPTURE_ENABLE_ALL_PEERS,
  1226. CDP_TX_ENH_CAPTURE_ENDIS_PER_PEER,
  1227. CDP_TX_ENH_CAPTURE_MAX,
  1228. };
  1229. /*
  1230. * enum cdp_pdev_bpr_param - different types of parameters
  1231. * to set value in pdev
  1232. * @CDP_BPR_DISABLE: Set bpr to disable state
  1233. * @CDP_BPR_ENABLE: set bpr to enable state
  1234. *
  1235. * Enum indicating bpr state to enable/disable.
  1236. */
  1237. enum cdp_pdev_bpr_param {
  1238. CDP_BPR_DISABLE,
  1239. CDP_BPR_ENABLE,
  1240. };
  1241. /*
  1242. * cdp_vdev_param_type: different types of parameters
  1243. * to set values in vdev
  1244. * @CDP_ENABLE_NAWDS: set nawds enable/disable
  1245. * @CDP_ENABLE_MCAST_EN: enable/disable multicast enhancement
  1246. * @CDP_ENABLE_WDS: wds sta
  1247. * @CDP_ENABLE_MEC: MEC enable flags
  1248. * @CDP_ENABLE_PROXYSTA: proxy sta
  1249. * @CDP_UPDATE_TDLS_FLAGS: tdls link flags
  1250. * @CDP_ENABLE_AP_BRIDGE: set ap_bridging enable/disable
  1251. * @CDP_ENABLE_CIPHER : set cipher type based on security
  1252. * @CDP_ENABLE_QWRAP_ISOLATION: qwrap isolation mode
  1253. * @CDP_TX_ENCAP_TYPE: tx encap type
  1254. * @CDP_RX_DECAP_TYPE: rx decap type
  1255. * @CDP_MESH_RX_FILTER: set mesh rx filter
  1256. * @CDP_TID_VDEV_PRTY: set tid vdev prty
  1257. * @CDP_TIDMAP_TBL_ID: set tidmap table id
  1258. * @CDP_MESH_MODE: set mesh mode
  1259. * @CDP_SAFEMODE: set safe mode
  1260. * @CDP_DROP_UNENC: set drop unencrypted flag
  1261. * @CDP_ENABLE_IGMP_MCAST_EN: enable/disable igmp multicast enhancement
  1262. * @CDP_ENABLE_HLOS_TID_OVERRIDE: set hlos tid override flag
  1263. * @CDP_CFG_WDS_EXT: enable/disable wds ext feature
  1264. * @CDP_ENABLE_PEER_AUTHORIZE: enable peer authorize flag
  1265. * @CDP_ENABLE_PEER_TID_LATENCY: set peer tid latency enable flag
  1266. * @CDP_SET_VAP_MESH_TID : Set latency tid in vap
  1267. */
  1268. enum cdp_vdev_param_type {
  1269. CDP_ENABLE_NAWDS,
  1270. CDP_ENABLE_MCAST_EN,
  1271. CDP_ENABLE_WDS,
  1272. CDP_ENABLE_MEC,
  1273. CDP_ENABLE_DA_WAR,
  1274. CDP_ENABLE_PROXYSTA,
  1275. CDP_UPDATE_TDLS_FLAGS,
  1276. CDP_CFG_WDS_AGING_TIMER,
  1277. CDP_ENABLE_AP_BRIDGE,
  1278. CDP_ENABLE_CIPHER,
  1279. CDP_ENABLE_QWRAP_ISOLATION,
  1280. CDP_UPDATE_MULTIPASS,
  1281. CDP_TX_ENCAP_TYPE,
  1282. CDP_RX_DECAP_TYPE,
  1283. CDP_MESH_RX_FILTER,
  1284. CDP_TID_VDEV_PRTY,
  1285. CDP_TIDMAP_TBL_ID,
  1286. #ifdef MESH_MODE_SUPPORT
  1287. CDP_MESH_MODE,
  1288. #endif
  1289. CDP_SAFEMODE,
  1290. CDP_DROP_UNENC,
  1291. CDP_ENABLE_CSUM,
  1292. CDP_ENABLE_IGMP_MCAST_EN,
  1293. CDP_ENABLE_HLOS_TID_OVERRIDE,
  1294. #ifdef QCA_SUPPORT_WDS_EXTENDED
  1295. CDP_CFG_WDS_EXT,
  1296. #endif /* QCA_SUPPORT_WDS_EXTENDED */
  1297. CDP_ENABLE_PEER_AUTHORIZE,
  1298. #ifdef WLAN_SUPPORT_MESH_LATENCY
  1299. CDP_ENABLE_PEER_TID_LATENCY,
  1300. CDP_SET_VAP_MESH_TID,
  1301. #endif
  1302. #ifdef WLAN_VENDOR_SPECIFIC_BAR_UPDATE
  1303. CDP_SKIP_BAR_UPDATE_AP,
  1304. #endif
  1305. };
  1306. /*
  1307. * cdp_psoc_param_type: different types of parameters
  1308. * to set values in psoc
  1309. * @CDP_ENABLE_RATE_STATS: set rate stats enable/disable
  1310. * @CDP_SET_NSS_CFG: set nss cfg
  1311. * @CDP_SET_PREFERRED_HW_MODE: set preferred hw mode
  1312. * @CDP_CFG_PEER_EXT_STATS: Peer extended stats mode.
  1313. */
  1314. enum cdp_psoc_param_type {
  1315. CDP_ENABLE_RATE_STATS,
  1316. CDP_SET_NSS_CFG,
  1317. CDP_SET_PREFERRED_HW_MODE,
  1318. CDP_CFG_PEER_EXT_STATS,
  1319. };
  1320. #define TXRX_FW_STATS_TXSTATS 1
  1321. #define TXRX_FW_STATS_RXSTATS 2
  1322. #define TXRX_FW_STATS_RX_RATE_INFO 3
  1323. #define TXRX_FW_STATS_PHYSTATS 4
  1324. #define TXRX_FW_STATS_PHYSTATS_CONCISE 5
  1325. #define TXRX_FW_STATS_TX_RATE_INFO 6
  1326. #define TXRX_FW_STATS_TID_STATE 7
  1327. #define TXRX_FW_STATS_HOST_STATS 8
  1328. #define TXRX_FW_STATS_CLEAR_HOST_STATS 9
  1329. #define TXRX_FW_STATS_CE_STATS 10
  1330. #define TXRX_FW_STATS_VOW_UMAC_COUNTER 11
  1331. #define TXRX_FW_STATS_ME_STATS 12
  1332. #define TXRX_FW_STATS_TXBF_INFO 13
  1333. #define TXRX_FW_STATS_SND_INFO 14
  1334. #define TXRX_FW_STATS_ERROR_INFO 15
  1335. #define TXRX_FW_STATS_TX_SELFGEN_INFO 16
  1336. #define TXRX_FW_STATS_TX_MU_INFO 17
  1337. #define TXRX_FW_SIFS_RESP_INFO 18
  1338. #define TXRX_FW_RESET_STATS 19
  1339. #define TXRX_FW_MAC_WDOG_STATS 20
  1340. #define TXRX_FW_MAC_DESC_STATS 21
  1341. #define TXRX_FW_MAC_FETCH_MGR_STATS 22
  1342. #define TXRX_FW_MAC_PREFETCH_MGR_STATS 23
  1343. #define TXRX_FW_STATS_DURATION_INFO 24
  1344. #define TXRX_FW_STATS_DURATION_INFO_RESET 25
  1345. #define TXRX_FW_HALPHY_STATS 26
  1346. #define TXRX_FW_COEX_STATS 27
  1347. #define PER_RADIO_FW_STATS_REQUEST 0
  1348. #define PER_VDEV_FW_STATS_REQUEST 1
  1349. /**
  1350. * enum data_stall_log_event_indicator - Module triggering data stall
  1351. * @DATA_STALL_LOG_INDICATOR_UNUSED: Unused
  1352. * @DATA_STALL_LOG_INDICATOR_HOST_DRIVER: Host driver indicates data stall
  1353. * @DATA_STALL_LOG_INDICATOR_FIRMWARE: FW indicates data stall
  1354. * @DATA_STALL_LOG_INDICATOR_FRAMEWORK: Framework indicates data stall
  1355. *
  1356. * Enum indicating the module that indicates data stall event
  1357. */
  1358. enum data_stall_log_event_indicator {
  1359. DATA_STALL_LOG_INDICATOR_UNUSED,
  1360. DATA_STALL_LOG_INDICATOR_HOST_DRIVER,
  1361. DATA_STALL_LOG_INDICATOR_FIRMWARE,
  1362. DATA_STALL_LOG_INDICATOR_FRAMEWORK,
  1363. };
  1364. /**
  1365. * enum data_stall_log_event_type - data stall event type
  1366. * @DATA_STALL_LOG_NONE
  1367. * @DATA_STALL_LOG_FW_VDEV_PAUSE
  1368. * @DATA_STALL_LOG_HWSCHED_CMD_FILTER
  1369. * @DATA_STALL_LOG_HWSCHED_CMD_FLUSH
  1370. * @DATA_STALL_LOG_FW_RX_REFILL_FAILED
  1371. * @DATA_STALL_LOG_FW_RX_FCS_LEN_ERROR
  1372. * @DATA_STALL_LOG_FW_WDOG_ERRORS
  1373. * @DATA_STALL_LOG_BB_WDOG_ERROR
  1374. * @DATA_STALL_LOG_POST_TIM_NO_TXRX_ERROR
  1375. * @DATA_STALL_LOG_HOST_STA_TX_TIMEOUT
  1376. * @DATA_STALL_LOG_HOST_SOFTAP_TX_TIMEOUT
  1377. * @DATA_STALL_LOG_NUD_FAILURE
  1378. *
  1379. * Enum indicating data stall event type
  1380. */
  1381. enum data_stall_log_event_type {
  1382. DATA_STALL_LOG_NONE,
  1383. DATA_STALL_LOG_FW_VDEV_PAUSE,
  1384. DATA_STALL_LOG_HWSCHED_CMD_FILTER,
  1385. DATA_STALL_LOG_HWSCHED_CMD_FLUSH,
  1386. DATA_STALL_LOG_FW_RX_REFILL_FAILED,
  1387. DATA_STALL_LOG_FW_RX_FCS_LEN_ERROR,
  1388. DATA_STALL_LOG_FW_WDOG_ERRORS,
  1389. DATA_STALL_LOG_BB_WDOG_ERROR,
  1390. DATA_STALL_LOG_POST_TIM_NO_TXRX_ERROR,
  1391. /* Stall events triggered by host/framework start from 0x100 onwards. */
  1392. DATA_STALL_LOG_HOST_STA_TX_TIMEOUT = 0x100,
  1393. DATA_STALL_LOG_HOST_SOFTAP_TX_TIMEOUT,
  1394. DATA_STALL_LOG_NUD_FAILURE,
  1395. };
  1396. /**
  1397. * enum data_stall_log_recovery_type - data stall recovery type
  1398. * @DATA_STALL_LOG_RECOVERY_NONE,
  1399. * @DATA_STALL_LOG_RECOVERY_CONNECT_DISCONNECT,
  1400. * @DATA_STALL_LOG_RECOVERY_TRIGGER_PDR
  1401. *
  1402. * Enum indicating data stall recovery type
  1403. */
  1404. enum data_stall_log_recovery_type {
  1405. DATA_STALL_LOG_RECOVERY_NONE = 0,
  1406. DATA_STALL_LOG_RECOVERY_CONNECT_DISCONNECT,
  1407. DATA_STALL_LOG_RECOVERY_TRIGGER_PDR,
  1408. };
  1409. /**
  1410. * struct data_stall_event_info - data stall info
  1411. * @indicator: Module triggering data stall
  1412. * @data_stall_type: data stall event type
  1413. * @vdev_id_bitmap: vdev_id_bitmap
  1414. * @pdev_id: pdev id
  1415. * @recovery_type: data stall recovery type
  1416. */
  1417. struct data_stall_event_info {
  1418. uint32_t indicator;
  1419. uint32_t data_stall_type;
  1420. uint32_t vdev_id_bitmap;
  1421. uint32_t pdev_id;
  1422. uint32_t recovery_type;
  1423. };
  1424. typedef void (*data_stall_detect_cb)(struct data_stall_event_info *);
  1425. /*
  1426. * enum cdp_stats - options for host and firmware
  1427. * statistics
  1428. * @CDP_TXRX_STATS_1: HTT Pdev tx stats
  1429. * @CDP_TXRX_STATS_2: HTT Pdev rx stats
  1430. * @CDP_TXRX_STATS_3: HTT Pdev Tx HW Queue stats
  1431. * @CDP_TXRX_STATS_4: HTT Pdev Tx HW Sched stats
  1432. * @CDP_TXRX_STATS_5: HTT Pdev error stats
  1433. * @CDP_TXRX_STATS_6: HTT TQM stats
  1434. * @CDP_TXRX_STATS_7: HTT TQM CMDQ stats
  1435. * @CDP_TXRX_STATS_8: HTT Tx_de_cmn thread stats
  1436. * @CDP_TXRX_STATS_9: HTT Pdev Tx rate stats
  1437. * @CDP_TXRX_STATS_10: HTT Pdev Rx rate stats
  1438. * @CDP_TXRX_STATS_11: HTT Peer stats
  1439. * @CDP_TXRX_STATS_12: HTT Tx Self Gen Info
  1440. * @CDP_TXRX_STATS_13: HTT Tx MU HWQ stats
  1441. * @CDP_TXRX_STATS_14: HTT Ring interface info stats
  1442. * @CDP_TXRX_STATS_15: HTT SRNG info stats
  1443. * @CDP_TXRX_STATS_16: HTT SFM info stats
  1444. * @CDP_TXRX_STATS_17: HTT Pdev tx mu mimo sched info
  1445. * @CDP_TXRX_STATS_18: HTT Peer list details
  1446. * @CDP_TXRX_STATS_19: Reserved
  1447. * @CDP_TXRX_STATS_20: Reset Host stats
  1448. * @CDP_TXRX_STATS_21: Host Rx rate stats
  1449. * @CDP_TXRX_STATS_22: Host Tx rate stats
  1450. * @CDP_TXRX_STATS_23: Host Tx stats
  1451. * @CDP_TXRX_STATS_24: Host Rx stats
  1452. * @CDP_TXRX_STATS_25: Host Ast stats
  1453. * @CDP_TXRX_STATS_26: Host Head/Tail Pointer stats
  1454. * @CDP_TXRX_STATS_27: Host Monitor mode stats
  1455. * @CDP_TXRX_STATS_28: Host Peer entry stats
  1456. * @CDP_TXRX_STATS_29: Host Soc config params info
  1457. * @CDP_TXRX_STATS_30: Host Pdev config params info
  1458. * @CDP_TXRX_STATS_31: Host DP Interrupt Stats
  1459. */
  1460. enum cdp_stats {
  1461. CDP_TXRX_STATS_0 = 0,
  1462. CDP_TXRX_STATS_1,
  1463. CDP_TXRX_STATS_2,
  1464. CDP_TXRX_STATS_3,
  1465. CDP_TXRX_STATS_4,
  1466. CDP_TXRX_STATS_5,
  1467. CDP_TXRX_STATS_6,
  1468. CDP_TXRX_STATS_7,
  1469. CDP_TXRX_STATS_8,
  1470. CDP_TXRX_STATS_9,
  1471. CDP_TXRX_STATS_10,
  1472. CDP_TXRX_STATS_11,
  1473. CDP_TXRX_STATS_12,
  1474. CDP_TXRX_STATS_13,
  1475. CDP_TXRX_STATS_14,
  1476. CDP_TXRX_STATS_15,
  1477. CDP_TXRX_STATS_16,
  1478. CDP_TXRX_STATS_17,
  1479. CDP_TXRX_STATS_18,
  1480. CDP_TXRX_STATS_19,
  1481. CDP_TXRX_STATS_20,
  1482. CDP_TXRX_STATS_21,
  1483. CDP_TXRX_STATS_22,
  1484. CDP_TXRX_STATS_23,
  1485. CDP_TXRX_STATS_24,
  1486. CDP_TXRX_STATS_25,
  1487. CDP_TXRX_STATS_26,
  1488. CDP_TXRX_STATS_27,
  1489. CDP_TXRX_STATS_28,
  1490. CDP_TXRX_STATS_29,
  1491. CDP_TXRX_STATS_30,
  1492. CDP_TXRX_STATS_31,
  1493. CDP_TXRX_STATS_HTT_MAX = 256,
  1494. CDP_TXRX_MAX_STATS = 265,
  1495. };
  1496. /*
  1497. * Different Stat update types sent to OL_IF
  1498. * @UPDATE_PEER_STATS: update peer stats
  1499. * @UPDATE_VDEV_STATS: update vdev stats
  1500. * @UPDATE_PDE_STATS: Update pdev stats
  1501. */
  1502. enum cdp_stat_update_type {
  1503. UPDATE_PEER_STATS = 0,
  1504. UPDATE_VDEV_STATS = 1,
  1505. UPDATE_PDEV_STATS = 2,
  1506. };
  1507. /*
  1508. * struct cdp_tx_sojourn_stats - Tx sojourn stats
  1509. * @ppdu_seq_id: ppdu_seq_id from tx completion
  1510. * @avg_sojourn_msdu: average sojourn msdu time
  1511. * @sum_sojourn_msdu: sum sojourn msdu time
  1512. * @num_msdu: number of msdus per ppdu
  1513. * @cookie: cookie to be used by upper layer
  1514. */
  1515. struct cdp_tx_sojourn_stats {
  1516. uint32_t ppdu_seq_id;
  1517. qdf_ewma_tx_lag avg_sojourn_msdu[CDP_DATA_TID_MAX];
  1518. uint32_t sum_sojourn_msdu[CDP_DATA_TID_MAX];
  1519. uint32_t num_msdus[CDP_DATA_TID_MAX];
  1520. struct cdp_stats_cookie *cookie;
  1521. };
  1522. /**
  1523. * struct cdp_delayed_tx_completion_ppdu_user - Delayed Tx PPDU completion
  1524. * per-user information
  1525. * @frame_ctrl: frame control field in 802.11 header
  1526. * @qos_ctrl: QoS control field in 802.11 header
  1527. * @mpdu_tried: number of mpdus tried
  1528. * @ltf_size: ltf_size
  1529. * @stbc: stbc
  1530. * @he_re: he_re (range extension)
  1531. * @txbf: txbf
  1532. * @bw: Transmission bandwidth
  1533. * <enum 2 transmit_bw_20_MHz>
  1534. * <enum 3 transmit_bw_40_MHz>
  1535. * <enum 4 transmit_bw_80_MHz>
  1536. * <enum 5 transmit_bw_160_MHz>
  1537. * @nss: NSS 1,2, ...8
  1538. * @mcs: MCS index
  1539. * @preamble: preamble
  1540. * @gi: guard interval 800/400/1600/3200 ns
  1541. * @dcm: dcm
  1542. * @ldpc: ldpc
  1543. * @ru_start: RU start index
  1544. * @ru_tones: RU tones length
  1545. * @is_mcast: MCAST or UCAST
  1546. * @user_pos: user position
  1547. * @mu_group_id: mu group id
  1548. * @ppdu_start_timestamp: 64 bits ppdu start timestamp
  1549. * @ppdu_end_timestamp: 64 bits ppdu end timestamp
  1550. */
  1551. struct cdp_delayed_tx_completion_ppdu_user {
  1552. uint32_t frame_ctrl:16,
  1553. qos_ctrl:16;
  1554. uint32_t mpdu_tried_ucast:16,
  1555. mpdu_tried_mcast:16;
  1556. uint32_t ltf_size:2,
  1557. stbc:1,
  1558. he_re:1,
  1559. txbf:4,
  1560. bw:4,
  1561. nss:4,
  1562. mcs:4,
  1563. preamble:4,
  1564. gi:4,
  1565. dcm:1,
  1566. ldpc:1,
  1567. delayed_ba:1;
  1568. uint16_t ru_start;
  1569. uint16_t ru_tones;
  1570. bool is_mcast;
  1571. uint32_t user_pos;
  1572. uint32_t mu_group_id;
  1573. uint64_t ppdu_start_timestamp;
  1574. uint64_t ppdu_end_timestamp;
  1575. };
  1576. /**
  1577. * struct cdp_tx_completion_ppdu_user - Tx PPDU completion per-user information
  1578. * @completion_status: completion status - OK/Filter/Abort/Timeout
  1579. * @tid: TID number
  1580. * @peer_id: Peer ID
  1581. * @ba_size: Block-Ack size
  1582. * @frame_ctrl: frame control field in 802.11 header
  1583. * @qos_ctrl: QoS control field in 802.11 header
  1584. * @mpdu_tried: number of mpdus tried
  1585. * @mpdu_success: number of mpdus successfully transmitted
  1586. * @long_retries: long retries
  1587. * @short_retries: short retries
  1588. * @is_ampdu: mpdu aggregate or non-aggregate?
  1589. * @success_bytes: bytes successfully transmitted
  1590. * @retry_bytes: bytes retried
  1591. * @failed_msdus: MSDUs failed transmission
  1592. * @duration: user duration in ppdu
  1593. * @ltf_size: ltf_size
  1594. * @stbc: stbc
  1595. * @he_re: he_re (range extension)
  1596. * @txbf: txbf
  1597. * @bw: Transmission bandwidth
  1598. * <enum 2 transmit_bw_20_MHz>
  1599. * <enum 3 transmit_bw_40_MHz>
  1600. * <enum 4 transmit_bw_80_MHz>
  1601. * <enum 5 transmit_bw_160_MHz>
  1602. * @nss: NSS 1,2, ...8
  1603. * @mcs: MCS index
  1604. * @preamble: preamble
  1605. * @gi: guard interval 800/400/1600/3200 ns
  1606. * @dcm: dcm
  1607. * @ldpc: ldpc
  1608. * @delayed_ba: delayed ba bit
  1609. * @ack_ba_tlv: ack ba recv tlv bit
  1610. * @ppdu_type: SU/MU_MIMO/MU_OFDMA/MU_MIMO_OFDMA/UL_TRIG/BURST_BCN/UL_BSR_RESP/
  1611. * @pream_punct: Preamble Punctured PPDU
  1612. * UL_BSR_TRIG/UNKNOWN
  1613. * @is_seq_num_valid:
  1614. * 1 - stats tlv has valid sequence number
  1615. * 0 - payload has valid sequence number
  1616. * @ba_seq_no: Block Ack sequence number
  1617. * @ba_bitmap: Block Ack bitmap
  1618. * @start_seqa: Sequence number of first MPDU
  1619. * @enq_bitmap: Enqueue MPDU bitmap
  1620. * @ru_start: RU start index
  1621. * @ru_tones: RU tones length
  1622. * @is_mcast: MCAST or UCAST
  1623. * @tx_rate: Transmission Rate
  1624. * @user_pos: user position
  1625. * @mu_group_id: mu group id
  1626. * @rix: rate index
  1627. * @cookie: cookie to used by upper layer
  1628. * @is_ppdu_cookie_valid : Indicates that ppdu_cookie is valid
  1629. * @ppdu_cookie: 16-bit ppdu_cookie
  1630. * @sa_is_training: smart antenna training packets indication
  1631. * @rssi_chain: rssi chain per bandwidth
  1632. * @usr_ack_rssi: overall per user ack rssi
  1633. * @sa_tx_antenna: antenna in which packet is transmitted
  1634. * @sa_max_rates: smart antenna tx feedback info max rates
  1635. * @sa_goodput: smart antenna tx feedback info goodput
  1636. * @current_rate_per: Moving average per
  1637. * @last_enq_seq: last equeue sequence number
  1638. * @is_bss_peer: is bss peer check
  1639. * @mpdu_q: queue of mpdu in a ppdu
  1640. * @mpdus: MPDU list based on enqueue sequence bitmap
  1641. * @pending_retries: pending MPDUs (retries)
  1642. * @tlv_bitmap: per user tlv bitmap
  1643. * @skip: tx capture skip flag
  1644. * @mon_procd: to indicate user processed in ppdu of the sched cmd
  1645. * @debug_copied: flag to indicate bar frame copied
  1646. * @peer_last_delayed_ba: flag to indicate peer last delayed ba
  1647. * @phy_tx_time_us: Phy TX duration for the User
  1648. */
  1649. struct cdp_tx_completion_ppdu_user {
  1650. uint32_t completion_status:8,
  1651. tid:8,
  1652. peer_id:16;
  1653. uint8_t mac_addr[6];
  1654. uint16_t ba_size;
  1655. uint32_t frame_ctrl:16,
  1656. qos_ctrl:16;
  1657. uint32_t mpdu_tried_ucast:16,
  1658. mpdu_tried_mcast:16;
  1659. uint16_t mpdu_success:16;
  1660. uint16_t mpdu_failed:16;
  1661. uint32_t long_retries:4,
  1662. short_retries:4,
  1663. tx_ratecode:16,
  1664. is_ampdu:1,
  1665. ppdu_type:5,
  1666. pream_punct:1,
  1667. is_seq_num_valid:1;
  1668. uint32_t success_bytes;
  1669. uint32_t retry_bytes;
  1670. uint32_t failed_bytes;
  1671. uint32_t success_msdus:16,
  1672. retry_msdus:16;
  1673. uint32_t failed_msdus:16,
  1674. duration:16;
  1675. uint32_t ltf_size:2,
  1676. stbc:1,
  1677. he_re:1,
  1678. txbf:4,
  1679. bw:4,
  1680. nss:4,
  1681. mcs:4,
  1682. preamble:4,
  1683. gi:4,
  1684. dcm:1,
  1685. ldpc:1,
  1686. delayed_ba:1,
  1687. ack_ba_tlv:1;
  1688. uint32_t ba_seq_no;
  1689. uint32_t ba_bitmap[CDP_BA_256_BIT_MAP_SIZE_DWORDS];
  1690. uint32_t start_seq;
  1691. uint32_t enq_bitmap[CDP_BA_256_BIT_MAP_SIZE_DWORDS];
  1692. uint32_t failed_bitmap[CDP_BA_256_BIT_MAP_SIZE_DWORDS];
  1693. uint32_t num_mpdu:9,
  1694. num_msdu:16;
  1695. uint32_t tx_duration;
  1696. uint16_t ru_start;
  1697. uint16_t ru_tones;
  1698. bool is_mcast;
  1699. uint32_t tx_rate;
  1700. uint32_t tx_ratekbps;
  1701. /*ack rssi for separate chains*/
  1702. uint32_t ack_rssi[CDP_RSSI_CHAIN_LEN];
  1703. bool ack_rssi_valid;
  1704. uint32_t usr_ack_rssi;
  1705. uint32_t user_pos;
  1706. uint32_t mu_group_id;
  1707. uint32_t rix;
  1708. uint8_t is_ppdu_cookie_valid;
  1709. uint16_t ppdu_cookie;
  1710. uint8_t sa_is_training;
  1711. uint32_t rssi_chain[CDP_RSSI_CHAIN_LEN];
  1712. uint32_t sa_tx_antenna;
  1713. /*Max rates for BW: 20MHZ, 40MHZ and 80MHZ and 160MHZ
  1714. * |---------------------------------------|
  1715. * | 16 bits | 16 bits | 16 bits | 16 bits |
  1716. * | BW-1 | BW-2 | BW-3 | BW-4 |
  1717. * | /\ \ |
  1718. * | / \ \ |
  1719. * | / \ \ |
  1720. * | / \ \ |
  1721. * | / \ \ |
  1722. * | / \ \ |
  1723. * |/ \ \ |
  1724. * |[11|8] [5|8] \ |
  1725. * | BW1 PADDED \ |
  1726. * |---------------------------------------|
  1727. */
  1728. uint16_t sa_max_rates[CDP_NUM_SA_BW];
  1729. uint32_t sa_goodput;
  1730. /* below field is used to calculate goodput in non-training period
  1731. * Note: As host is exposing goodput and hence current_rate_per is
  1732. * of no use. It is just for Host computation.
  1733. */
  1734. uint32_t current_rate_per;
  1735. uint32_t last_enq_seq;
  1736. uint8_t is_bss_peer;
  1737. qdf_nbuf_queue_t mpdu_q;
  1738. qdf_nbuf_t *mpdus;
  1739. uint32_t pending_retries;
  1740. uint32_t tlv_bitmap;
  1741. bool skip;
  1742. bool mon_procd;
  1743. bool debug_copied;
  1744. bool peer_last_delayed_ba;
  1745. uint16_t phy_tx_time_us;
  1746. };
  1747. /**
  1748. * struct cdp_tx_indication_mpdu_info - Tx MPDU completion information
  1749. * @ppdu_id: PPDU id
  1750. * @duration: user duration in ppdu
  1751. * @frame_type: frame type MGMT/CTRL/DATA/BAR
  1752. * @frame_ctrl: frame control field in 802.11 header
  1753. * @qos_ctrl: QoS control field in 802.11 header
  1754. * @tid: TID number
  1755. * @num_msdu: number of msdu in MPDU
  1756. * @seq_no: Sequence number of first MPDU
  1757. * @ltf_size: ltf_size
  1758. * @stbc: stbc
  1759. * @he_re: he_re (range extension)
  1760. * @txbf: txbf
  1761. * @bw: Transmission bandwidth
  1762. * <enum 2 transmit_bw_20_MHz>
  1763. * <enum 3 transmit_bw_40_MHz>
  1764. * <enum 4 transmit_bw_80_MHz>
  1765. * <enum 5 transmit_bw_160_MHz>
  1766. * @nss: NSS 1,2, ...8
  1767. * @mcs: MCS index
  1768. * @preamble: preamble
  1769. * @gi: guard interval 800/400/1600/3200 ns
  1770. * @resp_type: response type
  1771. * @mprot_type: medium protection type
  1772. * @rts_success: rts success
  1773. * @rts failure: rts failure
  1774. * @channel: frequency
  1775. * @channel_num: channel number
  1776. * @ack_rssi: ack rssi
  1777. * @ldpc: ldpc
  1778. * @tx_rate: Transmission Rate
  1779. * @mac_address: peer mac address
  1780. * @bss_mac_address: bss mac address
  1781. * @ppdu_start_timestamp: TSF at PPDU start
  1782. * @ppdu_end_timestamp: TSF at PPDU end
  1783. * @ba_start_seq: Block Ack sequence number
  1784. * @ba_bitmap: Block Ack bitmap
  1785. * @ppdu_cookie: 16-bit ppdu_cookie
  1786. * @long_retries: long retries
  1787. * @short_retries: short retries
  1788. * @completion_status: completion status - OK/Filter/Abort/Timeout
  1789. * @usr_idx: user index
  1790. */
  1791. struct cdp_tx_indication_mpdu_info {
  1792. uint32_t ppdu_id;
  1793. uint32_t tx_duration;
  1794. uint16_t frame_type;
  1795. uint16_t frame_ctrl;
  1796. uint16_t qos_ctrl;
  1797. uint8_t tid;
  1798. uint32_t num_msdu;
  1799. uint32_t seq_no;
  1800. uint32_t ltf_size:2,
  1801. he_re:1,
  1802. txbf:4,
  1803. bw:4,
  1804. nss:4,
  1805. mcs:4,
  1806. preamble:4,
  1807. gi:4;
  1808. uint32_t channel;
  1809. uint8_t channel_num;
  1810. uint32_t ack_rssi;
  1811. uint32_t ldpc;
  1812. uint32_t tx_rate;
  1813. uint8_t mac_address[QDF_MAC_ADDR_SIZE];
  1814. uint8_t bss_mac_address[QDF_MAC_ADDR_SIZE];
  1815. uint64_t ppdu_start_timestamp;
  1816. uint64_t ppdu_end_timestamp;
  1817. uint32_t ba_start_seq;
  1818. uint32_t ba_bitmap[CDP_BA_256_BIT_MAP_SIZE_DWORDS];
  1819. uint16_t ppdu_cookie;
  1820. uint16_t long_retries:4,
  1821. short_retries:4,
  1822. completion_status:8;
  1823. uint16_t resp_type:4,
  1824. mprot_type:3,
  1825. rts_success:1,
  1826. rts_failure:1;
  1827. uint8_t usr_idx;
  1828. };
  1829. /**
  1830. * struct cdp_tx_indication_info - Tx capture information
  1831. * @mpdu_info: Tx MPDU completion information
  1832. * @mpdu_nbuf: reconstructed mpdu packet
  1833. * @ppdu_desc: tx completion ppdu
  1834. */
  1835. struct cdp_tx_indication_info {
  1836. struct cdp_tx_indication_mpdu_info mpdu_info;
  1837. qdf_nbuf_t mpdu_nbuf;
  1838. struct cdp_tx_completion_ppdu *ppdu_desc;
  1839. };
  1840. /**
  1841. * struct cdp_tx_mgmt_comp_info - Tx mgmt comp info
  1842. * @ppdu_id: ppdu_id
  1843. * @is_sgen_pkt: payload recevied from wmi or htt path
  1844. * @retries_count: retries count
  1845. * @tx_tsf: 64 bit timestamp
  1846. */
  1847. struct cdp_tx_mgmt_comp_info {
  1848. uint32_t ppdu_id;
  1849. bool is_sgen_pkt;
  1850. uint16_t retries_count;
  1851. uint64_t tx_tsf;
  1852. };
  1853. /**
  1854. * struct cdp_tx_completion_ppdu - Tx PPDU completion information
  1855. * @completion_status: completion status - OK/Filter/Abort/Timeout
  1856. * @ppdu_id: PPDU Id
  1857. * @ppdu_seq_id: ppdu sequence id for sojourn stats
  1858. * @vdev_id: VAP Id
  1859. * @bar_num_users: BA response user count, based on completion common TLV
  1860. * @num_users: Number of users
  1861. * @max_users: Number of users from USR_INFO TLV
  1862. * @drop_reason: drop reason from flush status
  1863. * @is_flush: is_flush is set based on flush tlv
  1864. * @flow_type: tx flow type from flush status
  1865. * @queue_type: queue type from flush status
  1866. * @num_mpdu: Number of MPDUs in PPDU
  1867. * @num_msdu: Number of MSDUs in PPDU
  1868. * @frame_type: frame SU or MU
  1869. * @htt_frame_type: frame type from htt
  1870. * @frame_ctrl: frame control of 80211 header
  1871. * @channel: Channel informartion
  1872. * @resp_type: response type
  1873. * @mprot_type: medium protection type
  1874. * @rts_success: rts success
  1875. * @rts failure: rts failure
  1876. * @phymode: phy mode
  1877. * @ack_rssi: RSSI value of last ack packet (units=dB above noise floor)
  1878. * @tx_duration: PPDU airtime
  1879. * @ppdu_start_timestamp: TSF at PPDU start
  1880. * @ppdu_end_timestamp: TSF at PPDU end
  1881. * @ack_timestamp: TSF at the reception of ACK
  1882. * @delayed_ba: Delayed ba flag
  1883. * @beam_change: beam change bit in ppdu for he-information
  1884. * @bss_color: 6 bit value for full bss color
  1885. * @doppler: value for doppler (will be 0 most of the times)
  1886. * @spatial_reuse: value for spatial reuse used in radiotap HE header
  1887. * @usr_nss_sum: Sum of user nss
  1888. * @usr_ru_tones_sum: Sum of user ru_tones
  1889. * @bar_ppdu_id: BAR ppdu_id
  1890. * @bar_tx_duration: BAR tx duration
  1891. * @bar_ppdu_start_timestamp: BAR start timestamp
  1892. * @bar_ppdu_end_timestamp: BAR end timestamp
  1893. * @tlv_bitmap: tlv_bitmap for the PPDU
  1894. * @sched_cmdid: schedule command id
  1895. * @phy_ppdu_tx_time_us: Phy per PPDU TX duration
  1896. * @user: per-User stats (array of per-user structures)
  1897. */
  1898. struct cdp_tx_completion_ppdu {
  1899. uint32_t ppdu_id;
  1900. uint32_t ppdu_seq_id;
  1901. uint16_t vdev_id;
  1902. uint16_t bar_num_users;
  1903. uint32_t num_users;
  1904. uint8_t max_users;
  1905. uint8_t last_usr_index;
  1906. uint32_t drop_reason;
  1907. uint32_t is_flush:1,
  1908. flow_type:8,
  1909. queue_type:8;
  1910. uint32_t num_mpdu:9,
  1911. num_msdu:16;
  1912. uint16_t frame_type;
  1913. uint16_t htt_frame_type;
  1914. uint16_t frame_ctrl;
  1915. uint16_t channel;
  1916. uint16_t resp_type:4,
  1917. mprot_type:3,
  1918. rts_success:1,
  1919. rts_failure:1;
  1920. uint16_t phy_mode;
  1921. uint32_t ack_rssi;
  1922. uint32_t tx_duration;
  1923. uint64_t ppdu_start_timestamp;
  1924. uint64_t ppdu_end_timestamp;
  1925. uint64_t ack_timestamp;
  1926. bool delayed_ba;
  1927. uint8_t beam_change;
  1928. uint8_t bss_color;
  1929. uint8_t doppler;
  1930. uint8_t spatial_reuse;
  1931. uint8_t usr_nss_sum;
  1932. uint32_t usr_ru_tones_sum;
  1933. uint32_t bar_ppdu_id;
  1934. uint32_t bar_tx_duration;
  1935. uint64_t bar_ppdu_start_timestamp;
  1936. uint64_t bar_ppdu_end_timestamp;
  1937. uint32_t tlv_bitmap;
  1938. uint16_t sched_cmdid;
  1939. uint16_t phy_ppdu_tx_time_us;
  1940. struct cdp_tx_completion_ppdu_user user[];
  1941. };
  1942. /**
  1943. * struct cdp_dev_stats - Network device stats structure
  1944. * @tx_packets: Tx total packets transmitted
  1945. * @tx_bytes : Tx total bytes transmitted
  1946. * @tx_errors : Tx error due to FW tx failure, Ring failure DMA etc
  1947. * @tx_dropped: Tx dropped is same as tx errors as above
  1948. * @rx_packets: Rx total packets transmitted
  1949. * @rx_bytes : Rx total bytes transmitted
  1950. * @rx_errors : Rx erros
  1951. * @rx_dropped: Rx dropped stats
  1952. */
  1953. struct cdp_dev_stats {
  1954. uint32_t tx_packets;
  1955. uint32_t tx_bytes;
  1956. uint32_t tx_errors;
  1957. uint32_t tx_dropped;
  1958. uint32_t rx_packets;
  1959. uint32_t rx_bytes;
  1960. uint32_t rx_errors;
  1961. uint32_t rx_dropped;
  1962. };
  1963. /**
  1964. * struct cdp_rate_stats - Tx/Rx Rate statistics
  1965. * @bw: Indicates the BW of the upcoming transmission -
  1966. * <enum 2 transmit_bw_20_MHz>
  1967. * <enum 3 transmit_bw_40_MHz>
  1968. * <enum 4 transmit_bw_80_MHz>
  1969. * <enum 5 transmit_bw_160_MHz>
  1970. * @pkt_type: Transmit Packet Type
  1971. * @stbc: When set, STBC transmission rate was used
  1972. * @ldpc: When set, use LDPC transmission rates
  1973. * @sgi: <enum 0 0_8_us_sgi > Legacy normal GI
  1974. * <enum 1 0_4_us_sgi > Legacy short GI
  1975. * <enum 2 1_6_us_sgi > HE related GI
  1976. * <enum 3 3_2_us_sgi > HE
  1977. * @mcs: Transmit MCS Rate
  1978. * @ofdma: Set when the transmission was an OFDMA transmission
  1979. * @tones_in_ru: The number of tones in the RU used.
  1980. * @tsf: Lower 32 bits of the TSF (timestamp when ppdu transmission finished)
  1981. * @peer_id: Peer ID of the flow or MPDU queue
  1982. * @tid: TID of the flow or MPDU queue
  1983. */
  1984. struct cdp_rate_stats {
  1985. uint32_t rate_stats_info_valid:1,
  1986. bw:2,
  1987. pkt_type:4,
  1988. stbc:1,
  1989. ldpc:1,
  1990. sgi:2,
  1991. mcs:4,
  1992. ofdma:1,
  1993. tones_in_ru:12,
  1994. resvd0:4;
  1995. uint32_t tsf;
  1996. uint16_t peer_id;
  1997. uint8_t tid;
  1998. };
  1999. /**
  2000. * struct cdp_tx_completion_msdu - Tx MSDU completion descriptor
  2001. * @ppdu_id: PPDU to which this MSDU belongs
  2002. * @transmit_cnt: Number of times this frame has been transmitted
  2003. * @ack_frame_rssi: RSSI of the received ACK or BA frame
  2004. * @first_msdu: Indicates this MSDU is the first MSDU in AMSDU
  2005. * @last_msdu: Indicates this MSDU is the last MSDU in AMSDU
  2006. * @msdu_part_of_amsdu : Indicates this MSDU was part of an A-MSDU in MPDU
  2007. * @extd: Extended structure containing rate statistics
  2008. */
  2009. struct cdp_tx_completion_msdu {
  2010. uint32_t ppdu_id;
  2011. uint8_t transmit_cnt;
  2012. uint32_t ack_frame_rssi:8,
  2013. resvd0:1,
  2014. first_msdu:1,
  2015. last_msdu:1,
  2016. msdu_part_of_amsdu:1,
  2017. resvd1:20;
  2018. struct cdp_rate_stats extd;
  2019. };
  2020. /**
  2021. * struct cdp_rx_stats_ppdu_user -- per user RX stats
  2022. * @peer_id: Peer ID
  2023. * @vdev_id: VAP ID
  2024. * @is_ampdu: mpdu aggregate or non-aggregate?
  2025. * @mu_ul_info_valid: MU UL info valid
  2026. * @ofdma_ru_start_index: RU index number(0-73)
  2027. * @ofdma_ru_width: size of RU in units of 1(26tone)RU
  2028. * @nss: NSS 1,2, ...8
  2029. * @mcs: MCS index
  2030. * @user_index: user ID in multi-user case
  2031. * @is_bss_peer - is bss peer check
  2032. * @ast_index: ast index in multi-user case
  2033. * @tid: TID number
  2034. * @num_msdu: Number of MSDUs in PPDU
  2035. * @udp_msdu_count: Number of UDP MSDUs in PPDU
  2036. * @tcp_msdu_count: Number of TCP MSDUs in PPDU
  2037. * @other_msdu_count: Number of MSDUs other than UDP and TCP MSDUs in PPDU
  2038. * @frame_control: frame control field
  2039. * @frame_control_info_valid: frame_control valid
  2040. * @qos_control: qos control field
  2041. * @qos_control_info_valid: qos_control valid
  2042. * @data_sequence_control_info_valid: data_sequence_control_info valid
  2043. * @first_data_seq_ctrl: Sequence control field of first data frame
  2044. * @preamble: preamble
  2045. * @ht_flag: ht flag
  2046. * @vht_flag: vht flag
  2047. * @he_re: he_re (range extension)
  2048. * @mac_addr: Peer MAC Address
  2049. * @mpdu_cnt_fcs_ok: Number of MPDUs in PPDU with fcs ok
  2050. * @mpdu_cnt_fcs_err: Number of MPDUs in PPDU with fcs err
  2051. * @mpdu_fcs_ok_bitmap - MPDU with fcs ok bitmap
  2052. * @retries - number of retries
  2053. * @rx_ratekpbs - rx rate in kbps
  2054. */
  2055. struct cdp_rx_stats_ppdu_user {
  2056. uint16_t peer_id;
  2057. uint8_t vdev_id;
  2058. bool is_ampdu;
  2059. uint32_t mu_ul_info_valid:1,
  2060. ofdma_ru_start_index:7,
  2061. ofdma_ru_width:7,
  2062. nss:4,
  2063. mcs:4;
  2064. /* user id */
  2065. uint8_t user_index;
  2066. uint8_t is_bss_peer;
  2067. uint32_t ast_index;
  2068. uint32_t tid;
  2069. uint32_t num_msdu;
  2070. uint16_t tcp_msdu_count;
  2071. uint16_t udp_msdu_count;
  2072. uint16_t other_msdu_count;
  2073. uint16_t frame_control;
  2074. uint8_t frame_control_info_valid;
  2075. uint16_t qos_control;
  2076. uint8_t qos_control_info_valid;
  2077. uint8_t data_sequence_control_info_valid;
  2078. uint16_t first_data_seq_ctrl;
  2079. uint32_t preamble_type;
  2080. uint16_t ht_flags;
  2081. uint16_t vht_flags;
  2082. uint16_t he_flags;
  2083. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  2084. uint32_t mpdu_cnt_fcs_ok;
  2085. uint32_t mpdu_cnt_fcs_err;
  2086. uint32_t mpdu_fcs_ok_bitmap[QDF_MON_STATUS_MPDU_FCS_BMAP_NWORDS];
  2087. uint32_t mpdu_ok_byte_count;
  2088. uint32_t mpdu_err_byte_count;
  2089. uint32_t retries;
  2090. uint32_t rx_ratekbps;
  2091. };
  2092. /**
  2093. * struct cdp_rx_indication_ppdu - Rx PPDU indication structure
  2094. * @ppdu_id: PPDU Id
  2095. * @is_ampdu: mpdu aggregate or non-aggregate?
  2096. * @num_mpdu: Number of MPDUs in PPDU
  2097. * @reserved: Reserved bits for future use
  2098. * @num_msdu: Number of MSDUs in PPDU
  2099. * @udp_msdu_count: Number of UDP MSDUs in PPDU
  2100. * @tcp_msdu_count: Number of TCP MSDUs in PPDU
  2101. * @other_msdu_count: Number of MSDUs other than UDP and TCP MSDUs in PPDU
  2102. * @duration: PPDU duration
  2103. * @tid: TID number
  2104. * @peer_id: Peer ID
  2105. * @vdev_id: VAP ID
  2106. * @mac_addr: Peer MAC Address
  2107. * @first_data_seq_ctrl: Sequence control field of first data frame
  2108. * @ltf_size: ltf_size
  2109. * @stbc: When set, STBC rate was used
  2110. * @he_re: he_re (range extension)
  2111. * @bw: Bandwidth
  2112. * <enum 0 bw_20_MHz>
  2113. * <enum 1 bw_40_MHz>
  2114. * <enum 2 bw_80_MHz>
  2115. * <enum 3 bw_160_MHz>
  2116. * @nss: NSS 1,2, ...8
  2117. * @mcs: MCS index
  2118. * @preamble: preamble
  2119. * @gi: <enum 0 0_8_us_sgi > Legacy normal GI
  2120. * <enum 1 0_4_us_sgi > Legacy short GI
  2121. * <enum 2 1_6_us_sgi > HE related GI
  2122. * <enum 3 3_2_us_sgi > HE
  2123. * @dcm: dcm
  2124. * @ldpc: ldpc
  2125. * @ppdu_type: SU/MU_MIMO/MU_OFDMA/MU_MIMO_OFDMA/UL_TRIG/BURST_BCN/UL_BSR_RESP/
  2126. * UL_BSR_TRIG/UNKNOWN
  2127. * @rssi: RSSI value (units = dB above noise floor)
  2128. * @timestamp: TSF at the reception of PPDU
  2129. * @length: PPDU length
  2130. * @channel: Channel informartion
  2131. * @lsig_A: L-SIG in 802.11 PHY header
  2132. * @frame_ctrl: frame control field
  2133. * @rix: rate index
  2134. * @rssi_chain: rssi chain per nss per bw
  2135. * @cookie: cookie to used by upper layer
  2136. * @user: per user stats in MU-user case
  2137. * @nf: noise floor
  2138. * @per_chain_rssi: rssi per antenna
  2139. */
  2140. struct cdp_rx_indication_ppdu {
  2141. uint32_t ppdu_id;
  2142. uint16_t is_ampdu:1,
  2143. num_mpdu:9,
  2144. reserved:6;
  2145. uint32_t num_msdu;
  2146. uint32_t num_bytes;
  2147. uint16_t udp_msdu_count;
  2148. uint16_t tcp_msdu_count;
  2149. uint16_t other_msdu_count;
  2150. uint16_t duration;
  2151. uint32_t tid:8,
  2152. peer_id:16;
  2153. uint8_t vdev_id;
  2154. uint8_t mac_addr[6];
  2155. uint16_t first_data_seq_ctrl;
  2156. union {
  2157. uint32_t rate_info;
  2158. struct {
  2159. uint32_t ltf_size:2,
  2160. stbc:1,
  2161. he_re:1,
  2162. bw:4,
  2163. nss:4,
  2164. mcs:4,
  2165. preamble:4,
  2166. gi:4,
  2167. dcm:1,
  2168. ldpc:1,
  2169. ppdu_type:5;
  2170. };
  2171. } u;
  2172. uint32_t rix;
  2173. uint32_t lsig_a;
  2174. uint32_t rssi;
  2175. uint64_t timestamp;
  2176. uint32_t length;
  2177. uint8_t channel;
  2178. uint8_t beamformed;
  2179. uint32_t rx_ratekbps;
  2180. uint32_t ppdu_rx_rate;
  2181. uint32_t retries;
  2182. uint32_t rx_byte_count;
  2183. uint16_t rx_ratecode;
  2184. uint8_t fcs_error_mpdus;
  2185. uint16_t frame_ctrl;
  2186. int8_t rssi_chain[SS_COUNT][MAX_BW];
  2187. struct cdp_rx_su_evm_info evm_info;
  2188. uint32_t rx_antenna;
  2189. uint8_t num_users;
  2190. struct cdp_rx_stats_ppdu_user user[CDP_MU_MAX_USERS];
  2191. uint32_t nf;
  2192. uint8_t per_chain_rssi[MAX_CHAIN];
  2193. uint8_t is_mcast_bcast;
  2194. #if defined(WLAN_CFR_ENABLE) && defined(WLAN_ENH_CFR_ENABLE)
  2195. struct cdp_rx_ppdu_cfr_info cfr_info;
  2196. #endif
  2197. };
  2198. /**
  2199. * struct cdp_rx_indication_msdu - Rx MSDU info
  2200. * @ppdu_id: PPDU to which the MSDU belongs
  2201. * @msdu_len: Length of MSDU in bytes
  2202. * @ack_frame_rssi: RSSI of the received ACK or BA frame
  2203. * @first_msdu: Indicates this MSDU is the first MSDU in AMSDU
  2204. * @last_msdu: Indicates this MSDU is the last MSDU in AMSDU
  2205. * @msdu_part_of_amsdu : Indicates this MSDU was part of an A-MSDU in MPDU
  2206. * @extd: Extended structure containing rate statistics
  2207. */
  2208. struct cdp_rx_indication_msdu {
  2209. uint32_t ppdu_id;
  2210. uint16_t msdu_len;
  2211. uint32_t ack_frame_rssi:8,
  2212. resvd0:1,
  2213. first_msdu:1,
  2214. last_msdu:1,
  2215. msdu_part_of_amsdu:1,
  2216. msdu_part_of_ampdu:1,
  2217. resvd1:19;
  2218. struct cdp_rate_stats extd;
  2219. };
  2220. /**
  2221. * struct cdp_config_params - Propagate configuration parameters to datapath
  2222. * @tso_enable: Enable/Disable TSO
  2223. * @lro_enable: Enable/Disable LRO
  2224. * @gro_enable: Enable/Disable GRO
  2225. * @flow_steering_enable: Enable/Disable Rx Hash based flow steering
  2226. * @p2p_tcp_udp_checksumoffload: Enable/Disable TCP/UDP Checksum Offload for P2P
  2227. * @nan_tcp_udp_checksumoffload: Enable/Disable TCP/UDP Checksum Offload for NAN
  2228. * @tcp_udp_checksumoffload: Enable/Disable TCP/UDP Checksum Offload
  2229. * @legacy_mode_checksumoffload_disable: Disable TCP/UDP Checksum Offload for
  2230. * legacy modes.
  2231. * @napi_enable: Enable/Disable Napi
  2232. * @ipa_enable: Flag indicating if IPA is enabled or not
  2233. * @tx_flow_stop_queue_threshold: Value to Pause tx queues
  2234. * @tx_flow_start_queue_offset: Available Tx descriptors to unpause
  2235. * tx queue
  2236. * @tx_comp_loop_pkt_limit: Max # of packets to be processed in 1 tx comp loop
  2237. * @rx_reap_loop_pkt_limit: Max # of packets to be processed in 1 rx reap loop
  2238. * @rx_hp_oos_update_limit: Max # of HP OOS (out of sync) updates
  2239. */
  2240. struct cdp_config_params {
  2241. unsigned int tso_enable:1;
  2242. unsigned int lro_enable:1;
  2243. unsigned int gro_enable:1;
  2244. unsigned int flow_steering_enable:1;
  2245. unsigned int p2p_tcp_udp_checksumoffload:1;
  2246. unsigned int nan_tcp_udp_checksumoffload:1;
  2247. unsigned int tcp_udp_checksumoffload:1;
  2248. unsigned int legacy_mode_checksumoffload_disable:1;
  2249. unsigned int napi_enable:1;
  2250. unsigned int ipa_enable:1;
  2251. /* Set when QCA_LL_TX_FLOW_CONTROL_V2 is enabled */
  2252. uint8_t tx_flow_stop_queue_threshold;
  2253. uint8_t tx_flow_start_queue_offset;
  2254. uint32_t tx_comp_loop_pkt_limit;
  2255. uint32_t rx_reap_loop_pkt_limit;
  2256. uint32_t rx_hp_oos_update_limit;
  2257. };
  2258. /**
  2259. * cdp_txrx_stats_req: stats request wrapper
  2260. * used to pass request information to cdp layer
  2261. * @stats: type of stats requested
  2262. * @param0: opaque argument 0 to be passed to htt
  2263. * @param1: opaque argument 1 to be passed to htt
  2264. * @param2: opaque argument 2 to be passed to htt
  2265. * @param3: opaque argument 3 to be passed to htt
  2266. * @mac id: mac_id
  2267. */
  2268. struct cdp_txrx_stats_req {
  2269. enum cdp_stats stats;
  2270. uint32_t param0;
  2271. uint32_t param1;
  2272. uint32_t param2;
  2273. uint32_t param3;
  2274. uint32_t cookie_val;
  2275. uint8_t mac_id;
  2276. char *peer_addr;
  2277. };
  2278. /**
  2279. * struct cdp_monitor_filter - monitor filter info
  2280. * @mode: set filter mode
  2281. * @fp_mgmt: set Filter Pass MGMT Configuration
  2282. * @fp_ctrl: set Filter Pass CTRL Configuration
  2283. * @fp_data: set Filter Pass DATA Configuration
  2284. * @mo_mgmt: set Monitor Other MGMT Configuration
  2285. * @mo_ctrl: set Monitor Other CTRL Configuration
  2286. * @mo_data: set Monitor other DATA Configuration
  2287. *
  2288. */
  2289. struct cdp_monitor_filter {
  2290. uint16_t mode;
  2291. uint16_t fp_mgmt;
  2292. uint16_t fp_ctrl;
  2293. uint16_t fp_data;
  2294. uint16_t mo_mgmt;
  2295. uint16_t mo_ctrl;
  2296. uint16_t mo_data;
  2297. };
  2298. /**
  2299. * enum cdp_dp_cfg - CDP ENUMs to get to DP configation
  2300. * @cfg_dp_enable_data_stall: context passed to be used by consumer
  2301. * @cfg_dp_enable_p2p_ip_tcp_udp_checksum_offload: get P2P checksum config
  2302. * @cfg_dp_enable_nan_ip_tcp_udp_checksum_offload: get NAN TX checksum config
  2303. * @cfg_dp_enable_ip_tcp_udp_checksum_offload: get TX checksum config for others
  2304. * @cfg_dp_tso_enable: get TSO enable config
  2305. * @cfg_dp_lro_enable: get LRO enable config
  2306. * @cfg_dp_gro_enable: get GRP enable config
  2307. * @cfg_dp_tx_flow_start_queue_offset: get DP TX flow start queue offset
  2308. * @cfg_dp_tx_flow_stop_queue_threshold: get DP TX flow stop queue threshold
  2309. * @cfg_dp_ipa_uc_tx_buf_size: get IPA TX buf size config
  2310. * @cfg_dp_ipa_uc_tx_partition_base: get IPA UC TX partition base config
  2311. * @cfg_dp_ipa_uc_rx_ind_ring_count: get IPA rx indication ring count config
  2312. * @cfg_dp_enable_flow_steering: get flow steerint enable config
  2313. * @cfg_dp_reorder_offload_supported: get reorder offload support config
  2314. * @cfg_dp_ce_classify_enable: get CE classify enable config
  2315. * @cfg_dp_disable_intra_bss_fwd: get intra bss fwd config
  2316. * @cfg_dp_pktlog_buffer_size: get packet log buffer size config
  2317. * @cfg_dp_wow_check_rx_pending: get wow rx pending frame check config
  2318. */
  2319. enum cdp_dp_cfg {
  2320. cfg_dp_enable_data_stall,
  2321. cfg_dp_enable_p2p_ip_tcp_udp_checksum_offload,
  2322. cfg_dp_enable_nan_ip_tcp_udp_checksum_offload,
  2323. cfg_dp_enable_ip_tcp_udp_checksum_offload,
  2324. /* Disable checksum offload for legacy modes */
  2325. cfg_dp_disable_legacy_mode_csum_offload,
  2326. cfg_dp_tso_enable,
  2327. cfg_dp_lro_enable,
  2328. cfg_dp_gro_enable,
  2329. cfg_dp_sg_enable,
  2330. cfg_dp_tx_flow_start_queue_offset,
  2331. cfg_dp_tx_flow_stop_queue_threshold,
  2332. cfg_dp_ipa_uc_tx_buf_size,
  2333. cfg_dp_ipa_uc_tx_partition_base,
  2334. cfg_dp_ipa_uc_rx_ind_ring_count,
  2335. cfg_dp_enable_flow_steering,
  2336. cfg_dp_reorder_offload_supported,
  2337. cfg_dp_ce_classify_enable,
  2338. cfg_dp_disable_intra_bss_fwd,
  2339. cfg_dp_pktlog_buffer_size,
  2340. cfg_dp_wow_check_rx_pending,
  2341. };
  2342. /**
  2343. * struct cdp_peer_cookie - cookie used when creating peer
  2344. * @ctx: context passed to be used by consumer
  2345. * @mac_addr: MAC address of peer
  2346. * @peer_id: peer id
  2347. * @pdev_id: pdev_id
  2348. * @cookie: cookie to be used by consumer
  2349. */
  2350. struct cdp_peer_cookie {
  2351. struct cdp_stats_cookie *ctx;
  2352. uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
  2353. uint8_t peer_id;
  2354. uint8_t pdev_id;
  2355. uint8_t cookie;
  2356. };
  2357. #ifdef WLAN_SUPPORT_RX_FISA
  2358. struct cdp_flow_stats {
  2359. uint32_t aggr_count;
  2360. uint32_t curr_aggr_count;
  2361. uint32_t flush_count;
  2362. uint32_t bytes_aggregated;
  2363. };
  2364. #else
  2365. /**
  2366. * cdp_flow_stats - Per-Flow (5-tuple) statistics
  2367. * @msdu_count: number of rx msdus matching this flow
  2368. *
  2369. * HW also includes msdu_byte_count and timestamp, which
  2370. * are not currently tracked in SW.
  2371. */
  2372. struct cdp_flow_stats {
  2373. uint32_t msdu_count;
  2374. };
  2375. #endif
  2376. /**
  2377. * cdp_flow_fst_operation - RX FST operations allowed
  2378. */
  2379. enum cdp_flow_fst_operation {
  2380. CDP_FLOW_FST_ENTRY_ADD,
  2381. CDP_FLOW_FST_ENTRY_DEL,
  2382. CDP_FLOW_FST_RX_BYPASS_ENABLE,
  2383. CDP_FLOW_FST_RX_BYPASS_DISABLE
  2384. };
  2385. /**
  2386. * cdp_flow_protocol_type - RX FST supported protocol types, mapped to HW spec
  2387. */
  2388. enum cdp_flow_protocol_type {
  2389. CDP_FLOW_PROTOCOL_TYPE_TCP = 6,
  2390. CDP_FLOW_PROTOCOL_TYPE_UDP = 17,
  2391. };
  2392. /**
  2393. * cdp_rx_flow_tuple_info - RX flow tuple info used for addition/deletion
  2394. * @dest_ip_127_96: destination IP address bit fields 96-127
  2395. * @dest_ip_95_64: destination IP address bit fields 64-95
  2396. * @dest_ip_63_32: destination IP address bit fields 32-63
  2397. * @dest_ip_31_0: destination IP address bit fields 0-31
  2398. * @src_ip_127_96: source IP address bit fields 96-127
  2399. * @src_ip_95_64: source IP address bit fields 64-95
  2400. * @src_ip_63_32: source IP address bit fields 32-63
  2401. * @src_ip_31_0: source IP address bit fields 0-31
  2402. * @dest_port: destination port of flow
  2403. * @src_port: source port of flow
  2404. * @l4_protocol: protocol type in flow (TCP/UDP)
  2405. */
  2406. struct cdp_rx_flow_tuple_info {
  2407. #ifdef WLAN_SUPPORT_RX_FISA
  2408. uint8_t tuple_populated;
  2409. uint8_t is_exception;
  2410. #endif
  2411. uint32_t dest_ip_127_96;
  2412. uint32_t dest_ip_95_64;
  2413. uint32_t dest_ip_63_32;
  2414. uint32_t dest_ip_31_0;
  2415. uint32_t src_ip_127_96;
  2416. uint32_t src_ip_95_64;
  2417. uint32_t src_ip_63_32;
  2418. uint32_t src_ip_31_0;
  2419. uint16_t dest_port;
  2420. uint16_t src_port;
  2421. uint16_t l4_protocol;
  2422. };
  2423. /**
  2424. * cdp_rx_flow_info - RX flow info used for addition/deletion
  2425. * @is_addr_ipv4: indicates whether given IP address is IPv4/IPv6
  2426. * @op_code: add/delete/enable/disable operation requested
  2427. * @flow_tupe_info: structure containing tuple info
  2428. * @fse_metadata: metadata to be set in RX flow
  2429. */
  2430. struct cdp_rx_flow_info {
  2431. bool is_addr_ipv4;
  2432. enum cdp_flow_fst_operation op_code;
  2433. struct cdp_rx_flow_tuple_info flow_tuple_info;
  2434. uint16_t fse_metadata;
  2435. };
  2436. #ifdef QCA_SUPPORT_SCAN_SPCL_VAP_STATS
  2437. /**
  2438. * cdp_scan_spcl_vap_stats - Special vap statistics info
  2439. * @rx_ok_pkts: rx fcs ok pkts count
  2440. * @rx_ok_bytes: rx fcs ok bytes count
  2441. * @rx_err_pkts: rx fcs err pkts count
  2442. * @rx_err_bytes: rx fcs err bytes count
  2443. * @rx_mgmt_pkts: rx mgmt pkts count
  2444. * @rx_ctrl_pkts: rx ctrl pkts count
  2445. * @rx_data_pkts: rx data pkts count
  2446. */
  2447. struct cdp_scan_spcl_vap_stats {
  2448. uint64_t rx_ok_pkts;
  2449. uint64_t rx_ok_bytes;
  2450. uint64_t rx_err_pkts;
  2451. uint64_t rx_err_bytes;
  2452. uint64_t rx_mgmt_pkts;
  2453. uint64_t rx_ctrl_pkts;
  2454. uint64_t rx_data_pkts;
  2455. };
  2456. #endif
  2457. #endif