cdp_txrx_cmn_struct.h 85 KB

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