wma.h 78 KB

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