wma.h 76 KB

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