wma.h 75 KB

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