wma.h 75 KB

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