wma.h 78 KB

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