wma.h 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652
  1. /*
  2. * Copyright (c) 2013-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef WMA_H
  19. #define WMA_H
  20. #include "a_types.h"
  21. #include "qdf_types.h"
  22. #include "osapi_linux.h"
  23. #include "htc_packet.h"
  24. #include "i_qdf_event.h"
  25. #include "wmi_services.h"
  26. #include "wmi_unified.h"
  27. #include "wmi_version.h"
  28. #include "qdf_types.h"
  29. #include "qdf_status.h"
  30. #include "cds_sched.h"
  31. #include "cds_config.h"
  32. #include "sir_mac_prot_def.h"
  33. #include "wma_types.h"
  34. #include <linux/workqueue.h>
  35. #include "utils_api.h"
  36. #include "lim_types.h"
  37. #include "wmi_unified_api.h"
  38. #include "cdp_txrx_cmn.h"
  39. #include "dbglog.h"
  40. #include "cds_ieee80211_common.h"
  41. #include "wlan_objmgr_psoc_obj.h"
  42. #include <cdp_txrx_handle.h>
  43. #include <wlan_policy_mgr_api.h>
  44. #include "wma_api.h"
  45. /* Platform specific configuration for max. no. of fragments */
  46. #define QCA_OL_11AC_TX_MAX_FRAGS 2
  47. /* Private */
  48. #define WMA_READY_EVENTID_TIMEOUT 6000
  49. #define WMA_SERVICE_READY_EXT_TIMEOUT 6000
  50. #define NAN_CLUSTER_ID_BYTES 4
  51. #define WMA_CRASH_INJECT_TIMEOUT 5000
  52. /* MAC ID to PDEV ID mapping is as given below
  53. * MAC_ID PDEV_ID
  54. * 0 1
  55. * 1 2
  56. * SOC Level WMI_PDEV_ID_SOC
  57. */
  58. #define WMA_MAC_TO_PDEV_MAP(x) ((x) + (1))
  59. #define WMA_PDEV_TO_MAC_MAP(x) ((x) - (1))
  60. #define WMA_MAX_MGMT_MPDU_LEN 2000
  61. #define MAX_PRINT_FAILURE_CNT 50
  62. #define WMA_INVALID_VDEV_ID 0xFF
  63. /* Deprecated logging macros, to be removed. Please do not use in new code */
  64. #define WMA_LOGD(params ...) \
  65. QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_WMA, params)
  66. #define WMA_LOGI(params ...) \
  67. QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_WMA, params)
  68. #define WMA_LOGW(params ...) \
  69. QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_WMA, params)
  70. #define WMA_LOGE(params ...) \
  71. QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_WMA, params)
  72. #define WMA_LOGP(params ...) \
  73. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMA, params)
  74. #define wma_alert(params...) QDF_TRACE_FATAL(QDF_MODULE_ID_WMA, params)
  75. #define wma_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_WMA, params)
  76. #define wma_warn(params...) QDF_TRACE_WARN(QDF_MODULE_ID_WMA, params)
  77. #define wma_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_WMA, params)
  78. #define wma_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_WMA, params)
  79. #define wma_err_rl(params...) QDF_TRACE_ERROR_RL(QDF_MODULE_ID_WMA, params)
  80. #define wma_nofl_alert(params...) \
  81. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMA, params)
  82. #define wma_nofl_err(params...) \
  83. QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_WMA, params)
  84. #define wma_nofl_warn(params...) \
  85. QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_WMA, params)
  86. #define wma_nofl_info(params...) \
  87. QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_WMA, params)
  88. #define wma_nofl_debug(params...) \
  89. QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_WMA, params)
  90. #define WMA_DEBUG_ALWAYS
  91. #ifdef WMA_DEBUG_ALWAYS
  92. #define WMA_LOGA(params ...) \
  93. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMA, params)
  94. #else
  95. #define WMA_LOGA(params ...)
  96. #endif
  97. #define WMA_WILDCARD_PDEV_ID 0x0
  98. #define WMA_HW_DEF_SCAN_MAX_DURATION 30000 /* 30 secs */
  99. #define WMA_BCAST_MAC_ADDR (0xFF)
  100. #define WMA_MCAST_IPV4_MAC_ADDR (0x01)
  101. #define WMA_MCAST_IPV6_MAC_ADDR (0x33)
  102. #define WMA_ICMP_PROTOCOL (0x01)
  103. #define WMA_IS_EAPOL_GET_MIN_LEN 14
  104. #define WMA_EAPOL_SUBTYPE_GET_MIN_LEN 21
  105. #define WMA_EAPOL_INFO_GET_MIN_LEN 23
  106. #define WMA_IS_DHCP_GET_MIN_LEN 38
  107. #define WMA_DHCP_SUBTYPE_GET_MIN_LEN 0x11D
  108. #define WMA_DHCP_INFO_GET_MIN_LEN 50
  109. #define WMA_IS_ARP_GET_MIN_LEN 14
  110. #define WMA_ARP_SUBTYPE_GET_MIN_LEN 22
  111. #define WMA_IPV4_PROTO_GET_MIN_LEN 24
  112. #define WMA_IPV4_PKT_INFO_GET_MIN_LEN 42
  113. #define WMA_ICMP_SUBTYPE_GET_MIN_LEN 35
  114. #define WMA_IPV6_PROTO_GET_MIN_LEN 21
  115. #define WMA_IPV6_PKT_INFO_GET_MIN_LEN 62
  116. #define WMA_ICMPV6_SUBTYPE_GET_MIN_LEN 55
  117. /* Beacon tx rate */
  118. #define WMA_BEACON_TX_RATE_1_M 10
  119. #define WMA_BEACON_TX_RATE_2_M 20
  120. #define WMA_BEACON_TX_RATE_5_5_M 55
  121. #define WMA_BEACON_TX_RATE_11_M 110
  122. #define WMA_BEACON_TX_RATE_6_M 60
  123. #define WMA_BEACON_TX_RATE_9_M 90
  124. #define WMA_BEACON_TX_RATE_12_M 120
  125. #define WMA_BEACON_TX_RATE_18_M 180
  126. #define WMA_BEACON_TX_RATE_24_M 240
  127. #define WMA_BEACON_TX_RATE_36_M 360
  128. #define WMA_BEACON_TX_RATE_48_M 480
  129. #define WMA_BEACON_TX_RATE_54_M 540
  130. /* Roaming default values
  131. * All time and period values are in milliseconds.
  132. * All rssi values are in dB except for WMA_NOISE_FLOOR_DBM_DEFAULT.
  133. */
  134. #define WMA_ROAM_SCAN_CHANNEL_SWITCH_TIME (4)
  135. #define WMA_NOISE_FLOOR_DBM_DEFAULT (-96)
  136. #define WMA_RSSI_MIN_VALUE (-128)
  137. #define WMA_RSSI_MAX_VALUE (127)
  138. #define WMA_ROAM_RSSI_DIFF_DEFAULT (5)
  139. #define WMA_ROAM_DWELL_TIME_ACTIVE_DEFAULT (100)
  140. #define WMA_ROAM_DWELL_TIME_PASSIVE_DEFAULT (110)
  141. #define WMA_ROAM_MIN_REST_TIME_DEFAULT (50)
  142. #define WMA_ROAM_MAX_REST_TIME_DEFAULT (500)
  143. #define WMA_INVALID_KEY_IDX 0xff
  144. #define WMA_MAX_RF_CHAINS(x) ((1 << x) - 1)
  145. #define WMA_MIN_RF_CHAINS (1)
  146. #define WMA_MAX_NSS (2)
  147. #define WMA_BCN_BUF_MAX_SIZE 512
  148. #define WMA_NOA_IE_SIZE(num_desc) (2 + (13 * (num_desc)))
  149. #define WMA_MAX_NOA_DESCRIPTORS 4
  150. #define WMA_TIM_SUPPORTED_PVB_LENGTH ((HAL_NUM_STA / 8) + 1)
  151. #define WMA_WOW_PTRN_MASK_VALID 0xFF
  152. #define WMA_NUM_BITS_IN_BYTE 8
  153. #define WMA_AP_WOW_DEFAULT_PTRN_MAX 4
  154. #define WMA_BSS_STATUS_STARTED 0x1
  155. #define WMA_BSS_STATUS_STOPPED 0x2
  156. #define WMA_TARGET_REQ_TYPE_VDEV_START 0x1
  157. #define WMA_TARGET_REQ_TYPE_VDEV_STOP 0x2
  158. #define WMA_TARGET_REQ_TYPE_VDEV_DEL 0x3
  159. #define WMA_PEER_ASSOC_CNF_START 0x01
  160. #define WMA_PEER_ASSOC_TIMEOUT SIR_PEER_ASSOC_TIMEOUT
  161. #define WMA_DELETE_STA_RSP_START 0x02
  162. #define WMA_DELETE_STA_TIMEOUT SIR_DELETE_STA_TIMEOUT
  163. #define WMA_DEL_P2P_SELF_STA_RSP_START 0x03
  164. #define WMA_SET_LINK_PEER_RSP 0x04
  165. #define WMA_DELETE_PEER_RSP 0x05
  166. #define WMA_PDEV_SET_HW_MODE_RESP 0x06
  167. #define WMA_PDEV_MAC_CFG_RESP 0x07
  168. /* FW response timeout values in milli seconds */
  169. #define WMA_VDEV_START_REQUEST_TIMEOUT SIR_VDEV_START_REQUEST_TIMEOUT
  170. #define WMA_VDEV_STOP_REQUEST_TIMEOUT SIR_VDEV_STOP_REQUEST_TIMEOUT
  171. #define WMA_VDEV_PLCY_MGR_TIMEOUT SIR_VDEV_PLCY_MGR_TIMEOUT
  172. #define WMA_VDEV_HW_MODE_REQUEST_TIMEOUT WMA_VDEV_PLCY_MGR_TIMEOUT
  173. #define WMA_VDEV_DUAL_MAC_CFG_TIMEOUT WMA_VDEV_PLCY_MGR_TIMEOUT
  174. #define WMA_VDEV_PLCY_MGR_WAKE_LOCK_TIMEOUT \
  175. (WMA_VDEV_PLCY_MGR_TIMEOUT + 500)
  176. #define WMA_VDEV_SET_KEY_WAKELOCK_TIMEOUT WAKELOCK_DURATION_RECOMMENDED
  177. #define WMA_TGT_INVALID_SNR (0)
  178. #define WMA_TGT_IS_VALID_RSSI(x) ((x) != 0xFF)
  179. #define WMA_TGT_IS_VALID_SNR(x) ((x) >= 0 && (x) < WMA_TGT_MAX_SNR)
  180. #define WMA_TGT_IS_INVALID_SNR(x) (!WMA_TGT_IS_VALID_SNR(x))
  181. #define WMA_TX_Q_RECHECK_TIMER_WAIT 2 /* 2 ms */
  182. #define WMA_MAX_NUM_ARGS 8
  183. #define WMA_SMPS_MASK_LOWER_16BITS 0xFF
  184. #define WMA_SMPS_MASK_UPPER_3BITS 0x7
  185. #define WMA_SMPS_PARAM_VALUE_S 29
  186. /*
  187. * Setting the Tx Comp Timeout to 1 secs.
  188. * TODO: Need to Revist the Timing
  189. */
  190. #define WMA_TX_FRAME_COMPLETE_TIMEOUT 1000
  191. #define WMA_TX_FRAME_BUFFER_NO_FREE 0
  192. #define WMA_TX_FRAME_BUFFER_FREE 1
  193. /*
  194. * TODO: Add WMI_CMD_ID_MAX as part of WMI_CMD_ID
  195. * instead of assigning it to the last valid wmi
  196. * cmd+1 to avoid updating this when a command is
  197. * added/deleted.
  198. */
  199. #define WMI_CMDID_MAX (WMI_TXBF_CMDID + 1)
  200. #define WMA_NLO_FREQ_THRESH 1000 /* in MHz */
  201. #define WMA_SEC_TO_MSEC(sec) (sec * 1000) /* sec to msec */
  202. #define WMA_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */
  203. /* Default rssi threshold defined in CFG80211 */
  204. #define WMA_RSSI_THOLD_DEFAULT -300
  205. #define WMA_AUTH_REQ_RECV_WAKE_LOCK_TIMEOUT WAKELOCK_DURATION_RECOMMENDED
  206. #define WMA_ASSOC_REQ_RECV_WAKE_LOCK_DURATION WAKELOCK_DURATION_RECOMMENDED
  207. #define WMA_DEAUTH_RECV_WAKE_LOCK_DURATION WAKELOCK_DURATION_RECOMMENDED
  208. #define WMA_DISASSOC_RECV_WAKE_LOCK_DURATION WAKELOCK_DURATION_RECOMMENDED
  209. #define WMA_ROAM_HO_WAKE_LOCK_DURATION (500) /* in msec */
  210. #ifdef FEATURE_WLAN_AUTO_SHUTDOWN
  211. #define WMA_AUTO_SHUTDOWN_WAKE_LOCK_DURATION WAKELOCK_DURATION_RECOMMENDED
  212. #endif
  213. #define WMA_BMISS_EVENT_WAKE_LOCK_DURATION WAKELOCK_DURATION_RECOMMENDED
  214. #define WMA_FW_RSP_EVENT_WAKE_LOCK_DURATION WAKELOCK_DURATION_MAX
  215. #define WMA_TXMIC_LEN 8
  216. #define WMA_RXMIC_LEN 8
  217. #define WMA_IV_KEY_LEN 16
  218. /*
  219. * Length = (2 octets for Index and CTWin/Opp PS) and
  220. * (13 octets for each NOA Descriptors)
  221. */
  222. #define WMA_P2P_NOA_IE_OPP_PS_SET (0x80)
  223. #define WMA_P2P_NOA_IE_CTWIN_MASK (0x7F)
  224. #define WMA_P2P_IE_ID 0xdd
  225. #define WMA_P2P_WFA_OUI { 0x50, 0x6f, 0x9a }
  226. #define WMA_P2P_WFA_VER 0x09 /* ver 1.0 */
  227. /* P2P Sub element definitions (according to table 5 of Wifi's P2P spec) */
  228. #define WMA_P2P_SUB_ELEMENT_STATUS 0
  229. #define WMA_P2P_SUB_ELEMENT_MINOR_REASON 1
  230. #define WMA_P2P_SUB_ELEMENT_CAPABILITY 2
  231. #define WMA_P2P_SUB_ELEMENT_DEVICE_ID 3
  232. #define WMA_P2P_SUB_ELEMENT_GO_INTENT 4
  233. #define WMA_P2P_SUB_ELEMENT_CONFIGURATION_TIMEOUT 5
  234. #define WMA_P2P_SUB_ELEMENT_LISTEN_CHANNEL 6
  235. #define WMA_P2P_SUB_ELEMENT_GROUP_BSSID 7
  236. #define WMA_P2P_SUB_ELEMENT_EXTENDED_LISTEN_TIMING 8
  237. #define WMA_P2P_SUB_ELEMENT_INTENDED_INTERFACE_ADDR 9
  238. #define WMA_P2P_SUB_ELEMENT_MANAGEABILITY 10
  239. #define WMA_P2P_SUB_ELEMENT_CHANNEL_LIST 11
  240. #define WMA_P2P_SUB_ELEMENT_NOA 12
  241. #define WMA_P2P_SUB_ELEMENT_DEVICE_INFO 13
  242. #define WMA_P2P_SUB_ELEMENT_GROUP_INFO 14
  243. #define WMA_P2P_SUB_ELEMENT_GROUP_ID 15
  244. #define WMA_P2P_SUB_ELEMENT_INTERFACE 16
  245. #define WMA_P2P_SUB_ELEMENT_OP_CHANNEL 17
  246. #define WMA_P2P_SUB_ELEMENT_INVITATION_FLAGS 18
  247. #define WMA_P2P_SUB_ELEMENT_VENDOR 221
  248. /* Macros for handling unaligned memory accesses */
  249. #define P2PIE_PUT_LE16(a, val) \
  250. do { \
  251. (a)[1] = ((uint16_t) (val)) >> 8; \
  252. (a)[0] = ((uint16_t) (val)) & 0xff; \
  253. } while (0)
  254. #define P2PIE_PUT_LE32(a, val) \
  255. do { \
  256. (a)[3] = (uint8_t) ((((uint32_t) (val)) >> 24) & 0xff); \
  257. (a)[2] = (uint8_t) ((((uint32_t) (val)) >> 16) & 0xff); \
  258. (a)[1] = (uint8_t) ((((uint32_t) (val)) >> 8) & 0xff); \
  259. (a)[0] = (uint8_t) (((uint32_t) (val)) & 0xff); \
  260. } while (0)
  261. #define WMA_DEFAULT_MAX_PSPOLL_BEFORE_WAKE 1
  262. #define WMA_VHT_PPS_PAID_MATCH 1
  263. #define WMA_VHT_PPS_GID_MATCH 2
  264. #define WMA_VHT_PPS_DELIM_CRC_FAIL 3
  265. #define WMA_DEFAULT_HW_MODE_INDEX 0xFFFF
  266. #define TWO_THIRD (2/3)
  267. /**
  268. * WMA hardware mode list bit-mask definitions.
  269. * Bits 4:0, 31:29 are unused.
  270. *
  271. * The below definitions are added corresponding to WMI DBS HW mode
  272. * list to make it independent of firmware changes for WMI definitions.
  273. * Currently these definitions have dependency with BIT positions of
  274. * the existing WMI macros. Thus, if the BIT positions are changed for
  275. * WMI macros, then these macros' BIT definitions are also need to be
  276. * changed.
  277. */
  278. #define WMA_HW_MODE_MAC0_TX_STREAMS_BITPOS (28)
  279. #define WMA_HW_MODE_MAC0_RX_STREAMS_BITPOS (24)
  280. #define WMA_HW_MODE_MAC1_TX_STREAMS_BITPOS (20)
  281. #define WMA_HW_MODE_MAC1_RX_STREAMS_BITPOS (16)
  282. #define WMA_HW_MODE_MAC0_BANDWIDTH_BITPOS (12)
  283. #define WMA_HW_MODE_MAC1_BANDWIDTH_BITPOS (8)
  284. #define WMA_HW_MODE_DBS_MODE_BITPOS (7)
  285. #define WMA_HW_MODE_AGILE_DFS_MODE_BITPOS (6)
  286. #define WMA_HW_MODE_SBS_MODE_BITPOS (5)
  287. #define WMA_HW_MODE_MAC0_TX_STREAMS_MASK \
  288. (0xf << WMA_HW_MODE_MAC0_TX_STREAMS_BITPOS)
  289. #define WMA_HW_MODE_MAC0_RX_STREAMS_MASK \
  290. (0xf << WMA_HW_MODE_MAC0_RX_STREAMS_BITPOS)
  291. #define WMA_HW_MODE_MAC1_TX_STREAMS_MASK \
  292. (0xf << WMA_HW_MODE_MAC1_TX_STREAMS_BITPOS)
  293. #define WMA_HW_MODE_MAC1_RX_STREAMS_MASK \
  294. (0xf << WMA_HW_MODE_MAC1_RX_STREAMS_BITPOS)
  295. #define WMA_HW_MODE_MAC0_BANDWIDTH_MASK \
  296. (0xf << WMA_HW_MODE_MAC0_BANDWIDTH_BITPOS)
  297. #define WMA_HW_MODE_MAC1_BANDWIDTH_MASK \
  298. (0xf << WMA_HW_MODE_MAC1_BANDWIDTH_BITPOS)
  299. #define WMA_HW_MODE_DBS_MODE_MASK \
  300. (0x1 << WMA_HW_MODE_DBS_MODE_BITPOS)
  301. #define WMA_HW_MODE_AGILE_DFS_MODE_MASK \
  302. (0x1 << WMA_HW_MODE_AGILE_DFS_MODE_BITPOS)
  303. #define WMA_HW_MODE_SBS_MODE_MASK \
  304. (0x1 << WMA_HW_MODE_SBS_MODE_BITPOS)
  305. #define WMA_HW_MODE_MAC0_TX_STREAMS_SET(hw_mode, value) \
  306. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC0_TX_STREAMS_BITPOS, 4, value)
  307. #define WMA_HW_MODE_MAC0_RX_STREAMS_SET(hw_mode, value) \
  308. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC0_RX_STREAMS_BITPOS, 4, value)
  309. #define WMA_HW_MODE_MAC1_TX_STREAMS_SET(hw_mode, value) \
  310. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC1_TX_STREAMS_BITPOS, 4, value)
  311. #define WMA_HW_MODE_MAC1_RX_STREAMS_SET(hw_mode, value) \
  312. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC1_RX_STREAMS_BITPOS, 4, value)
  313. #define WMA_HW_MODE_MAC0_BANDWIDTH_SET(hw_mode, value) \
  314. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC0_BANDWIDTH_BITPOS, 4, value)
  315. #define WMA_HW_MODE_MAC1_BANDWIDTH_SET(hw_mode, value) \
  316. WMI_SET_BITS(hw_mode, WMA_HW_MODE_MAC1_BANDWIDTH_BITPOS, 4, value)
  317. #define WMA_HW_MODE_DBS_MODE_SET(hw_mode, value) \
  318. WMI_SET_BITS(hw_mode, WMA_HW_MODE_DBS_MODE_BITPOS, 1, value)
  319. #define WMA_HW_MODE_AGILE_DFS_SET(hw_mode, value) \
  320. WMI_SET_BITS(hw_mode, WMA_HW_MODE_AGILE_DFS_MODE_BITPOS, 1, value)
  321. #define WMA_HW_MODE_SBS_MODE_SET(hw_mode, value) \
  322. WMI_SET_BITS(hw_mode, WMA_HW_MODE_SBS_MODE_BITPOS, 1, value)
  323. #define WMA_HW_MODE_MAC0_TX_STREAMS_GET(hw_mode) \
  324. ((hw_mode & WMA_HW_MODE_MAC0_TX_STREAMS_MASK) >> \
  325. WMA_HW_MODE_MAC0_TX_STREAMS_BITPOS)
  326. #define WMA_HW_MODE_MAC0_RX_STREAMS_GET(hw_mode) \
  327. ((hw_mode & WMA_HW_MODE_MAC0_RX_STREAMS_MASK) >> \
  328. WMA_HW_MODE_MAC0_RX_STREAMS_BITPOS)
  329. #define WMA_HW_MODE_MAC1_TX_STREAMS_GET(hw_mode) \
  330. ((hw_mode & WMA_HW_MODE_MAC1_TX_STREAMS_MASK) >> \
  331. WMA_HW_MODE_MAC1_TX_STREAMS_BITPOS)
  332. #define WMA_HW_MODE_MAC1_RX_STREAMS_GET(hw_mode) \
  333. ((hw_mode & WMA_HW_MODE_MAC1_RX_STREAMS_MASK) >> \
  334. WMA_HW_MODE_MAC1_RX_STREAMS_BITPOS)
  335. #define WMA_HW_MODE_MAC0_BANDWIDTH_GET(hw_mode) \
  336. ((hw_mode & WMA_HW_MODE_MAC0_BANDWIDTH_MASK) >> \
  337. WMA_HW_MODE_MAC0_BANDWIDTH_BITPOS)
  338. #define WMA_HW_MODE_MAC1_BANDWIDTH_GET(hw_mode) \
  339. ((hw_mode & WMA_HW_MODE_MAC1_BANDWIDTH_MASK) >> \
  340. WMA_HW_MODE_MAC1_BANDWIDTH_BITPOS)
  341. #define WMA_HW_MODE_DBS_MODE_GET(hw_mode) \
  342. ((hw_mode & WMA_HW_MODE_DBS_MODE_MASK) >> \
  343. WMA_HW_MODE_DBS_MODE_BITPOS)
  344. #define WMA_HW_MODE_AGILE_DFS_GET(hw_mode) \
  345. ((hw_mode & WMA_HW_MODE_AGILE_DFS_MODE_MASK) >> \
  346. WMA_HW_MODE_AGILE_DFS_MODE_BITPOS)
  347. #define WMA_HW_MODE_SBS_MODE_GET(hw_mode) \
  348. ((hw_mode & WMA_HW_MODE_SBS_MODE_MASK) >> \
  349. WMA_HW_MODE_SBS_MODE_BITPOS)
  350. /*
  351. * PROBE_REQ_TX_DELAY
  352. * param to specify probe request Tx delay for scans triggered on this VDEV
  353. */
  354. #define PROBE_REQ_TX_DELAY 10
  355. /* PROBE_REQ_TX_TIME_GAP
  356. * param to specify the time gap between each set of probe request transmission.
  357. * The number of probe requests in each set depends on the ssid_list and,
  358. * bssid_list in the scan request. This parameter will get applied only,
  359. * for the scans triggered on this VDEV.
  360. */
  361. #define PROBE_REQ_TX_TIME_GAP 20
  362. typedef void (*txFailIndCallback)(uint8_t *peer_mac, uint8_t seqNo);
  363. typedef void (*tp_wma_packetdump_cb)(qdf_nbuf_t netbuf,
  364. uint8_t status, uint8_t vdev_id, uint8_t type);
  365. /**
  366. * enum wma_rx_exec_ctx - wma rx execution context
  367. * @WMA_RX_WORK_CTX: work queue context execution
  368. * @WMA_RX_TASKLET_CTX: tasklet context execution
  369. * @WMA_RX_SERIALIZER_CTX: MC thread context execution
  370. *
  371. */
  372. enum wma_rx_exec_ctx {
  373. WMA_RX_WORK_CTX,
  374. WMA_RX_TASKLET_CTX,
  375. WMA_RX_SERIALIZER_CTX
  376. };
  377. /**
  378. * struct beacon_info - structure to store beacon template
  379. * @buf: skb ptr
  380. * @len: length
  381. * @dma_mapped: is it dma mapped or not
  382. * @tim_ie_offset: TIM IE offset
  383. * @dtim_count: DTIM count
  384. * @seq_no: sequence no
  385. * @noa_sub_ie: NOA sub IE
  386. * @noa_sub_ie_len: NOA sub IE length
  387. * @noa_ie: NOA IE
  388. * @p2p_ie_offset: p2p IE offset
  389. * @lock: lock
  390. */
  391. struct beacon_info {
  392. qdf_nbuf_t buf;
  393. uint32_t len;
  394. uint8_t dma_mapped;
  395. uint32_t tim_ie_offset;
  396. uint8_t dtim_count;
  397. uint16_t seq_no;
  398. uint8_t noa_sub_ie[2 + WMA_NOA_IE_SIZE(WMA_MAX_NOA_DESCRIPTORS)];
  399. uint16_t noa_sub_ie_len;
  400. uint8_t *noa_ie;
  401. uint16_t p2p_ie_offset;
  402. qdf_spinlock_t lock;
  403. };
  404. /**
  405. * struct beacon_tim_ie - structure to store TIM IE of beacon
  406. * @tim_ie: tim ie
  407. * @tim_len: tim ie length
  408. * @dtim_count: dtim count
  409. * @dtim_period: dtim period
  410. * @tim_bitctl: tim bit control
  411. * @tim_bitmap: tim bitmap
  412. */
  413. struct beacon_tim_ie {
  414. uint8_t tim_ie;
  415. uint8_t tim_len;
  416. uint8_t dtim_count;
  417. uint8_t dtim_period;
  418. uint8_t tim_bitctl;
  419. uint8_t tim_bitmap[1];
  420. } __ATTRIB_PACK;
  421. /**
  422. * struct pps - packet power save parameter
  423. * @paid_match_enable: paid match enable
  424. * @gid_match_enable: gid match enable
  425. * @tim_clear: time clear
  426. * @dtim_clear: dtim clear
  427. * @eof_delim: eof delim
  428. * @mac_match: mac match
  429. * @delim_fail: delim fail
  430. * @nsts_zero: nsts zero
  431. * @rssi_chk: RSSI check
  432. * @ebt_5g: ebt 5GHz
  433. */
  434. struct pps {
  435. bool paid_match_enable;
  436. bool gid_match_enable;
  437. bool tim_clear;
  438. bool dtim_clear;
  439. bool eof_delim;
  440. bool mac_match;
  441. bool delim_fail;
  442. bool nsts_zero;
  443. bool rssi_chk;
  444. bool ebt_5g;
  445. };
  446. /**
  447. * struct qpower_params - qpower related parameters
  448. * @max_ps_poll_cnt: max ps poll count
  449. * @max_tx_before_wake: max tx before wake
  450. * @spec_ps_poll_wake_interval: ps poll wake interval
  451. * @max_spec_nodata_ps_poll: no data ps poll
  452. */
  453. struct qpower_params {
  454. uint32_t max_ps_poll_cnt;
  455. uint32_t max_tx_before_wake;
  456. uint32_t spec_ps_poll_wake_interval;
  457. uint32_t max_spec_nodata_ps_poll;
  458. };
  459. /**
  460. * struct gtx_config_t - GTX config
  461. * @gtxRTMask: for HT and VHT rate masks
  462. * @gtxUsrcfg: host request for GTX mask
  463. * @gtxPERThreshold: PER Threshold (default: 10%)
  464. * @gtxPERMargin: PER margin (default: 2%)
  465. * @gtxTPCstep: TCP step (default: 1)
  466. * @gtxTPCMin: TCP min (default: 5)
  467. * @gtxBWMask: BW mask (20/40/80/160 Mhz)
  468. */
  469. typedef struct {
  470. uint32_t gtxRTMask[2];
  471. uint32_t gtxUsrcfg;
  472. uint32_t gtxPERThreshold;
  473. uint32_t gtxPERMargin;
  474. uint32_t gtxTPCstep;
  475. uint32_t gtxTPCMin;
  476. uint32_t gtxBWMask;
  477. } gtx_config_t;
  478. /**
  479. * struct pdev_cli_config_t - store pdev parameters
  480. * @ani_enable: ANI is enabled/disable on target
  481. * @ani_poll_len: store ANI polling period
  482. * @ani_listen_len: store ANI listening period
  483. * @ani_ofdm_level: store ANI OFDM immunity level
  484. * @ani_cck_level: store ANI CCK immunity level
  485. * @cwmenable: Dynamic bw is enable/disable in fw
  486. * @txchainmask: tx chain mask
  487. * @rxchainmask: rx chain mask
  488. * @txpow2g: tx power limit for 2GHz
  489. * @txpow5g: tx power limit for 5GHz
  490. *
  491. * This structure stores pdev parameters.
  492. * Some of these parameters are set in fw and some
  493. * parameters are only maintained in host.
  494. */
  495. typedef struct {
  496. uint32_t ani_enable;
  497. uint32_t ani_poll_len;
  498. uint32_t ani_listen_len;
  499. uint32_t ani_ofdm_level;
  500. uint32_t ani_cck_level;
  501. uint32_t cwmenable;
  502. uint32_t cts_cbw;
  503. uint32_t txchainmask;
  504. uint32_t rxchainmask;
  505. uint32_t txpow2g;
  506. uint32_t txpow5g;
  507. } pdev_cli_config_t;
  508. /**
  509. * struct vdev_cli_config_t - store vdev parameters
  510. * @nss: nss width
  511. * @ldpc: is ldpc is enable/disable
  512. * @tx_stbc: TX STBC is enable/disable
  513. * @rx_stbc: RX STBC is enable/disable
  514. * @shortgi: short gi is enable/disable
  515. * @rtscts_en: RTS/CTS is enable/disable
  516. * @chwidth: channel width
  517. * @tx_rate: tx rate
  518. * @ampdu: ampdu size
  519. * @amsdu: amsdu size
  520. * @erx_adjust: enable/disable early rx enable
  521. * @erx_bmiss_num: target bmiss number per sample
  522. * @erx_bmiss_cycle: sample cycle
  523. * @erx_slop_step: slop_step value
  524. * @erx_init_slop: init slop
  525. * @erx_adj_pause: pause adjust enable/disable
  526. * @erx_dri_sample: enable/disable drift sample
  527. * @pps_params: packet power save parameters
  528. * @qpower_params: qpower parameters
  529. * @gtx_info: GTX offload info
  530. * @dcm: DCM enable/disable
  531. * @range_ext: HE range extension enable/disable
  532. *
  533. * This structure stores vdev parameters.
  534. * Some of these parameters are set in fw and some
  535. * parameters are only maintained in host.
  536. */
  537. typedef struct {
  538. uint32_t nss;
  539. uint32_t ldpc;
  540. uint32_t tx_stbc;
  541. uint32_t rx_stbc;
  542. uint32_t shortgi;
  543. uint32_t rtscts_en;
  544. uint32_t chwidth;
  545. uint32_t tx_rate;
  546. uint32_t ampdu;
  547. uint32_t amsdu;
  548. uint32_t erx_adjust;
  549. uint32_t erx_bmiss_num;
  550. uint32_t erx_bmiss_cycle;
  551. uint32_t erx_slop_step;
  552. uint32_t erx_init_slop;
  553. uint32_t erx_adj_pause;
  554. uint32_t erx_dri_sample;
  555. struct pps pps_params;
  556. struct qpower_params qpower_params;
  557. gtx_config_t gtx_info;
  558. #ifdef WLAN_FEATURE_11AX
  559. uint8_t dcm;
  560. uint8_t range_ext;
  561. #endif
  562. } vdev_cli_config_t;
  563. /**
  564. * struct wma_version_info - Store wmi version info
  565. * @major: wmi major version
  566. * @minor: wmi minor version
  567. * @revision: wmi revision number
  568. */
  569. struct wma_version_info {
  570. u_int32_t major;
  571. u_int32_t minor;
  572. u_int32_t revision;
  573. };
  574. /**
  575. * struct wma_wow - store wow patterns
  576. * @magic_ptrn_enable: magic pattern enable/disable
  577. * @wow_enable: wow enable/disable
  578. * @wow_enable_cmd_sent: is wow enable command sent to fw
  579. * @deauth_enable: is deauth wakeup enable/disable
  580. * @disassoc_enable: is disassoc wakeup enable/disable
  581. * @gtk_err_enable: is GTK error wakeup enable/disable
  582. *
  583. * This structure stores wow patterns and wow related parameters in host.
  584. */
  585. struct wma_wow {
  586. bool magic_ptrn_enable;
  587. bool wow_enable;
  588. bool wow_enable_cmd_sent;
  589. bool deauth_enable;
  590. bool disassoc_enable;
  591. bool gtk_err_enable[WLAN_MAX_VDEVS];
  592. };
  593. #ifdef WLAN_FEATURE_11W
  594. #define CMAC_IPN_LEN (6)
  595. #define WMA_IGTK_KEY_INDEX_4 (4)
  596. #define WMA_IGTK_KEY_INDEX_5 (5)
  597. /**
  598. * struct wma_igtk_ipn_t - GTK IPN info
  599. * @ipn: IPN info
  600. */
  601. typedef struct {
  602. uint8_t ipn[CMAC_IPN_LEN];
  603. } wma_igtk_ipn_t;
  604. /**
  605. * struct wma_igtk_key_t - GTK key
  606. * @key_length: key length
  607. * @key: key
  608. * @key_id: key id
  609. * @key_cipher: key type
  610. */
  611. typedef struct {
  612. uint16_t key_length;
  613. uint8_t key[CSR_AES_GMAC_256_KEY_LEN];
  614. /* IPN is maintained per iGTK keyID
  615. * 0th index for iGTK keyID = 4;
  616. * 1st index for iGTK KeyID = 5
  617. */
  618. wma_igtk_ipn_t key_id[2];
  619. uint32_t key_cipher;
  620. } wma_igtk_key_t;
  621. #endif
  622. /**
  623. * struct vdev_restart_params_t - vdev restart parameters
  624. * @vdev_id: vdev id
  625. * @ssid: ssid
  626. * @flags: flags
  627. * @requestor_id: requestor id
  628. * @chan: channel
  629. * @hidden_ssid_restart_in_progress: hidden ssid restart flag
  630. * @ssidHidden: is ssid hidden or not
  631. */
  632. typedef struct {
  633. A_UINT32 vdev_id;
  634. wmi_ssid ssid;
  635. A_UINT32 flags;
  636. A_UINT32 requestor_id;
  637. A_UINT32 disable_hw_ack;
  638. wmi_channel chan;
  639. #ifndef CONFIG_VDEV_SM
  640. qdf_atomic_t hidden_ssid_restart_in_progress;
  641. #endif
  642. uint8_t ssidHidden;
  643. } vdev_restart_params_t;
  644. struct roam_synch_frame_ind {
  645. uint32_t bcn_probe_rsp_len;
  646. uint8_t *bcn_probe_rsp;
  647. uint8_t is_beacon;
  648. uint32_t reassoc_req_len;
  649. uint8_t *reassoc_req;
  650. uint32_t reassoc_rsp_len;
  651. uint8_t *reassoc_rsp;
  652. };
  653. /**
  654. * struct wma_txrx_node - txrx node
  655. * @vdev: pointer to vdev object
  656. * @addr: mac address
  657. * @bssid: bssid
  658. * @handle: wma handle
  659. * @beacon: beacon info
  660. * @vdev_restart_params: vdev restart parameters
  661. * @config: per vdev config parameters
  662. * @scan_info: scan info
  663. * @type: type
  664. * @sub_type: sub type
  665. * @nlo_match_evt_received: is nlo match event received or not
  666. * @pno_in_progress: is pno in progress or not
  667. * @plm_in_progress: is plm in progress or not
  668. * @ptrn_match_enable: is pattern match is enable or not
  669. * @num_wow_default_patterns: number of default wow patterns configured for vdev
  670. * @num_wow_user_patterns: number of user wow patterns configured for vdev
  671. * @conn_state: connection state
  672. * @beaconInterval: beacon interval
  673. * @llbCoexist: 11b coexist
  674. * @shortSlotTimeSupported: is short slot time supported or not
  675. * @dtimPeriod: DTIM period
  676. * @chanmode: channel mode
  677. * @vht_capable: VHT capablity flag
  678. * @ht_capable: HT capablity flag
  679. * @mhz: channel frequency in KHz
  680. * @chan_width: channel bandwidth
  681. * @vdev_up: is vdev up or not
  682. * @tsfadjust: TSF adjust
  683. * @addBssStaContext: add bss context
  684. * @aid: association id
  685. * @rmfEnabled: Robust Management Frame (RMF) enabled/disabled
  686. * @key: GTK key
  687. * @uapsd_cached_val: uapsd cached value
  688. * @stats_rsp: stats response
  689. * @fw_stats_set: fw stats value
  690. * @del_staself_req: delete sta self request
  691. * @bss_status: bss status
  692. * @rate_flags: rate flags
  693. * @nss: nss value
  694. * @is_channel_switch: is channel switch
  695. * @pause_bitmap: pause bitmap
  696. * @tx_power: tx power in dbm
  697. * @max_tx_power: max tx power in dbm
  698. * @nwType: network type (802.11a/b/g/n/ac)
  699. * @staKeyParams: sta key parameters
  700. * @ps_enabled: is powersave enable/disable
  701. * @peer_count: peer count
  702. * @roam_synch_in_progress: flag is in progress or not
  703. * @plink_status_req: link status request
  704. * @psnr_req: snr request
  705. * @delay_before_vdev_stop: delay
  706. * @tx_streams: number of tx streams can be used by the vdev
  707. * @rx_streams: number of rx streams can be used by the vdev
  708. * @chain_mask: chain mask can be used by the vdev
  709. * @mac_id: the mac on which vdev is on
  710. * @wep_default_key_idx: wep default index for group key
  711. * @arp_offload_req: cached arp offload request
  712. * @ns_offload_req: cached ns offload request
  713. * @wow_stats: stat counters for WoW related events
  714. * @rcpi_req: rcpi request
  715. * @in_bmps: Whether bmps for this interface has been enabled
  716. * @vdev_start_wakelock: wakelock to protect vdev start op with firmware
  717. * @vdev_stop_wakelock: wakelock to protect vdev stop op with firmware
  718. * @vdev_set_key_wakelock: wakelock to protect vdev set key op with firmware
  719. * @channel: channel
  720. * @roam_offload_enabled: is roam offload enable/disable
  721. * @roam_scan_stats_req: cached roam scan stats request
  722. *
  723. * It stores parameters per vdev in wma.
  724. */
  725. struct wma_txrx_node {
  726. struct wlan_objmgr_vdev *vdev;
  727. uint8_t addr[IEEE80211_ADDR_LEN];
  728. uint8_t bssid[IEEE80211_ADDR_LEN];
  729. struct cdp_vdev *handle;
  730. struct beacon_info *beacon;
  731. vdev_restart_params_t vdev_restart_params;
  732. vdev_cli_config_t config;
  733. uint32_t type;
  734. uint32_t sub_type;
  735. #ifdef FEATURE_WLAN_ESE
  736. bool plm_in_progress;
  737. #endif
  738. bool ptrn_match_enable;
  739. uint8_t num_wow_default_patterns;
  740. uint8_t num_wow_user_patterns;
  741. bool conn_state;
  742. tSirMacBeaconInterval beaconInterval;
  743. uint8_t llbCoexist;
  744. uint8_t shortSlotTimeSupported;
  745. uint8_t dtimPeriod;
  746. WMI_HOST_WLAN_PHY_MODE chanmode;
  747. uint8_t vht_capable;
  748. uint8_t ht_capable;
  749. A_UINT32 mhz;
  750. enum phy_ch_width chan_width;
  751. bool vdev_active;
  752. uint64_t tsfadjust;
  753. void *addBssStaContext;
  754. uint8_t aid;
  755. uint8_t rmfEnabled;
  756. #ifdef WLAN_FEATURE_11W
  757. wma_igtk_key_t key;
  758. uint32_t ucast_key_cipher;
  759. #endif /* WLAN_FEATURE_11W */
  760. uint32_t uapsd_cached_val;
  761. tAniGetPEStatsRsp *stats_rsp;
  762. uint8_t fw_stats_set;
  763. void *del_staself_req;
  764. bool is_del_sta_defered;
  765. qdf_atomic_t bss_status;
  766. uint8_t rate_flags;
  767. uint8_t nss;
  768. #ifndef CONFIG_VDEV_SM
  769. bool is_channel_switch;
  770. #endif
  771. uint16_t pause_bitmap;
  772. int8_t tx_power;
  773. int8_t max_tx_power;
  774. uint32_t nwType;
  775. void *staKeyParams;
  776. uint32_t peer_count;
  777. bool roam_synch_in_progress;
  778. void *plink_status_req;
  779. void *psnr_req;
  780. uint8_t delay_before_vdev_stop;
  781. #ifdef FEATURE_WLAN_EXTSCAN
  782. bool extscan_in_progress;
  783. #endif
  784. uint32_t tx_streams;
  785. uint32_t rx_streams;
  786. uint32_t chain_mask;
  787. uint32_t mac_id;
  788. bool roaming_in_progress;
  789. int32_t roam_synch_delay;
  790. uint8_t nss_2g;
  791. uint8_t nss_5g;
  792. uint8_t wep_default_key_idx;
  793. struct sir_host_offload_req arp_offload_req;
  794. struct sir_host_offload_req ns_offload_req;
  795. #ifndef QCA_SUPPORT_CP_STATS
  796. struct sir_vdev_wow_stats wow_stats;
  797. #endif
  798. struct sme_rcpi_req *rcpi_req;
  799. #ifdef WLAN_FEATURE_11AX
  800. bool he_capable;
  801. uint32_t he_ops;
  802. #endif
  803. bool in_bmps;
  804. struct beacon_filter_param beacon_filter;
  805. bool beacon_filter_enabled;
  806. qdf_wake_lock_t vdev_start_wakelock;
  807. qdf_wake_lock_t vdev_stop_wakelock;
  808. qdf_wake_lock_t vdev_set_key_wakelock;
  809. struct roam_synch_frame_ind roam_synch_frame_ind;
  810. bool is_waiting_for_key;
  811. bool roam_offload_enabled;
  812. uint8_t channel;
  813. struct sir_roam_scan_stats *roam_scan_stats_req;
  814. };
  815. /**
  816. * struct ibss_power_save_params - IBSS power save parameters
  817. * @atimWindowLength: ATIM window length
  818. * @isPowerSaveAllowed: is power save allowed
  819. * @isPowerCollapseAllowed: is power collapsed allowed
  820. * @isAwakeonTxRxEnabled: is awake on tx/rx enabled
  821. * @inactivityCount: inactivity count
  822. * @txSPEndInactivityTime: tx SP end inactivity time
  823. * @ibssPsWarmupTime: IBSS power save warm up time
  824. * @ibssPs1RxChainInAtimEnable: IBSS power save rx chain in ATIM enable
  825. */
  826. typedef struct {
  827. uint32_t atimWindowLength;
  828. uint32_t isPowerSaveAllowed;
  829. uint32_t isPowerCollapseAllowed;
  830. uint32_t isAwakeonTxRxEnabled;
  831. uint32_t inactivityCount;
  832. uint32_t txSPEndInactivityTime;
  833. uint32_t ibssPsWarmupTime;
  834. uint32_t ibssPs1RxChainInAtimEnable;
  835. } ibss_power_save_params;
  836. /**
  837. * struct mac_ss_bw_info - hw_mode_list PHY/MAC params for each MAC
  838. * @mac_tx_stream: Max TX stream
  839. * @mac_rx_stream: Max RX stream
  840. * @mac_bw: Max bandwidth
  841. */
  842. struct mac_ss_bw_info {
  843. uint32_t mac_tx_stream;
  844. uint32_t mac_rx_stream;
  845. uint32_t mac_bw;
  846. };
  847. /**
  848. * struct wma_ini_config - Structure to hold wma ini configuration
  849. * @max_no_of_peers: Max Number of supported
  850. *
  851. * Placeholder for WMA ini parameters.
  852. */
  853. struct wma_ini_config {
  854. uint8_t max_no_of_peers;
  855. };
  856. /**
  857. * struct wmi_valid_channels - Channel details part of WMI_SCAN_CHAN_LIST_CMDID
  858. * @num_channels: Number of channels
  859. * @channel_list: Channel list
  860. */
  861. struct wma_valid_channels {
  862. uint8_t num_channels;
  863. uint8_t channel_list[MAX_NUM_CHAN];
  864. };
  865. #ifdef FEATURE_WLM_STATS
  866. /**
  867. * struct wma_wlm_stats_data - Data required to be used to send WLM req
  868. * @wlm_stats_max_size: Buffer size provided by userspace
  869. * @wlm_stats_cookie: Cookie to retrieve WLM req data
  870. * @wlm_stats_callback: Callback to be used to send WLM response
  871. */
  872. struct wma_wlm_stats_data {
  873. uint32_t wlm_stats_max_size;
  874. void *wlm_stats_cookie;
  875. wma_wlm_stats_cb wlm_stats_callback;
  876. };
  877. #endif
  878. /**
  879. * struct t_wma_handle - wma context
  880. * @wmi_handle: wmi handle
  881. * @cds_context: cds handle
  882. * @mac_context: mac context
  883. * @psoc: psoc context
  884. * @pdev: physical device global object
  885. * @target_suspend: target suspend event
  886. * @recovery_event: wma FW recovery event
  887. * @max_station: max stations
  888. * @max_bssid: max bssid
  889. * @myaddr: current mac address
  890. * @hwaddr: mac address from EEPROM
  891. * @lpss_support: LPSS feature is supported in target or not
  892. * @wmi_ready: wmi status flag
  893. * @wlan_init_status: wlan init status
  894. * @qdf_dev: qdf device
  895. * @wmi_service_bitmap: wmi services bitmap received from Target
  896. * @wmi_service_ext_bitmap: extended wmi services bitmap received from Target
  897. * @tx_frm_download_comp_cb: Tx Frame Compl Cb registered by umac
  898. * @tx_frm_download_comp_event: Event to wait for tx download completion
  899. * @tx_queue_empty_event: Dummy event to wait for draining MSDUs left
  900. * in hardware tx queue and before requesting VDEV_STOP. Nobody will
  901. * set this and wait will timeout, and code will poll the pending tx
  902. * descriptors number to be zero.
  903. * @umac_ota_ack_cb: Ack Complete Callback registered by umac
  904. * @umac_data_ota_ack_cb: ack complete callback
  905. * @last_umac_data_ota_timestamp: timestamp when OTA of last umac data
  906. * was done
  907. * @last_umac_data_nbuf: cache nbuf ptr for the last umac data buf
  908. * @needShutdown: is shutdown needed or not
  909. * @tgt_cfg_update_cb: configuration update callback
  910. * @reg_cap: regulatory capablities
  911. * @scan_id: scan id
  912. * @interfaces: txrx nodes(per vdev)
  913. * @pdevconfig: pdev related configrations
  914. * @vdev_resp_queue: vdev response queue
  915. * @vdev_respq_lock: vdev response queue lock
  916. * @wma_hold_req_queue: Queue use to serialize requests to firmware
  917. * @wma_hold_req_q_lock: Mutex for @wma_hold_req_queue
  918. * @vht_supp_mcs: VHT supported MCS
  919. * @is_fw_assert: is fw asserted
  920. * @wow: wow related patterns & parameters
  921. * @ack_work_ctx: Context for deferred processing of TX ACK
  922. * @powersave_mode: power save mode
  923. * @ptrn_match_enable_all_vdev: is pattern match is enable/disable
  924. * @pGetRssiReq: get RSSI request
  925. * @get_one_peer_info: When a "get peer info" request is active, is
  926. * the request for a single peer?
  927. * @get_sta_peer_info: Is a "get peer info" request active?
  928. * @peer_macaddr: When @get_one_peer_info is true, the peer's mac address
  929. * @thermal_mgmt_info: Thermal mitigation related info
  930. * @enable_mc_list: To Check if Multicast list filtering is enabled in FW
  931. * @ibss_started: is IBSS started or not
  932. * @ibsskey_info: IBSS key info
  933. * @hddTxFailCb: tx fail indication callback
  934. * @extscan_wake_lock: extscan wake lock
  935. * @wow_wake_lock: wow wake lock
  936. * @wow_auth_req_wl: wow wake lock for auth req
  937. * @wow_assoc_req_wl: wow wake lock for assoc req
  938. * @wow_deauth_rec_wl: wow wake lock for deauth req
  939. * @wow_disassoc_rec_wl: wow wake lock for disassoc req
  940. * @wow_ap_assoc_lost_wl: wow wake lock for assoc lost req
  941. * @wow_auto_shutdown_wl: wow wake lock for shutdown req
  942. * @roam_ho_wl: wake lock for roam handoff req
  943. * @wow_nack: wow negative ack flag
  944. * @is_wow_bus_suspended: is wow bus suspended flag
  945. * @suitable_ap_hb_failure: better ap found
  946. * @suitable_ap_hb_failure_rssi: RSSI when suitable_ap_hb_failure
  947. * triggered for later usage to report RSSI at beacon miss scenario
  948. * @wma_ibss_power_save_params: IBSS Power Save config Parameters
  949. * @IsRArateLimitEnabled: RA rate limiti s enabled or not
  950. * @RArateLimitInterval: RA rate limit interval
  951. * @is_lpass_enabled: Flag to indicate if LPASS feature is enabled or not
  952. * @staMaxLIModDtim: station max listen interval
  953. * @staModDtim: station mode DTIM
  954. * @staDynamicDtim: station dynamic DTIM
  955. * @hw_bd_id: hardware board id
  956. * @hw_bd_info: hardware board info
  957. * @miracast_value: miracast value
  958. * @log_completion_timer: log completion timer
  959. * @num_dbs_hw_modes: Number of HW modes supported by the FW
  960. * @hw_mode: DBS HW mode list
  961. * @old_hw_mode_index: Previous configured HW mode index
  962. * @new_hw_mode_index: Current configured HW mode index
  963. * @peer_authorized_cb: peer authorized hdd callback
  964. * @wow_unspecified_wake_count: Number of wake events which did not
  965. * correspond to known wake events. Note that known wake events are
  966. * tracked on a per-vdev basis via the struct sir_vdev_wow_stats
  967. * wow_stats in struct wma_txrx_node
  968. * @ocb_config_req: OCB request context
  969. * @self_gen_frm_pwr: Self-generated frame power
  970. * @tx_chain_mask_cck: Is the CCK tx chain mask enabled
  971. * @service_ready_ext_timer: Timer for service ready extended. Note
  972. * this is a a timer instead of wait event because on receiving the
  973. * service ready event, we will be waiting on the MC thread for the
  974. * service extended ready event which is also processed in MC
  975. * thread. This leads to MC thread being stuck. Alternative was to
  976. * process these events in tasklet/workqueue context. But, this
  977. * leads to race conditions when the events are processed in two
  978. * different context. So, processing ready event and extended ready
  979. * event in the serialized MC thread context with a timer.
  980. * @csr_roam_synch_cb: CSR callback for firmware Roam Sync events
  981. * @pe_roam_synch_cb: pe callback for firmware Roam Sync events
  982. * @wmi_cmd_rsp_wake_lock: wmi command response wake lock
  983. * @wmi_cmd_rsp_runtime_lock: wmi command response bus lock
  984. * @active_uc_apf_mode: Setting that determines how APF is applied in
  985. * active mode for uc packets
  986. * @active_mc_bc_apf_mode: Setting that determines how APF is applied in
  987. * active mode for MC/BC packets
  988. * @ini_config: Initial configuration from upper layer
  989. * @saved_chan: saved channel list sent as part of
  990. * WMI_SCAN_CHAN_LIST_CMDID
  991. * @nan_datapath_enabled: Is NAN datapath support enabled in firmware?
  992. * @fw_timeout_crash: Should firmware be reset upon response timeout?
  993. * @sub_20_support: Does target support sub-20MHz bandwidth (aka
  994. * half-rate and quarter-rate)?
  995. * @is_dfs_offloaded: Is dfs and cac timer offloaded?
  996. * @wma_mgmt_tx_packetdump_cb: Callback function for TX packet dump
  997. * @wma_mgmt_rx_packetdump_cb: Callback function for RX packet dump
  998. * @rcpi_enabled: Is RCPI enabled?
  999. * @link_stats_results: Structure for handing link stats from firmware
  1000. * @tx_fail_cnt: Number of TX failures
  1001. * @wlm_data: Data required for WLM req and resp handling
  1002. * @he_cap: 802.11ax capabilities
  1003. * @bandcapability: band capability configured through ini
  1004. * @tx_bfee_8ss_enabled: Is Tx Beamformee support for 8x8 enabled?
  1005. * @in_imps: Is device in Idle Mode Power Save?
  1006. * @dynamic_nss_chains_update: per vdev nss, chains update
  1007. * @ito_repeat_count: Indicates ito repeated count
  1008. * @wma_fw_time_sync_timer: timer used for firmware time sync
  1009. * @critical_events_in_flight: number of suspend-preventing events
  1010. * in flight
  1011. * * @fw_therm_throt_support: FW Supports thermal throttling?
  1012. *
  1013. * This structure is the global wma context. It contains global wma
  1014. * module parameters and handles of other modules.
  1015. */
  1016. typedef struct {
  1017. void *wmi_handle;
  1018. void *cds_context;
  1019. void *mac_context;
  1020. struct wlan_objmgr_psoc *psoc;
  1021. struct wlan_objmgr_pdev *pdev;
  1022. qdf_event_t target_suspend;
  1023. qdf_event_t runtime_suspend;
  1024. qdf_event_t recovery_event;
  1025. uint16_t max_station;
  1026. uint16_t max_bssid;
  1027. uint8_t myaddr[IEEE80211_ADDR_LEN];
  1028. uint8_t hwaddr[IEEE80211_ADDR_LEN];
  1029. #ifdef WLAN_FEATURE_LPSS
  1030. uint8_t lpss_support;
  1031. #endif
  1032. uint8_t ap_arpns_support;
  1033. bool wmi_ready;
  1034. uint32_t wlan_init_status;
  1035. qdf_device_t qdf_dev;
  1036. uint32_t wmi_service_bitmap[WMI_SERVICE_BM_SIZE];
  1037. uint32_t wmi_service_ext_bitmap[WMI_SERVICE_SEGMENT_BM_SIZE32];
  1038. wma_tx_dwnld_comp_callback tx_frm_download_comp_cb;
  1039. qdf_event_t tx_frm_download_comp_event;
  1040. qdf_event_t tx_queue_empty_event;
  1041. wma_tx_ota_comp_callback umac_data_ota_ack_cb;
  1042. unsigned long last_umac_data_ota_timestamp;
  1043. qdf_nbuf_t last_umac_data_nbuf;
  1044. bool needShutdown;
  1045. wma_tgt_cfg_cb tgt_cfg_update_cb;
  1046. HAL_REG_CAPABILITIES reg_cap;
  1047. uint32_t scan_id;
  1048. struct wma_txrx_node *interfaces;
  1049. pdev_cli_config_t pdevconfig;
  1050. qdf_list_t vdev_resp_queue;
  1051. qdf_spinlock_t vdev_respq_lock;
  1052. qdf_list_t wma_hold_req_queue;
  1053. qdf_spinlock_t wma_hold_req_q_lock;
  1054. uint32_t vht_supp_mcs;
  1055. uint8_t is_fw_assert;
  1056. struct wma_wow wow;
  1057. struct wma_tx_ack_work_ctx *ack_work_ctx;
  1058. uint8_t powersave_mode;
  1059. bool ptrn_match_enable_all_vdev;
  1060. void *pGetRssiReq;
  1061. bool get_one_peer_info;
  1062. bool get_sta_peer_info;
  1063. struct qdf_mac_addr peer_macaddr;
  1064. t_thermal_mgmt thermal_mgmt_info;
  1065. bool enable_mc_list;
  1066. uint8_t ibss_started;
  1067. tSetBssKeyParams ibsskey_info;
  1068. txFailIndCallback hddTxFailCb;
  1069. #ifdef FEATURE_WLAN_EXTSCAN
  1070. qdf_wake_lock_t extscan_wake_lock;
  1071. #endif
  1072. qdf_wake_lock_t wow_wake_lock;
  1073. qdf_wake_lock_t wow_auth_req_wl;
  1074. qdf_wake_lock_t wow_assoc_req_wl;
  1075. qdf_wake_lock_t wow_deauth_rec_wl;
  1076. qdf_wake_lock_t wow_disassoc_rec_wl;
  1077. qdf_wake_lock_t wow_ap_assoc_lost_wl;
  1078. qdf_wake_lock_t wow_auto_shutdown_wl;
  1079. qdf_wake_lock_t roam_ho_wl;
  1080. int wow_nack;
  1081. qdf_atomic_t is_wow_bus_suspended;
  1082. bool suitable_ap_hb_failure;
  1083. uint32_t suitable_ap_hb_failure_rssi;
  1084. ibss_power_save_params wma_ibss_power_save_params;
  1085. #ifdef WLAN_FEATURE_LPSS
  1086. bool is_lpass_enabled;
  1087. #endif
  1088. uint8_t staMaxLIModDtim;
  1089. uint8_t staModDtim;
  1090. uint8_t staDynamicDtim;
  1091. uint32_t hw_bd_id;
  1092. uint32_t hw_bd_info[HW_BD_INFO_SIZE];
  1093. uint32_t miracast_value;
  1094. qdf_mc_timer_t log_completion_timer;
  1095. uint32_t num_dbs_hw_modes;
  1096. struct dbs_hw_mode_info hw_mode;
  1097. uint32_t old_hw_mode_index;
  1098. uint32_t new_hw_mode_index;
  1099. wma_peer_authorized_fp peer_authorized_cb;
  1100. uint32_t wow_unspecified_wake_count;
  1101. struct sir_ocb_config *ocb_config_req;
  1102. uint16_t self_gen_frm_pwr;
  1103. bool tx_chain_mask_cck;
  1104. qdf_mc_timer_t service_ready_ext_timer;
  1105. QDF_STATUS (*csr_roam_synch_cb)(struct mac_context *mac,
  1106. struct roam_offload_synch_ind *roam_synch_data,
  1107. struct bss_description *bss_desc_ptr,
  1108. enum sir_roam_op_code reason);
  1109. QDF_STATUS (*pe_roam_synch_cb)(struct mac_context *mac,
  1110. struct roam_offload_synch_ind *roam_synch_data,
  1111. struct bss_description *bss_desc_ptr,
  1112. enum sir_roam_op_code reason);
  1113. qdf_wake_lock_t wmi_cmd_rsp_wake_lock;
  1114. qdf_runtime_lock_t wmi_cmd_rsp_runtime_lock;
  1115. enum active_apf_mode active_uc_apf_mode;
  1116. enum active_apf_mode active_mc_bc_apf_mode;
  1117. struct wma_ini_config ini_config;
  1118. struct wma_valid_channels saved_chan;
  1119. bool nan_datapath_enabled;
  1120. bool fw_timeout_crash;
  1121. bool sub_20_support;
  1122. bool is_dfs_offloaded;
  1123. tp_wma_packetdump_cb wma_mgmt_tx_packetdump_cb;
  1124. tp_wma_packetdump_cb wma_mgmt_rx_packetdump_cb;
  1125. bool rcpi_enabled;
  1126. tSirLLStatsResults *link_stats_results;
  1127. uint64_t tx_fail_cnt;
  1128. #ifdef FEATURE_WLM_STATS
  1129. struct wma_wlm_stats_data wlm_data;
  1130. #endif
  1131. #ifdef WLAN_FEATURE_11AX
  1132. struct he_capability he_cap;
  1133. #endif
  1134. uint8_t bandcapability;
  1135. bool tx_bfee_8ss_enabled;
  1136. bool in_imps;
  1137. bool dynamic_nss_chains_support;
  1138. uint8_t ito_repeat_count;
  1139. qdf_mc_timer_t wma_fw_time_sync_timer;
  1140. qdf_atomic_t critical_events_in_flight;
  1141. bool fw_therm_throt_support;
  1142. } t_wma_handle, *tp_wma_handle;
  1143. /**
  1144. * wma_vdev_nss_chain_params_send() - send vdev nss chain params to fw.
  1145. * @vdev_id: vdev_id
  1146. * @user_cfg: pointer to the params structure
  1147. *
  1148. * This function sends nss chain params to the fw
  1149. *
  1150. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_FAILURE on error
  1151. */
  1152. QDF_STATUS
  1153. wma_vdev_nss_chain_params_send(uint8_t vdev_id,
  1154. struct wlan_mlme_nss_chains *user_cfg);
  1155. /**
  1156. * wma_send_regdomain_info_to_fw() - send regdomain info to fw
  1157. * @reg_dmn: reg domain
  1158. * @regdmn2G: 2G reg domain
  1159. * @regdmn5G: 5G reg domain
  1160. * @ctl2G: 2G test limit
  1161. * @ctl5G: 5G test limit
  1162. *
  1163. * Return: none
  1164. */
  1165. void wma_send_regdomain_info_to_fw(uint32_t reg_dmn, uint16_t regdmn2G,
  1166. uint16_t regdmn5G, uint8_t ctl2G,
  1167. uint8_t ctl5G);
  1168. /**
  1169. * enum frame_index - Frame index
  1170. * @GENERIC_NODOWNLD_NOACK_COMP_INDEX: Frame index for no download comp no ack
  1171. * @GENERIC_DOWNLD_COMP_NOACK_COMP_INDEX: Frame index for download comp no ack
  1172. * @GENERIC_DOWNLD_COMP_ACK_COMP_INDEX: Frame index for download comp and ack
  1173. * @GENERIC_NODOWLOAD_ACK_COMP_INDEX: Frame index for no download comp and ack
  1174. * @FRAME_INDEX_MAX: maximum frame index
  1175. */
  1176. enum frame_index {
  1177. GENERIC_NODOWNLD_NOACK_COMP_INDEX,
  1178. GENERIC_DOWNLD_COMP_NOACK_COMP_INDEX,
  1179. GENERIC_DOWNLD_COMP_ACK_COMP_INDEX,
  1180. GENERIC_NODOWLOAD_ACK_COMP_INDEX,
  1181. FRAME_INDEX_MAX
  1182. };
  1183. /**
  1184. * struct wma_tx_ack_work_ctx - tx ack work context
  1185. * @wma_handle: wma handle
  1186. * @sub_type: sub type
  1187. * @status: status
  1188. * @ack_cmp_work: work structure
  1189. */
  1190. struct wma_tx_ack_work_ctx {
  1191. tp_wma_handle wma_handle;
  1192. uint16_t sub_type;
  1193. int32_t status;
  1194. qdf_work_t ack_cmp_work;
  1195. };
  1196. /**
  1197. * struct wma_target_req - target request parameters
  1198. * @event_timeout: event timeout
  1199. * @node: list
  1200. * @user_data: user data
  1201. * @msg_type: message type
  1202. * @vdev_id: vdev id
  1203. * @type: type
  1204. */
  1205. struct wma_target_req {
  1206. qdf_mc_timer_t event_timeout;
  1207. qdf_list_node_t node;
  1208. void *user_data;
  1209. uint32_t msg_type;
  1210. uint8_t vdev_id;
  1211. uint8_t type;
  1212. };
  1213. /**
  1214. * struct wma_vdev_start_req - vdev start request parameters
  1215. * @beacon_intval: beacon interval
  1216. * @dtim_period: dtim period
  1217. * @max_txpow: max tx power
  1218. * @chan_offset: channel offset
  1219. * @is_dfs: is dfs supported or not
  1220. * @vdev_id: vdev id
  1221. * @chan: channel
  1222. * @oper_mode: operating mode
  1223. * @ssid: ssid
  1224. * @hidden_ssid: hidden ssid
  1225. * @pmf_enabled: is pmf enabled or not
  1226. * @vht_capable: VHT capabality
  1227. * @ht_capable: HT capabality
  1228. * @dot11_mode: 802.11 mode
  1229. * @is_half_rate: is the channel operating at 10MHz
  1230. * @is_quarter_rate: is the channel operating at 5MHz
  1231. * @preferred_tx_streams: policy manager indicates the preferred
  1232. * number of transmit streams
  1233. * @preferred_rx_streams: policy manager indicates the preferred
  1234. * number of receive streams
  1235. * @beacon_tx_rate: beacon tx rate
  1236. * @he_capable: HE capability
  1237. * @he_ops: HE operation
  1238. * @cac_duration_ms: cac duration in milliseconds
  1239. * @dfs_regdomain: dfs region
  1240. */
  1241. struct wma_vdev_start_req {
  1242. uint32_t beacon_intval;
  1243. uint32_t dtim_period;
  1244. int32_t max_txpow;
  1245. enum phy_ch_width chan_width;
  1246. bool is_dfs;
  1247. uint8_t vdev_id;
  1248. uint8_t chan;
  1249. uint8_t oper_mode;
  1250. tSirMacSSid ssid;
  1251. uint8_t hidden_ssid;
  1252. uint8_t pmf_enabled;
  1253. uint8_t vht_capable;
  1254. uint8_t ch_center_freq_seg0;
  1255. uint8_t ch_center_freq_seg1;
  1256. uint8_t ht_capable;
  1257. uint8_t dot11_mode;
  1258. bool is_half_rate;
  1259. bool is_quarter_rate;
  1260. uint32_t preferred_tx_streams;
  1261. uint32_t preferred_rx_streams;
  1262. uint16_t beacon_tx_rate;
  1263. #ifdef WLAN_FEATURE_11AX
  1264. bool he_capable;
  1265. uint32_t he_ops;
  1266. #endif
  1267. uint32_t cac_duration_ms;
  1268. uint32_t dfs_regdomain;
  1269. };
  1270. /**
  1271. * struct wma_set_key_params - set key parameters
  1272. * @vdev_id: vdev id
  1273. * @def_key_idx: used to see if we have to read the key from cfg
  1274. * @key_len: key length
  1275. * @peer_mac: peer mac address
  1276. * @singl_tid_rc: 1=Single TID based Replay Count, 0=Per TID based RC
  1277. * @key_type: key type
  1278. * @key_idx: key index
  1279. * @unicast: unicast flag
  1280. * @key_data: key data
  1281. */
  1282. struct wma_set_key_params {
  1283. uint8_t vdev_id;
  1284. /* def_key_idx can be used to see if we have to read the key from cfg */
  1285. uint32_t def_key_idx;
  1286. uint16_t key_len;
  1287. uint8_t peer_mac[IEEE80211_ADDR_LEN];
  1288. uint8_t singl_tid_rc;
  1289. enum eAniEdType key_type;
  1290. uint32_t key_idx;
  1291. bool unicast;
  1292. uint8_t key_data[SIR_MAC_MAX_KEY_LENGTH];
  1293. uint8_t key_rsc[WLAN_CRYPTO_RSC_SIZE];
  1294. };
  1295. /**
  1296. * struct t_thermal_cmd_params - thermal command parameters
  1297. * @minTemp: minimum temprature
  1298. * @maxTemp: maximum temprature
  1299. * @thermalEnable: thermal enable
  1300. */
  1301. typedef struct {
  1302. uint16_t minTemp;
  1303. uint16_t maxTemp;
  1304. uint8_t thermalEnable;
  1305. } t_thermal_cmd_params, *tp_thermal_cmd_params;
  1306. /**
  1307. * enum wma_cfg_cmd_id - wma cmd ids
  1308. * @WMA_VDEV_TXRX_FWSTATS_ENABLE_CMDID: txrx firmware stats enable command
  1309. * @WMA_VDEV_TXRX_FWSTATS_RESET_CMDID: txrx firmware stats reset command
  1310. * @WMA_VDEV_MCC_SET_TIME_LATENCY: set MCC latency time
  1311. * @WMA_VDEV_MCC_SET_TIME_QUOTA: set MCC time quota
  1312. * @WMA_VDEV_IBSS_SET_ATIM_WINDOW_SIZE: set IBSS ATIM window size
  1313. * @WMA_VDEV_IBSS_SET_POWER_SAVE_ALLOWED: set IBSS enable power save
  1314. * @WMA_VDEV_IBSS_SET_POWER_COLLAPSE_ALLOWED: set IBSS power collapse enable
  1315. * @WMA_VDEV_IBSS_SET_AWAKE_ON_TX_RX: awake IBSS on TX/RX
  1316. * @WMA_VDEV_IBSS_SET_INACTIVITY_TIME: set IBSS inactivity time
  1317. * @WMA_VDEV_IBSS_SET_TXSP_END_INACTIVITY_TIME: set IBSS TXSP
  1318. * @WMA_VDEV_IBSS_PS_SET_WARMUP_TIME_SECS: set IBSS power save warmup time
  1319. * @WMA_VDEV_IBSS_PS_SET_1RX_CHAIN_IN_ATIM_WINDOW: set IBSS power save ATIM
  1320. * @WMA_VDEV_TXRX_GET_IPA_UC_FW_STATS_CMDID: get IPA microcontroller fw stats
  1321. * @WMA_VDEV_TXRX_GET_IPA_UC_SHARING_STATS_CMDID: get IPA uC wifi-sharing stats
  1322. * @WMA_VDEV_TXRX_SET_IPA_UC_QUOTA_CMDID: set IPA uC quota limit
  1323. *
  1324. * wma command ids for configuration request which
  1325. * does not involve sending a wmi command.
  1326. */
  1327. enum wma_cfg_cmd_id {
  1328. WMA_VDEV_TXRX_FWSTATS_ENABLE_CMDID = WMI_CMDID_MAX,
  1329. WMA_VDEV_TXRX_FWSTATS_RESET_CMDID,
  1330. WMA_VDEV_MCC_SET_TIME_LATENCY,
  1331. WMA_VDEV_MCC_SET_TIME_QUOTA,
  1332. WMA_VDEV_IBSS_SET_ATIM_WINDOW_SIZE,
  1333. WMA_VDEV_IBSS_SET_POWER_SAVE_ALLOWED,
  1334. WMA_VDEV_IBSS_SET_POWER_COLLAPSE_ALLOWED,
  1335. WMA_VDEV_IBSS_SET_AWAKE_ON_TX_RX,
  1336. WMA_VDEV_IBSS_SET_INACTIVITY_TIME,
  1337. WMA_VDEV_IBSS_SET_TXSP_END_INACTIVITY_TIME,
  1338. WMA_VDEV_IBSS_PS_SET_WARMUP_TIME_SECS,
  1339. WMA_VDEV_IBSS_PS_SET_1RX_CHAIN_IN_ATIM_WINDOW,
  1340. WMA_VDEV_TXRX_GET_IPA_UC_FW_STATS_CMDID,
  1341. WMA_VDEV_TXRX_GET_IPA_UC_SHARING_STATS_CMDID,
  1342. WMA_VDEV_TXRX_SET_IPA_UC_QUOTA_CMDID,
  1343. WMA_CMD_ID_MAX
  1344. };
  1345. /**
  1346. * struct wma_trigger_uapsd_params - trigger uapsd parameters
  1347. * @wmm_ac: wmm access category
  1348. * @user_priority: user priority
  1349. * @service_interval: service interval
  1350. * @suspend_interval: suspend interval
  1351. * @delay_interval: delay interval
  1352. */
  1353. typedef struct wma_trigger_uapsd_params {
  1354. uint32_t wmm_ac;
  1355. uint32_t user_priority;
  1356. uint32_t service_interval;
  1357. uint32_t suspend_interval;
  1358. uint32_t delay_interval;
  1359. } t_wma_trigger_uapsd_params, *tp_wma_trigger_uapsd_params;
  1360. /**
  1361. * enum uapsd_peer_param_max_sp - U-APSD maximum service period of peer station
  1362. * @UAPSD_MAX_SP_LEN_UNLIMITED: unlimited max service period
  1363. * @UAPSD_MAX_SP_LEN_2: max service period = 2
  1364. * @UAPSD_MAX_SP_LEN_4: max service period = 4
  1365. * @UAPSD_MAX_SP_LEN_6: max service period = 6
  1366. */
  1367. enum uapsd_peer_param_max_sp {
  1368. UAPSD_MAX_SP_LEN_UNLIMITED = 0,
  1369. UAPSD_MAX_SP_LEN_2 = 2,
  1370. UAPSD_MAX_SP_LEN_4 = 4,
  1371. UAPSD_MAX_SP_LEN_6 = 6
  1372. };
  1373. /**
  1374. * enum uapsd_peer_param_enabled_ac - U-APSD Enabled AC's of peer station
  1375. * @UAPSD_VO_ENABLED: enable uapsd for voice
  1376. * @UAPSD_VI_ENABLED: enable uapsd for video
  1377. * @UAPSD_BK_ENABLED: enable uapsd for background
  1378. * @UAPSD_BE_ENABLED: enable uapsd for best effort
  1379. */
  1380. enum uapsd_peer_param_enabled_ac {
  1381. UAPSD_VO_ENABLED = 0x01,
  1382. UAPSD_VI_ENABLED = 0x02,
  1383. UAPSD_BK_ENABLED = 0x04,
  1384. UAPSD_BE_ENABLED = 0x08
  1385. };
  1386. /**
  1387. * enum profile_id_t - Firmware profiling index
  1388. * @PROF_CPU_IDLE: cpu idle profile
  1389. * @PROF_PPDU_PROC: ppdu processing profile
  1390. * @PROF_PPDU_POST: ppdu post profile
  1391. * @PROF_HTT_TX_INPUT: htt tx input profile
  1392. * @PROF_MSDU_ENQ: msdu enqueue profile
  1393. * @PROF_PPDU_POST_HAL: ppdu post profile
  1394. * @PROF_COMPUTE_TX_TIME: tx time profile
  1395. * @PROF_MAX_ID: max profile index
  1396. */
  1397. enum profile_id_t {
  1398. PROF_CPU_IDLE,
  1399. PROF_PPDU_PROC,
  1400. PROF_PPDU_POST,
  1401. PROF_HTT_TX_INPUT,
  1402. PROF_MSDU_ENQ,
  1403. PROF_PPDU_POST_HAL,
  1404. PROF_COMPUTE_TX_TIME,
  1405. PROF_MAX_ID,
  1406. };
  1407. /**
  1408. * struct p2p_ie - P2P IE structural definition.
  1409. * @p2p_id: p2p id
  1410. * @p2p_len: p2p length
  1411. * @p2p_oui: p2p OUI
  1412. * @p2p_oui_type: p2p OUI type
  1413. */
  1414. struct p2p_ie {
  1415. uint8_t p2p_id;
  1416. uint8_t p2p_len;
  1417. uint8_t p2p_oui[3];
  1418. uint8_t p2p_oui_type;
  1419. } __packed;
  1420. /**
  1421. * struct p2p_noa_descriptor - noa descriptor
  1422. * @type_count: 255: continuous schedule, 0: reserved
  1423. * @duration: Absent period duration in micro seconds
  1424. * @interval: Absent period interval in micro seconds
  1425. * @start_time: 32 bit tsf time when in starts
  1426. */
  1427. struct p2p_noa_descriptor {
  1428. uint8_t type_count;
  1429. uint32_t duration;
  1430. uint32_t interval;
  1431. uint32_t start_time;
  1432. } __packed;
  1433. /**
  1434. * struct p2p_sub_element_noa - p2p noa element
  1435. * @p2p_sub_id: p2p sub id
  1436. * @p2p_sub_len: p2p sub length
  1437. * @index: identifies instance of NOA su element
  1438. * @oppPS: oppPS state of the AP
  1439. * @ctwindow: ctwindow in TUs
  1440. * @num_descriptors: number of NOA descriptors
  1441. * @noa_descriptors: noa descriptors
  1442. */
  1443. struct p2p_sub_element_noa {
  1444. uint8_t p2p_sub_id;
  1445. uint8_t p2p_sub_len;
  1446. uint8_t index; /* identifies instance of NOA su element */
  1447. uint8_t oppPS:1, /* oppPS state of the AP */
  1448. ctwindow:7; /* ctwindow in TUs */
  1449. uint8_t num_descriptors; /* number of NOA descriptors */
  1450. struct p2p_noa_descriptor noa_descriptors[WMA_MAX_NOA_DESCRIPTORS];
  1451. };
  1452. /**
  1453. * struct wma_decap_info_t - decapsulation info
  1454. * @hdr: header
  1455. * @hdr_len: header length
  1456. */
  1457. struct wma_decap_info_t {
  1458. uint8_t hdr[sizeof(struct ieee80211_qosframe_addr4)];
  1459. int32_t hdr_len;
  1460. };
  1461. /**
  1462. * enum packet_power_save - packet power save params
  1463. * @WMI_VDEV_PPS_PAID_MATCH: paid match param
  1464. * @WMI_VDEV_PPS_GID_MATCH: gid match param
  1465. * @WMI_VDEV_PPS_EARLY_TIM_CLEAR: early tim clear param
  1466. * @WMI_VDEV_PPS_EARLY_DTIM_CLEAR: early dtim clear param
  1467. * @WMI_VDEV_PPS_EOF_PAD_DELIM: eof pad delim param
  1468. * @WMI_VDEV_PPS_MACADDR_MISMATCH: macaddr mismatch param
  1469. * @WMI_VDEV_PPS_DELIM_CRC_FAIL: delim CRC fail param
  1470. * @WMI_VDEV_PPS_GID_NSTS_ZERO: gid nsts zero param
  1471. * @WMI_VDEV_PPS_RSSI_CHECK: RSSI check param
  1472. * @WMI_VDEV_PPS_5G_EBT: 5G ebt param
  1473. */
  1474. typedef enum {
  1475. WMI_VDEV_PPS_PAID_MATCH = 0,
  1476. WMI_VDEV_PPS_GID_MATCH = 1,
  1477. WMI_VDEV_PPS_EARLY_TIM_CLEAR = 2,
  1478. WMI_VDEV_PPS_EARLY_DTIM_CLEAR = 3,
  1479. WMI_VDEV_PPS_EOF_PAD_DELIM = 4,
  1480. WMI_VDEV_PPS_MACADDR_MISMATCH = 5,
  1481. WMI_VDEV_PPS_DELIM_CRC_FAIL = 6,
  1482. WMI_VDEV_PPS_GID_NSTS_ZERO = 7,
  1483. WMI_VDEV_PPS_RSSI_CHECK = 8,
  1484. WMI_VDEV_VHT_SET_GID_MGMT = 9,
  1485. WMI_VDEV_PPS_5G_EBT = 10
  1486. } packet_power_save;
  1487. /**
  1488. * enum green_tx_param - green tx parameters
  1489. * @WMI_VDEV_PARAM_GTX_HT_MCS: ht mcs param
  1490. * @WMI_VDEV_PARAM_GTX_VHT_MCS: vht mcs param
  1491. * @WMI_VDEV_PARAM_GTX_USR_CFG: user cfg param
  1492. * @WMI_VDEV_PARAM_GTX_THRE: thre param
  1493. * @WMI_VDEV_PARAM_GTX_MARGIN: green tx margin param
  1494. * @WMI_VDEV_PARAM_GTX_STEP: green tx step param
  1495. * @WMI_VDEV_PARAM_GTX_MINTPC: mintpc param
  1496. * @WMI_VDEV_PARAM_GTX_BW_MASK: bandwidth mask
  1497. */
  1498. typedef enum {
  1499. WMI_VDEV_PARAM_GTX_HT_MCS,
  1500. WMI_VDEV_PARAM_GTX_VHT_MCS,
  1501. WMI_VDEV_PARAM_GTX_USR_CFG,
  1502. WMI_VDEV_PARAM_GTX_THRE,
  1503. WMI_VDEV_PARAM_GTX_MARGIN,
  1504. WMI_VDEV_PARAM_GTX_STEP,
  1505. WMI_VDEV_PARAM_GTX_MINTPC,
  1506. WMI_VDEV_PARAM_GTX_BW_MASK,
  1507. } green_tx_param;
  1508. /**
  1509. * enum uapsd_ac - U-APSD Access Categories
  1510. * @UAPSD_BE: best effort
  1511. * @UAPSD_BK: back ground
  1512. * @UAPSD_VI: video
  1513. * @UAPSD_VO: voice
  1514. */
  1515. enum uapsd_ac {
  1516. UAPSD_BE,
  1517. UAPSD_BK,
  1518. UAPSD_VI,
  1519. UAPSD_VO
  1520. };
  1521. QDF_STATUS wma_disable_uapsd_per_ac(tp_wma_handle wma_handle,
  1522. uint32_t vdev_id, enum uapsd_ac ac);
  1523. /**
  1524. * enum uapsd_up - U-APSD User Priorities
  1525. * @UAPSD_UP_BE: best effort
  1526. * @UAPSD_UP_BK: back ground
  1527. * @UAPSD_UP_RESV: reserve
  1528. * @UAPSD_UP_EE: Excellent Effort
  1529. * @UAPSD_UP_CL: Critical Applications
  1530. * @UAPSD_UP_VI: video
  1531. * @UAPSD_UP_VO: voice
  1532. * @UAPSD_UP_NC: Network Control
  1533. */
  1534. enum uapsd_up {
  1535. UAPSD_UP_BE,
  1536. UAPSD_UP_BK,
  1537. UAPSD_UP_RESV,
  1538. UAPSD_UP_EE,
  1539. UAPSD_UP_CL,
  1540. UAPSD_UP_VI,
  1541. UAPSD_UP_VO,
  1542. UAPSD_UP_NC,
  1543. UAPSD_UP_MAX
  1544. };
  1545. /**
  1546. * struct wma_roam_invoke_cmd - roam invoke command
  1547. * @vdev_id: vdev id
  1548. * @bssid: mac address
  1549. * @channel: channel
  1550. * @frame_len: frame length, includs mac header, fixed params and ies
  1551. * @frame_buf: buffer contaning probe response or beacon
  1552. * @is_same_bssid: flag to indicate if roaming is requested for same bssid
  1553. */
  1554. struct wma_roam_invoke_cmd {
  1555. uint32_t vdev_id;
  1556. uint8_t bssid[IEEE80211_ADDR_LEN];
  1557. uint32_t channel;
  1558. uint32_t frame_len;
  1559. uint8_t *frame_buf;
  1560. uint8_t is_same_bssid;
  1561. };
  1562. /**
  1563. * struct wma_process_fw_event_params - fw event parameters
  1564. * @wmi_handle: wmi handle
  1565. * @evt_buf: event buffer
  1566. */
  1567. typedef struct {
  1568. void *wmi_handle;
  1569. void *evt_buf;
  1570. } wma_process_fw_event_params;
  1571. /**
  1572. * wma_process_fw_event_handler() - common event handler to serialize
  1573. * event processing through mc_thread
  1574. * @scn_handle: scn handle
  1575. * @ev: event buffer
  1576. * @rx_ctx: rx execution context
  1577. *
  1578. * Return: 0 on success, errno on failure
  1579. */
  1580. int wma_process_fw_event_handler(ol_scn_t scn_handle, void *ev,
  1581. uint8_t rx_ctx);
  1582. A_UINT32 e_csr_auth_type_to_rsn_authmode(eCsrAuthType authtype,
  1583. eCsrEncryptionType encr);
  1584. A_UINT32 e_csr_encryption_type_to_rsn_cipherset(eCsrEncryptionType encr);
  1585. QDF_STATUS wma_trigger_uapsd_params(tp_wma_handle wma_handle, uint32_t vdev_id,
  1586. tp_wma_trigger_uapsd_params
  1587. trigger_uapsd_params);
  1588. /* added to get average snr for both data and beacon */
  1589. QDF_STATUS wma_send_snr_request(tp_wma_handle wma_handle, void *pGetRssiReq);
  1590. void wma_send_flush_logs_to_fw(tp_wma_handle wma_handle);
  1591. void wma_log_completion_timeout(void *data);
  1592. #ifdef FEATURE_RSSI_MONITOR
  1593. /**
  1594. * wma_set_rssi_monitoring() - set rssi monitoring
  1595. * @handle: WMA handle
  1596. * @req: rssi monitoring request structure
  1597. *
  1598. * This function takes the incoming @req and sends it down to the
  1599. * firmware
  1600. *
  1601. * Return: QDF_STATUS
  1602. */
  1603. QDF_STATUS wma_set_rssi_monitoring(tp_wma_handle wma,
  1604. struct rssi_monitor_param *req);
  1605. #else /* FEATURE_RSSI_MONITOR */
  1606. static inline
  1607. QDF_STATUS wma_set_rssi_monitoring(tp_wma_handle wma,
  1608. struct rssi_monitor_param *req)
  1609. {
  1610. return QDF_STATUS_SUCCESS;
  1611. }
  1612. #endif /* FEATURE_RSSI_MONITOR */
  1613. QDF_STATUS wma_send_pdev_set_pcl_cmd(tp_wma_handle wma_handle,
  1614. struct set_pcl_req *msg);
  1615. QDF_STATUS wma_send_pdev_set_hw_mode_cmd(tp_wma_handle wma_handle,
  1616. struct policy_mgr_hw_mode *msg);
  1617. QDF_STATUS wma_send_pdev_set_dual_mac_config(tp_wma_handle wma_handle,
  1618. struct policy_mgr_dual_mac_config *msg);
  1619. QDF_STATUS wma_send_pdev_set_antenna_mode(tp_wma_handle wma_handle,
  1620. struct sir_antenna_mode_param *msg);
  1621. struct wma_target_req *wma_fill_vdev_req(tp_wma_handle wma,
  1622. uint8_t vdev_id,
  1623. uint32_t msg_type, uint8_t type,
  1624. void *params, uint32_t timeout);
  1625. struct wma_target_req *wma_fill_hold_req(tp_wma_handle wma,
  1626. uint8_t vdev_id, uint32_t msg_type,
  1627. uint8_t type, void *params,
  1628. uint32_t timeout);
  1629. QDF_STATUS wma_vdev_start(tp_wma_handle wma,
  1630. struct wma_vdev_start_req *req, bool isRestart);
  1631. void wma_remove_vdev_req(tp_wma_handle wma, uint8_t vdev_id,
  1632. uint8_t type);
  1633. int wma_mgmt_tx_completion_handler(void *handle, uint8_t *cmpl_event_params,
  1634. uint32_t len);
  1635. int wma_mgmt_tx_bundle_completion_handler(void *handle,
  1636. uint8_t *cmpl_event_params, uint32_t len);
  1637. uint32_t wma_get_vht_ch_width(void);
  1638. QDF_STATUS
  1639. wma_config_debug_module_cmd(wmi_unified_t wmi_handle, A_UINT32 param,
  1640. A_UINT32 val, A_UINT32 *module_id_bitmap,
  1641. A_UINT32 bitmap_len);
  1642. #ifdef FEATURE_LFR_SUBNET_DETECTION
  1643. /**
  1644. * wma_set_gateway_params() - set gateway parameters
  1645. * @wma: WMA handle
  1646. * @req: gateway update request parameter structure
  1647. *
  1648. * This function takes the incoming @req and sends it down to the
  1649. * firmware
  1650. *
  1651. * Return: QDF_STATUS
  1652. */
  1653. QDF_STATUS wma_set_gateway_params(tp_wma_handle wma,
  1654. struct gateway_update_req_param *req);
  1655. #else
  1656. static inline
  1657. QDF_STATUS wma_set_gateway_params(tp_wma_handle wma,
  1658. struct gateway_update_req_param *req)
  1659. {
  1660. return QDF_STATUS_SUCCESS;
  1661. }
  1662. #endif /* FEATURE_LFR_SUBNET_DETECTION */
  1663. QDF_STATUS wma_lro_config_cmd(void *handle,
  1664. struct cdp_lro_hash_config *wma_lro_cmd);
  1665. void
  1666. wma_indicate_err(enum ol_rx_err_type err_type,
  1667. struct ol_error_info *err_info);
  1668. /**
  1669. * wma_rx_mic_error_ind() - indicate mic error to the protocol stack
  1670. * @scn_handle: pdev handle from osif layer
  1671. * @vdev_id: vdev id
  1672. * @wh: pointer to ieee80211_frame structure
  1673. *
  1674. * This function indicates TKIP MIC errors encountered in the RX data path
  1675. * to the protocol stack
  1676. *
  1677. * Return: none
  1678. */
  1679. void wma_rx_mic_error_ind(void *scn_handle, uint16_t vdev_id, void *wh);
  1680. QDF_STATUS wma_ht40_stop_obss_scan(tp_wma_handle wma_handle,
  1681. int32_t vdev_id);
  1682. void wma_process_fw_test_cmd(WMA_HANDLE handle,
  1683. struct set_fwtest_params *wma_fwtest);
  1684. QDF_STATUS wma_send_ht40_obss_scanind(tp_wma_handle wma,
  1685. struct obss_ht40_scanind *req);
  1686. uint32_t wma_get_num_of_setbits_from_bitmask(uint32_t mask);
  1687. #ifdef FEATURE_WLAN_APF
  1688. /**
  1689. * wma_get_apf_caps_event_handler() - Event handler for get apf capability
  1690. * @handle: WMA global handle
  1691. * @cmd_param_info: command event data
  1692. * @len: Length of @cmd_param_info
  1693. *
  1694. * Return: 0 on Success or Errno on failure
  1695. */
  1696. int wma_get_apf_caps_event_handler(void *handle,
  1697. u_int8_t *cmd_param_info,
  1698. u_int32_t len);
  1699. /**
  1700. * wma_get_apf_capabilities - Send get apf capability to firmware
  1701. * @wma_handle: wma handle
  1702. *
  1703. * Return: QDF_STATUS enumeration.
  1704. */
  1705. QDF_STATUS wma_get_apf_capabilities(tp_wma_handle wma);
  1706. /**
  1707. * wma_set_apf_instructions - Set apf instructions to firmware
  1708. * @wma: wma handle
  1709. * @apf_set_offload: APF offload information to set to firmware
  1710. *
  1711. * Return: QDF_STATUS enumeration
  1712. */
  1713. QDF_STATUS
  1714. wma_set_apf_instructions(tp_wma_handle wma,
  1715. struct sir_apf_set_offload *apf_set_offload);
  1716. /**
  1717. * wma_send_apf_enable_cmd - Send apf enable/disable cmd
  1718. * @wma_handle: wma handle
  1719. * @vdev_id: vdev id
  1720. * @apf_enable: true: Enable APF Int., false: Disable APF Int.
  1721. *
  1722. * Return: QDF_STATUS enumeration.
  1723. */
  1724. QDF_STATUS wma_send_apf_enable_cmd(WMA_HANDLE handle, uint8_t vdev_id,
  1725. bool apf_enable);
  1726. /**
  1727. * wma_send_apf_write_work_memory_cmd - Command to write into the apf work
  1728. * memory
  1729. * @wma_handle: wma handle
  1730. * @write_params: APF parameters for the write operation
  1731. *
  1732. * Return: QDF_STATUS enumeration.
  1733. */
  1734. QDF_STATUS
  1735. wma_send_apf_write_work_memory_cmd(WMA_HANDLE handle,
  1736. struct wmi_apf_write_memory_params
  1737. *write_params);
  1738. /**
  1739. * wma_send_apf_read_work_memory_cmd - Command to get part of apf work memory
  1740. * @wma_handle: wma handle
  1741. * @callback: HDD callback to receive apf get mem event
  1742. * @context: Context for the HDD callback
  1743. * @read_params: APF parameters for the get operation
  1744. *
  1745. * Return: QDF_STATUS enumeration.
  1746. */
  1747. QDF_STATUS
  1748. wma_send_apf_read_work_memory_cmd(WMA_HANDLE handle,
  1749. struct wmi_apf_read_memory_params
  1750. *read_params);
  1751. /**
  1752. * wma_apf_read_work_memory_event_handler - Event handler for get apf mem
  1753. * operation
  1754. * @handle: wma handle
  1755. * @evt_buf: Buffer pointer to the event
  1756. * @len: Length of the event buffer
  1757. *
  1758. * Return: status.
  1759. */
  1760. int wma_apf_read_work_memory_event_handler(void *handle, uint8_t *evt_buf,
  1761. uint32_t len);
  1762. #else /* FEATURE_WLAN_APF */
  1763. static inline QDF_STATUS wma_get_apf_capabilities(tp_wma_handle wma)
  1764. {
  1765. return QDF_STATUS_SUCCESS;
  1766. }
  1767. static inline QDF_STATUS
  1768. wma_set_apf_instructions(tp_wma_handle wma,
  1769. struct sir_apf_set_offload *apf_set_offload)
  1770. {
  1771. return QDF_STATUS_SUCCESS;
  1772. }
  1773. #endif /* FEATURE_WLAN_APF */
  1774. void wma_process_set_pdev_ie_req(tp_wma_handle wma,
  1775. struct set_ie_param *ie_params);
  1776. void wma_process_set_pdev_ht_ie_req(tp_wma_handle wma,
  1777. struct set_ie_param *ie_params);
  1778. void wma_process_set_pdev_vht_ie_req(tp_wma_handle wma,
  1779. struct set_ie_param *ie_params);
  1780. QDF_STATUS wma_remove_peer(tp_wma_handle wma, uint8_t *bssid,
  1781. uint8_t vdev_id, void *peer,
  1782. bool roam_synch_in_progress);
  1783. QDF_STATUS wma_create_peer(tp_wma_handle wma, struct cdp_pdev *pdev,
  1784. struct cdp_vdev *vdev, uint8_t peer_addr[6],
  1785. u_int32_t peer_type, u_int8_t vdev_id,
  1786. bool roam_synch_in_progress);
  1787. QDF_STATUS wma_peer_unmap_conf_cb(uint8_t vdev_id,
  1788. uint32_t peer_id_cnt,
  1789. uint16_t *peer_id_list);
  1790. /**
  1791. * wma_get_cca_stats() - send request to fw to get CCA
  1792. * @wmi_hdl: wma handle
  1793. * @vdev_id: vdev id
  1794. *
  1795. * Return: QDF status
  1796. */
  1797. QDF_STATUS wma_get_cca_stats(tp_wma_handle wma_handle,
  1798. uint8_t vdev_id);
  1799. struct wma_ini_config *wma_get_ini_handle(tp_wma_handle wma_handle);
  1800. WLAN_PHY_MODE wma_chan_phy_mode(uint8_t chan, enum phy_ch_width chan_width,
  1801. uint8_t dot11_mode);
  1802. #ifdef FEATURE_OEM_DATA_SUPPORT
  1803. QDF_STATUS wma_start_oem_data_req(tp_wma_handle wma_handle,
  1804. struct oem_data_req *oem_req);
  1805. #endif
  1806. QDF_STATUS wma_enable_disable_caevent_ind(tp_wma_handle wma_handle,
  1807. uint8_t val);
  1808. void wma_register_packetdump_callback(
  1809. tp_wma_packetdump_cb wma_mgmt_tx_packetdump_cb,
  1810. tp_wma_packetdump_cb wma_mgmt_rx_packetdump_cb);
  1811. void wma_deregister_packetdump_callback(void);
  1812. void wma_update_sta_inactivity_timeout(tp_wma_handle wma,
  1813. struct sme_sta_inactivity_timeout *sta_inactivity_timer);
  1814. /**
  1815. * wma_form_rx_packet() - form rx cds packet
  1816. * @buf: buffer
  1817. * @mgmt_rx_params: mgmt rx params
  1818. * @rx_pkt: cds packet
  1819. *
  1820. * This functions forms a cds packet from the rx mgmt frame received.
  1821. *
  1822. * Return: 0 for success or error code
  1823. */
  1824. int wma_form_rx_packet(qdf_nbuf_t buf,
  1825. struct mgmt_rx_event_params *mgmt_rx_params,
  1826. cds_pkt_t *rx_pkt);
  1827. /**
  1828. * wma_mgmt_unified_cmd_send() - send the mgmt tx packet
  1829. * @vdev: objmgr vdev
  1830. * @buf: buffer
  1831. * @desc_id: desc id
  1832. * @mgmt_tx_params: mgmt rx params
  1833. *
  1834. * This functions sends mgmt tx packet to WMI layer.
  1835. *
  1836. * Return: 0 for success or error code
  1837. */
  1838. QDF_STATUS wma_mgmt_unified_cmd_send(struct wlan_objmgr_vdev *vdev,
  1839. qdf_nbuf_t buf, uint32_t desc_id,
  1840. void *mgmt_tx_params);
  1841. /**
  1842. * wma_mgmt_nbuf_unmap_cb() - dma unmap for pending mgmt pkts
  1843. * @pdev: objmgr pdev
  1844. * @buf: buffer
  1845. *
  1846. * This function does the dma unmap of the pending mgmt packet cleanup
  1847. *
  1848. * Return: None
  1849. */
  1850. #ifndef CONFIG_HL_SUPPORT
  1851. void wma_mgmt_nbuf_unmap_cb(struct wlan_objmgr_pdev *pdev,
  1852. qdf_nbuf_t buf);
  1853. #else
  1854. static inline void wma_mgmt_nbuf_unmap_cb(struct wlan_objmgr_pdev *pdev,
  1855. qdf_nbuf_t buf)
  1856. {}
  1857. #endif
  1858. /**
  1859. * wma_chan_info_event_handler() - chan info event handler
  1860. * @handle: wma handle
  1861. * @event_buf: event handler data
  1862. * @len: length of @event_buf
  1863. *
  1864. * this function will handle the WMI_CHAN_INFO_EVENTID
  1865. *
  1866. * Return: int
  1867. */
  1868. int wma_chan_info_event_handler(void *handle, uint8_t *event_buf,
  1869. uint32_t len);
  1870. #ifdef CONFIG_VDEV_SM
  1871. static inline
  1872. void wma_vdev_set_mlme_state_stop(tp_wma_handle wma, uint8_t vdev_id) {}
  1873. static inline
  1874. void wma_vdev_set_mlme_state_run(tp_wma_handle wma, uint8_t vdev_id) {}
  1875. #else
  1876. /**
  1877. * wma_vdev_set_mlme_state() - Set vdev mlme state
  1878. * @wma: wma handle
  1879. * @vdev_id: the Id of the vdev to configure
  1880. * @state: vdev state
  1881. *
  1882. * Return: None
  1883. */
  1884. static inline
  1885. void wma_vdev_set_mlme_state(tp_wma_handle wma, uint8_t vdev_id,
  1886. enum wlan_vdev_state state)
  1887. {
  1888. struct wlan_objmgr_vdev *vdev;
  1889. if (!wma) {
  1890. WMA_LOGE("%s: WMA context is invald!", __func__);
  1891. return;
  1892. }
  1893. vdev = wlan_objmgr_get_vdev_by_id_from_psoc(wma->psoc, vdev_id,
  1894. WLAN_LEGACY_WMA_ID);
  1895. if (vdev) {
  1896. wlan_vdev_obj_lock(vdev);
  1897. wlan_vdev_mlme_set_state(vdev, state);
  1898. wlan_vdev_obj_unlock(vdev);
  1899. wlan_objmgr_vdev_release_ref(vdev, WLAN_LEGACY_WMA_ID);
  1900. }
  1901. }
  1902. /**
  1903. * wma_vdev_set_mlme_state_stop() - Set vdev mlme state to stop
  1904. * @wma: wma handle
  1905. * @vdev_id: the Id of the vdev to configure
  1906. *
  1907. * Return: None
  1908. */
  1909. static inline
  1910. void wma_vdev_set_mlme_state_stop(tp_wma_handle wma, uint8_t vdev_id)
  1911. {
  1912. wma_vdev_set_mlme_state(wma, vdev_id, WLAN_VDEV_S_STOP);
  1913. }
  1914. /**
  1915. * wma_vdev_set_mlme_state_run() - Set vdev mlme state to run
  1916. * @wma: wma handle
  1917. * @vdev_id: the Id of the vdev to configure
  1918. *
  1919. * Return: None
  1920. */
  1921. static inline
  1922. void wma_vdev_set_mlme_state_run(tp_wma_handle wma, uint8_t vdev_id)
  1923. {
  1924. wma_vdev_set_mlme_state(wma, vdev_id, WLAN_VDEV_S_RUN);
  1925. }
  1926. #endif
  1927. /**
  1928. * wma_update_vdev_pause_bitmap() - update vdev pause bitmap
  1929. * @vdev_id: the Id of the vdev to configure
  1930. * @value: value pause bitmap value
  1931. *
  1932. * Return: None
  1933. */
  1934. static inline
  1935. void wma_vdev_update_pause_bitmap(uint8_t vdev_id, uint16_t value)
  1936. {
  1937. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  1938. struct wma_txrx_node *iface;
  1939. if (!wma) {
  1940. WMA_LOGE("%s: WMA context is invald!", __func__);
  1941. return;
  1942. }
  1943. if (vdev_id >= wma->max_bssid) {
  1944. WMA_LOGE("%s: Invalid vdev_id: %d", __func__, vdev_id);
  1945. return;
  1946. }
  1947. iface = &wma->interfaces[vdev_id];
  1948. if (!iface) {
  1949. WMA_LOGE("%s: Failed to get iface: NULL",
  1950. __func__);
  1951. return;
  1952. }
  1953. if (!iface->handle) {
  1954. WMA_LOGE("%s: Failed to get iface handle: NULL",
  1955. __func__);
  1956. return;
  1957. }
  1958. iface->pause_bitmap = value;
  1959. }
  1960. /**
  1961. * wma_vdev_get_pause_bitmap() - Get vdev pause bitmap
  1962. * @vdev_id: the Id of the vdev to configure
  1963. *
  1964. * Return: Vdev pause bitmap value else 0 on error
  1965. */
  1966. static inline
  1967. uint16_t wma_vdev_get_pause_bitmap(uint8_t vdev_id)
  1968. {
  1969. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  1970. struct wma_txrx_node *iface;
  1971. if (!wma) {
  1972. WMA_LOGE("%s: WMA context is invald!", __func__);
  1973. return 0;
  1974. }
  1975. iface = &wma->interfaces[vdev_id];
  1976. if (!iface) {
  1977. WMA_LOGE("%s: Failed to get iface: NULL",
  1978. __func__);
  1979. return 0;
  1980. }
  1981. if (!iface->handle) {
  1982. WMA_LOGE("%s: Failed to get iface handle: NULL",
  1983. __func__);
  1984. return 0;
  1985. }
  1986. return iface->pause_bitmap;
  1987. }
  1988. /**
  1989. * wma_vdev_get_dp_handle() - Get vdev datapth handle
  1990. * @vdev_id: the Id of the vdev to configure
  1991. *
  1992. * Return: Vdev datapath handle else NULL on error
  1993. */
  1994. static inline
  1995. struct cdp_vdev *wma_vdev_get_vdev_dp_handle(uint8_t vdev_id)
  1996. {
  1997. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  1998. struct wma_txrx_node *iface;
  1999. if (!wma) {
  2000. WMA_LOGE("%s: WMA context is invald!", __func__);
  2001. return NULL;
  2002. }
  2003. if (vdev_id >= wma->max_bssid)
  2004. return NULL;
  2005. iface = &wma->interfaces[vdev_id];
  2006. if (!iface) {
  2007. WMA_LOGE("%s: Failed to get iface: NULL",
  2008. __func__);
  2009. return NULL;
  2010. }
  2011. return iface->handle;
  2012. }
  2013. /**
  2014. * wma_vdev_is_device_in_low_pwr_mode - is device in power save mode
  2015. * @vdev_id: the Id of the vdev to configure
  2016. *
  2017. * Return: true if device is in low power mode else false
  2018. */
  2019. static inline bool wma_vdev_is_device_in_low_pwr_mode(uint8_t vdev_id)
  2020. {
  2021. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  2022. struct wma_txrx_node *iface;
  2023. if (!wma) {
  2024. WMA_LOGE("%s: WMA context is invald!", __func__);
  2025. return 0;
  2026. }
  2027. iface = &wma->interfaces[vdev_id];
  2028. if (!iface) {
  2029. WMA_LOGE("%s: Failed to get iface: NULL",
  2030. __func__);
  2031. return 0;
  2032. }
  2033. if (!iface->handle) {
  2034. WMA_LOGE("%s: Failed to get iface handle:NULL",
  2035. __func__);
  2036. return 0;
  2037. }
  2038. return iface->in_bmps || wma->in_imps;
  2039. }
  2040. /**
  2041. * wma_vdev_get_dtim_period - Get dtim period value from mlme
  2042. * @vdev_id: vdev index number
  2043. * @value: pointer to the value to fill out
  2044. *
  2045. * Note caller must verify return status before using value
  2046. *
  2047. * Return: QDF_STATUS_SUCCESS when fetched a valid value from cfg else
  2048. * QDF_STATUS_E_FAILURE
  2049. */
  2050. static inline
  2051. QDF_STATUS wma_vdev_get_dtim_period(uint8_t vdev_id, uint8_t *value)
  2052. {
  2053. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  2054. struct wma_txrx_node *iface;
  2055. /* set value to zero */
  2056. *value = 0;
  2057. if (!wma)
  2058. return QDF_STATUS_E_FAILURE;
  2059. iface = &wma->interfaces[vdev_id];
  2060. if (!iface || !iface->handle)
  2061. return QDF_STATUS_E_FAILURE;
  2062. *value = iface->dtimPeriod;
  2063. return QDF_STATUS_SUCCESS;
  2064. }
  2065. /**
  2066. * wma_vdev_get_beacon_interval - Get beacon interval from mlme
  2067. * @vdev_id: vdev index number
  2068. * @value: pointer to the value to fill out
  2069. *
  2070. * Note caller must verify return status before using value
  2071. *
  2072. * Return: QDF_STATUS_SUCCESS when fetched a valid value from cfg else
  2073. * QDF_STATUS_E_FAILURE
  2074. */
  2075. static inline
  2076. QDF_STATUS wma_vdev_get_beacon_interval(uint8_t vdev_id, uint16_t *value)
  2077. {
  2078. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  2079. struct wma_txrx_node *iface;
  2080. /* set value to zero */
  2081. *value = 0;
  2082. if (!wma)
  2083. return QDF_STATUS_E_FAILURE;
  2084. iface = &wma->interfaces[vdev_id];
  2085. if (!iface || !iface->handle)
  2086. return QDF_STATUS_E_FAILURE;
  2087. *value = iface->beaconInterval;
  2088. return QDF_STATUS_SUCCESS;
  2089. }
  2090. /**
  2091. * wma_vdev_set_pause_bit() - Set a bit in vdev pause bitmap
  2092. * @vdev_id: the Id of the vdev to configure
  2093. * @bit_pos: set bit position in pause bitmap
  2094. *
  2095. * Return: None
  2096. */
  2097. static inline
  2098. void wma_vdev_set_pause_bit(uint8_t vdev_id, wmi_tx_pause_type bit_pos)
  2099. {
  2100. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  2101. struct wma_txrx_node *iface;
  2102. if (!wma) {
  2103. WMA_LOGE("%s: WMA context is invald!", __func__);
  2104. return;
  2105. }
  2106. iface = &wma->interfaces[vdev_id];
  2107. if (!iface) {
  2108. WMA_LOGE("%s: Failed to get iface: NULL",
  2109. __func__);
  2110. return;
  2111. }
  2112. if (!iface->handle) {
  2113. WMA_LOGE("%s: Failed to get iface handle: NULL",
  2114. __func__);
  2115. return;
  2116. }
  2117. iface->pause_bitmap |= (1 << bit_pos);
  2118. }
  2119. /**
  2120. * wma_vdev_clear_pause_bit() - Clear a bit from vdev pause bitmap
  2121. * @vdev_id: the Id of the vdev to configure
  2122. * @bit_pos: set bit position in pause bitmap
  2123. *
  2124. * Return: None
  2125. */
  2126. static inline
  2127. void wma_vdev_clear_pause_bit(uint8_t vdev_id, wmi_tx_pause_type bit_pos)
  2128. {
  2129. tp_wma_handle wma = (tp_wma_handle)cds_get_context(QDF_MODULE_ID_WMA);
  2130. struct wma_txrx_node *iface;
  2131. if (!wma) {
  2132. WMA_LOGE("%s: WMA context is invald!", __func__);
  2133. return;
  2134. }
  2135. iface = &wma->interfaces[vdev_id];
  2136. if (!iface) {
  2137. WMA_LOGE("%s: Failed to get iface: NULL",
  2138. __func__);
  2139. return;
  2140. }
  2141. if (!iface->handle) {
  2142. WMA_LOGE("%s: Failed to get iface handle: NULL",
  2143. __func__);
  2144. return;
  2145. }
  2146. iface->pause_bitmap &= ~(1 << bit_pos);
  2147. }
  2148. /**
  2149. * wma_process_roaming_config() - process roam request
  2150. * @wma_handle: wma handle
  2151. * @roam_req: roam request parameters
  2152. *
  2153. * Main routine to handle ROAM commands coming from CSR module.
  2154. *
  2155. * Return: QDF status
  2156. */
  2157. QDF_STATUS wma_process_roaming_config(tp_wma_handle wma_handle,
  2158. struct roam_offload_scan_req *roam_req);
  2159. #ifdef WMI_INTERFACE_EVENT_LOGGING
  2160. static inline void wma_print_wmi_cmd_log(uint32_t count,
  2161. qdf_abstract_print *print,
  2162. void *print_priv)
  2163. {
  2164. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2165. if (wma) {
  2166. print(print_priv, "Command Log (count %u)", count);
  2167. wmi_print_cmd_log(wma->wmi_handle, count, print, print_priv);
  2168. }
  2169. }
  2170. static inline void wma_print_wmi_cmd_tx_cmp_log(uint32_t count,
  2171. qdf_abstract_print *print,
  2172. void *print_priv)
  2173. {
  2174. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2175. if (wma) {
  2176. print(print_priv, "Command Tx Complete Log (count %u)", count);
  2177. wmi_print_cmd_tx_cmp_log(wma->wmi_handle, count, print,
  2178. print_priv);
  2179. }
  2180. }
  2181. static inline void wma_print_wmi_mgmt_cmd_log(uint32_t count,
  2182. qdf_abstract_print *print,
  2183. void *print_priv)
  2184. {
  2185. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2186. if (wma) {
  2187. print(print_priv, "Management Command Log (count %u)", count);
  2188. wmi_print_mgmt_cmd_log(wma->wmi_handle, count, print,
  2189. print_priv);
  2190. }
  2191. }
  2192. static inline void wma_print_wmi_mgmt_cmd_tx_cmp_log(uint32_t count,
  2193. qdf_abstract_print *print,
  2194. void *print_priv)
  2195. {
  2196. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2197. if (wma) {
  2198. print(print_priv,
  2199. "Management Command Tx Complete Log (count %u)", count);
  2200. wmi_print_mgmt_cmd_tx_cmp_log(wma->wmi_handle, count, print,
  2201. print_priv);
  2202. }
  2203. }
  2204. static inline void wma_print_wmi_event_log(uint32_t count,
  2205. qdf_abstract_print *print,
  2206. void *print_priv)
  2207. {
  2208. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2209. if (wma) {
  2210. print(print_priv, "Event Log (count %u)", count);
  2211. wmi_print_event_log(wma->wmi_handle, count, print, print_priv);
  2212. }
  2213. }
  2214. static inline void wma_print_wmi_rx_event_log(uint32_t count,
  2215. qdf_abstract_print *print,
  2216. void *print_priv)
  2217. {
  2218. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2219. if (wma) {
  2220. print(print_priv, "Rx Event Log (count %u)", count);
  2221. wmi_print_rx_event_log(wma->wmi_handle, count, print,
  2222. print_priv);
  2223. }
  2224. }
  2225. static inline void wma_print_wmi_mgmt_event_log(uint32_t count,
  2226. qdf_abstract_print *print,
  2227. void *print_priv)
  2228. {
  2229. t_wma_handle *wma = cds_get_context(QDF_MODULE_ID_WMA);
  2230. if (wma) {
  2231. print(print_priv, "Management Event Log (count %u)", count);
  2232. wmi_print_mgmt_event_log(wma->wmi_handle, count, print,
  2233. print_priv);
  2234. }
  2235. }
  2236. #else
  2237. static inline void wma_print_wmi_cmd_log(uint32_t count,
  2238. qdf_abstract_print *print,
  2239. void *print_priv)
  2240. {
  2241. }
  2242. static inline void wma_print_wmi_cmd_tx_cmp_log(uint32_t count,
  2243. qdf_abstract_print *print,
  2244. void *print_priv)
  2245. {
  2246. }
  2247. static inline void wma_print_wmi_mgmt_cmd_log(uint32_t count,
  2248. qdf_abstract_print *print,
  2249. void *print_priv)
  2250. {
  2251. }
  2252. static inline void wma_print_wmi_mgmt_cmd_tx_cmp_log(uint32_t count,
  2253. qdf_abstract_print *print,
  2254. void *print_priv)
  2255. {
  2256. }
  2257. static inline void wma_print_wmi_event_log(uint32_t count,
  2258. qdf_abstract_print *print,
  2259. void *print_priv)
  2260. {
  2261. }
  2262. static inline void wma_print_wmi_rx_event_log(uint32_t count,
  2263. qdf_abstract_print *print,
  2264. void *print_priv)
  2265. {
  2266. }
  2267. static inline void wma_print_wmi_mgmt_event_log(uint32_t count,
  2268. qdf_abstract_print *print,
  2269. void *print_priv)
  2270. {
  2271. }
  2272. #endif /* WMI_INTERFACE_EVENT_LOGGING */
  2273. /**
  2274. * wma_set_rx_reorder_timeout_val() - set rx recorder timeout value
  2275. * @wma_handle: pointer to wma handle
  2276. * @reorder_timeout: rx reorder timeout value
  2277. *
  2278. * Return: QDF_STATUS
  2279. */
  2280. QDF_STATUS wma_set_rx_reorder_timeout_val(tp_wma_handle wma_handle,
  2281. struct sir_set_rx_reorder_timeout_val *reorder_timeout);
  2282. /**
  2283. * wma_set_rx_blocksize() - set rx blocksize
  2284. * @wma_handle: pointer to wma handle
  2285. * @peer_rx_blocksize: rx blocksize for peer mac
  2286. *
  2287. * Return: QDF_STATUS_SUCCESS for success or error code.
  2288. */
  2289. QDF_STATUS wma_set_rx_blocksize(tp_wma_handle wma_handle,
  2290. struct sir_peer_set_rx_blocksize *peer_rx_blocksize);
  2291. /**
  2292. * wma_configure_smps_params() - Configures the smps parameters to set
  2293. * @vdev_id: Virtual device for the command
  2294. * @param_id: SMPS parameter ID
  2295. * @param_val: Value to be set for the parameter
  2296. * Return: QDF_STATUS_SUCCESS or non-zero on failure
  2297. */
  2298. QDF_STATUS wma_configure_smps_params(uint32_t vdev_id, uint32_t param_id,
  2299. uint32_t param_val);
  2300. /*
  2301. * wma_chip_power_save_failure_detected_handler() - chip pwr save fail detected
  2302. * event handler
  2303. * @handle: wma handle
  2304. * @cmd_param_info: event handler data
  2305. * @len: length of @cmd_param_info
  2306. *
  2307. * Return: QDF_STATUS_SUCCESS on success; error code otherwise
  2308. */
  2309. int wma_chip_power_save_failure_detected_handler(void *handle,
  2310. uint8_t *cmd_param_info,
  2311. uint32_t len);
  2312. /**
  2313. * wma_get_chain_rssi() - send wmi cmd to get chain rssi
  2314. * @wma_handle: wma handler
  2315. * @req_params: requset params
  2316. *
  2317. * Return: Return QDF_STATUS
  2318. */
  2319. QDF_STATUS wma_get_chain_rssi(tp_wma_handle wma_handle,
  2320. struct get_chain_rssi_req_params *req_params);
  2321. /**
  2322. * wma_config_bmiss_bcnt_params() - set bmiss config parameters
  2323. * @vdev_id: virtual device for the command
  2324. * @first_cnt: bmiss first value
  2325. * @final_cnt: bmiss final value
  2326. *
  2327. * Return: QDF_STATUS_SUCCESS or non-zero on failure
  2328. */
  2329. QDF_STATUS wma_config_bmiss_bcnt_params(uint32_t vdev_id, uint32_t first_cnt,
  2330. uint32_t final_cnt);
  2331. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  2332. /**
  2333. * wma_check_and_set_wake_timer(): checks all interfaces and if any interface
  2334. * has install_key pending, sets timer pattern in fw to wake up host after
  2335. * specified time has elapsed.
  2336. * @time: time after which host wants to be awaken.
  2337. *
  2338. * Return: None
  2339. */
  2340. void wma_check_and_set_wake_timer(uint32_t time);
  2341. #endif
  2342. /**
  2343. * wma_rx_invalid_peer_ind(): the callback for DP to notify WMA layer
  2344. * invalid peer data is received, this function will send message to
  2345. * lim module.
  2346. * @vdev_id: virtual device ID
  2347. * @wh: Pointer to 802.11 frame header
  2348. *
  2349. * Return: 0 for success or non-zero on failure
  2350. */
  2351. uint8_t wma_rx_invalid_peer_ind(uint8_t vdev_id, void *wh);
  2352. /**
  2353. * wma_get_psoc_from_scn_handle() - API to get psoc from scn handle
  2354. * @scn_handle: opaque wma handle
  2355. *
  2356. * API to get psoc from scn handle
  2357. *
  2358. * Return: psoc context or null in case of failure
  2359. */
  2360. struct wlan_objmgr_psoc *wma_get_psoc_from_scn_handle(void *scn_handle);
  2361. #ifdef CRYPTO_SET_KEY_CONVERGED
  2362. /**
  2363. * wma_update_set_key() - Update WMA layer for set key
  2364. * @session_id: vdev session identifier
  2365. * @pairwise: denotes if it is pairwise or group key
  2366. * @key_index: Key Index
  2367. * @cipher_type: cipher type being used for the encryption/decryption
  2368. *
  2369. * Return: None
  2370. */
  2371. void wma_update_set_key(uint8_t session_id, bool pairwise,
  2372. uint8_t key_index,
  2373. enum wlan_crypto_cipher_type cipher_type);
  2374. #endif
  2375. /**
  2376. * wma_get_igtk() - Get the IGTK that was stored in the session earlier
  2377. * @iface: Interface for which the key is being requested
  2378. * @key_len: key length
  2379. *
  2380. * Return: Pointer to the key
  2381. */
  2382. uint8_t *wma_get_igtk(struct wma_txrx_node *iface, uint16_t *key_len);
  2383. #ifdef WLAN_FEATURE_MOTION_DETECTION
  2384. /**
  2385. * wma_motion_det_host_event_handler - motion detection event handler
  2386. * @handle: WMA global handle
  2387. * @event: motion detection event
  2388. * @len: Length of cmd
  2389. *
  2390. * Call motion detection event callback handler
  2391. *
  2392. * Return: 0 on success, else error on failure
  2393. */
  2394. int wma_motion_det_host_event_handler(void *handle, u_int8_t *event,
  2395. u_int32_t len);
  2396. /**
  2397. * wma_motion_det_base_line_host_event_handler - md baselining event handler
  2398. * @handle: WMA global handle
  2399. * @event: motion detection baselining event
  2400. * @len: Length of cmd
  2401. *
  2402. * Return: 0 on success, else error on failure
  2403. */
  2404. int wma_motion_det_base_line_host_event_handler(void *handle, u_int8_t *event,
  2405. u_int32_t len);
  2406. #endif /* WLAN_FEATURE_MOTION_DETECTION */
  2407. #endif