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