wma.h 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef WMA_H
  27. #define WMA_H
  28. #include "a_types.h"
  29. #include "qdf_types.h"
  30. #include "osapi_linux.h"
  31. #include "htc_packet.h"
  32. #include "i_qdf_event.h"
  33. #include "wmi_services.h"
  34. #include "wmi_unified.h"
  35. #include "wmi_version.h"
  36. #include "qdf_types.h"
  37. #include "cfg_api.h"
  38. #include "qdf_status.h"
  39. #include "cds_sched.h"
  40. #include "sir_mac_prot_def.h"
  41. #include "wma_types.h"
  42. #include "ol_txrx_types.h"
  43. #include <linux/workqueue.h>
  44. #include "utils_api.h"
  45. #include "lim_types.h"
  46. #include "wmi_unified_api.h"
  47. #include "cdp_txrx_cmn.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 2000
  52. #define WMA_SERVICE_READY_EXT_TIMEOUT 2000
  53. #define WMA_TGT_SUSPEND_COMPLETE_TIMEOUT 6000
  54. #define WMA_WAKE_LOCK_TIMEOUT 1000
  55. #define WMA_RESUME_TIMEOUT 6000
  56. #define MAX_MEM_CHUNKS 32
  57. #define WMA_CRASH_INJECT_TIMEOUT 5000
  58. /* In prima 12 HW stations are supported including BCAST STA(staId 0)
  59. * and SELF STA(staId 1) so total ASSOC stations which can connect to Prima
  60. * SoftAP = 12 - 1(Self STa) - 1(Bcast Sta) = 10 Stations.
  61. */
  62. #ifdef WLAN_SOFTAP_VSTA_FEATURE
  63. #define WMA_MAX_SUPPORTED_STAS 38
  64. #else
  65. #define WMA_MAX_SUPPORTED_STAS 12
  66. #endif
  67. #define WMA_MAX_SUPPORTED_BSS 5
  68. #define FRAGMENT_SIZE 3072
  69. #define WMA_INVALID_VDEV_ID 0xFF
  70. #define MAX_MEM_CHUNKS 32
  71. #define WMA_MAX_VDEV_SIZE 20
  72. #define WMA_VDEV_TBL_ENTRY_ADD 1
  73. #define WMA_VDEV_TBL_ENTRY_DEL 0
  74. /* 11A/G channel boundary */
  75. #define WMA_11A_CHANNEL_BEGIN 34
  76. #define WMA_11A_CHANNEL_END 165
  77. #define WMA_11G_CHANNEL_BEGIN 1
  78. #define WMA_11G_CHANNEL_END 14
  79. #define WMA_11P_CHANNEL_BEGIN (170)
  80. #define WMA_11P_CHANNEL_END (184)
  81. #define WMA_LOGD(args ...) \
  82. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_DEBUG, ## args)
  83. #define WMA_LOGI(args ...) \
  84. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_INFO, ## args)
  85. #define WMA_LOGW(args ...) \
  86. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_WARN, ## args)
  87. #define WMA_LOGE(args ...) \
  88. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_ERROR, ## args)
  89. #define WMA_LOGP(args ...) \
  90. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_FATAL, ## args)
  91. #define WMA_DEBUG_ALWAYS
  92. #ifdef WMA_DEBUG_ALWAYS
  93. #define WMA_LOGA(args ...) \
  94. QDF_TRACE(QDF_MODULE_ID_WMA, QDF_TRACE_LEVEL_FATAL, ## args)
  95. #else
  96. #define WMA_LOGA(args ...)
  97. #endif
  98. #define ALIGNED_WORD_SIZE 4
  99. #define WLAN_HAL_MSG_TYPE_MAX_ENUM_SIZE 0x7FFF
  100. #define WMA_WILDCARD_PDEV_ID 0x0
  101. /* Prefix used by scan req ids generated on the host */
  102. #define WMA_HOST_SCAN_REQID_PREFIX 0xA000
  103. /* Prefix used by roam scan req ids generated on the host */
  104. #define WMA_HOST_ROAM_SCAN_REQID_PREFIX 0xA800
  105. /* Prefix used by scan requestor id on host */
  106. #define WMA_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000
  107. #define WMA_HW_DEF_SCAN_MAX_DURATION 30000 /* 30 secs */
  108. /* Max offchannel duration */
  109. #define WMA_BURST_SCAN_MAX_NUM_OFFCHANNELS (3)
  110. #define WMA_SCAN_NPROBES_DEFAULT (2)
  111. #define WMA_SCAN_IDLE_TIME_DEFAULT (25)
  112. #define WMA_P2P_SCAN_MAX_BURST_DURATION (180)
  113. #define WMA_CTS_DURATION_MS_MAX (32)
  114. #define WMA_GO_MIN_ACTIVE_SCAN_BURST_DURATION (40)
  115. #define WMA_GO_MAX_ACTIVE_SCAN_BURST_DURATION (120)
  116. #define WMA_DWELL_TIME_PASSIVE_DEFAULT (110)
  117. #define WMA_DWELL_TIME_PROBE_TIME_MAP_SIZE (11)
  118. #define WMA_3PORT_CONC_SCAN_MAX_BURST_DURATION (25)
  119. #define WMA_SEC_TO_USEC (1000000)
  120. #define BEACON_TX_BUFFER_SIZE (512)
  121. /* WMA_ETHER_TYPE_OFFSET = sa(6) + da(6) */
  122. #define WMA_ETHER_TYPE_OFFSET (6 + 6)
  123. /* WMA_ICMP_V6_HEADER_OFFSET = sa(6) + da(6) + eth_type(2) + icmp_v6_hdr(6)*/
  124. #define WMA_ICMP_V6_HEADER_OFFSET (6 + 6 + 2 + 6)
  125. /* WMA_ICMP_V6_TYPE_OFFSET = sa(6) + da(6) + eth_type(2) + 40 */
  126. #define WMA_ICMP_V6_TYPE_OFFSET (6 + 6 + 2 + 40)
  127. #define WMA_ICMP_V6_HEADER_TYPE (0x3A)
  128. #define WMA_ICMP_V6_RA_TYPE (0x86)
  129. #define WMA_ICMP_V6_NS_TYPE (0x87)
  130. #define WMA_ICMP_V6_NA_TYPE (0x88)
  131. #define WMA_BCAST_MAC_ADDR (0xFF)
  132. #define WMA_MCAST_IPV4_MAC_ADDR (0x01)
  133. #define WMA_MCAST_IPV6_MAC_ADDR (0x33)
  134. /* Roaming default values
  135. * All time and period values are in milliseconds.
  136. * All rssi values are in dB except for WMA_NOISE_FLOOR_DBM_DEFAULT.
  137. */
  138. #define WMA_ROAM_SCAN_CHANNEL_SWITCH_TIME (4)
  139. #define WMA_NOISE_FLOOR_DBM_DEFAULT (-96)
  140. #define WMA_ROAM_RSSI_DIFF_DEFAULT (5)
  141. #define WMA_ROAM_DWELL_TIME_ACTIVE_DEFAULT (100)
  142. #define WMA_ROAM_DWELL_TIME_PASSIVE_DEFAULT (110)
  143. #define WMA_ROAM_MIN_REST_TIME_DEFAULT (50)
  144. #define WMA_ROAM_MAX_REST_TIME_DEFAULT (500)
  145. #define WMA_ROAM_LOW_RSSI_TRIGGER_DEFAULT (20)
  146. #define WMA_ROAM_LOW_RSSI_TRIGGER_VERYLOW (10)
  147. #define WMA_ROAM_BEACON_WEIGHT_DEFAULT (14)
  148. #define WMA_ROAM_OPP_SCAN_PERIOD_DEFAULT (120000)
  149. #define WMA_ROAM_OPP_SCAN_AGING_PERIOD_DEFAULT (WMA_ROAM_OPP_SCAN_PERIOD_DEFAULT * 5)
  150. #define WMA_ROAM_BMISS_FIRST_BCNT_DEFAULT (10)
  151. #define WMA_ROAM_BMISS_FINAL_BCNT_DEFAULT (10)
  152. #define WMA_ROAM_BMISS_FIRST_BCNT_DEFAULT_P2P (15)
  153. #define WMA_ROAM_BMISS_FINAL_BCNT_DEFAULT_P2P (45)
  154. #define WMA_INVALID_KEY_IDX 0xff
  155. #define WMA_DFS_RADAR_FOUND 1
  156. #define WMA_MAX_RF_CHAINS(x) ((1 << x) - 1)
  157. #define WMA_MIN_RF_CHAINS (1)
  158. #ifdef FEATURE_WLAN_EXTSCAN
  159. #define WMA_MAX_EXTSCAN_MSG_SIZE 1536
  160. #define WMA_EXTSCAN_REST_TIME 100
  161. #define WMA_EXTSCAN_MAX_SCAN_TIME 50000
  162. #define WMA_EXTSCAN_BURST_DURATION 150
  163. #endif
  164. #define WMA_BCN_BUF_MAX_SIZE 2500
  165. #define WMA_NOA_IE_SIZE(num_desc) (2 + (13 * (num_desc)))
  166. #define WMA_MAX_NOA_DESCRIPTORS 4
  167. #define WMA_TIM_SUPPORTED_PVB_LENGTH ((HAL_NUM_STA / 8) + 1)
  168. #define WMA_WOW_PTRN_MASK_VALID 0xFF
  169. #define WMA_NUM_BITS_IN_BYTE 8
  170. #define WMA_AP_WOW_DEFAULT_PTRN_MAX 4
  171. #define WMA_STA_WOW_DEFAULT_PTRN_MAX 4
  172. #define WMA_BSS_STATUS_STARTED 0x1
  173. #define WMA_BSS_STATUS_STOPPED 0x2
  174. #define WMA_FW_PHY_STATS 0x1
  175. #define WMA_FW_RX_REORDER_STATS 0x2
  176. #define WMA_FW_RX_RC_STATS 0x3
  177. #define WMA_FW_TX_PPDU_STATS 0x4
  178. #define WMA_FW_TX_CONCISE_STATS 0x5
  179. #define WMA_FW_TX_RC_STATS 0x6
  180. #define WMA_FW_TXBF_INFO_STATS 0x07
  181. #define WMA_FW_SND_INFO_STATS 0x08
  182. #define WMA_FW_ERROR_INFO_STATS 0x09
  183. #define WMA_FW_TX_SELFGEN_INFO_STATS 0xa
  184. #define WMA_FW_RX_REM_RING_BUF 0xc
  185. #define WMA_FW_RX_TXBF_MUSU_NDPA 0xf
  186. #define WMA_TARGET_REQ_TYPE_VDEV_START 0x1
  187. #define WMA_TARGET_REQ_TYPE_VDEV_STOP 0x2
  188. #define WMA_TARGET_REQ_TYPE_VDEV_DEL 0x3
  189. #define WMA_PEER_ASSOC_CNF_START 0x01
  190. #define WMA_PEER_ASSOC_TIMEOUT (3000) /* 3 seconds */
  191. #define WMA_DELETE_STA_RSP_START 0x02
  192. #define WMA_DELETE_STA_TIMEOUT (6000) /* 6 seconds */
  193. #define WMA_DEL_P2P_SELF_STA_RSP_START 0x03
  194. #define WMA_VDEV_START_REQUEST_TIMEOUT (3000) /* 3 seconds */
  195. #define WMA_VDEV_STOP_REQUEST_TIMEOUT (3000) /* 3 seconds */
  196. #define WMA_TGT_INVALID_SNR (-1)
  197. #define WMA_TX_Q_RECHECK_TIMER_WAIT 2 /* 2 ms */
  198. #define WMA_TX_Q_RECHECK_TIMER_MAX_WAIT 20 /* 20 ms */
  199. #define WMA_MAX_NUM_ARGS 8
  200. #define WMA_SMPS_MASK_LOWER_16BITS 0xFF
  201. #define WMA_SMPS_MASK_UPPER_3BITS 0x7
  202. #define WMA_SMPS_PARAM_VALUE_S 29
  203. #define WMA_MAX_SCAN_ID 0x00FF
  204. /*
  205. * Setting the Tx Comp Timeout to 1 secs.
  206. * TODO: Need to Revist the Timing
  207. */
  208. #define WMA_TX_FRAME_COMPLETE_TIMEOUT 1000
  209. #define WMA_TX_FRAME_BUFFER_NO_FREE 0
  210. #define WMA_TX_FRAME_BUFFER_FREE 1
  211. /* Default InActivity Time is 200 ms */
  212. #define POWERSAVE_DEFAULT_INACTIVITY_TIME 200
  213. /* Default Listen Interval */
  214. #define POWERSAVE_DEFAULT_LISTEN_INTERVAL 1
  215. /*
  216. * TODO: Add WMI_CMD_ID_MAX as part of WMI_CMD_ID
  217. * instead of assigning it to the last valid wmi
  218. * cmd+1 to avoid updating this when a command is
  219. * added/deleted.
  220. */
  221. #define WMI_CMDID_MAX (WMI_TXBF_CMDID + 1)
  222. #define WMA_NLO_FREQ_THRESH 1000 /* in MHz */
  223. #define WMA_SEC_TO_MSEC(sec) (sec * 1000) /* sec to msec */
  224. #define WMA_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */
  225. /* Default rssi threshold defined in CFG80211 */
  226. #define WMA_RSSI_THOLD_DEFAULT -300
  227. #ifdef FEATURE_WLAN_SCAN_PNO
  228. #define WMA_PNO_MATCH_WAKE_LOCK_TIMEOUT (5 * 1000) /* in msec */
  229. #define WMA_PNO_SCAN_COMPLETE_WAKE_LOCK_TIMEOUT (2 * 1000) /* in msec */
  230. #endif
  231. #define WMA_AUTH_REQ_RECV_WAKE_LOCK_TIMEOUT (5 * 1000) /* in msec */
  232. #define WMA_ASSOC_REQ_RECV_WAKE_LOCK_DURATION (5 * 1000) /* in msec */
  233. #define WMA_DEAUTH_RECV_WAKE_LOCK_DURATION (5 * 1000) /* in msec */
  234. #define WMA_DISASSOC_RECV_WAKE_LOCK_DURATION (5 * 1000) /* in msec */
  235. #ifdef FEATURE_WLAN_AUTO_SHUTDOWN
  236. #define WMA_AUTO_SHUTDOWN_WAKE_LOCK_DURATION (5 * 1000) /* in msec */
  237. #endif
  238. #define WMA_BMISS_EVENT_WAKE_LOCK_DURATION (4 * 1000) /* in msec */
  239. #define WMA_FW_RSP_EVENT_WAKE_LOCK_DURATION (3 * 1000) /* in msec */
  240. #define WMA_TXMIC_LEN 8
  241. #define WMA_RXMIC_LEN 8
  242. /*
  243. * Length = (2 octets for Index and CTWin/Opp PS) and
  244. * (13 octets for each NOA Descriptors)
  245. */
  246. #define WMA_P2P_NOA_IE_OPP_PS_SET (0x80)
  247. #define WMA_P2P_NOA_IE_CTWIN_MASK (0x7F)
  248. #define WMA_P2P_IE_ID 0xdd
  249. #define WMA_P2P_WFA_OUI { 0x50, 0x6f, 0x9a }
  250. #define WMA_P2P_WFA_VER 0x09 /* ver 1.0 */
  251. #define WMA_WSC_OUI { 0x00, 0x50, 0xF2 } /* Microsoft WSC OUI byte */
  252. /* P2P Sub element defintions (according to table 5 of Wifi's P2P spec) */
  253. #define WMA_P2P_SUB_ELEMENT_STATUS 0
  254. #define WMA_P2P_SUB_ELEMENT_MINOR_REASON 1
  255. #define WMA_P2P_SUB_ELEMENT_CAPABILITY 2
  256. #define WMA_P2P_SUB_ELEMENT_DEVICE_ID 3
  257. #define WMA_P2P_SUB_ELEMENT_GO_INTENT 4
  258. #define WMA_P2P_SUB_ELEMENT_CONFIGURATION_TIMEOUT 5
  259. #define WMA_P2P_SUB_ELEMENT_LISTEN_CHANNEL 6
  260. #define WMA_P2P_SUB_ELEMENT_GROUP_BSSID 7
  261. #define WMA_P2P_SUB_ELEMENT_EXTENDED_LISTEN_TIMING 8
  262. #define WMA_P2P_SUB_ELEMENT_INTENDED_INTERFACE_ADDR 9
  263. #define WMA_P2P_SUB_ELEMENT_MANAGEABILITY 10
  264. #define WMA_P2P_SUB_ELEMENT_CHANNEL_LIST 11
  265. #define WMA_P2P_SUB_ELEMENT_NOA 12
  266. #define WMA_P2P_SUB_ELEMENT_DEVICE_INFO 13
  267. #define WMA_P2P_SUB_ELEMENT_GROUP_INFO 14
  268. #define WMA_P2P_SUB_ELEMENT_GROUP_ID 15
  269. #define WMA_P2P_SUB_ELEMENT_INTERFACE 16
  270. #define WMA_P2P_SUB_ELEMENT_OP_CHANNEL 17
  271. #define WMA_P2P_SUB_ELEMENT_INVITATION_FLAGS 18
  272. #define WMA_P2P_SUB_ELEMENT_VENDOR 221
  273. /* Macros for handling unaligned memory accesses */
  274. #define P2PIE_PUT_LE16(a, val) \
  275. do { \
  276. (a)[1] = ((u16) (val)) >> 8; \
  277. (a)[0] = ((u16) (val)) & 0xff; \
  278. } while (0)
  279. #define P2PIE_PUT_LE32(a, val) \
  280. do { \
  281. (a)[3] = (u8) ((((u32) (val)) >> 24) & 0xff); \
  282. (a)[2] = (u8) ((((u32) (val)) >> 16) & 0xff); \
  283. (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
  284. (a)[0] = (u8) (((u32) (val)) & 0xff); \
  285. } while (0)
  286. #define WMA_DEFAULT_MAX_PSPOLL_BEFORE_WAKE 1
  287. #define WMA_DEFAULT_QPOWER_MAX_PSPOLL_BEFORE_WAKE 1
  288. #define WMA_DEFAULT_QPOWER_TX_WAKE_THRESHOLD 2
  289. #define WMA_DEFAULT_SIFS_BURST_DURATION 8160
  290. #define WMA_VHT_PPS_PAID_MATCH 1
  291. #define WMA_VHT_PPS_GID_MATCH 2
  292. #define WMA_VHT_PPS_DELIM_CRC_FAIL 3
  293. #define WMA_DFS_MAX_20M_SUB_CH 8
  294. #define WMA_DEFAULT_HW_MODE_INDEX 0xFFFF
  295. /**
  296. * struct probeTime_dwellTime - probe time, dwell time map
  297. * @dwell_time: dwell time
  298. * @probe_time: repeat probe time
  299. */
  300. typedef struct probeTime_dwellTime {
  301. uint8_t dwell_time;
  302. uint8_t probe_time;
  303. } t_probeTime_dwellTime;
  304. static const t_probeTime_dwellTime
  305. probe_time_dwell_time_map[WMA_DWELL_TIME_PROBE_TIME_MAP_SIZE] = {
  306. {28, 0}, /* 0 SSID */
  307. {28, 20}, /* 1 SSID */
  308. {28, 20}, /* 2 SSID */
  309. {28, 20}, /* 3 SSID */
  310. {28, 20}, /* 4 SSID */
  311. {28, 20}, /* 5 SSID */
  312. {28, 20}, /* 6 SSID */
  313. {28, 11}, /* 7 SSID */
  314. {28, 11}, /* 8 SSID */
  315. {28, 11}, /* 9 SSID */
  316. {28, 8} /* 10 SSID */
  317. };
  318. /**
  319. * enum t_wma_drv_type - wma driver type
  320. * @WMA_DRIVER_TYPE_PRODUCTION: production driver type
  321. * @WMA_DRIVER_TYPE_MFG: manufacture driver type
  322. * @WMA_DRIVER_TYPE_INVALID: invalid driver type
  323. */
  324. typedef enum {
  325. WMA_DRIVER_TYPE_PRODUCTION = 0,
  326. WMA_DRIVER_TYPE_MFG = 1,
  327. WMA_DRIVER_TYPE_INVALID = 0x7FFFFFFF
  328. } t_wma_drv_type;
  329. #ifdef FEATURE_WLAN_TDLS
  330. /**
  331. * enum t_wma_tdls_mode - TDLS mode
  332. * @WMA_TDLS_SUPPORT_NOT_ENABLED: tdls is disable
  333. * @WMA_TDLS_SUPPORT_DISABLED: suppress implicit trigger and not respond to peer
  334. * @WMA_TDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY: suppress implicit trigger,
  335. * but respond to the peer
  336. * @WMA_TDLS_SUPPORT_ENABLED: implicit trigger
  337. * @WMA_TDLS_SUPPORT_ACTIVE_EXTERNAL_CONTROL: External control means
  338. * implicit trigger but only to a peer mac configured by user space.
  339. */
  340. typedef enum {
  341. WMA_TDLS_SUPPORT_NOT_ENABLED = 0,
  342. WMA_TDLS_SUPPORT_DISABLED,
  343. WMA_TDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY,
  344. WMA_TDLS_SUPPORT_ENABLED,
  345. WMA_TDLS_SUPPORT_ACTIVE_EXTERNAL_CONTROL,
  346. } t_wma_tdls_mode;
  347. /**
  348. * enum wma_tdls_peer_notification - TDLS events
  349. * @WMA_TDLS_SHOULD_DISCOVER: tdls discovery recommended for peer (always based
  350. * on tx bytes per second > tx_discover threshold
  351. * NB: notification will be re-sent after
  352. * discovery_request_interval_ms
  353. * @WMA_TDLS_SHOULD_TEARDOWN: tdls link tear down recommended for peer
  354. * due to tx bytes per second below
  355. * tx_teardown_threshold
  356. * NB: this notification sent once
  357. * @WMA_TDLS_PEER_DISCONNECTED: tx peer TDLS link tear down complete
  358. */
  359. enum wma_tdls_peer_notification {
  360. WMA_TDLS_SHOULD_DISCOVER,
  361. WMA_TDLS_SHOULD_TEARDOWN,
  362. WMA_TDLS_PEER_DISCONNECTED,
  363. };
  364. /**
  365. * enum wma_tdls_peer_reason - TDLS peer reason
  366. * @WMA_TDLS_TEARDOWN_REASON_TX: tdls teardown recommended due to low transmits
  367. * @WMA_TDLS_TEARDOWN_REASON_RATE: tdls tear down recommended due to
  368. * packet rates < AP rates
  369. * @WMA_TDLS_TEARDOWN_REASON_RSSI: tdls link tear down recommended
  370. * due to poor RSSI
  371. * @WMA_TDLS_TEARDOWN_REASON_SCAN: tdls link tear down recommended
  372. * due to offchannel scan
  373. * @WMA_TDLS_DISCONNECTED_REASON_PEER_DELETE: tdls peer disconnected
  374. * due to peer deletion
  375. */
  376. enum wma_tdls_peer_reason {
  377. WMA_TDLS_TEARDOWN_REASON_TX,
  378. WMA_TDLS_TEARDOWN_REASON_RATE,
  379. WMA_TDLS_TEARDOWN_REASON_RSSI,
  380. WMA_TDLS_TEARDOWN_REASON_SCAN,
  381. WMA_TDLS_DISCONNECTED_REASON_PEER_DELETE,
  382. };
  383. #endif /* FEATURE_WLAN_TDLS */
  384. /**
  385. * enum wma_rx_exec_ctx - wma rx execution context
  386. * @WMA_RX_WORK_CTX: work queue context execution
  387. * @WMA_RX_TASKLET_CTX: tasklet context execution
  388. * @WMA_RX_SERIALIZER_CTX: MC thread context execution
  389. *
  390. */
  391. enum wma_rx_exec_ctx {
  392. WMA_RX_WORK_CTX,
  393. WMA_RX_TASKLET_CTX,
  394. WMA_RX_SERIALIZER_CTX
  395. };
  396. /**
  397. * struct wma_mem_chunk - memory chunks
  398. * @vaddr: virtual address
  399. * @paddr: physical address
  400. * @memctx: dma mapped memory
  401. * @len: length of data
  402. * @req_id: request id
  403. *
  404. * memory chunck allocated by Host to be managed by FW
  405. * used only for low latency interfaces like pcie
  406. */
  407. struct wma_mem_chunk {
  408. uint32_t *vaddr;
  409. uint32_t paddr;
  410. qdf_dma_mem_context(memctx);
  411. uint32_t len;
  412. uint32_t req_id;
  413. };
  414. /**
  415. * struct p2p_scan_param - p2p scan listen parameters
  416. * @scan_id: scan id
  417. * @p2p_scan_type: p2p scan type
  418. */
  419. struct p2p_scan_param {
  420. uint32_t scan_id;
  421. tSirP2pScanType p2p_scan_type;
  422. };
  423. /**
  424. * struct scan_param - scan parameters
  425. * @scan_id: scan id
  426. * @scan_requestor_id: scan requestor id
  427. * @p2p_scan_type: p2p scan type
  428. */
  429. struct scan_param {
  430. uint32_t scan_id;
  431. uint32_t scan_requestor_id;
  432. tSirP2pScanType p2p_scan_type;
  433. uint32_t chan_freq;
  434. };
  435. /**
  436. * struct beacon_info - structure to store beacon template
  437. * @buf: skb ptr
  438. * @len: length
  439. * @dma_mapped: is it dma mapped or not
  440. * @tim_ie_offset: TIM IE offset
  441. * @dtim_count: DTIM count
  442. * @seq_no: sequence no
  443. * @noa_sub_ie: NOA sub IE
  444. * @noa_sub_ie_len: NOA sub IE length
  445. * @noa_ie: NOA IE
  446. * @p2p_ie_offset: p2p IE offset
  447. * @lock: lock
  448. */
  449. struct beacon_info {
  450. qdf_nbuf_t buf;
  451. uint32_t len;
  452. uint8_t dma_mapped;
  453. uint32_t tim_ie_offset;
  454. uint8_t dtim_count;
  455. uint16_t seq_no;
  456. uint8_t noa_sub_ie[2 + WMA_NOA_IE_SIZE(WMA_MAX_NOA_DESCRIPTORS)];
  457. uint16_t noa_sub_ie_len;
  458. uint8_t *noa_ie;
  459. uint16_t p2p_ie_offset;
  460. qdf_spinlock_t lock;
  461. };
  462. /**
  463. * struct beacon_tim_ie - structure to store TIM IE of beacon
  464. * @tim_ie: tim ie
  465. * @tim_len: tim ie length
  466. * @dtim_count: dtim count
  467. * @dtim_period: dtim period
  468. * @tim_bitctl: tim bit control
  469. * @tim_bitmap: tim bitmap
  470. */
  471. struct beacon_tim_ie {
  472. uint8_t tim_ie;
  473. uint8_t tim_len;
  474. uint8_t dtim_count;
  475. uint8_t dtim_period;
  476. uint8_t tim_bitctl;
  477. uint8_t tim_bitmap[1];
  478. } __ATTRIB_PACK;
  479. /**
  480. * struct pps - packet power save parameter
  481. * @paid_match_enable: paid match enable
  482. * @gid_match_enable: gid match enable
  483. * @tim_clear: time clear
  484. * @dtim_clear: dtim clear
  485. * @eof_delim: eof delim
  486. * @mac_match: mac match
  487. * @delim_fail: delim fail
  488. * @nsts_zero: nsts zero
  489. * @rssi_chk: RSSI check
  490. * @ebt_5g: ebt 5GHz
  491. */
  492. struct pps {
  493. bool paid_match_enable;
  494. bool gid_match_enable;
  495. bool tim_clear;
  496. bool dtim_clear;
  497. bool eof_delim;
  498. bool mac_match;
  499. bool delim_fail;
  500. bool nsts_zero;
  501. bool rssi_chk;
  502. bool ebt_5g;
  503. };
  504. /**
  505. * struct qpower_params - qpower related parameters
  506. * @max_ps_poll_cnt: max ps poll count
  507. * @max_tx_before_wake: max tx before wake
  508. * @spec_ps_poll_wake_interval: ps poll wake interval
  509. * @max_spec_nodata_ps_poll: no data ps poll
  510. */
  511. struct qpower_params {
  512. uint32_t max_ps_poll_cnt;
  513. uint32_t max_tx_before_wake;
  514. uint32_t spec_ps_poll_wake_interval;
  515. uint32_t max_spec_nodata_ps_poll;
  516. };
  517. /**
  518. * struct gtx_config_t - GTX config
  519. * @gtxRTMask: for HT and VHT rate masks
  520. * @gtxUsrcfg: host request for GTX mask
  521. * @gtxPERThreshold: PER Threshold (default: 10%)
  522. * @gtxPERMargin: PER margin (default: 2%)
  523. * @gtxTPCstep: TCP step (default: 1)
  524. * @gtxTPCMin: TCP min (default: 5)
  525. * @gtxBWMask: BW mask (20/40/80/160 Mhz)
  526. */
  527. typedef struct {
  528. uint32_t gtxRTMask[2];
  529. uint32_t gtxUsrcfg;
  530. uint32_t gtxPERThreshold;
  531. uint32_t gtxPERMargin;
  532. uint32_t gtxTPCstep;
  533. uint32_t gtxTPCMin;
  534. uint32_t gtxBWMask;
  535. } gtx_config_t;
  536. /**
  537. * struct pdev_cli_config_t - store pdev parameters
  538. * @ani_enable: ANI is enabled/disable on target
  539. * @ani_poll_len: store ANI polling period
  540. * @ani_listen_len: store ANI listening period
  541. * @ani_ofdm_level: store ANI OFDM immunity level
  542. * @ani_cck_level: store ANI CCK immunity level
  543. * @cwmenable: Dynamic bw is enable/disable in fw
  544. * @txchainmask: tx chain mask
  545. * @rxchainmask: rx chain mask
  546. * @txpow2g: tx power limit for 2GHz
  547. * @txpow5g: tx power limit for 5GHz
  548. * @burst_enable: is burst enable/disable
  549. * @burst_dur: burst duration
  550. *
  551. * This structure stores pdev parameters.
  552. * Some of these parameters are set in fw and some
  553. * parameters are only maintained in host.
  554. */
  555. typedef struct {
  556. uint32_t ani_enable;
  557. uint32_t ani_poll_len;
  558. uint32_t ani_listen_len;
  559. uint32_t ani_ofdm_level;
  560. uint32_t ani_cck_level;
  561. uint32_t cwmenable;
  562. uint32_t cts_cbw;
  563. uint32_t txchainmask;
  564. uint32_t rxchainmask;
  565. uint32_t txpow2g;
  566. uint32_t txpow5g;
  567. uint32_t burst_enable;
  568. uint32_t burst_dur;
  569. } pdev_cli_config_t;
  570. /**
  571. * struct vdev_cli_config_t - store vdev parameters
  572. * @nss: nss width
  573. * @ldpc: is ldpc is enable/disable
  574. * @tx_stbc: TX STBC is enable/disable
  575. * @rx_stbc: RX STBC is enable/disable
  576. * @shortgi: short gi is enable/disable
  577. * @rtscts_en: RTS/CTS is enable/disable
  578. * @chwidth: channel width
  579. * @tx_rate: tx rate
  580. * @ampdu: ampdu size
  581. * @amsdu: amsdu size
  582. * @erx_adjust: enable/disable early rx enable
  583. * @erx_bmiss_num: target bmiss number per sample
  584. * @erx_bmiss_cycle: sample cycle
  585. * @erx_slop_step: slop_step value
  586. * @erx_init_slop: init slop
  587. * @erx_adj_pause: pause adjust enable/disable
  588. * @erx_dri_sample: enable/disable drift sample
  589. * @pps_params: packet power save parameters
  590. * @qpower_params: qpower parameters
  591. * @gtx_info: GTX offload info
  592. *
  593. * This structure stores vdev parameters.
  594. * Some of these parameters are set in fw and some
  595. * parameters are only maintained in host.
  596. */
  597. typedef struct {
  598. uint32_t nss;
  599. uint32_t ldpc;
  600. uint32_t tx_stbc;
  601. uint32_t rx_stbc;
  602. uint32_t shortgi;
  603. uint32_t rtscts_en;
  604. uint32_t chwidth;
  605. uint32_t tx_rate;
  606. uint32_t ampdu;
  607. uint32_t amsdu;
  608. uint32_t erx_adjust;
  609. uint32_t erx_bmiss_num;
  610. uint32_t erx_bmiss_cycle;
  611. uint32_t erx_slop_step;
  612. uint32_t erx_init_slop;
  613. uint32_t erx_adj_pause;
  614. uint32_t erx_dri_sample;
  615. struct pps pps_params;
  616. struct qpower_params qpower_params;
  617. gtx_config_t gtx_info;
  618. } vdev_cli_config_t;
  619. /**
  620. * struct wma_wow - store wow patterns
  621. * @magic_ptrn_enable: magic pattern enable/disable
  622. * @wow_enable: wow enable/disable
  623. * @wow_enable_cmd_sent: is wow enable command sent to fw
  624. * @deauth_enable: is deauth wakeup enable/disable
  625. * @disassoc_enable: is disassoc wakeup enable/disable
  626. * @bmiss_enable: is bmiss wakeup enable/disable
  627. * @gtk_pdev_enable: is GTK based wakeup enable/disable
  628. * @gtk_err_enable: is GTK error wakeup enable/disable
  629. * @lphb_cache: lphb cache
  630. *
  631. * This structure stores wow patterns and
  632. * wow related parameters in host.
  633. */
  634. struct wma_wow {
  635. bool magic_ptrn_enable;
  636. bool wow_enable;
  637. bool wow_enable_cmd_sent;
  638. bool deauth_enable;
  639. bool disassoc_enable;
  640. bool bmiss_enable;
  641. bool gtk_err_enable[WMA_MAX_SUPPORTED_BSS];
  642. #ifdef FEATURE_WLAN_LPHB
  643. /* currently supports only vdev 0.
  644. * cache has two entries: one for TCP and one for UDP.
  645. */
  646. tSirLPHBReq lphb_cache[2];
  647. #endif
  648. };
  649. #ifdef WLAN_FEATURE_11W
  650. #define CMAC_IPN_LEN (6)
  651. #define WMA_IGTK_KEY_INDEX_4 (4)
  652. #define WMA_IGTK_KEY_INDEX_5 (5)
  653. /**
  654. * struct wma_igtk_ipn_t - GTK IPN info
  655. * @ipn: IPN info
  656. */
  657. typedef struct {
  658. uint8_t ipn[CMAC_IPN_LEN];
  659. } wma_igtk_ipn_t;
  660. /**
  661. * struct wma_igtk_key_t - GTK key
  662. * @key_length: key length
  663. * @key: key
  664. * @key_id: key id
  665. */
  666. typedef struct {
  667. uint16_t key_length;
  668. uint8_t key[CSR_AES_KEY_LEN];
  669. /* IPN is maintained per iGTK keyID
  670. * 0th index for iGTK keyID = 4;
  671. * 1st index for iGTK KeyID = 5
  672. */
  673. wma_igtk_ipn_t key_id[2];
  674. } wma_igtk_key_t;
  675. #endif
  676. /**
  677. * struct vdev_restart_params_t - vdev restart parameters
  678. * @vdev_id: vdev id
  679. * @ssid: ssid
  680. * @flags: flags
  681. * @requestor_id: requestor id
  682. * @chan: channel
  683. * @hidden_ssid_restart_in_progress: hidden ssid restart flag
  684. * @ssidHidden: is ssid hidden or not
  685. */
  686. typedef struct {
  687. A_UINT32 vdev_id;
  688. wmi_ssid ssid;
  689. A_UINT32 flags;
  690. A_UINT32 requestor_id;
  691. A_UINT32 disable_hw_ack;
  692. wmi_channel chan;
  693. qdf_atomic_t hidden_ssid_restart_in_progress;
  694. uint8_t ssidHidden;
  695. } vdev_restart_params_t;
  696. /**
  697. * struct wma_txrx_node - txrx node
  698. * @addr: mac address
  699. * @bssid: bssid
  700. * @handle: wma handle
  701. * @beacon: beacon info
  702. * @vdev_restart_params: vdev restart parameters
  703. * @config: per vdev config parameters
  704. * @scan_info: scan info
  705. * @type: type
  706. * @sub_type: sub type
  707. * @nlo_match_evt_received: is nlo match event received or not
  708. * @pno_in_progress: is pno in progress or not
  709. * @plm_in_progress: is plm in progress or not
  710. * @ptrn_match_enable: is pattern match is enable or not
  711. * @num_wow_default_patterns: number of default wow patterns configured for vdev
  712. * @num_wow_user_patterns: number of user wow patterns configured for vdev
  713. * @conn_state: connection state
  714. * @beaconInterval: beacon interval
  715. * @llbCoexist: 11b coexist
  716. * @shortSlotTimeSupported: is short slot time supported or not
  717. * @dtimPeriod: DTIM period
  718. * @chanmode: channel mode
  719. * @vht_capable: VHT capablity flag
  720. * @ht_capable: HT capablity flag
  721. * @mhz: channel frequency in KHz
  722. * @vdev_up: is vdev up or not
  723. * @tsfadjust: TSF adjust
  724. * @addBssStaContext: add bss context
  725. * @aid: association id
  726. * @rmfEnabled: Robust Management Frame (RMF) enabled/disabled
  727. * @key: GTK key
  728. * @uapsd_cached_val: uapsd cached value
  729. * @stats_rsp: stats response
  730. * @fw_stats_set: fw stats value
  731. * @del_staself_req: delete sta self request
  732. * @bss_status: bss status
  733. * @rate_flags: rate flags
  734. * @nss: nss value
  735. * @is_channel_switch: is channel switch
  736. * @pause_bitmap: pause bitmap
  737. * @tx_power: tx power in dbm
  738. * @max_tx_power: max tx power in dbm
  739. * @nwType: network type (802.11a/b/g/n/ac)
  740. * @staKeyParams: sta key parameters
  741. * @ps_enabled: is powersave enable/disable
  742. * @dtim_policy: DTIM policy
  743. * @peer_count: peer count
  744. * @roam_synch_in_progress: flag is in progress or not
  745. * @plink_status_req: link status request
  746. * @psnr_req: snr request
  747. * @delay_before_vdev_stop: delay
  748. * @tx_streams: number of tx streams can be used by the vdev
  749. * @rx_streams: number of rx streams can be used by the vdev
  750. * @chain_mask: chain mask can be used by the vdev
  751. * @mac_id: the mac on which vdev is on
  752. *
  753. * It stores parameters per vdev in wma.
  754. */
  755. struct wma_txrx_node {
  756. uint8_t addr[IEEE80211_ADDR_LEN];
  757. uint8_t bssid[IEEE80211_ADDR_LEN];
  758. void *handle;
  759. struct beacon_info *beacon;
  760. vdev_restart_params_t vdev_restart_params;
  761. vdev_cli_config_t config;
  762. struct scan_param scan_info;
  763. struct p2p_scan_param p2p_scan_info;
  764. uint32_t type;
  765. uint32_t sub_type;
  766. #ifdef FEATURE_WLAN_SCAN_PNO
  767. bool nlo_match_evt_received;
  768. bool pno_in_progress;
  769. #endif
  770. #if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
  771. bool plm_in_progress;
  772. #endif
  773. bool ptrn_match_enable;
  774. uint8_t num_wow_default_patterns;
  775. uint8_t num_wow_user_patterns;
  776. bool conn_state;
  777. tSirMacBeaconInterval beaconInterval;
  778. uint8_t llbCoexist;
  779. uint8_t shortSlotTimeSupported;
  780. uint8_t dtimPeriod;
  781. WLAN_PHY_MODE chanmode;
  782. uint8_t vht_capable;
  783. uint8_t ht_capable;
  784. A_UINT32 mhz;
  785. bool vdev_up;
  786. uint64_t tsfadjust;
  787. void *addBssStaContext;
  788. uint8_t aid;
  789. uint8_t rmfEnabled;
  790. #ifdef WLAN_FEATURE_11W
  791. wma_igtk_key_t key;
  792. #endif /* WLAN_FEATURE_11W */
  793. uint32_t uapsd_cached_val;
  794. tAniGetPEStatsRsp *stats_rsp;
  795. uint8_t fw_stats_set;
  796. void *del_staself_req;
  797. qdf_atomic_t bss_status;
  798. uint8_t rate_flags;
  799. uint8_t nss;
  800. bool is_channel_switch;
  801. uint16_t pause_bitmap;
  802. int8_t tx_power;
  803. int8_t max_tx_power;
  804. uint32_t nwType;
  805. void *staKeyParams;
  806. bool ps_enabled;
  807. uint32_t dtim_policy;
  808. uint32_t peer_count;
  809. bool roam_synch_in_progress;
  810. void *plink_status_req;
  811. void *psnr_req;
  812. uint8_t delay_before_vdev_stop;
  813. #ifdef FEATURE_WLAN_EXTSCAN
  814. bool extscan_in_progress;
  815. #endif
  816. uint32_t alt_modulated_dtim;
  817. bool alt_modulated_dtim_enabled;
  818. uint32_t tx_streams;
  819. uint32_t rx_streams;
  820. uint32_t chain_mask;
  821. uint32_t mac_id;
  822. bool roaming_in_progress;
  823. };
  824. #if defined(QCA_WIFI_FTM)
  825. #define MAX_UTF_EVENT_LENGTH 2048
  826. #define MAX_WMI_UTF_LEN 252
  827. /**
  828. * struct SEG_HDR_INFO_STRUCT - header info
  829. * @len: length
  830. * @msgref: message refrence
  831. * @segmentInfo: segment info
  832. * @pad: padding
  833. */
  834. typedef struct {
  835. A_UINT32 len;
  836. A_UINT32 msgref;
  837. A_UINT32 segmentInfo;
  838. A_UINT32 pad;
  839. } SEG_HDR_INFO_STRUCT;
  840. /**
  841. * struct utf_event_info - UTF event info
  842. * @data: data ptr
  843. * @length: length
  844. * @offset: offset
  845. * @currentSeq: curent squence
  846. * @expectedSeq: expected sequence
  847. */
  848. struct utf_event_info {
  849. uint8_t *data;
  850. uint32_t length;
  851. qdf_size_t offset;
  852. uint8_t currentSeq;
  853. uint8_t expectedSeq;
  854. };
  855. #endif
  856. /**
  857. * struct scan_timer_info - scan timer info
  858. * @vdev_id: vdev id
  859. * @scan_id: scan id
  860. */
  861. typedef struct {
  862. uint8_t vdev_id;
  863. uint32_t scan_id;
  864. } scan_timer_info;
  865. /**
  866. * struct ibss_power_save_params - IBSS power save parameters
  867. * @atimWindowLength: ATIM window length
  868. * @isPowerSaveAllowed: is power save allowed
  869. * @isPowerCollapseAllowed: is power collapsed allowed
  870. * @isAwakeonTxRxEnabled: is awake on tx/rx enabled
  871. * @inactivityCount: inactivity count
  872. * @txSPEndInactivityTime: tx SP end inactivity time
  873. * @ibssPsWarmupTime: IBSS power save warm up time
  874. * @ibssPs1RxChainInAtimEnable: IBSS power save rx chain in ATIM enable
  875. */
  876. typedef struct {
  877. uint32_t atimWindowLength;
  878. uint32_t isPowerSaveAllowed;
  879. uint32_t isPowerCollapseAllowed;
  880. uint32_t isAwakeonTxRxEnabled;
  881. uint32_t inactivityCount;
  882. uint32_t txSPEndInactivityTime;
  883. uint32_t ibssPsWarmupTime;
  884. uint32_t ibssPs1RxChainInAtimEnable;
  885. } ibss_power_save_params;
  886. /**
  887. * struct dbs_hw_mode_info - WLAN_DBS_HW_MODES_TLV Format
  888. * @tlv_header: TLV header, TLV tag and len; tag equals WMITLV_TAG_ARRAY_UINT32
  889. * @hw_mode_list: WLAN_DBS_HW_MODE_LIST entries
  890. */
  891. struct dbs_hw_mode_info {
  892. uint32_t tlv_header;
  893. uint32_t *hw_mode_list;
  894. };
  895. /* Current HTC credit is 2, pool size of 50 is sufficient */
  896. #define WMI_DESC_POOL_MAX 50
  897. /**
  898. * struct wmi_desc_t - wmi management Tx descriptor.
  899. * @tx_cmpl_cb_func: completion callback function, when DL completion and
  900. * OTA done.
  901. * @ota_post_proc_func: Post process callback function registered.
  902. * @nbuf: Network buffer to be freed.
  903. * @desc_id: WMI descriptor.
  904. */
  905. struct wmi_desc_t {
  906. pWMATxRxCompFunc tx_cmpl_cb;
  907. pWMAAckFnTxComp ota_post_proc_cb;
  908. qdf_nbuf_t nbuf;
  909. uint32_t desc_id;
  910. };
  911. /**
  912. * union wmi_desc_elem_t - linked list wmi desc pool.
  913. * @next: Pointer next descritor in the pool.
  914. * @wmi_desc: wmi descriptor element.
  915. */
  916. union wmi_desc_elem_t {
  917. union wmi_desc_elem_t *next;
  918. struct wmi_desc_t wmi_desc;
  919. };
  920. /**
  921. * struct dual_mac_config - Dual MAC configurations
  922. * @prev_scan_config: Previous scan configuration
  923. * @prev_fw_mode_config: Previous FW mode configuration
  924. * @cur_scan_config: Current scan configuration
  925. * @cur_fw_mode_config: Current FW mode configuration
  926. * @req_scan_config: Requested scan configuration
  927. * @req_fw_mode_config: Requested FW mode configuration
  928. */
  929. struct dual_mac_config {
  930. uint32_t prev_scan_config;
  931. uint32_t prev_fw_mode_config;
  932. uint32_t cur_scan_config;
  933. uint32_t cur_fw_mode_config;
  934. uint32_t req_scan_config;
  935. uint32_t req_fw_mode_config;
  936. };
  937. /**
  938. * struct wma_ini_config - Structure to hold wma ini configuration
  939. * @max_no_of_peers: Max Number of supported
  940. *
  941. * Placeholder for WMA ini parameters.
  942. */
  943. struct wma_ini_config {
  944. uint8_t max_no_of_peers;
  945. };
  946. /**
  947. * struct t_wma_handle - wma context
  948. * @wmi_handle: wmi handle
  949. * @htc_handle: htc handle
  950. * @cds_context: cds handle
  951. * @mac_context: mac context
  952. * @wma_ready_event: wma rx ready event
  953. * @wma_resume_event: wma resume event
  954. * @target_suspend: target suspend event
  955. * @recovery_event: wma FW recovery event
  956. * @max_station: max stations
  957. * @max_bssid: max bssid
  958. * @frame_xln_reqd: frame transmission required
  959. * @driver_type: driver type
  960. * @myaddr: current mac address
  961. * @hwaddr: mac address from EEPROM
  962. * @target_abi_vers: target firmware version
  963. * @final_abi_vers: The final ABI version to be used for communicating
  964. * @target_fw_version: Target f/w build version
  965. * @lpss_support: LPSS feature is supported in target or not
  966. * @egap_support: Enhanced Green AP support flag
  967. * @wmi_ready: wmi status flag
  968. * @wlan_init_status: wlan init status
  969. * @qdf_dev: qdf device
  970. * @phy_capability: PHY Capability from Target
  971. * @max_frag_entry: Max number of Fragment entry
  972. * @wmi_service_bitmap: wmi services bitmap received from Target
  973. * @wlan_resource_config: resource config
  974. * @frameTransRequired: frame transmission required
  975. * @wmaGlobalSystemRole: global system role
  976. * @tx_frm_download_comp_cb: Tx Frame Compl Cb registered by umac
  977. * @tx_frm_download_comp_event: Event to wait for tx download completion
  978. * @tx_queue_empty_event: wait for tx queue to get flushed
  979. * @umac_ota_ack_cb: Ack Complete Callback registered by umac
  980. * @umac_data_ota_ack_cb: ack complete callback
  981. * @last_umac_data_ota_timestamp: timestamp when OTA of last umac data was done
  982. * @last_umac_data_nbuf: cache nbuf ptr for the last umac data buf
  983. * @needShutdown: is shutdown needed or not
  984. * @num_mem_chunks: number of memory chunk
  985. * @mem_chunks: memory chunks
  986. * @tgt_cfg_update_cb: configuration update callback
  987. * @dfs_radar_indication_cb: Callback to indicate radar to HDD
  988. * @reg_cap: regulatory capablities
  989. * @scan_id: scan id
  990. * @interfaces: txrx nodes(per vdev)
  991. * @pdevconfig: pdev related configrations
  992. * @vdev_resp_queue: vdev response queue
  993. * @vdev_respq_lock: vdev response queue lock
  994. * @ht_cap_info: HT capablity info
  995. * @vht_cap_info: VHT capablity info
  996. * @vht_supp_mcs: VHT supported MCS
  997. * @num_rf_chains: number of RF chains
  998. * @utf_event_info: UTF event information
  999. * @is_fw_assert: is fw asserted
  1000. * @wow: wow related patterns & parameters
  1001. * @no_of_suspend_ind: number of suspend indications
  1002. * @no_of_resume_ind: number of resume indications
  1003. * @mArpInfo: arp info
  1004. * @powersave_mode: power save mode
  1005. * @ptrn_match_enable_all_vdev: is pattern match is enable/disable
  1006. * @pGetRssiReq: get RSSI request
  1007. * @thermal_mgmt_info: Thermal mitigation related info
  1008. * @roam_offload_enabled: is roam offload enable/disable
  1009. * @ol_ini_info: store ini status of arp offload, ns offload
  1010. * @ssdp: ssdp flag
  1011. * @ibss_started: is IBSS started or not
  1012. * @ibsskey_info: IBSS key info
  1013. * @dfs_ic: DFS umac interface information
  1014. * @hddTxFailCb: tx fail indication callback
  1015. * @pno_wake_lock: PNO wake lock
  1016. * @extscan_wake_lock: extscan wake lock
  1017. * @wow_wake_lock: wow wake lock
  1018. * @wow_nack: wow negative ack flag
  1019. * @ap_client_cnt: ap client count
  1020. * @is_wow_bus_suspended: is wow bus suspended flag
  1021. * @wma_scan_comp_timer: scan completion timer
  1022. * @dfs_phyerr_filter_offload: dfs phy error filter is offloaded or not
  1023. * @suitable_ap_hb_failure: better ap found
  1024. * @wma_ibss_power_save_params: IBSS Power Save config Parameters
  1025. * @IsRArateLimitEnabled: RA rate limiti s enabled or not
  1026. * @RArateLimitInterval: RA rate limit interval
  1027. * @is_lpass_enabled: Flag to indicate if LPASS feature is enabled or not
  1028. * @is_nan_enabled: Flag to indicate if NaN feature is enabled or not
  1029. * @staMaxLIModDtim: station max listen interval
  1030. * @staModDtim: station mode DTIM
  1031. * @staDynamicDtim: station dynamic DTIM
  1032. * @enable_mhf_offload: is MHF offload enable/disable
  1033. * @last_mhf_entries_timestamp: timestamp when last entries where set
  1034. * @dfs_pri_multiplier: DFS multiplier
  1035. * @hw_bd_id: hardware board id
  1036. * @hw_bd_info: hardware board info
  1037. * @in_d0wow: D0WOW is enable/disable
  1038. * @miracast_value: miracast value
  1039. * @log_completion_timer: log completion timer
  1040. * @mgmt_rx: management rx callback
  1041. * @num_dbs_hw_modes: Number of HW modes supported by the FW
  1042. * @dbs_mode: DBS HW mode list
  1043. * @old_hw_mode_index: Previous configured HW mode index
  1044. * @new_hw_mode_index: Current configured HW mode index
  1045. * @peer_authorized_cb: peer authorized hdd callback
  1046. * @ocb_callback: callback to OCB commands
  1047. * @ocb_resp: response to OCB commands
  1048. * @wow_pno_match_wake_up_count: PNO match wake up count
  1049. * @wow_pno_complete_wake_up_count: PNO complete wake up count
  1050. * @wow_gscan_wake_up_count: Gscan wake up count
  1051. * @wow_low_rssi_wake_up_count: Low rssi wake up count
  1052. * @wow_rssi_breach_wake_up_count: RSSI breach wake up count
  1053. * @wow_ucast_wake_up_count: WoW unicast packet wake up count
  1054. * @wow_bcast_wake_up_count: WoW brodcast packet wake up count
  1055. * @wow_ipv4_mcast_wake_up_count: WoW IPV4 mcast packet wake up count
  1056. * @wow_ipv6_mcast_wake_up_count: WoW IPV6 mcast packet wake up count
  1057. * @wow_ipv6_mcast_ra_stats: WoW IPV6 mcast RA packet wake up count
  1058. * @wow_ipv6_mcast_ns_stats: WoW IPV6 mcast NS packet wake up count
  1059. * @wow_ipv6_mcast_na_stats: WoW IPV6 mcast NA packet wake up count
  1060. * @dual_mac_cfg: Dual mac configuration params for scan and fw mode
  1061. *
  1062. * @max_scan: maximum scan requests than can be queued
  1063. * This structure is global wma context
  1064. * It contains global wma module parameters and
  1065. * handle of other modules.
  1066. * @saved_wmi_init_cmd: Saved WMI INIT command
  1067. * @service_ready_ext_evt: Wait event for service ready ext
  1068. * @wmi_cmd_rsp_wake_lock: wmi command response wake lock
  1069. * @wmi_cmd_rsp_runtime_lock: wmi command response bus lock
  1070. */
  1071. typedef struct {
  1072. void *wmi_handle;
  1073. void *htc_handle;
  1074. void *cds_context;
  1075. void *mac_context;
  1076. qdf_event_t wma_ready_event;
  1077. qdf_event_t wma_resume_event;
  1078. qdf_event_t target_suspend;
  1079. qdf_event_t runtime_suspend;
  1080. qdf_event_t recovery_event;
  1081. uint16_t max_station;
  1082. uint16_t max_bssid;
  1083. uint32_t frame_xln_reqd;
  1084. t_wma_drv_type driver_type;
  1085. uint8_t myaddr[IEEE80211_ADDR_LEN];
  1086. uint8_t hwaddr[IEEE80211_ADDR_LEN];
  1087. wmi_abi_version target_abi_vers;
  1088. wmi_abi_version final_abi_vers;
  1089. uint32_t target_fw_version;
  1090. #ifdef WLAN_FEATURE_LPSS
  1091. uint8_t lpss_support;
  1092. #endif
  1093. uint8_t ap_arpns_support;
  1094. #ifdef FEATURE_GREEN_AP
  1095. bool egap_support;
  1096. #endif
  1097. bool wmi_ready;
  1098. uint32_t wlan_init_status;
  1099. qdf_device_t qdf_dev;
  1100. uint32_t phy_capability;
  1101. uint32_t max_frag_entry;
  1102. uint32_t wmi_service_bitmap[WMI_SERVICE_BM_SIZE];
  1103. wmi_resource_config wlan_resource_config;
  1104. uint32_t frameTransRequired;
  1105. tBssSystemRole wmaGlobalSystemRole;
  1106. pWMATxRxCompFunc tx_frm_download_comp_cb;
  1107. qdf_event_t tx_frm_download_comp_event;
  1108. /*
  1109. * Dummy event to wait for draining MSDUs left in hardware tx
  1110. * queue and before requesting VDEV_STOP. Nobody will set this
  1111. * and wait will timeout, and code will poll the pending tx
  1112. * descriptors number to be zero.
  1113. */
  1114. qdf_event_t tx_queue_empty_event;
  1115. pWMAAckFnTxComp umac_ota_ack_cb[SIR_MAC_MGMT_RESERVED15];
  1116. pWMAAckFnTxComp umac_data_ota_ack_cb;
  1117. unsigned long last_umac_data_ota_timestamp;
  1118. qdf_nbuf_t last_umac_data_nbuf;
  1119. bool needShutdown;
  1120. uint32_t num_mem_chunks;
  1121. struct wmi_host_mem_chunk mem_chunks[MAX_MEM_CHUNKS];
  1122. wma_tgt_cfg_cb tgt_cfg_update_cb;
  1123. wma_dfs_radar_indication_cb dfs_radar_indication_cb;
  1124. HAL_REG_CAPABILITIES reg_cap;
  1125. uint32_t scan_id;
  1126. struct wma_txrx_node *interfaces;
  1127. pdev_cli_config_t pdevconfig;
  1128. qdf_list_t vdev_resp_queue;
  1129. qdf_spinlock_t vdev_respq_lock;
  1130. qdf_list_t wma_hold_req_queue;
  1131. qdf_spinlock_t wma_hold_req_q_lock;
  1132. uint32_t ht_cap_info;
  1133. uint32_t vht_cap_info;
  1134. uint32_t vht_supp_mcs;
  1135. uint32_t num_rf_chains;
  1136. #if defined(QCA_WIFI_FTM)
  1137. struct utf_event_info utf_event_info;
  1138. #endif
  1139. uint8_t is_fw_assert;
  1140. struct wma_wow wow;
  1141. uint8_t no_of_suspend_ind;
  1142. uint8_t no_of_resume_ind;
  1143. /* Have a back up of arp info to send along
  1144. * with ns info suppose if ns also enabled
  1145. */
  1146. tSirHostOffloadReq mArpInfo;
  1147. struct wma_tx_ack_work_ctx *ack_work_ctx;
  1148. uint8_t powersave_mode;
  1149. bool ptrn_match_enable_all_vdev;
  1150. void *pGetRssiReq;
  1151. t_thermal_mgmt thermal_mgmt_info;
  1152. bool roam_offload_enabled;
  1153. /* Here ol_ini_info is used to store ini
  1154. * status of arp offload, ns offload
  1155. * and others. Currently 1st bit is used
  1156. * for arp off load and 2nd bit for ns
  1157. * offload currently, rest bits are unused
  1158. */
  1159. uint8_t ol_ini_info;
  1160. bool ssdp;
  1161. uint8_t ibss_started;
  1162. tSetBssKeyParams ibsskey_info;
  1163. struct ieee80211com *dfs_ic;
  1164. #ifdef FEATURE_WLAN_SCAN_PNO
  1165. qdf_wake_lock_t pno_wake_lock;
  1166. #endif
  1167. #ifdef FEATURE_WLAN_EXTSCAN
  1168. qdf_wake_lock_t extscan_wake_lock;
  1169. #endif
  1170. qdf_wake_lock_t wow_wake_lock;
  1171. int wow_nack;
  1172. qdf_atomic_t is_wow_bus_suspended;
  1173. qdf_mc_timer_t wma_scan_comp_timer;
  1174. uint8_t dfs_phyerr_filter_offload;
  1175. bool suitable_ap_hb_failure;
  1176. ibss_power_save_params wma_ibss_power_save_params;
  1177. #ifdef FEATURE_WLAN_RA_FILTERING
  1178. bool IsRArateLimitEnabled;
  1179. uint16_t RArateLimitInterval;
  1180. #endif
  1181. #ifdef WLAN_FEATURE_LPSS
  1182. bool is_lpass_enabled;
  1183. #endif
  1184. #ifdef WLAN_FEATURE_NAN
  1185. bool is_nan_enabled;
  1186. #endif
  1187. uint8_t staMaxLIModDtim;
  1188. uint8_t staModDtim;
  1189. uint8_t staDynamicDtim;
  1190. int32_t dfs_pri_multiplier;
  1191. uint32_t hw_bd_id;
  1192. uint32_t hw_bd_info[HW_BD_INFO_SIZE];
  1193. uint32_t miracast_value;
  1194. qdf_mc_timer_t log_completion_timer;
  1195. wma_mgmt_frame_rx_callback mgmt_rx;
  1196. uint32_t num_dbs_hw_modes;
  1197. struct dbs_hw_mode_info hw_mode;
  1198. uint32_t old_hw_mode_index;
  1199. uint32_t new_hw_mode_index;
  1200. qdf_atomic_t scan_id_counter;
  1201. wma_peer_authorized_fp peer_authorized_cb;
  1202. uint32_t wow_pno_match_wake_up_count;
  1203. uint32_t wow_pno_complete_wake_up_count;
  1204. uint32_t wow_gscan_wake_up_count;
  1205. uint32_t wow_low_rssi_wake_up_count;
  1206. uint32_t wow_rssi_breach_wake_up_count;
  1207. uint32_t wow_ucast_wake_up_count;
  1208. uint32_t wow_bcast_wake_up_count;
  1209. uint32_t wow_ipv4_mcast_wake_up_count;
  1210. uint32_t wow_ipv6_mcast_wake_up_count;
  1211. uint32_t wow_ipv6_mcast_ra_stats;
  1212. uint32_t wow_ipv6_mcast_ns_stats;
  1213. uint32_t wow_ipv6_mcast_na_stats;
  1214. /* OCB request contexts */
  1215. struct sir_ocb_config *ocb_config_req;
  1216. struct dual_mac_config dual_mac_cfg;
  1217. struct {
  1218. uint16_t pool_size;
  1219. uint16_t num_free;
  1220. union wmi_desc_elem_t *array;
  1221. union wmi_desc_elem_t *freelist;
  1222. qdf_spinlock_t wmi_desc_pool_lock;
  1223. } wmi_desc_pool;
  1224. uint8_t max_scan;
  1225. uint16_t self_gen_frm_pwr;
  1226. bool tx_chain_mask_cck;
  1227. /* Going with a timer instead of wait event because on receiving the
  1228. * service ready event, we will be waiting on the MC thread for the
  1229. * service extended ready event which is also processed in MC thread.
  1230. * This leads to MC thread being stuck. Alternative was to process
  1231. * these events in tasklet/workqueue context. But, this leads to
  1232. * race conditions when the events are processed in two different
  1233. * context. So, processing ready event and extended ready event in
  1234. * the serialized MC thread context with a timer.
  1235. */
  1236. qdf_mc_timer_t service_ready_ext_timer;
  1237. void (*csr_roam_synch_cb)(tpAniSirGlobal mac,
  1238. roam_offload_synch_ind *roam_synch_data,
  1239. tpSirBssDescription bss_desc_ptr, uint8_t reason);
  1240. QDF_STATUS (*pe_roam_synch_cb)(tpAniSirGlobal mac,
  1241. roam_offload_synch_ind *roam_synch_data,
  1242. tpSirBssDescription bss_desc_ptr);
  1243. qdf_wake_lock_t wmi_cmd_rsp_wake_lock;
  1244. qdf_runtime_lock_t wmi_cmd_rsp_runtime_lock;
  1245. qdf_runtime_lock_t wma_runtime_resume_lock;
  1246. uint32_t fine_time_measurement_cap;
  1247. struct wma_ini_config ini_config;
  1248. } t_wma_handle, *tp_wma_handle;
  1249. /**
  1250. * struct wma_target_cap - target capabality
  1251. * @wmi_service_bitmap: wmi services bitmap
  1252. * @wlan_resource_config: resource config
  1253. */
  1254. struct wma_target_cap {
  1255. /* wmi services bitmap received from Target */
  1256. uint32_t wmi_service_bitmap[WMI_SERVICE_BM_SIZE];
  1257. /* default resource config,the os shim can overwrite it */
  1258. wmi_resource_config wlan_resource_config;
  1259. };
  1260. /**
  1261. * struct t_wma_start_req - wma start request parameters
  1262. * @pConfigBuffer: config buffer
  1263. * @usConfigBufferLen: Length of the config buffer above
  1264. * @driver_type: Production or FTM driver
  1265. * @pUserData: user data
  1266. * @pIndUserData: indication function pointer to send to UMAC
  1267. *
  1268. * The shared memory between WDI and HAL is 4K so maximum data can be
  1269. * transferred from WDI to HAL is 4K
  1270. */
  1271. typedef struct {
  1272. void *pConfigBuffer;
  1273. uint16_t usConfigBufferLen;
  1274. t_wma_drv_type driver_type;
  1275. void *pUserData;
  1276. void *pIndUserData;
  1277. } t_wma_start_req;
  1278. /* Enumeration for Version */
  1279. typedef enum {
  1280. WLAN_HAL_MSG_VERSION0 = 0,
  1281. WLAN_HAL_MSG_VERSION1 = 1,
  1282. WLAN_HAL_MSG_WCNSS_CTRL_VERSION = 0x7FFF, /*define as 2 bytes data */
  1283. WLAN_HAL_MSG_VERSION_MAX_FIELD = WLAN_HAL_MSG_WCNSS_CTRL_VERSION
  1284. } tHalHostMsgVersion;
  1285. /**
  1286. * struct sHalMacStartParameter - mac start request parameters
  1287. * @driverType: driver type (production/FTM)
  1288. * @uConfigBufferLen: length of config buffer
  1289. */
  1290. typedef struct qdf_packed sHalMacStartParameter {
  1291. tDriverType driverType;
  1292. uint32_t uConfigBufferLen;
  1293. /* Following this there is a TLV formatted buffer of length
  1294. * "uConfigBufferLen" bytes containing all config values.
  1295. * The TLV is expected to be formatted like this:
  1296. * 0 15 31 31+CFG_LEN-1 length-1
  1297. * | CFG_ID | CFG_LEN | CFG_BODY | CFG_ID |......|
  1298. */
  1299. } tHalMacStartParameter, *tpHalMacStartParameter;
  1300. extern void cds_wma_complete_cback(void *p_cds_context);
  1301. extern void wma_send_regdomain_info_to_fw(uint32_t reg_dmn, uint16_t regdmn2G,
  1302. uint16_t regdmn5G, int8_t ctl2G,
  1303. int8_t ctl5G);
  1304. void wma_get_modeselect(tp_wma_handle wma, uint32_t *modeSelect);
  1305. /**
  1306. * enum frame_index - Frame index
  1307. * @GENERIC_NODOWNLD_NOACK_COMP_INDEX: Frame index for no download comp no ack
  1308. * @GENERIC_DOWNLD_COMP_NOACK_COMP_INDEX: Frame index for download comp no ack
  1309. * @GENERIC_DOWNLD_COMP_ACK_COMP_INDEX: Frame index for download comp and ack
  1310. * @GENERIC_NODOWLOAD_ACK_COMP_INDEX: Frame index for no download comp and ack
  1311. * @FRAME_INDEX_MAX: maximum frame index
  1312. */
  1313. enum frame_index {
  1314. GENERIC_NODOWNLD_NOACK_COMP_INDEX,
  1315. GENERIC_DOWNLD_COMP_NOACK_COMP_INDEX,
  1316. GENERIC_DOWNLD_COMP_ACK_COMP_INDEX,
  1317. GENERIC_NODOWLOAD_ACK_COMP_INDEX,
  1318. FRAME_INDEX_MAX
  1319. };
  1320. /**
  1321. * struct wma_tx_ack_work_ctx - tx ack work context
  1322. * @wma_handle: wma handle
  1323. * @sub_type: sub type
  1324. * @status: status
  1325. * @ack_cmp_work: work structure
  1326. */
  1327. struct wma_tx_ack_work_ctx {
  1328. tp_wma_handle wma_handle;
  1329. uint16_t sub_type;
  1330. int32_t status;
  1331. qdf_work_t ack_cmp_work;
  1332. };
  1333. /**
  1334. * struct wma_target_req - target request parameters
  1335. * @event_timeout: event timeout
  1336. * @node: list
  1337. * @user_data: user data
  1338. * @msg_type: message type
  1339. * @vdev_id: vdev id
  1340. * @type: type
  1341. */
  1342. struct wma_target_req {
  1343. qdf_mc_timer_t event_timeout;
  1344. qdf_list_node_t node;
  1345. void *user_data;
  1346. uint32_t msg_type;
  1347. uint8_t vdev_id;
  1348. uint8_t type;
  1349. };
  1350. /**
  1351. * struct wma_vdev_start_req - vdev start request parameters
  1352. * @beacon_intval: beacon interval
  1353. * @dtim_period: dtim period
  1354. * @max_txpow: max tx power
  1355. * @chan_offset: channel offset
  1356. * @is_dfs: is dfs supported or not
  1357. * @vdev_id: vdev id
  1358. * @chan: channel
  1359. * @oper_mode: operating mode
  1360. * @ssid: ssid
  1361. * @hidden_ssid: hidden ssid
  1362. * @pmf_enabled: is pmf enabled or not
  1363. * @vht_capable: VHT capabality
  1364. * @ht_capable: HT capabality
  1365. * @dfs_pri_multiplier: DFS multiplier
  1366. * @dot11_mode: 802.11 mode
  1367. * @is_half_rate: is the channel operating at 10MHz
  1368. * @is_quarter_rate: is the channel operating at 5MHz
  1369. * @preferred_tx_streams: policy manager indicates the preferred
  1370. * number of transmit streams
  1371. * @preferred_rx_streams: policy manager indicates the preferred
  1372. * number of receive streams
  1373. */
  1374. struct wma_vdev_start_req {
  1375. uint32_t beacon_intval;
  1376. uint32_t dtim_period;
  1377. int32_t max_txpow;
  1378. enum ch_width chan_width;
  1379. bool is_dfs;
  1380. uint8_t vdev_id;
  1381. uint8_t chan;
  1382. uint8_t oper_mode;
  1383. tSirMacSSid ssid;
  1384. uint8_t hidden_ssid;
  1385. uint8_t pmf_enabled;
  1386. uint8_t vht_capable;
  1387. uint8_t ch_center_freq_seg0;
  1388. uint8_t ch_center_freq_seg1;
  1389. uint8_t ht_capable;
  1390. int32_t dfs_pri_multiplier;
  1391. uint8_t dot11_mode;
  1392. bool is_half_rate;
  1393. bool is_quarter_rate;
  1394. uint32_t preferred_tx_streams;
  1395. uint32_t preferred_rx_streams;
  1396. };
  1397. /**
  1398. * struct wma_set_key_params - set key parameters
  1399. * @vdev_id: vdev id
  1400. * @def_key_idx: used to see if we have to read the key from cfg
  1401. * @key_len: key length
  1402. * @peer_mac: peer mac address
  1403. * @singl_tid_rc: 1=Single TID based Replay Count, 0=Per TID based RC
  1404. * @key_type: key type
  1405. * @key_idx: key index
  1406. * @unicast: unicast flag
  1407. * @key_data: key data
  1408. */
  1409. struct wma_set_key_params {
  1410. uint8_t vdev_id;
  1411. /* def_key_idx can be used to see if we have to read the key from cfg */
  1412. uint32_t def_key_idx;
  1413. uint16_t key_len;
  1414. uint8_t peer_mac[IEEE80211_ADDR_LEN];
  1415. uint8_t singl_tid_rc;
  1416. enum eAniEdType key_type;
  1417. uint32_t key_idx;
  1418. bool unicast;
  1419. uint8_t key_data[SIR_MAC_MAX_KEY_LENGTH];
  1420. };
  1421. /**
  1422. * struct t_thermal_cmd_params - thermal command parameters
  1423. * @minTemp: minimum temprature
  1424. * @maxTemp: maximum temprature
  1425. * @thermalEnable: thermal enable
  1426. */
  1427. typedef struct {
  1428. uint16_t minTemp;
  1429. uint16_t maxTemp;
  1430. uint8_t thermalEnable;
  1431. } t_thermal_cmd_params, *tp_thermal_cmd_params;
  1432. /**
  1433. * enum wma_cfg_cmd_id - wma cmd ids
  1434. * @WMA_VDEV_TXRX_FWSTATS_ENABLE_CMDID: txrx firmware stats enable command
  1435. * @WMA_VDEV_TXRX_FWSTATS_RESET_CMDID: txrx firmware stats reset command
  1436. * @WMA_VDEV_MCC_SET_TIME_LATENCY: set MCC latency time
  1437. * @WMA_VDEV_MCC_SET_TIME_QUOTA: set MCC time quota
  1438. * @WMA_VDEV_IBSS_SET_ATIM_WINDOW_SIZE: set IBSS ATIM window size
  1439. * @WMA_VDEV_IBSS_SET_POWER_SAVE_ALLOWED: set IBSS enable power save
  1440. * @WMA_VDEV_IBSS_SET_POWER_COLLAPSE_ALLOWED: set IBSS power collapse enable
  1441. * @WMA_VDEV_IBSS_SET_AWAKE_ON_TX_RX: awake IBSS on TX/RX
  1442. * @WMA_VDEV_IBSS_SET_INACTIVITY_TIME: set IBSS inactivity time
  1443. * @WMA_VDEV_IBSS_SET_TXSP_END_INACTIVITY_TIME: set IBSS TXSP
  1444. * @WMA_VDEV_IBSS_PS_SET_WARMUP_TIME_SECS: set IBSS power save warmup time
  1445. * @WMA_VDEV_IBSS_PS_SET_1RX_CHAIN_IN_ATIM_WINDOW: set IBSS power save ATIM
  1446. * @WMA_VDEV_DFS_CONTROL_CMDID: DFS control command
  1447. * @WMA_VDEV_TXRX_GET_IPA_UC_FW_STATS_CMDID: get IPA microcontroller fw stats
  1448. *
  1449. * wma command ids for configuration request which
  1450. * does not involve sending a wmi command.
  1451. */
  1452. enum wma_cfg_cmd_id {
  1453. WMA_VDEV_TXRX_FWSTATS_ENABLE_CMDID = WMI_CMDID_MAX,
  1454. WMA_VDEV_TXRX_FWSTATS_RESET_CMDID,
  1455. WMA_VDEV_MCC_SET_TIME_LATENCY,
  1456. WMA_VDEV_MCC_SET_TIME_QUOTA,
  1457. WMA_VDEV_IBSS_SET_ATIM_WINDOW_SIZE,
  1458. WMA_VDEV_IBSS_SET_POWER_SAVE_ALLOWED,
  1459. WMA_VDEV_IBSS_SET_POWER_COLLAPSE_ALLOWED,
  1460. WMA_VDEV_IBSS_SET_AWAKE_ON_TX_RX,
  1461. WMA_VDEV_IBSS_SET_INACTIVITY_TIME,
  1462. WMA_VDEV_IBSS_SET_TXSP_END_INACTIVITY_TIME,
  1463. WMA_VDEV_IBSS_PS_SET_WARMUP_TIME_SECS,
  1464. WMA_VDEV_IBSS_PS_SET_1RX_CHAIN_IN_ATIM_WINDOW,
  1465. WMA_VDEV_DFS_CONTROL_CMDID,
  1466. WMA_VDEV_TXRX_GET_IPA_UC_FW_STATS_CMDID,
  1467. WMA_CMD_ID_MAX
  1468. };
  1469. /**
  1470. * struct wma_trigger_uapsd_params - trigger uapsd parameters
  1471. * @wmm_ac: wmm access catagory
  1472. * @user_priority: user priority
  1473. * @service_interval: service interval
  1474. * @suspend_interval: suspend interval
  1475. * @delay_interval: delay interval
  1476. */
  1477. typedef struct wma_trigger_uapsd_params {
  1478. uint32_t wmm_ac;
  1479. uint32_t user_priority;
  1480. uint32_t service_interval;
  1481. uint32_t suspend_interval;
  1482. uint32_t delay_interval;
  1483. } t_wma_trigger_uapsd_params, *tp_wma_trigger_uapsd_params;
  1484. /**
  1485. * enum uapsd_peer_param_max_sp - U-APSD maximum service period of peer station
  1486. * @UAPSD_MAX_SP_LEN_UNLIMITED: unlimited max service period
  1487. * @UAPSD_MAX_SP_LEN_2: max service period = 2
  1488. * @UAPSD_MAX_SP_LEN_4: max service period = 4
  1489. * @UAPSD_MAX_SP_LEN_6: max service period = 6
  1490. */
  1491. enum uapsd_peer_param_max_sp {
  1492. UAPSD_MAX_SP_LEN_UNLIMITED = 0,
  1493. UAPSD_MAX_SP_LEN_2 = 2,
  1494. UAPSD_MAX_SP_LEN_4 = 4,
  1495. UAPSD_MAX_SP_LEN_6 = 6
  1496. };
  1497. /**
  1498. * enum uapsd_peer_param_enabled_ac - U-APSD Enabled AC's of peer station
  1499. * @UAPSD_VO_ENABLED: enable uapsd for voice
  1500. * @UAPSD_VI_ENABLED: enable uapsd for video
  1501. * @UAPSD_BK_ENABLED: enable uapsd for background
  1502. * @UAPSD_BE_ENABLED: enable uapsd for best effort
  1503. */
  1504. enum uapsd_peer_param_enabled_ac {
  1505. UAPSD_VO_ENABLED = 0x01,
  1506. UAPSD_VI_ENABLED = 0x02,
  1507. UAPSD_BK_ENABLED = 0x04,
  1508. UAPSD_BE_ENABLED = 0x08
  1509. };
  1510. /**
  1511. * enum profile_id_t - Firmware profiling index
  1512. * @PROF_CPU_IDLE: cpu idle profile
  1513. * @PROF_PPDU_PROC: ppdu processing profile
  1514. * @PROF_PPDU_POST: ppdu post profile
  1515. * @PROF_HTT_TX_INPUT: htt tx input profile
  1516. * @PROF_MSDU_ENQ: msdu enqueue profile
  1517. * @PROF_PPDU_POST_HAL: ppdu post profile
  1518. * @PROF_COMPUTE_TX_TIME: tx time profile
  1519. * @PROF_MAX_ID: max profile index
  1520. */
  1521. enum profile_id_t {
  1522. PROF_CPU_IDLE,
  1523. PROF_PPDU_PROC,
  1524. PROF_PPDU_POST,
  1525. PROF_HTT_TX_INPUT,
  1526. PROF_MSDU_ENQ,
  1527. PROF_PPDU_POST_HAL,
  1528. PROF_COMPUTE_TX_TIME,
  1529. PROF_MAX_ID,
  1530. };
  1531. /**
  1532. * struct p2p_ie - P2P IE structural definition.
  1533. * @p2p_id: p2p id
  1534. * @p2p_len: p2p length
  1535. * @p2p_oui: p2p OUI
  1536. * @p2p_oui_type: p2p OUI type
  1537. */
  1538. struct p2p_ie {
  1539. uint8_t p2p_id;
  1540. uint8_t p2p_len;
  1541. uint8_t p2p_oui[3];
  1542. uint8_t p2p_oui_type;
  1543. } __packed;
  1544. /**
  1545. * struct p2p_noa_descriptor - noa descriptor
  1546. * @type_count: 255: continuous schedule, 0: reserved
  1547. * @duration: Absent period duration in micro seconds
  1548. * @interval: Absent period interval in micro seconds
  1549. * @start_time: 32 bit tsf time when in starts
  1550. */
  1551. struct p2p_noa_descriptor {
  1552. uint8_t type_count;
  1553. uint32_t duration;
  1554. uint32_t interval;
  1555. uint32_t start_time;
  1556. } __packed;
  1557. /**
  1558. * struct p2p_sub_element_noa - p2p noa element
  1559. * @p2p_sub_id: p2p sub id
  1560. * @p2p_sub_len: p2p sub length
  1561. * @index: identifies instance of NOA su element
  1562. * @oppPS: oppPS state of the AP
  1563. * @ctwindow: ctwindow in TUs
  1564. * @num_descriptors: number of NOA descriptors
  1565. * @noa_descriptors: noa descriptors
  1566. */
  1567. struct p2p_sub_element_noa {
  1568. uint8_t p2p_sub_id;
  1569. uint8_t p2p_sub_len;
  1570. uint8_t index; /* identifies instance of NOA su element */
  1571. uint8_t oppPS:1, /* oppPS state of the AP */
  1572. ctwindow:7; /* ctwindow in TUs */
  1573. uint8_t num_descriptors; /* number of NOA descriptors */
  1574. struct p2p_noa_descriptor noa_descriptors[WMA_MAX_NOA_DESCRIPTORS];
  1575. };
  1576. /**
  1577. * struct wma_decap_info_t - decapsulation info
  1578. * @hdr: header
  1579. * @hdr_len: header length
  1580. */
  1581. struct wma_decap_info_t {
  1582. uint8_t hdr[sizeof(struct ieee80211_qosframe_addr4)];
  1583. int32_t hdr_len;
  1584. };
  1585. /**
  1586. * enum packet_power_save - packet power save params
  1587. * @WMI_VDEV_PPS_PAID_MATCH: paid match param
  1588. * @WMI_VDEV_PPS_GID_MATCH: gid match param
  1589. * @WMI_VDEV_PPS_EARLY_TIM_CLEAR: early tim clear param
  1590. * @WMI_VDEV_PPS_EARLY_DTIM_CLEAR: early dtim clear param
  1591. * @WMI_VDEV_PPS_EOF_PAD_DELIM: eof pad delim param
  1592. * @WMI_VDEV_PPS_MACADDR_MISMATCH: macaddr mismatch param
  1593. * @WMI_VDEV_PPS_DELIM_CRC_FAIL: delim CRC fail param
  1594. * @WMI_VDEV_PPS_GID_NSTS_ZERO: gid nsts zero param
  1595. * @WMI_VDEV_PPS_RSSI_CHECK: RSSI check param
  1596. * @WMI_VDEV_PPS_5G_EBT: 5G ebt param
  1597. */
  1598. typedef enum {
  1599. WMI_VDEV_PPS_PAID_MATCH = 0,
  1600. WMI_VDEV_PPS_GID_MATCH = 1,
  1601. WMI_VDEV_PPS_EARLY_TIM_CLEAR = 2,
  1602. WMI_VDEV_PPS_EARLY_DTIM_CLEAR = 3,
  1603. WMI_VDEV_PPS_EOF_PAD_DELIM = 4,
  1604. WMI_VDEV_PPS_MACADDR_MISMATCH = 5,
  1605. WMI_VDEV_PPS_DELIM_CRC_FAIL = 6,
  1606. WMI_VDEV_PPS_GID_NSTS_ZERO = 7,
  1607. WMI_VDEV_PPS_RSSI_CHECK = 8,
  1608. WMI_VDEV_VHT_SET_GID_MGMT = 9,
  1609. WMI_VDEV_PPS_5G_EBT = 10
  1610. } packet_power_save;
  1611. /**
  1612. * enum green_tx_param - green tx parameters
  1613. * @WMI_VDEV_PARAM_GTX_HT_MCS: ht mcs param
  1614. * @WMI_VDEV_PARAM_GTX_VHT_MCS: vht mcs param
  1615. * @WMI_VDEV_PARAM_GTX_USR_CFG: user cfg param
  1616. * @WMI_VDEV_PARAM_GTX_THRE: thre param
  1617. * @WMI_VDEV_PARAM_GTX_MARGIN: green tx margin param
  1618. * @WMI_VDEV_PARAM_GTX_STEP: green tx step param
  1619. * @WMI_VDEV_PARAM_GTX_MINTPC: mintpc param
  1620. * @WMI_VDEV_PARAM_GTX_BW_MASK: bandwidth mask
  1621. */
  1622. typedef enum {
  1623. WMI_VDEV_PARAM_GTX_HT_MCS,
  1624. WMI_VDEV_PARAM_GTX_VHT_MCS,
  1625. WMI_VDEV_PARAM_GTX_USR_CFG,
  1626. WMI_VDEV_PARAM_GTX_THRE,
  1627. WMI_VDEV_PARAM_GTX_MARGIN,
  1628. WMI_VDEV_PARAM_GTX_STEP,
  1629. WMI_VDEV_PARAM_GTX_MINTPC,
  1630. WMI_VDEV_PARAM_GTX_BW_MASK,
  1631. } green_tx_param;
  1632. #ifdef FEATURE_WLAN_TDLS
  1633. /**
  1634. * struct wma_tdls_params - TDLS parameters
  1635. * @vdev_id: vdev id
  1636. * @tdls_state: TDLS state
  1637. * @notification_interval_ms: notification inerval
  1638. * @tx_discovery_threshold: tx discovery threshold
  1639. * @tx_teardown_threshold: tx teardown threashold
  1640. * @rssi_teardown_threshold: RSSI teardown threshold
  1641. * @rssi_delta: RSSI delta
  1642. * @tdls_options: TDLS options
  1643. * @peer_traffic_ind_window: raffic indication window
  1644. * @peer_traffic_response_timeout: traffic response timeout
  1645. * @puapsd_mask: uapsd mask
  1646. * @puapsd_inactivity_time: uapsd inactivity time
  1647. * @puapsd_rx_frame_threshold: uapsd rx frame threshold
  1648. * @teardown_notification_ms: tdls teardown notification interval
  1649. * @tdls_peer_kickout_threshold: tdls packet threshold for
  1650. * peer kickout operation
  1651. */
  1652. typedef struct wma_tdls_params {
  1653. uint32_t vdev_id;
  1654. uint32_t tdls_state;
  1655. uint32_t notification_interval_ms;
  1656. uint32_t tx_discovery_threshold;
  1657. uint32_t tx_teardown_threshold;
  1658. int32_t rssi_teardown_threshold;
  1659. int32_t rssi_delta;
  1660. uint32_t tdls_options;
  1661. uint32_t peer_traffic_ind_window;
  1662. uint32_t peer_traffic_response_timeout;
  1663. uint32_t puapsd_mask;
  1664. uint32_t puapsd_inactivity_time;
  1665. uint32_t puapsd_rx_frame_threshold;
  1666. uint32_t teardown_notification_ms;
  1667. uint32_t tdls_peer_kickout_threshold;
  1668. } t_wma_tdls_params;
  1669. /**
  1670. * struct wma_tdls_peer_event - TDLS peer event
  1671. * @vdev_id: vdev id
  1672. * @peer_macaddr: peer MAC address
  1673. * @peer_status: TDLS peer status
  1674. * @peer_reason: TDLS peer reason
  1675. */
  1676. typedef struct {
  1677. A_UINT32 vdev_id;
  1678. wmi_mac_addr peer_macaddr;
  1679. A_UINT32 peer_status;
  1680. A_UINT32 peer_reason;
  1681. } wma_tdls_peer_event;
  1682. #endif /* FEATURE_WLAN_TDLS */
  1683. /**
  1684. * struct wma_dfs_radar_channel_list - dfs radar channel list
  1685. * @nchannels: nuber of channels
  1686. * @channels: Channel number including bonded channels on which
  1687. * radar is present
  1688. */
  1689. struct wma_dfs_radar_channel_list {
  1690. A_UINT32 nchannels;
  1691. uint8_t channels[WMA_DFS_MAX_20M_SUB_CH];
  1692. };
  1693. /**
  1694. * struct wma_dfs_radar_indication - Structure to indicate RADAR
  1695. * @vdev_id: vdev id
  1696. * @chan_list: Channel list on which RADAR is detected
  1697. * @dfs_radar_status: Flag to Indicate RADAR presence on the current channel
  1698. * @use_nol: Flag to indicate use NOL
  1699. */
  1700. struct wma_dfs_radar_indication {
  1701. A_UINT32 vdev_id;
  1702. struct wma_dfs_radar_channel_list chan_list;
  1703. uint32_t dfs_radar_status;
  1704. int use_nol;
  1705. };
  1706. /**
  1707. * enum uapsd_ac - U-APSD Access Categories
  1708. * @UAPSD_BE: best effort
  1709. * @UAPSD_BK: back ground
  1710. * @UAPSD_VI: video
  1711. * @UAPSD_VO: voice
  1712. */
  1713. enum uapsd_ac {
  1714. UAPSD_BE,
  1715. UAPSD_BK,
  1716. UAPSD_VI,
  1717. UAPSD_VO
  1718. };
  1719. QDF_STATUS wma_disable_uapsd_per_ac(tp_wma_handle wma_handle,
  1720. uint32_t vdev_id, enum uapsd_ac ac);
  1721. /**
  1722. * enum uapsd_up - U-APSD User Priorities
  1723. * @UAPSD_UP_BE: best effort
  1724. * @UAPSD_UP_BK: back ground
  1725. * @UAPSD_UP_RESV: reserve
  1726. * @UAPSD_UP_EE: Excellent Effort
  1727. * @UAPSD_UP_CL: Critical Applications
  1728. * @UAPSD_UP_VI: video
  1729. * @UAPSD_UP_VO: voice
  1730. * @UAPSD_UP_NC: Network Control
  1731. */
  1732. enum uapsd_up {
  1733. UAPSD_UP_BE,
  1734. UAPSD_UP_BK,
  1735. UAPSD_UP_RESV,
  1736. UAPSD_UP_EE,
  1737. UAPSD_UP_CL,
  1738. UAPSD_UP_VI,
  1739. UAPSD_UP_VO,
  1740. UAPSD_UP_NC,
  1741. UAPSD_UP_MAX
  1742. };
  1743. /**
  1744. * struct wma_unit_test_cmd - unit test command parameters
  1745. * @vdev_id: vdev id
  1746. * @module_id: module id
  1747. * @num_args: number of arguments
  1748. * @args: arguments
  1749. */
  1750. typedef struct wma_unit_test_cmd {
  1751. uint32_t vdev_id;
  1752. WLAN_MODULE_ID module_id;
  1753. uint32_t num_args;
  1754. uint32_t args[WMA_MAX_NUM_ARGS];
  1755. } t_wma_unit_test_cmd;
  1756. /**
  1757. * struct wma_roam_invoke_cmd - roam invoke command
  1758. * @vdev_id: vdev id
  1759. * @bssid: mac address
  1760. * @channel: channel
  1761. */
  1762. struct wma_roam_invoke_cmd {
  1763. uint32_t vdev_id;
  1764. uint8_t bssid[IEEE80211_ADDR_LEN];
  1765. uint32_t channel;
  1766. };
  1767. /**
  1768. * struct wma_process_fw_event_params - fw event parameters
  1769. * @wmi_handle: wmi handle
  1770. * @evt_buf: event buffer
  1771. */
  1772. typedef struct {
  1773. void *wmi_handle;
  1774. void *evt_buf;
  1775. } wma_process_fw_event_params;
  1776. int wma_process_fw_event_handler(void *ctx, void *ev, uint8_t rx_ctx);
  1777. A_UINT32 e_csr_auth_type_to_rsn_authmode(eCsrAuthType authtype,
  1778. eCsrEncryptionType encr);
  1779. A_UINT32 e_csr_encryption_type_to_rsn_cipherset(eCsrEncryptionType encr);
  1780. /*
  1781. * WMA-DFS Hooks
  1782. */
  1783. int ol_if_dfs_attach(struct ieee80211com *ic, void *ptr, void *radar_info);
  1784. uint64_t ol_if_get_tsf64(struct ieee80211com *ic);
  1785. int ol_if_dfs_disable(struct ieee80211com *ic);
  1786. struct dfs_ieee80211_channel *ieee80211_find_channel(struct ieee80211com *ic,
  1787. int freq, uint32_t flags);
  1788. int ol_if_dfs_enable(struct ieee80211com *ic, int *is_fastclk, void *pe);
  1789. uint32_t ieee80211_ieee2mhz(uint32_t chan, uint32_t flags);
  1790. int ol_if_dfs_get_ext_busy(struct ieee80211com *ic);
  1791. int ol_if_dfs_get_mib_cycle_counts_pct(struct ieee80211com *ic,
  1792. uint32_t *rxc_pcnt, uint32_t *rxf_pcnt,
  1793. uint32_t *txf_pcnt);
  1794. uint16_t ol_if_dfs_usenol(struct ieee80211com *ic);
  1795. void ieee80211_mark_dfs(struct ieee80211com *ic,
  1796. struct dfs_ieee80211_channel *ichan);
  1797. int wma_dfs_indicate_radar(struct ieee80211com *ic,
  1798. struct dfs_ieee80211_channel *ichan);
  1799. uint16_t dfs_usenol(struct ieee80211com *ic);
  1800. QDF_STATUS wma_trigger_uapsd_params(tp_wma_handle wma_handle, uint32_t vdev_id,
  1801. tp_wma_trigger_uapsd_params
  1802. trigger_uapsd_params);
  1803. /* added to get average snr for both data and beacon */
  1804. QDF_STATUS wma_send_snr_request(tp_wma_handle wma_handle, void *pGetRssiReq);
  1805. QDF_STATUS wma_update_vdev_tbl(tp_wma_handle wma_handle, uint8_t vdev_id,
  1806. ol_txrx_vdev_handle tx_rx_vdev_handle,
  1807. uint8_t *mac, uint32_t vdev_type, bool add_del);
  1808. void wma_send_flush_logs_to_fw(tp_wma_handle wma_handle);
  1809. void wma_log_completion_timeout(void *data);
  1810. QDF_STATUS wma_set_rssi_monitoring(tp_wma_handle wma,
  1811. struct rssi_monitor_req *req);
  1812. QDF_STATUS wma_send_soc_set_pcl_cmd(tp_wma_handle wma_handle,
  1813. struct sir_pcl_list *msg);
  1814. QDF_STATUS wma_send_soc_set_hw_mode_cmd(tp_wma_handle wma_handle,
  1815. struct sir_hw_mode *msg);
  1816. QDF_STATUS wma_get_scan_id(uint32_t *scan_id);
  1817. QDF_STATUS wma_send_soc_set_dual_mac_config(tp_wma_handle wma_handle,
  1818. struct sir_dual_mac_config *msg);
  1819. QDF_STATUS wma_crash_inject(tp_wma_handle wma_handle, uint32_t type,
  1820. uint32_t delay_time_ms);
  1821. struct wma_target_req *wma_fill_vdev_req(tp_wma_handle wma,
  1822. uint8_t vdev_id,
  1823. uint32_t msg_type, uint8_t type,
  1824. void *params, uint32_t timeout);
  1825. struct wma_target_req *wma_fill_hold_req(tp_wma_handle wma,
  1826. uint8_t vdev_id, uint32_t msg_type,
  1827. uint8_t type, void *params,
  1828. uint32_t timeout);
  1829. QDF_STATUS wma_vdev_start(tp_wma_handle wma,
  1830. struct wma_vdev_start_req *req, bool isRestart);
  1831. void wma_remove_vdev_req(tp_wma_handle wma, uint8_t vdev_id,
  1832. uint8_t type);
  1833. int wmi_desc_pool_init(tp_wma_handle wma_handle, uint32_t pool_size);
  1834. void wmi_desc_pool_deinit(tp_wma_handle wma_handle);
  1835. struct wmi_desc_t *wmi_desc_get(tp_wma_handle wma_handle);
  1836. void wmi_desc_put(tp_wma_handle wma_handle, struct wmi_desc_t *wmi_desc);
  1837. int wma_mgmt_tx_completion_handler(void *handle, uint8_t *cmpl_event_params,
  1838. uint32_t len);
  1839. void wma_set_dfs_region(tp_wma_handle wma, uint8_t dfs_region);
  1840. uint32_t wma_get_vht_ch_width(void);
  1841. QDF_STATUS
  1842. wma_config_debug_module_cmd(wmi_unified_t wmi_handle, A_UINT32 param,
  1843. A_UINT32 val, A_UINT32 *module_id_bitmap,
  1844. A_UINT32 bitmap_len);
  1845. #ifdef FEATURE_LFR_SUBNET_DETECTION
  1846. QDF_STATUS wma_set_gateway_params(tp_wma_handle wma,
  1847. struct gateway_param_update_req *req);
  1848. #else
  1849. static inline QDF_STATUS wma_set_gateway_params(tp_wma_handle wma,
  1850. struct gateway_param_update_req *req)
  1851. {
  1852. return QDF_STATUS_SUCCESS;
  1853. }
  1854. #endif /* FEATURE_LFR_SUBNET_DETECTION */
  1855. #if defined(FEATURE_LRO)
  1856. QDF_STATUS wma_lro_config_cmd(tp_wma_handle wma_handle,
  1857. struct wma_lro_config_cmd_t *wma_lro_cmd);
  1858. #else
  1859. static inline QDF_STATUS wma_lro_config_cmd(tp_wma_handle wma_handle,
  1860. struct wma_lro_config_cmd_t *wma_lro_cmd)
  1861. {
  1862. return QDF_STATUS_SUCCESS;
  1863. }
  1864. #endif
  1865. void
  1866. wma_indicate_err(enum ol_rx_err_type err_type,
  1867. struct ol_error_info *err_info);
  1868. QDF_STATUS wma_ht40_stop_obss_scan(tp_wma_handle wma_handle,
  1869. int32_t vdev_id);
  1870. QDF_STATUS wma_send_ht40_obss_scanind(tp_wma_handle wma,
  1871. struct obss_ht40_scanind *req);
  1872. #endif
  1873. struct wma_ini_config *wma_get_ini_handle(tp_wma_handle wma_handle);