wma.h 76 KB

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