wlan_mlme_public_struct.h 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /*
  19. * DOC: contains mlme structure definations
  20. */
  21. #ifndef _WLAN_MLME_STRUCT_H_
  22. #define _WLAN_MLME_STRUCT_H_
  23. #include <wlan_cmn.h>
  24. #include <reg_services_public_struct.h>
  25. #include <wmi_unified_param.h>
  26. #include <sir_api.h>
  27. #define CFG_PMKID_MODES_OKC (0x1)
  28. #define CFG_PMKID_MODES_PMKSA_CACHING (0x2)
  29. #define CFG_VHT_BASIC_MCS_SET_STADEF 0xFFFE
  30. #define CFG_VHT_RX_MCS_MAP_STAMIN 0
  31. #define CFG_VHT_RX_MCS_MAP_STAMAX 0xFFFF
  32. #define CFG_VHT_RX_MCS_MAP_STADEF 0xFFFE
  33. #define CFG_VHT_TX_MCS_MAP_STAMIN 0
  34. #define CFG_VHT_TX_MCS_MAP_STAMAX 0xFFFF
  35. #define CFG_VHT_TX_MCS_MAP_STADEF 0xFFFE
  36. #define CFG_STR_DATA_LEN 17
  37. #define CFG_EDCA_DATA_LEN 17
  38. #define CFG_MAX_TX_POWER_2_4_LEN 128
  39. #define CFG_MAX_TX_POWER_5_LEN 128
  40. #define CFG_POWER_USAGE_MAX_LEN 4
  41. #define CFG_VALID_CHANNEL_LIST_STRING_LEN (CFG_VALID_CHANNEL_LIST_LEN * 4)
  42. /**
  43. * struct mlme_cfg_str - generic structure for all mlme CFG string items
  44. *
  45. * @max_len: maximum data length allowed
  46. * @len: valid no. of elements of the data
  47. * @data: uint8_t array to store values
  48. */
  49. struct mlme_cfg_str {
  50. qdf_size_t max_len;
  51. qdf_size_t len;
  52. uint8_t data[CFG_STR_DATA_LEN];
  53. };
  54. /**
  55. * enum e_edca_type - to index edca params for edca profile
  56. * EDCA profile AC unicast/bcast
  57. * @edca_ani_acbe_local: ani BE unicast
  58. * @edca_ani_acbk_local: ani BK unicast
  59. * @edca_ani_acvi_local: ani VI unicast
  60. * @edca_ani_acvo_local: ani VO unicast
  61. * @edca_ani_acbe_bcast: ani BE bcast
  62. * @edca_ani_acbk_bcast: ani BK bcast
  63. * @edca_ani_acvi_bcast: ani VI bcast
  64. * @edca_ani_acvo_bcast: ani VO bcast
  65. * @edca_wme_acbe_local: wme BE unicast
  66. * @edca_wme_acbk_local: wme BK unicast
  67. * @edca_wme_acvi_local: wme VI unicast
  68. * @edca_wme_acvo_local: wme VO unicast
  69. * @edca_wme_acbe_bcast: wme BE bcast
  70. * @edca_wme_acbk_bcast: wme BK bcast
  71. * @edca_wme_acvi_bcast: wme VI bcast
  72. * @edca_wme_acvo_bcast: wme VO bcast
  73. * @edca_etsi_acbe_local: etsi BE unicast
  74. * @edca_etsi_acbk_local: etsi BK unicast
  75. * @edca_etsi_acvi_local: etsi VI unicast
  76. * @edca_etsi_acvo_local: etsi VO unicast
  77. * @edca_etsi_acbe_bcast: etsi BE bcast
  78. * @edca_etsi_acbk_bcast: etsi BK bcast
  79. * @edca_etsi_acvi_bcast: etsi VI bcast
  80. * @edca_etsi_acvo_bcast: etsi VO bcast
  81. */
  82. enum e_edca_type {
  83. edca_ani_acbe_local,
  84. edca_ani_acbk_local,
  85. edca_ani_acvi_local,
  86. edca_ani_acvo_local,
  87. edca_ani_acbe_bcast,
  88. edca_ani_acbk_bcast,
  89. edca_ani_acvi_bcast,
  90. edca_ani_acvo_bcast,
  91. edca_wme_acbe_local,
  92. edca_wme_acbk_local,
  93. edca_wme_acvi_local,
  94. edca_wme_acvo_local,
  95. edca_wme_acbe_bcast,
  96. edca_wme_acbk_bcast,
  97. edca_wme_acvi_bcast,
  98. edca_wme_acvo_bcast,
  99. edca_etsi_acbe_local,
  100. edca_etsi_acbk_local,
  101. edca_etsi_acvi_local,
  102. edca_etsi_acvo_local,
  103. edca_etsi_acbe_bcast,
  104. edca_etsi_acbk_bcast,
  105. edca_etsi_acvi_bcast,
  106. edca_etsi_acvo_bcast
  107. };
  108. #define CFG_EDCA_PROFILE_ACM_IDX 0
  109. #define CFG_EDCA_PROFILE_AIFSN_IDX 1
  110. #define CFG_EDCA_PROFILE_CWMINA_IDX 2
  111. #define CFG_EDCA_PROFILE_CWMAXA_IDX 4
  112. #define CFG_EDCA_PROFILE_TXOPA_IDX 6
  113. #define CFG_EDCA_PROFILE_CWMINB_IDX 7
  114. #define CFG_EDCA_PROFILE_CWMAXB_IDX 9
  115. #define CFG_EDCA_PROFILE_TXOPB_IDX 11
  116. #define CFG_EDCA_PROFILE_CWMING_IDX 12
  117. #define CFG_EDCA_PROFILE_CWMAXG_IDX 14
  118. #define CFG_EDCA_PROFILE_TXOPG_IDX 16
  119. /**
  120. * struct mlme_edca_ac_vo - cwmin, cwmax and aifs value for edca_ac_vo
  121. *
  122. * @vo_cwmin: cwmin value for voice
  123. * @vo_cwmax: cwmax value for voice
  124. * @vo_aifs: aifs value for voice
  125. */
  126. struct mlme_edca_ac_vo {
  127. uint32_t vo_cwmin;
  128. uint32_t vo_cwmax;
  129. uint32_t vo_aifs;
  130. };
  131. /**
  132. * enum dot11_mode - Dot11 mode of the vdev
  133. * MLME_DOT11_MODE_ALL: vdev supports all dot11 modes
  134. * MLME_DOT11_MODE_11A: vdev just supports 11A mode
  135. * MLME_DOT11_MODE_11B: vdev supports 11B mode, and modes above it
  136. * MLME_DOT11_MODE_11G: vdev supports 11G mode, and modes above it
  137. * MLME_DOT11_MODE_11N: vdev supports 11N mode, and modes above it
  138. * MLME_DOT11_MODE_11G_ONLY: vdev just supports 11G mode
  139. * MLME_DOT11_MODE_1N_ONLYA: vdev just supports 11N mode
  140. * MLME_DOT11_MODE_11AC: vdev supports 11AC mode, and modes above it
  141. * MLME_DOT11_MODE_11AC_ONLY: vdev just supports 11AC mode
  142. * MLME_DOT11_MODE_11AX: vdev supports 11AX mode, and modes above it
  143. * MLME_DOT11_MODE_11AX_ONLY: vdev just supports 11AX mode
  144. */
  145. enum mlme_dot11_mode {
  146. MLME_DOT11_MODE_ALL,
  147. MLME_DOT11_MODE_11A,
  148. MLME_DOT11_MODE_11B,
  149. MLME_DOT11_MODE_11G,
  150. MLME_DOT11_MODE_11N,
  151. MLME_DOT11_MODE_11G_ONLY,
  152. MLME_DOT11_MODE_11N_ONLY,
  153. MLME_DOT11_MODE_11AC,
  154. MLME_DOT11_MODE_11AC_ONLY,
  155. MLME_DOT11_MODE_11AX,
  156. MLME_DOT11_MODE_11AX_ONLY
  157. };
  158. /**
  159. * struct wlan_mlme_dot11_mode - dot11 mode
  160. *
  161. * @dot11_mode: dot11 mode supported
  162. */
  163. struct wlan_mlme_dot11_mode {
  164. enum mlme_dot11_mode dot11_mode;
  165. };
  166. /**
  167. * struct mlme_edca_ac_vi - cwmin, cwmax and aifs value for edca_ac_vi
  168. *
  169. * @vi_cwmin: cwmin value for video
  170. * @vi_cwmax: cwmax value for video
  171. * @vi_aifs: aifs value for video
  172. */
  173. struct mlme_edca_ac_vi {
  174. uint32_t vi_cwmin;
  175. uint32_t vi_cwmax;
  176. uint32_t vi_aifs;
  177. };
  178. /**
  179. * struct mlme_edca_ac_bk - cwmin, cwmax and aifs value for edca_ac_bk
  180. *
  181. * @bk_cwmin: cwmin value for background
  182. * @bk_cwmax: cwmax value for background
  183. * @bk_aifs: aifs value for background
  184. */
  185. struct mlme_edca_ac_bk {
  186. uint32_t bk_cwmin;
  187. uint32_t bk_cwmax;
  188. uint32_t bk_aifs;
  189. };
  190. /**
  191. * struct mlme_edca_ac_be - cwmin, cwmax and aifs value for edca_ac_be
  192. *
  193. * @be_cwmin: cwmin value for best effort
  194. * @be_cwmax: cwmax value for best effort
  195. * @be_aifs: aifs value for best effort
  196. */
  197. struct mlme_edca_ac_be {
  198. uint32_t be_cwmin;
  199. uint32_t be_cwmax;
  200. uint32_t be_aifs;
  201. };
  202. /**
  203. * enum mlme_ts_info_ack_policy - TS Info Ack Policy
  204. * @TS_INFO_ACK_POLICY_NORMAL_ACK:normal ack
  205. * @TS_INFO_ACK_POLICY_HT_IMMEDIATE_BLOCK_ACK: HT immediate block ack
  206. */
  207. enum mlme_ts_info_ack_policy {
  208. TS_INFO_ACK_POLICY_NORMAL_ACK = 0,
  209. TS_INFO_ACK_POLICY_HT_IMMEDIATE_BLOCK_ACK = 1,
  210. };
  211. /**
  212. * struct mlme_edca_params - EDCA pramaters related config items
  213. *
  214. * @ani_acbk_l: EDCA parameters for ANI local access category background
  215. * @ani_acbe_l: EDCA parameters for ANI local access category best effort
  216. * @ani_acvi_l: EDCA parameters for ANI local access category video
  217. * @ani_acvo_l: EDCA parameters for ANI local access category voice
  218. * @ani_acbk_b: EDCA parameters for ANI bcast access category background
  219. * @ani_acbe_b: EDCA parameters for ANI bcast access category best effort
  220. * @ani_acvi_b: EDCA parameters for ANI bcast access category video
  221. * @ani_acvo_b: EDCA parameters for ANI bcast access category voice
  222. * @wme_acbk_l: EDCA parameters for WME local access category background
  223. * @wme_acbe_l: EDCA parameters for WME local access category best effort
  224. * @wme_acvi_l: EDCA parameters for WME local access category video
  225. * @wme_acvo_l: EDCA parameters for WME local access category voice
  226. * @wme_acbk_b: EDCA parameters for WME bcast access category background
  227. * @wme_acbe_b: EDCA parameters for WME bcast access category best effort
  228. * @wme_acvi_b: EDCA parameters for WME bcast access category video
  229. * @wme_acvo_b: EDCA parameters for WME bcast access category voice
  230. * @etsi_acbk_l: EDCA parameters for ETSI local access category background
  231. * @etsi_acbe_l: EDCA parameters for ETSI local access category best effort
  232. * @etsi_acvi_l: EDCA parameters for ETSI local access category video
  233. * @etsi_acvo_l: EDCA parameters for ETSI local access category voice
  234. * @etsi_acbk_b: EDCA parameters for ETSI bcast access category background
  235. * @etsi_acbe_b: EDCA parameters for ETSI bcast access category best effort
  236. * @etsi_acvi_b: EDCA parameters for ETSI bcast access category video
  237. * @etsi_acvo_b: EDCA parameters for ETSI bcast access category voice
  238. * @enable_edca_params: Enable edca parameter
  239. * @mlme_edca_ac_vo: value for edca_ac_vo
  240. * @mlme_edca_ac_vi: value for edca_ac_vi
  241. * @mlme_edca_ac_bk: value for edca_ac_bk
  242. * @mlme_edca_ac_be: value for edca_ac_be
  243. */
  244. struct wlan_mlme_edca_params {
  245. struct mlme_cfg_str ani_acbk_l;
  246. struct mlme_cfg_str ani_acbe_l;
  247. struct mlme_cfg_str ani_acvi_l;
  248. struct mlme_cfg_str ani_acvo_l;
  249. struct mlme_cfg_str ani_acbk_b;
  250. struct mlme_cfg_str ani_acbe_b;
  251. struct mlme_cfg_str ani_acvi_b;
  252. struct mlme_cfg_str ani_acvo_b;
  253. struct mlme_cfg_str wme_acbk_l;
  254. struct mlme_cfg_str wme_acbe_l;
  255. struct mlme_cfg_str wme_acvi_l;
  256. struct mlme_cfg_str wme_acvo_l;
  257. struct mlme_cfg_str wme_acbk_b;
  258. struct mlme_cfg_str wme_acbe_b;
  259. struct mlme_cfg_str wme_acvi_b;
  260. struct mlme_cfg_str wme_acvo_b;
  261. struct mlme_cfg_str etsi_acbk_l;
  262. struct mlme_cfg_str etsi_acbe_l;
  263. struct mlme_cfg_str etsi_acvi_l;
  264. struct mlme_cfg_str etsi_acvo_l;
  265. struct mlme_cfg_str etsi_acbk_b;
  266. struct mlme_cfg_str etsi_acbe_b;
  267. struct mlme_cfg_str etsi_acvi_b;
  268. struct mlme_cfg_str etsi_acvo_b;
  269. bool enable_edca_params;
  270. struct mlme_edca_ac_vo edca_ac_vo;
  271. struct mlme_edca_ac_vi edca_ac_vi;
  272. struct mlme_edca_ac_bk edca_ac_bk;
  273. struct mlme_edca_ac_be edca_ac_be;
  274. };
  275. #define WLAN_CFG_MFR_NAME_LEN (63)
  276. #define WLAN_CFG_MODEL_NUMBER_LEN (31)
  277. #define WLAN_CFG_MODEL_NAME_LEN (31)
  278. #define WLAN_CFG_MFR_PRODUCT_NAME_LEN (31)
  279. #define WLAN_CFG_MFR_PRODUCT_VERSION_LEN (31)
  280. #define MLME_NUM_WLM_LATENCY_LEVEL 4
  281. #define MLME_RMENABLEDCAP_MAX_LEN 5
  282. /**
  283. * struct mlme_ht_capabilities_info - HT Capabilities Info
  284. * @l_sig_tx_op_protection: L-SIG TXOP Protection Mechanism support
  285. * @stbc_control_frame: STBC Control frame support
  286. * @psmp: PSMP Support
  287. * @dsss_cck_mode_40_mhz: To indicate use of DSSS/CCK in 40Mhz
  288. * @maximal_amsdu_size: Maximum AMSDU Size - 0:3839 octes, 1:7935 octets
  289. * @delayed_ba: Support of Delayed Block Ack
  290. * @rx_stbc: Rx STBC Support - 0:Not Supported, 1: 1SS, 2: 1,2SS, 3: 1,2,3SS
  291. * @tx_stbc: Tx STBC Support
  292. * @short_gi_40_mhz: Short GI Support for HT40
  293. * @short_gi_20_mhz: Short GI support for HT20
  294. * @green_field: Support for HT Greenfield PPDUs
  295. * @mimo_power_save: SM Power Save Mode - 0:Static, 1:Dynamic, 3:Disabled, 2:Res
  296. * @supported_channel_width_set: Supported Chan Width - 0:20Mhz, 1:20Mhz & 40Mhz
  297. * @adv_coding_cap: Rx LDPC support
  298. */
  299. #ifndef ANI_LITTLE_BIT_ENDIAN
  300. struct mlme_ht_capabilities_info {
  301. uint16_t l_sig_tx_op_protection:1;
  302. uint16_t stbc_control_frame:1;
  303. uint16_t psmp:1;
  304. uint16_t dsss_cck_mode_40_mhz:1;
  305. uint16_t maximal_amsdu_size:1;
  306. uint16_t delayed_ba:1;
  307. uint16_t rx_stbc:2;
  308. uint16_t tx_stbc:1;
  309. uint16_t short_gi_40_mhz:1;
  310. uint16_t short_gi_20_mhz:1;
  311. uint16_t green_field:1;
  312. uint16_t mimo_power_save:2;
  313. uint16_t supported_channel_width_set:1;
  314. uint16_t adv_coding_cap:1;
  315. } qdf_packed;
  316. #else
  317. struct mlme_ht_capabilities_info {
  318. uint16_t adv_coding_cap:1;
  319. uint16_t supported_channel_width_set:1;
  320. uint16_t mimo_power_save:2;
  321. uint16_t green_field:1;
  322. uint16_t short_gi_20_mhz:1;
  323. uint16_t short_gi_40_mhz:1;
  324. uint16_t tx_stbc:1;
  325. uint16_t rx_stbc:2;
  326. uint16_t delayed_ba:1;
  327. uint16_t maximal_amsdu_size:1;
  328. uint16_t dsss_cck_mode_40_mhz:1;
  329. uint16_t psmp:1;
  330. uint16_t stbc_control_frame:1;
  331. uint16_t l_sig_tx_op_protection:1;
  332. } qdf_packed;
  333. #endif
  334. /**
  335. * struct mlme_ht_param_info - HT AMPDU Parameters Info
  336. * @reserved: reserved bits
  337. * @mpdu_density: MPDU Density
  338. * @max_rx_ampdu_factor: Max Rx AMPDU Factor
  339. */
  340. #ifndef ANI_LITTLE_BIT_ENDIAN
  341. struct mlme_ht_param_info {
  342. uint8_t reserved:3;
  343. uint8_t mpdu_density:3;
  344. uint8_t max_rx_ampdu_factor:2;
  345. } qdf_packed;
  346. #else
  347. struct mlme_ht_param_info {
  348. uint8_t max_rx_ampdu_factor:2;
  349. uint8_t mpdu_density:3;
  350. uint8_t reserved:3;
  351. #endif
  352. } qdf_packed;
  353. /**
  354. * struct mlme_ht_ext_cap_info - Extended HT Capabilities Info
  355. * reserved_2: Reserved Bits
  356. * mcs_feedback: MCS Feedback Capability
  357. * reserved_1: Reserved Bits
  358. * transition_time: Time needed for transition between 20Mhz and 40 Mhz
  359. * pco: PCO (Phased Coexistence Operation) Support
  360. */
  361. #ifndef ANI_LITTLE_BIT_ENDIAN
  362. struct mlme_ht_ext_cap_info {
  363. uint16_t reserved_2:6;
  364. uint16_t mcs_feedback:2;
  365. uint16_t reserved_1:5;
  366. uint16_t transition_time:2;
  367. uint16_t pco:1;
  368. } qdf_packed;
  369. #else
  370. struct mlme_ht_ext_cap_info {
  371. uint16_t pco:1;
  372. uint16_t transition_time:2;
  373. uint16_t reserved1:5;
  374. uint16_t mcs_feedback:2;
  375. uint16_t reserved2:6;
  376. } qdf_packed;
  377. #endif
  378. /**
  379. * struct mlme_ht_info_field_1 - Additional HT IE Field1
  380. * @service_interval_granularity: Shortest Service Interval
  381. * @controlled_access_only: Access Control for assoc requests
  382. * @rifs_mode: Reduced Interframe Spacing mode
  383. * @recommended_tx_width_set: Recommended Tx Channel Width
  384. * @secondary_channel_offset: Secondary Channel Offset
  385. */
  386. #ifndef ANI_LITTLE_BIT_ENDIAN
  387. struct mlme_ht_info_field_1 {
  388. uint8_t service_interval_granularity:3;
  389. uint8_t controlled_access_only:1;
  390. uint8_t rifs_mode:1;
  391. uint8_t recommended_tx_width_set:1;
  392. uint8_t secondary_channel_offset:2;
  393. } qdf_packed;
  394. #else
  395. struct mlme_ht_info_field_1 {
  396. uint8_t secondary_channel_offset:2;
  397. uint8_t recommended_tx_width_set:1;
  398. uint8_t rifs_mode:1;
  399. uint8_t controlled_access_only:1;
  400. uint8_t service_interval_granularity:3;
  401. } qdf_packed;
  402. #endif
  403. /* struct mlme_ht_info_field_2 - Additional HT IE Field2
  404. * @reserved: reserved bits
  405. * @obss_non_ht_sta_present: Protection for non-HT STAs by Overlapping BSS
  406. * @transmit_burst_limit: Transmit Burst Limit
  407. * @non_gf_devices_present: Non Greenfield devices present
  408. * @op_mode: Operation Mode
  409. */
  410. #ifndef ANI_LITTLE_BIT_ENDIAN
  411. struct mlme_ht_info_field_2 {
  412. uint16_t reserved:11;
  413. uint16_t obss_non_ht_sta_present:1;
  414. uint16_t transmit_burst_limit:1;
  415. uint16_t non_gf_devices_present:1;
  416. uint16_t op_mode:2;
  417. } qdf_packed;
  418. #else
  419. struct mlme_ht_info_field_2 {
  420. uint16_t op_mode:2;
  421. uint16_t non_gf_devices_present:1;
  422. uint16_t transmit_burst_limit:1;
  423. uint16_t obss_non_ht_sta_present:1;
  424. uint16_t reserved:11;
  425. } qdf_packed;
  426. #endif
  427. /**
  428. * struct mlme_ht_info_field_3 - Additional HT IE Field3
  429. * @reserved: reserved bits
  430. * @pco_phase: PCO Phase
  431. * @pco_active: PCO state
  432. * @lsig_txop_protection_full_support: L-Sig TXOP Protection Full Support
  433. * @secondary_beacon: Beacon ID
  434. * @dual_cts_protection: Dual CTS protection Required
  435. * @basic_stbc_mcs: Basic STBC MCS
  436. */
  437. #ifndef ANI_LITTLE_BIT_ENDIAN
  438. struct mlme_ht_info_field_3 {
  439. uint16_t reserved:4;
  440. uint16_t pco_phase:1;
  441. uint16_t pco_active:1;
  442. uint16_t lsig_txop_protection_full_support:1;
  443. uint16_t secondary_beacon:1;
  444. uint16_t dual_cts_protection:1;
  445. uint16_t basic_stbc_mcs:7;
  446. } qdf_packed;
  447. #else
  448. struct mlme_ht_info_field_3 {
  449. uint16_t basic_stbc_mcs:7;
  450. uint16_t dual_cts_protection:1;
  451. uint16_t secondary_beacon:1;
  452. uint16_t lsig_txop_protection_full_support:1;
  453. uint16_t pco_active:1;
  454. uint16_t pco_phase:1;
  455. uint16_t reserved:4;
  456. } qdf_packed;
  457. #endif
  458. /**
  459. * struct wlan_mlme_ht_caps - HT Capabilities related config items
  460. * @ht_cap_info: HT capabilities Info Structure
  461. * @ampdu_params: AMPDU parameters
  462. * @ext_cap_info: HT EXT capabilities info
  463. * @info_field_1: HT Information Subset 1
  464. * @info_field_2: HT Information Subset 2
  465. * @info_field_3: HT Information Subset 3
  466. * @short_preamble: Short Preamble support
  467. * @enable_ampdu_ps: Enable AMPDU Power Save
  468. * @enable_smps: Enabled SM Power Save
  469. * @smps : SM Power Save mode
  470. * @max_num_amsdu: Max number of AMSDU
  471. * @tx_ldpc_enable: Enable Tx LDPC
  472. * @short_slot_time_enabled: Enabled/disable short slot time
  473. */
  474. struct wlan_mlme_ht_caps {
  475. struct mlme_ht_capabilities_info ht_cap_info;
  476. struct mlme_ht_param_info ampdu_params;
  477. struct mlme_ht_ext_cap_info ext_cap_info;
  478. struct mlme_ht_info_field_1 info_field_1;
  479. struct mlme_ht_info_field_2 info_field_2;
  480. struct mlme_ht_info_field_3 info_field_3;
  481. bool short_preamble;
  482. bool enable_ampdu_ps;
  483. bool enable_smps;
  484. uint8_t smps;
  485. uint8_t max_num_amsdu;
  486. uint8_t tx_ldpc_enable;
  487. bool short_slot_time_enabled;
  488. };
  489. #define MLME_CFG_WPS_UUID_MAX_LEN 16
  490. /*
  491. * struct wlan_mlme_wps_params - All wps based related cfg items
  492. *
  493. * @enable_wps - to enable wps
  494. * @wps_state - current wps state
  495. * @wps_version - wps version
  496. * @wps_cfg_method - wps config method
  497. * @wps_primary_device_category - wps primary device category
  498. * @wps_primary_device_oui - primary device OUI
  499. * @wps_device_sub_category - device sub category
  500. * @wps_device_password_id - password id of device
  501. * @wps_uuid - wps uuid to be sent in probe
  502. */
  503. struct wlan_mlme_wps_params {
  504. uint8_t enable_wps;
  505. uint8_t wps_state;
  506. uint8_t wps_version;
  507. uint32_t wps_cfg_method;
  508. uint32_t wps_primary_device_category;
  509. uint32_t wps_primary_device_oui;
  510. uint16_t wps_device_sub_category;
  511. uint32_t wps_device_password_id;
  512. struct mlme_cfg_str wps_uuid;
  513. };
  514. #define MLME_CFG_LISTEN_INTERVAL 1
  515. #define MLME_CFG_BEACON_INTERVAL_DEF 100
  516. #define MLME_CFG_TX_MGMT_RATE_DEF 0xFF
  517. #define MLME_CFG_TX_MGMT_2G_RATE_DEF 0xFF
  518. #define MLME_CFG_TX_MGMT_5G_RATE_DEF 0xFF
  519. #define MLME_CFG_SSID_LEN 32
  520. /**
  521. * struct wlan_mlme_cfg_sap - SAP related config items
  522. * @cfg_ssid: SSID to be configured
  523. * @beacon_interval: beacon interval
  524. * @dtim_interval: dtim interval
  525. * @listen_interval: listen interval
  526. * @sap_11g_policy: Check if 11g support is enabled
  527. * @assoc_sta_limit: Limit on number of STA associated to SAP
  528. * @enable_lte_coex: Flag for LTE coexistence
  529. * @rmc_action_period_freq: rmc action period frequency
  530. * @rate_tx_mgmt: mgmt frame tx rate
  531. * @rate_tx_mgmt_2g: mgmt frame tx rate for 2G band
  532. * @rate_tx_mgmt_5g: mgmt frame tx rate for 5G band
  533. * @tele_bcn_wakeup_en: beacon wakeup enable/disable
  534. * @tele_bcn_max_li: max listen interval
  535. * @sap_get_peer_info: get peer info
  536. * @sap_allow_all_chan_param_name: allow all channels
  537. * @sap_max_no_peers: Maximum number of peers
  538. * @sap_max_offload_peers: Maximum number of peer offloads
  539. * @sap_max_offload_reorder_buffs: Maximum offload reorder buffs
  540. * @sap_ch_switch_beacon_cnt: Number of beacons to be sent out during CSA
  541. * @sap_internal_restart: flag to check if sap restart is in progress
  542. * @sap_ch_switch_mode: Channel switch test mode enable/disable
  543. * @chan_switch_hostapd_rate_enabled_name: enable/disable skip hostapd rate
  544. * @reduced_beacon_interval: reduced beacon interval value
  545. * @max_li_modulated_dtim_time: Max modulated DTIM time.
  546. * @country_code_priority: Country code priority.
  547. * @sap_pref_chan_location: SAP Preferred channel location.
  548. * @sap_mcc_chnl_avoid: SAP MCC channel avoidance flag
  549. * @sap_11ac_override: Overrirde SAP bandwidth to 11ac
  550. * @go_11ac_override: Override GO bandwidth to 11ac
  551. */
  552. struct wlan_mlme_cfg_sap {
  553. uint8_t cfg_ssid[MLME_CFG_SSID_LEN];
  554. uint8_t cfg_ssid_len;
  555. uint16_t beacon_interval;
  556. uint16_t dtim_interval;
  557. uint16_t listen_interval;
  558. bool sap_11g_policy;
  559. uint8_t assoc_sta_limit;
  560. bool enable_lte_coex;
  561. uint16_t rmc_action_period_freq;
  562. uint8_t rate_tx_mgmt;
  563. uint8_t rate_tx_mgmt_2g;
  564. uint8_t rate_tx_mgmt_5g;
  565. bool tele_bcn_wakeup_en;
  566. uint8_t tele_bcn_max_li;
  567. bool sap_get_peer_info;
  568. bool sap_allow_all_chan_param_name;
  569. uint8_t sap_max_no_peers;
  570. uint8_t sap_max_offload_peers;
  571. uint8_t sap_max_offload_reorder_buffs;
  572. uint8_t sap_ch_switch_beacon_cnt;
  573. bool sap_internal_restart;
  574. bool sap_ch_switch_mode;
  575. bool chan_switch_hostapd_rate_enabled_name;
  576. uint8_t reduced_beacon_interval;
  577. uint8_t max_li_modulated_dtim_time;
  578. bool country_code_priority;
  579. uint8_t sap_pref_chan_location;
  580. bool sap_force_11n_for_11ac;
  581. bool go_force_11n_for_11ac;
  582. bool ap_random_bssid_enable;
  583. uint8_t sap_mcc_chnl_avoid;
  584. bool sap_11ac_override;
  585. bool go_11ac_override;
  586. bool sap_sae_enabled;
  587. };
  588. /**
  589. * struct wlan_mlme_dfs_cfg - DFS Capabilities related config items
  590. * @dfs_master_capable: Is DFS master mode support enabled
  591. * @dfs_disable_channel_switch: disable channel switch on radar detection
  592. * @dfs_ignore_cac: Disable cac
  593. * @dfs_filter_offload: dfs filter offloaad
  594. * @dfs_beacon_tx_enhanced: enhance dfs beacon tx
  595. * @dfs_prefer_non_dfs: perefer non dfs channel after radar
  596. * @dfs_disable_japan_w53: Disable W53 channels
  597. * @sap_tx_leakage_threshold: sap tx leakage threshold
  598. */
  599. struct wlan_mlme_dfs_cfg {
  600. bool dfs_master_capable;
  601. bool dfs_disable_channel_switch;
  602. bool dfs_ignore_cac;
  603. bool dfs_filter_offload;
  604. bool dfs_beacon_tx_enhanced;
  605. bool dfs_prefer_non_dfs;
  606. bool dfs_disable_japan_w53;
  607. uint32_t sap_tx_leakage_threshold;
  608. };
  609. /**
  610. * struct wlan_mlme_mbo - Multiband Operation related ini configs
  611. * @mbo_candidate_rssi_thres: candidate AP's min rssi to accept it
  612. * @mbo_current_rssi_thres: Connected AP's rssi threshold below which
  613. * transition is considered
  614. * @mbo_current_rssi_mcc_thres: connected AP's RSSI threshold value to prefer
  615. * against MCC
  616. * @mbo_candidate_rssi_btc_thres: Candidate AP's minimum RSSI threshold to
  617. * prefer it even in BT coex.
  618. */
  619. struct wlan_mlme_mbo {
  620. int8_t mbo_candidate_rssi_thres;
  621. int8_t mbo_current_rssi_thres;
  622. int8_t mbo_current_rssi_mcc_thres;
  623. int8_t mbo_candidate_rssi_btc_thres;
  624. };
  625. /**
  626. * struct wlan_mlme_powersave - Powersave related ini configs
  627. * @is_imps_enabled: flag to enable/disable IMPS
  628. * @is_bmps_enabled: flag to enable/disable BMPS
  629. * @auto_bmps_timer: auto BMPS timer value
  630. * @bmps_min_listen_interval: BMPS listen inteval minimum value
  631. * @bmps_max_listen_interval: BMPS listen interval maximum value
  632. * @dtim_selection_diversity: dtim selection diversity value to be sent to fw
  633. */
  634. struct wlan_mlme_powersave {
  635. bool is_imps_enabled;
  636. bool is_bmps_enabled;
  637. uint32_t auto_bmps_timer_val;
  638. uint32_t bmps_min_listen_interval;
  639. uint32_t bmps_max_listen_interval;
  640. uint32_t dtim_selection_diversity;
  641. };
  642. /**
  643. * struct wlan_mlme_vht_caps - MLME VHT config items
  644. * @supp_chan_width: Supported Channel Width
  645. * @ldpc_coding_cap: LDPC Coding Capability
  646. * @short_gi_80mhz: 80MHz Short Guard Interval
  647. * @short_gi_160mhz: 160MHz Short Guard Interval
  648. * @tx_stbc: Tx STBC cap
  649. * @rx_stbc: Rx STBC cap
  650. * @su_bformer: SU Beamformer cap
  651. * @su_bformee: SU Beamformee cap
  652. * @tx_bfee_ant_supp: Tx beamformee anti supp
  653. * @num_soundingdim: Number of sounding dimensions
  654. * @mu_bformer: MU Beamformer cap
  655. * @txop_ps: Tx OPs in power save
  656. * @htc_vhtc: htc_vht capability
  657. * @link_adap_cap: Link adaptation capability
  658. * @rx_antpattern: Rx Antenna Pattern cap
  659. * @tx_antpattern: Tx Antenna Pattern cap
  660. * @rx_mcs_map: Rx MCS Map
  661. * @tx_mcs_map: Tx MCS Map
  662. * @rx_supp_data_rate: Rx highest supported data rate
  663. * @tx_supp_data_rate: Tx highest supported data rate
  664. * @basic_mcs_set: Basic MCS set
  665. * @enable_txbf_20mhz: enable tx bf for 20mhz
  666. * @channel_width: Channel width capability for 11ac
  667. * @rx_mcs: VHT Rx MCS capability for 1x1 mode
  668. * @tx_mcs: VHT Tx MCS capability for 1x1 mode
  669. * @rx_mcs2x2: VHT Rx MCS capability for 2x2 mode
  670. * @tx_mcs2x2: VHT Tx MCS capability for 2x2 mode
  671. * @enable_vht20_mcs9: Enables VHT MCS9 in 20M BW operation
  672. * @enable2x2: Enables/disables VHT Tx/Rx MCS values for 2x2
  673. * @enable_mu_bformee: Enables/disables multi-user (MU)
  674. * beam formee capability
  675. * @enable_paid: Enables/disables paid
  676. * @enable_gid: Enables/disables gid
  677. * @b24ghz_band: To control VHT support in 2.4 GHz band
  678. * @vendor_24ghz_band: to control VHT support based on vendor
  679. * ie in 2.4 GHz band
  680. * @ampdu_len_exponent: To handle maximum receive AMPDU ampdu len exponent
  681. * @ampdu_len: To handle maximum receive AMPDU ampdu len
  682. * @tx_bfee_sap: enable tx bfee SAp
  683. * @subfee_vendor_vhtie: enable subfee vendor vht ie
  684. * @tx_bf_cap: Transmit bf capability
  685. * @as_cap: Antenna sharing capability info
  686. * @disable_ldpc_with_txbf_ap: Disable ldpc capability
  687. */
  688. struct mlme_vht_capabilities_info {
  689. uint8_t supp_chan_width;
  690. bool ldpc_coding_cap;
  691. bool short_gi_80mhz;
  692. bool short_gi_160mhz;
  693. bool tx_stbc;
  694. bool rx_stbc;
  695. bool su_bformer;
  696. bool su_bformee;
  697. uint8_t tx_bfee_ant_supp;
  698. uint8_t num_soundingdim;
  699. bool mu_bformer;
  700. bool txop_ps;
  701. bool htc_vhtc;
  702. uint8_t link_adap_cap;
  703. bool rx_antpattern;
  704. bool tx_antpattern;
  705. uint32_t rx_mcs_map;
  706. uint32_t tx_mcs_map;
  707. uint32_t rx_supp_data_rate;
  708. uint32_t tx_supp_data_rate;
  709. uint32_t basic_mcs_set;
  710. bool enable_txbf_20mhz;
  711. uint8_t channel_width;
  712. uint32_t rx_mcs;
  713. uint32_t tx_mcs;
  714. uint8_t rx_mcs2x2;
  715. uint8_t tx_mcs2x2;
  716. bool enable_vht20_mcs9;
  717. bool enable2x2;
  718. bool enable_mu_bformee;
  719. bool enable_paid;
  720. bool enable_gid;
  721. bool b24ghz_band;
  722. bool vendor_24ghz_band;
  723. uint8_t ampdu_len_exponent;
  724. uint8_t ampdu_len;
  725. bool tx_bfee_sap;
  726. bool vendor_vhtie;
  727. uint8_t tx_bf_cap;
  728. uint8_t as_cap;
  729. bool disable_ldpc_with_txbf_ap;
  730. };
  731. /**
  732. * struct wlan_mlme_vht_caps - VHT Capabilities related config items
  733. * @vht_cap_info: VHT capabilities Info Structure
  734. */
  735. struct wlan_mlme_vht_caps {
  736. struct mlme_vht_capabilities_info vht_cap_info;
  737. };
  738. /**
  739. * struct wlan_mlme_qos - QOS TX/RX aggregation related CFG items
  740. * @tx_aggregation_size: TX aggr size in number of MPDUs
  741. * @tx_aggregation_size_be: No. of MPDUs for BE queue for TX aggr
  742. * @tx_aggregation_size_bk: No. of MPDUs for BK queue for TX aggr
  743. * @tx_aggregation_size_vi: No. of MPDUs for VI queue for TX aggr
  744. * @tx_aggregation_size_vo: No. of MPDUs for VO queue for TX aggr
  745. * @rx_aggregation_size: No. of MPDUs for RX aggr
  746. * @tx_aggr_sw_retry_threshold_be: aggr sw retry threshold for BE
  747. * @tx_aggr_sw_retry_threshold_bk: aggr sw retry threshold for BK
  748. * @tx_aggr_sw_retry_threshold_vi: aggr sw retry threshold for VI
  749. * @tx_aggr_sw_retry_threshold_vo: aggr sw retry threshold for VO
  750. * @tx_non_aggr_sw_retry_threshold_be: non aggr sw retry threshold for BE
  751. * @tx_non_aggr_sw_retry_threshold_bk: non aggr sw retry threshold for BK
  752. * @tx_non_aggr_sw_retry_threshold_vi: non aggr sw retry threshold for VI
  753. * @tx_non_aggr_sw_retry_threshold_vo: non aggr sw retry threshold for VO
  754. * @sap_max_inactivity_override: Override updating ap_sta_inactivity from
  755. * hostapd.conf
  756. * @sap_uapsd_enabled: Flag to enable/disable UAPSD for SAP
  757. */
  758. struct wlan_mlme_qos {
  759. uint32_t tx_aggregation_size;
  760. uint32_t tx_aggregation_size_be;
  761. uint32_t tx_aggregation_size_bk;
  762. uint32_t tx_aggregation_size_vi;
  763. uint32_t tx_aggregation_size_vo;
  764. uint32_t rx_aggregation_size;
  765. uint32_t tx_aggr_sw_retry_threshold_be;
  766. uint32_t tx_aggr_sw_retry_threshold_bk;
  767. uint32_t tx_aggr_sw_retry_threshold_vi;
  768. uint32_t tx_aggr_sw_retry_threshold_vo;
  769. uint32_t tx_non_aggr_sw_retry_threshold_be;
  770. uint32_t tx_non_aggr_sw_retry_threshold_bk;
  771. uint32_t tx_non_aggr_sw_retry_threshold_vi;
  772. uint32_t tx_non_aggr_sw_retry_threshold_vo;
  773. bool sap_max_inactivity_override;
  774. bool sap_uapsd_enabled;
  775. };
  776. #ifdef WLAN_FEATURE_11AX
  777. #define MLME_HE_PPET_LEN 25
  778. #define WNI_CFG_HE_OPS_BSS_COLOR_MAX 0x3F
  779. /**
  780. * struct wlan_mlme_he_caps - HE Capabilities related config items
  781. */
  782. struct wlan_mlme_he_caps {
  783. tDot11fIEhe_cap dot11_he_cap;
  784. tDot11fIEhe_cap he_cap_orig;
  785. uint8_t he_ppet_2g[MLME_HE_PPET_LEN];
  786. uint8_t he_ppet_5g[MLME_HE_PPET_LEN];
  787. uint32_t he_ops_basic_mcs_nss;
  788. uint8_t he_dynamic_fragmentation;
  789. uint8_t enable_ul_mimo;
  790. uint8_t enable_ul_ofdm;
  791. uint32_t he_sta_obsspd;
  792. };
  793. #endif
  794. /**
  795. * struct wlan_mlme_rates - RATES related config items
  796. * @cfpPeriod: cfp period info
  797. * @cfpMaxDuration: cfp Max duration info
  798. * @max_htmcs_txdata: max HT mcs info for Tx
  799. * @disable_abg_rate_txdata: disable abg rate info for tx data
  800. * @sap_max_mcs_txdata: sap max mcs info
  801. * @disable_high_ht_mcs_2x2: disable high mcs for 2x2 info
  802. * @supported_11b: supported 11B rates
  803. * @supported_11a: supported 11A rates
  804. * @opr_rate_set: operational rates set
  805. * @ext_opr_rate_set: extended operational rates set
  806. * @supported_mcs_set: supported MCS set
  807. * @basic_mcs_set: basic MCS set
  808. * @current_mcs_set: current MCS set
  809. */
  810. struct wlan_mlme_rates {
  811. uint8_t cfp_period;
  812. uint16_t cfp_max_duration;
  813. uint16_t max_htmcs_txdata;
  814. bool disable_abg_rate_txdata;
  815. uint16_t sap_max_mcs_txdata;
  816. uint8_t disable_high_ht_mcs_2x2;
  817. struct mlme_cfg_str supported_11b;
  818. struct mlme_cfg_str supported_11a;
  819. struct mlme_cfg_str opr_rate_set;
  820. struct mlme_cfg_str ext_opr_rate_set;
  821. struct mlme_cfg_str supported_mcs_set;
  822. struct mlme_cfg_str basic_mcs_set;
  823. struct mlme_cfg_str current_mcs_set;
  824. };
  825. /* Flags for gLimProtectionControl that is updated in pe session*/
  826. #define MLME_FORCE_POLICY_PROTECTION_DISABLE 0
  827. #define MLME_FORCE_POLICY_PROTECTION_CTS 1
  828. #define MLME_FORCE_POLICY_PROTECTION_RTS 2
  829. #define MLME_FORCE_POLICY_PROTECTION_DUAL_CTS 3
  830. #define MLME_FORCE_POLICY_PROTECTION_RTS_ALWAYS 4
  831. #define MLME_FORCE_POLICY_PROTECTION_AUTO 5
  832. /* protection_enabled bits*/
  833. #define MLME_PROTECTION_ENABLED_FROM_llA 0
  834. #define MLME_PROTECTION_ENABLED_FROM_llB 1
  835. #define MLME_PROTECTION_ENABLED_FROM_llG 2
  836. #define MLME_PROTECTION_ENABLED_HT_20 3
  837. #define MLME_PROTECTION_ENABLED_NON_GF 4
  838. #define MLME_PROTECTION_ENABLED_LSIG_TXOP 5
  839. #define MLME_PROTECTION_ENABLED_RIFS 6
  840. #define MLME_PROTECTION_ENABLED_OBSS 7
  841. #define MLME_PROTECTION_ENABLED_OLBC_FROM_llA 8
  842. #define MLME_PROTECTION_ENABLED_OLBC_FROM_llB 9
  843. #define MLME_PROTECTION_ENABLED_OLBC_FROM_llG 10
  844. #define MLME_PROTECTION_ENABLED_OLBC_HT20 11
  845. #define MLME_PROTECTION_ENABLED_OLBC_NON_GF 12
  846. #define MLME_PROTECTION_ENABLED_OLBC_LSIG_TXOP 13
  847. #define MLME_PROTECTION_ENABLED_OLBC_RIFS 14
  848. #define MLME_PROTECTION_ENABLED_OLBC_OBSS 15
  849. /**
  850. * struct wlan_mlme_feature_flag - feature related information
  851. * @accept_short_slot_assoc: enable short sloc feature
  852. * @enable_hcf: enable HCF feature
  853. * @enable_rsn: enable RSN for connection
  854. * @enable_short_preamble_11g: enable short preamble for 11g
  855. * @enable_short_slot_time_11g
  856. * @enable_ampdu: enable AMPDU feature
  857. * @enable_mcc: enable MCC feature
  858. * @mcc_rts_cts_prot: RTS-CTS protection in MCC
  859. * @mcc_bcast_prob_rsp: broadcast Probe Response in MCC
  860. * @channel_bonding_mode: channel bonding mode
  861. * @enable_block_ack: enable block ack feature
  862. * @channel_bonding_mode_24ghz: configures Channel Bonding in 24 GHz
  863. * @channel_bonding_mode_5ghz: configures Channel Bonding in 5 GHz
  864. */
  865. struct wlan_mlme_feature_flag {
  866. bool accept_short_slot_assoc;
  867. bool enable_hcf;
  868. bool enable_rsn;
  869. bool enable_short_preamble_11g;
  870. bool enable_short_slot_time_11g;
  871. bool enable_ampdu;
  872. bool enable_mcc;
  873. uint8_t mcc_rts_cts_prot;
  874. uint8_t mcc_bcast_prob_rsp;
  875. uint32_t channel_bonding_mode;
  876. uint32_t enable_block_ack;
  877. uint32_t channel_bonding_mode_24ghz;
  878. uint32_t channel_bonding_mode_5ghz;
  879. };
  880. /*
  881. * struct wlan_mlme_sap_protection_cfg - SAP erp protection config items
  882. * @ignore_peer_ht_opmode: Ignore the ht opmode of the peer. Dynamic via INI
  883. * @enable_ap_obss_protection: enable/disable AP OBSS protection
  884. * @protection_force_policy: Protection force policy. Static via cfg
  885. * @is_ap_prot_enabled: Enable/disable SAP protection
  886. * @ap_protection_mode: AP protection bitmap
  887. * @protection_enabled: Force enable protection. static via cfg
  888. */
  889. struct wlan_mlme_sap_protection {
  890. bool ignore_peer_ht_opmode;
  891. bool enable_ap_obss_protection;
  892. uint8_t protection_force_policy;
  893. bool is_ap_prot_enabled;
  894. uint16_t ap_protection_mode;
  895. uint32_t protection_enabled;
  896. };
  897. /*
  898. * struct wlan_mlme_chainmask - All chainmask related cfg items
  899. * @txchainmask1x1: To set transmit chainmask
  900. * @rxchainmask1x1: To set rx chainmask
  901. * @tx_chain_mask_cck: Used to enable/disable Cck ChainMask
  902. * @tx_chain_mask_1ss: Enables/disables tx chain Mask1ss
  903. * @num_11b_tx_chains: Number of Tx Chains in 11b mode
  904. * @num_11ag_tx_chains: Number of Tx Chains in 11ag mode
  905. * @tx_chain_mask_2g: Tx chain mask for 2g
  906. * @rx_chain_mask_2g: Tx chain mask for 2g
  907. * @tx_chain_mask_5g: Tx chain mask for 5g
  908. * @rx_chain_mask_5g: Rx chain mask for 5g
  909. * @enable_bt_chain_separation: Enable/Disable BT/WLAN Host chain seperation
  910. */
  911. struct wlan_mlme_chainmask {
  912. uint8_t txchainmask1x1;
  913. uint8_t rxchainmask1x1;
  914. bool tx_chain_mask_cck;
  915. uint8_t tx_chain_mask_1ss;
  916. uint16_t num_11b_tx_chains;
  917. uint16_t num_11ag_tx_chains;
  918. uint8_t tx_chain_mask_2g;
  919. uint8_t rx_chain_mask_2g;
  920. uint8_t tx_chain_mask_5g;
  921. uint8_t rx_chain_mask_5g;
  922. bool enable_bt_chain_separation;
  923. };
  924. /* struct wlan_mlme_generic - Generic CFG config items
  925. *
  926. * @band_capability: HW Band Capability - Both or 2.4G only or 5G only
  927. * @band: Current Band - Internal variable, initialized to INI and updated later
  928. * @select_5ghz_margin: RSSI margin to select 5Ghz over 2.4 Ghz
  929. * @sub_20_chan_width: Sub 20Mhz Channel Width
  930. * @ito_repeat_count: ITO Repeat Count
  931. * @pmf_sa_query_max_retries: PMF query max retries for SAP
  932. * @pmf_sa_query_retry_interval: PMF query retry interval for SAP
  933. * @dropped_pkt_disconnect_thresh: Threshold for dropped pkts before disconnect
  934. * @rtt_mac_randomization: Enable/Disable RTT MAC randomization
  935. * @rtt3_enabled: RTT3 enable or disable info
  936. * @prevent_link_down: Enable/Disable prevention of link down
  937. * @memory_deep_sleep: Enable/Disable memory deep sleep
  938. * @cck_tx_fir_override: Enable/Disable CCK Tx FIR Override
  939. * @crash_inject: Enable/Disable Crash Inject
  940. * @lpass_support: Enable/Disable LPASS Support
  941. * @self_recovery: Enable/Disable Self Recovery
  942. * @sap_dot11mc: Enable/Disable SAP 802.11mc support
  943. * @fatal_event_trigger: Enable/Disable Fatal Events Trigger
  944. * @optimize_ca_event: Enable/Disable Optimization of CA events
  945. * @fw_timeout_crash: Enable/Disable FW Timeout Crash *
  946. * @debug_packet_log: Debug packet log flags
  947. * @enabled_11h: enable 11h flag
  948. * @enabled_11d: enable 11d flag
  949. * @enable_beacon_reception_stats: enable beacon reception stats
  950. * @enable_remove_time_stamp_sync_cmd: Enable remove time stamp sync cmd
  951. * @enable_change_channel_bandwidth: enable/disable change channel bw in mission
  952. * mode
  953. */
  954. struct wlan_mlme_generic {
  955. enum band_info band_capability;
  956. enum band_info band;
  957. uint8_t select_5ghz_margin;
  958. uint8_t sub_20_chan_width;
  959. uint8_t ito_repeat_count;
  960. uint8_t pmf_sa_query_max_retries;
  961. uint16_t pmf_sa_query_retry_interval;
  962. uint16_t dropped_pkt_disconnect_thresh;
  963. bool rtt_mac_randomization;
  964. bool rtt3_enabled;
  965. bool prevent_link_down;
  966. bool memory_deep_sleep;
  967. bool cck_tx_fir_override;
  968. bool crash_inject;
  969. bool lpass_support;
  970. bool self_recovery;
  971. bool sap_dot11mc;
  972. bool fatal_event_trigger;
  973. bool optimize_ca_event;
  974. bool fw_timeout_crash;
  975. uint8_t debug_packet_log;
  976. bool enabled_11h;
  977. bool enabled_11d;
  978. bool enable_deauth_to_disassoc_map;
  979. bool enable_beacon_reception_stats;
  980. bool enable_remove_time_stamp_sync_cmd;
  981. bool enable_change_channel_bandwidth;
  982. };
  983. /*
  984. * struct wlan_mlme_product_details_cfg - product details config items
  985. * @manufacturer_name: manufacture name
  986. * @model_number: model number
  987. * @model_name: model name
  988. * @manufacture_product_name: manufacture product name
  989. * @manufacture_product_version: manufacture product version
  990. */
  991. struct wlan_mlme_product_details_cfg {
  992. char manufacturer_name[WLAN_CFG_MFR_NAME_LEN + 1];
  993. char model_number[WLAN_CFG_MODEL_NUMBER_LEN + 1];
  994. char model_name[WLAN_CFG_MODEL_NAME_LEN + 1];
  995. char manufacture_product_name[WLAN_CFG_MFR_PRODUCT_NAME_LEN + 1];
  996. char manufacture_product_version[WLAN_CFG_MFR_PRODUCT_VERSION_LEN + 1];
  997. };
  998. /*
  999. * struct wlan_mlme_acs - All acs related cfg items
  1000. * @is_acs_with_more_param - to enable acs with more param
  1001. * @auto_channel_select_weight - to set acs channel weight
  1002. * @is_vendor_acs_support - enable application based channel selection
  1003. * @is_acs_support_for_dfs_ltecoex - enable channel for dfs and lte coex
  1004. * @is_external_acs_policy - control external policy
  1005. */
  1006. struct wlan_mlme_acs {
  1007. bool is_acs_with_more_param;
  1008. uint32_t auto_channel_select_weight;
  1009. bool is_vendor_acs_support;
  1010. bool is_acs_support_for_dfs_ltecoex;
  1011. bool is_external_acs_policy;
  1012. };
  1013. /*
  1014. * struct wlan_mlme_cfg_twt - All twt related cfg items
  1015. * @is_twt_bcast_enabled: twt capability for the session
  1016. * @is_twt_enabled: global twt configuration
  1017. * @is_twt_responder_enabled: twt responder
  1018. * @is_twt_requestor_enabled: twt requestor
  1019. * @twt_congestion_timeout: congestion timeout value
  1020. */
  1021. struct wlan_mlme_cfg_twt {
  1022. bool is_twt_bcast_enabled;
  1023. bool is_twt_enabled;
  1024. bool is_twt_responder_enabled;
  1025. bool is_twt_requestor_enabled;
  1026. uint32_t twt_congestion_timeout;
  1027. };
  1028. /**
  1029. * struct wlan_mlme_obss_ht40 - OBSS HT40 config items
  1030. * @active_dwelltime: obss active dwelltime
  1031. * @passive_dwelltime: obss passive dwelltime
  1032. * @width_trigger_interval: obss trigger interval
  1033. * @passive_per_channel: obss scan passive total duration per channel
  1034. * @active_per_channel: obss scan active total duration per channel
  1035. * @width_trans_delay: obss width transition delay
  1036. * @scan_activity_threshold: obss scan activity threshold
  1037. * @is_override_ht20_40_24g: use channel bonding in 2.4 GHz
  1038. * @obss_detection_offload_enabled: Enable OBSS detection offload
  1039. * @obss_color_collision_offload_enabled: Enable obss color collision
  1040. */
  1041. struct wlan_mlme_obss_ht40 {
  1042. uint32_t active_dwelltime;
  1043. uint32_t passive_dwelltime;
  1044. uint32_t width_trigger_interval;
  1045. uint32_t passive_per_channel;
  1046. uint32_t active_per_channel;
  1047. uint32_t width_trans_delay;
  1048. uint32_t scan_activity_threshold;
  1049. bool is_override_ht20_40_24g;
  1050. bool obss_detection_offload_enabled;
  1051. bool obss_color_collision_offload_enabled;
  1052. };
  1053. /**
  1054. * enum dot11p_mode - The 802.11p mode of operation
  1055. * @WLAN_HDD_11P_DISABLED: 802.11p mode is disabled
  1056. * @WLAN_HDD_11P_STANDALONE: 802.11p-only operation
  1057. * @WLAN_HDD_11P_CONCURRENT: 802.11p and WLAN operate concurrently
  1058. */
  1059. enum dot11p_mode {
  1060. CFG_11P_DISABLED = 0,
  1061. CFG_11P_STANDALONE,
  1062. CFG_11P_CONCURRENT,
  1063. };
  1064. #define MAX_VDEV_NSS 2
  1065. #define MAX_VDEV_CHAINS 2
  1066. /**
  1067. * struct wlan_mlme_nss_chains - MLME vdev config of nss, and chains
  1068. * @num_tx_chains: tx chains of vdev config
  1069. * @num_rx_chains: rx chains of vdev config
  1070. * @tx_nss: tx nss of vdev config
  1071. * @rx_nss: rx nss of vdev config
  1072. * @num_tx_chains_11b: number of tx chains in 11b mode
  1073. * @num_tx_chains_11g: number of tx chains in 11g mode
  1074. * @num_tx_chains_11a: number of tx chains in 11a mode
  1075. * @disable_rx_mrc: disable 2 rx chains, in rx nss 1 mode
  1076. * @disable_tx_mrc: disable 2 tx chains, in tx nss 1 mode
  1077. */
  1078. struct wlan_mlme_nss_chains {
  1079. uint32_t num_tx_chains[NSS_CHAINS_BAND_MAX];
  1080. uint32_t num_rx_chains[NSS_CHAINS_BAND_MAX];
  1081. uint32_t tx_nss[NSS_CHAINS_BAND_MAX];
  1082. uint32_t rx_nss[NSS_CHAINS_BAND_MAX];
  1083. uint32_t num_tx_chains_11b;
  1084. uint32_t num_tx_chains_11g;
  1085. uint32_t num_tx_chains_11a;
  1086. bool disable_rx_mrc[NSS_CHAINS_BAND_MAX];
  1087. bool disable_tx_mrc[NSS_CHAINS_BAND_MAX];
  1088. };
  1089. /**
  1090. * enum station_keepalive_method - available keepalive methods for stations
  1091. * @MLME_STA_KEEPALIVE_NULL_DATA: null data packet
  1092. * @MLME_STA_KEEPALIVE_GRAT_ARP: gratuitous ARP packet
  1093. * @MLME_STA_KEEPALIVE_COUNT: number of method options available
  1094. */
  1095. enum station_keepalive_method {
  1096. MLME_STA_KEEPALIVE_NULL_DATA,
  1097. MLME_STA_KEEPALIVE_GRAT_ARP,
  1098. /* keep at the end */
  1099. MLME_STA_KEEPALIVE_COUNT
  1100. };
  1101. /**
  1102. * struct wlan_mlme_sta_cfg - MLME STA configuration items
  1103. * @sta_keep_alive_period: Sends NULL frame to AP period
  1104. * @tgt_gtx_usr_cfg: Target gtx user config
  1105. * @pmkid_modes: Enable PMKID modes
  1106. * @wait_cnf_timeout: Wait assoc cnf timeout
  1107. * @sta_miracast_mcc_rest_time: STA+MIRACAST(P2P) MCC rest time
  1108. * @dot11p_mode: Set 802.11p mode
  1109. * @fils_max_chan_guard_time: Set maximum channel guard time
  1110. * @current_rssi: Current rssi
  1111. * @ignore_peer_erp_info: Ignore peer infrormation
  1112. * @sta_prefer_80mhz_over_160mhz: Set Sta preference to connect in 80HZ/160HZ
  1113. * @enable_5g_ebt: Set default 5G early beacon termination
  1114. * @deauth_before_connection: Send deauth before connection or not
  1115. * @enable_go_cts2self_for_sta: Stop NOA and start using cts2self
  1116. * @qcn_ie_support: QCN IE support
  1117. * @force_rsne_override: Force rsnie override from user
  1118. * @single_tid: Set replay counter for all TID
  1119. * @allow_tpc_from_ap: Support for AP power constraint
  1120. */
  1121. struct wlan_mlme_sta_cfg {
  1122. uint32_t sta_keep_alive_period;
  1123. uint32_t tgt_gtx_usr_cfg;
  1124. uint32_t pmkid_modes;
  1125. uint32_t wait_cnf_timeout;
  1126. uint32_t sta_miracast_mcc_rest_time;
  1127. enum dot11p_mode dot11p_mode;
  1128. uint8_t fils_max_chan_guard_time;
  1129. uint8_t current_rssi;
  1130. bool ignore_peer_erp_info;
  1131. bool sta_prefer_80mhz_over_160mhz;
  1132. bool enable_5g_ebt;
  1133. bool deauth_before_connection;
  1134. bool enable_go_cts2self_for_sta;
  1135. bool qcn_ie_support;
  1136. bool force_rsne_override;
  1137. bool single_tid;
  1138. bool allow_tpc_from_ap;
  1139. enum station_keepalive_method sta_keepalive_method;
  1140. };
  1141. /**
  1142. * struct wlan_mlme_stats_cfg - MLME stats configuration items
  1143. * @stats_periodic_display_time: time after which stats will be printed
  1144. * @stats_link_speed_rssi_high: rssi link speed, high
  1145. * @stats_link_speed_rssi_med: medium rssi link speed
  1146. * @stats_link_speed_rssi_low: rssi link speed, low
  1147. * @stats_report_max_link_speed_rssi: report speed limit
  1148. */
  1149. struct wlan_mlme_stats_cfg {
  1150. uint32_t stats_periodic_display_time;
  1151. int stats_link_speed_rssi_high;
  1152. int stats_link_speed_rssi_med;
  1153. int stats_link_speed_rssi_low;
  1154. uint32_t stats_report_max_link_speed_rssi;
  1155. };
  1156. /**
  1157. * enum roaming_dfs_channel_type - Allow dfs channel in roam
  1158. * @CFG_ROAMING_DFS_CHANNEL_DISABLED: Disallow dfs channel in roam
  1159. * @CFG_ROAMING_DFS_CHANNEL_ENABLED_NORMAL: Allow dfs channel
  1160. * @CFG_ROAMING_DFS_CHANNEL_ENABLED_ACTIVE: Allow dfs channel with active scan
  1161. */
  1162. enum roaming_dfs_channel_type {
  1163. ROAMING_DFS_CHANNEL_DISABLED,
  1164. ROAMING_DFS_CHANNEL_ENABLED_NORMAL,
  1165. ROAMING_DFS_CHANNEL_ENABLED_ACTIVE,
  1166. };
  1167. /*
  1168. * struct bss_load_trigger - parameters related to bss load triggered roam
  1169. * @enabled: flag to check if this trigger is enabled/disabled
  1170. * @threshold: Bss load threshold value above which roaming should start
  1171. * @sample_time: Time duration in milliseconds for which the bss load value
  1172. * should be monitored
  1173. */
  1174. struct bss_load_trigger {
  1175. bool enabled;
  1176. uint32_t threshold;
  1177. uint32_t sample_time;
  1178. };
  1179. /*
  1180. * @mawc_roam_enabled: Enable/Disable MAWC during roaming
  1181. * @enable_fast_roam_in_concurrency:Enable LFR roaming on STA during concurrency
  1182. * @lfr3_roaming_offload: Enable/disable roam offload feature
  1183. * @early_stop_scan_enable: Set early stop scan
  1184. * @enable_5g_band_pref: Enable preference for 5G from INI
  1185. * @ese_enabled: Enable ESE feature
  1186. * @lfr_enabled: Enable fast roaming
  1187. * @mawc_enabled: Enable MAWC
  1188. * @fast_transition_enabled: Enable fast transition
  1189. * @wes_mode_enabled: Enable WES mode
  1190. * @mawc_roam_traffic_threshold: Configure traffic threshold
  1191. * @mawc_roam_ap_rssi_threshold: Best AP RSSI threshold
  1192. * @mawc_roam_rssi_high_adjust: Adjust MAWC roam high RSSI
  1193. * @mawc_roam_rssi_low_adjust: Adjust MAWC roam low RSSI
  1194. * @roam_rssi_abs_threshold: The min RSSI of the candidate AP
  1195. * @rssi_threshold_offset_5g: Lookup threshold offset for 5G band
  1196. * @early_stop_scan_min_threshold: Set early stop scan min
  1197. * @early_stop_scan_max_threshold: Set early stop scan max
  1198. * @first_scan_bucket_threshold: Set first scan bucket
  1199. * @roam_dense_traffic_threshold: Dense traffic threshold
  1200. * @roam_dense_rssi_thre_offset: Sets dense roam RSSI threshold diff
  1201. * @roam_dense_min_aps: Sets minimum number of AP for dense roam
  1202. * @roam_bg_scan_bad_rssi_threshold:RSSI threshold for background roam
  1203. * @roam_bg_scan_client_bitmap: Bitmap used to identify the scan clients
  1204. * @roam_bg_scan_bad_rssi_offset_2g:RSSI threshold offset for 2G to 5G roam
  1205. * @adaptive_roamscan_dwell_mode: Sets dwell time adaptive mode
  1206. * @per_roam_enable: To enabled/disable PER based roaming in FW
  1207. * @per_roam_config_high_rate_th: Rate at which PER based roam will stop
  1208. * @per_roam_config_low_rate_th: Rate at which PER based roam will start
  1209. * @per_roam_config_rate_th_percent:Percentage at which FW will issue roam scan
  1210. * @per_roam_rest_time: FW will wait once it issues a roam scan.
  1211. * @per_roam_monitor_time: Min time to be considered as valid scenario
  1212. * @per_roam_min_candidate_rssi: Min roamable AP RSSI for candidate selection
  1213. * @lfr3_disallow_duration: Disallow duration before roaming
  1214. * @lfr3_rssi_channel_penalization: RSSI penalization
  1215. * @lfr3_num_disallowed_aps: Max number of AP's to maintain in LCA list
  1216. * @rssi_boost_threshold_5g: Boost threshold above which 5 GHz is favored
  1217. * @rssi_boost_factor_5g: Factor by which 5GHz RSSI is boosted
  1218. * @max_rssi_boost_5g: Maximum boost that can be applied to 5G RSSI
  1219. * @rssi_penalize_threshold_5g: Penalize thres above which 5G isn't favored
  1220. * @rssi_penalize_factor_5g: Factor by which 5GHz RSSI is penalizeed
  1221. * @max_rssi_penalize_5g: Max penalty that can be applied to 5G RSSI
  1222. * @max_num_pre_auth: Configure max number of pre-auth
  1223. * @roam_preauth_retry_count: Configure the max number of preauth retry
  1224. * @roam_preauth_no_ack_timeout: Configure the no ack timeout period
  1225. * @roam_rssi_diff: Enable roam based on rssi
  1226. * @roam_scan_offload_enabled: Enable Roam Scan Offload
  1227. * @neighbor_scan_timer_period: Neighbor scan timer period
  1228. * @neighbor_scan_min_timer_period: Min neighbor scan timer period
  1229. * @neighbor_lookup_rssi_threshold: Neighbor lookup rssi threshold
  1230. * @opportunistic_scan_threshold_diff: Set oppurtunistic threshold diff
  1231. * @roam_rescan_rssi_diff: Sets RSSI for Scan trigger in firmware
  1232. * @neighbor_scan_min_chan_time: Neighbor scan channel min time
  1233. * @neighbor_scan_max_chan_time: Neighbor scan channel max time
  1234. * @neighbor_scan_results_refresh_period: Neighbor scan refresh period
  1235. * @empty_scan_refresh_period: Empty scan refresh period
  1236. * @roam_bmiss_first_bcnt: First beacon miss count
  1237. * @roam_bmiss_final_bcnt: Final beacon miss count
  1238. * @roam_beacon_rssi_weight: Beacon miss weight
  1239. * @roaming_dfs_channel: Allow dfs channel in roam
  1240. * @roam_scan_hi_rssi_maxcount: 5GHz maximum scan count
  1241. * @roam_scan_hi_rssi_delta: RSSI Delta for scan trigger
  1242. * @roam_scan_hi_rssi_delay: Minimum delay between 5GHz scans
  1243. * @roam_scan_hi_rssi_ub: Upper bound after which 5GHz scan
  1244. * @roam_prefer_5ghz: Prefer roaming to 5GHz Bss
  1245. * @roam_intra_band: Prefer roaming within Band
  1246. * @roam_scan_home_away_time: The home away time to firmware
  1247. * @roam_scan_n_probes: The number of probes to be sent for firmware roaming
  1248. * @delay_before_vdev_stop:Wait time for tx complete before vdev stop
  1249. * @neighbor_scan_channel_list: Neighbor scan channel list
  1250. * @neighbor_scan_channel_list_num: Neighbor scan channel list number
  1251. * @enable_lfr_subnet_detection: Enable LFR3 subnet detection
  1252. * @ho_delay_for_rx: Delay hand-off by this duration to receive
  1253. * @min_delay_btw_roam_scans: Min duration
  1254. * @roam_trigger_reason_bitmask: Contains roam_trigger_reasons
  1255. * @enable_ftopen: Enable/disable FT open feature
  1256. * @roam_force_rssi_trigger: Force RSSI trigger or not
  1257. * @roaming_scan_policy: Config roaming scan policy in fw
  1258. */
  1259. struct wlan_mlme_lfr_cfg {
  1260. bool mawc_roam_enabled;
  1261. bool enable_fast_roam_in_concurrency;
  1262. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  1263. bool lfr3_roaming_offload;
  1264. #endif
  1265. bool early_stop_scan_enable;
  1266. bool enable_5g_band_pref;
  1267. #ifdef FEATURE_WLAN_ESE
  1268. bool ese_enabled;
  1269. #endif
  1270. bool lfr_enabled;
  1271. bool mawc_enabled;
  1272. bool fast_transition_enabled;
  1273. bool wes_mode_enabled;
  1274. uint32_t mawc_roam_traffic_threshold;
  1275. uint32_t mawc_roam_ap_rssi_threshold;
  1276. uint32_t mawc_roam_rssi_high_adjust;
  1277. uint32_t mawc_roam_rssi_low_adjust;
  1278. uint32_t roam_rssi_abs_threshold;
  1279. uint8_t rssi_threshold_offset_5g;
  1280. uint8_t early_stop_scan_min_threshold;
  1281. uint8_t early_stop_scan_max_threshold;
  1282. uint8_t first_scan_bucket_threshold;
  1283. uint32_t roam_dense_traffic_threshold;
  1284. uint32_t roam_dense_rssi_thre_offset;
  1285. uint32_t roam_dense_min_aps;
  1286. uint32_t roam_bg_scan_bad_rssi_threshold;
  1287. uint32_t roam_bg_scan_client_bitmap;
  1288. uint32_t roam_bg_scan_bad_rssi_offset_2g;
  1289. uint32_t adaptive_roamscan_dwell_mode;
  1290. uint32_t per_roam_enable;
  1291. uint32_t per_roam_config_high_rate_th;
  1292. uint32_t per_roam_config_low_rate_th;
  1293. uint32_t per_roam_config_rate_th_percent;
  1294. uint32_t per_roam_rest_time;
  1295. uint32_t per_roam_monitor_time;
  1296. uint32_t per_roam_min_candidate_rssi;
  1297. uint32_t lfr3_disallow_duration;
  1298. uint32_t lfr3_rssi_channel_penalization;
  1299. uint32_t lfr3_num_disallowed_aps;
  1300. uint32_t rssi_boost_threshold_5g;
  1301. uint32_t rssi_boost_factor_5g;
  1302. uint32_t max_rssi_boost_5g;
  1303. uint32_t rssi_penalize_threshold_5g;
  1304. uint32_t rssi_penalize_factor_5g;
  1305. uint32_t max_rssi_penalize_5g;
  1306. uint32_t max_num_pre_auth;
  1307. uint32_t roam_preauth_retry_count;
  1308. uint32_t roam_preauth_no_ack_timeout;
  1309. uint32_t roam_rssi_diff;
  1310. bool roam_scan_offload_enabled;
  1311. uint32_t neighbor_scan_timer_period;
  1312. uint32_t neighbor_scan_min_timer_period;
  1313. uint32_t neighbor_lookup_rssi_threshold;
  1314. uint32_t opportunistic_scan_threshold_diff;
  1315. uint32_t roam_rescan_rssi_diff;
  1316. uint16_t neighbor_scan_min_chan_time;
  1317. uint16_t neighbor_scan_max_chan_time;
  1318. uint32_t neighbor_scan_results_refresh_period;
  1319. uint32_t empty_scan_refresh_period;
  1320. uint8_t roam_bmiss_first_bcnt;
  1321. uint8_t roam_bmiss_final_bcnt;
  1322. uint32_t roam_beacon_rssi_weight;
  1323. enum roaming_dfs_channel_type roaming_dfs_channel;
  1324. uint32_t roam_scan_hi_rssi_maxcount;
  1325. uint32_t roam_scan_hi_rssi_delta;
  1326. uint32_t roam_scan_hi_rssi_delay;
  1327. uint32_t roam_scan_hi_rssi_ub;
  1328. bool roam_prefer_5ghz;
  1329. bool roam_intra_band;
  1330. uint16_t roam_scan_home_away_time;
  1331. uint32_t roam_scan_n_probes;
  1332. uint8_t delay_before_vdev_stop;
  1333. uint8_t neighbor_scan_channel_list[CFG_VALID_CHANNEL_LIST_LEN];
  1334. uint8_t neighbor_scan_channel_list_num;
  1335. #ifdef FEATURE_LFR_SUBNET_DETECTION
  1336. bool enable_lfr_subnet_detection;
  1337. #endif
  1338. uint8_t ho_delay_for_rx;
  1339. uint8_t min_delay_btw_roam_scans;
  1340. uint32_t roam_trigger_reason_bitmask;
  1341. bool enable_ftopen;
  1342. bool roam_force_rssi_trigger;
  1343. struct bss_load_trigger bss_load_trig;
  1344. bool roaming_scan_policy;
  1345. };
  1346. /**
  1347. * struct wlan_mlme_wmm_config - WMM configuration
  1348. * @wmm_mode: Enable WMM feature
  1349. * @b80211e_is_enabled: Enable 802.11e feature
  1350. * @uapsd_mask: what ACs to setup U-APSD for at assoc
  1351. * @bimplicit_qos_enabled: Enable implicit QOS
  1352. */
  1353. struct wlan_mlme_wmm_config {
  1354. uint8_t wmm_mode;
  1355. bool b80211e_is_enabled;
  1356. uint8_t uapsd_mask;
  1357. bool bimplicit_qos_enabled;
  1358. };
  1359. /**
  1360. * struct wlan_mlme_wmm_tspec_element - Default TSPEC parameters
  1361. * from the wmm spec
  1362. * @inactivity_interval: inactivity_interval as per wmm spec
  1363. * @burst_size_def: TS burst size
  1364. * @ts_ack_policy: TS Info ACK policy
  1365. * @ts_acm_is_off: ACM is off for AC
  1366. */
  1367. struct wlan_mlme_wmm_tspec_element {
  1368. #ifdef FEATURE_WLAN_ESE
  1369. uint32_t inactivity_intv;
  1370. #endif
  1371. bool burst_size_def;
  1372. enum mlme_ts_info_ack_policy ts_ack_policy;
  1373. bool ts_acm_is_off;
  1374. };
  1375. /**
  1376. * struct wlan_mlme_wmm_ac_vo - Default TSPEC parameters
  1377. * for AC_VO
  1378. * @dir_ac_vo: TSPEC direction for VO
  1379. * @nom_msdu_size_ac_vo: normal MSDU size for VO
  1380. * @mean_data_rate_ac_vo: mean data rate for VO
  1381. * @min_phy_rate_ac_vo: min PHY rate for VO
  1382. * @sba_ac_vo: surplus bandwidth allowance for VO
  1383. * @uapsd_vo_srv_intv: Uapsd service interval for voice
  1384. * @uapsd_vo_sus_intv: Uapsd suspension interval for voice
  1385. */
  1386. struct wlan_mlme_wmm_ac_vo {
  1387. uint8_t dir_ac_vo;
  1388. uint16_t nom_msdu_size_ac_vo;
  1389. uint32_t mean_data_rate_ac_vo;
  1390. uint32_t min_phy_rate_ac_vo;
  1391. uint16_t sba_ac_vo;
  1392. uint32_t uapsd_vo_srv_intv;
  1393. uint32_t uapsd_vo_sus_intv;
  1394. };
  1395. /**
  1396. * struct wlan_mlme_wmm_ac_vi - Default TSPEC parameters
  1397. * for AC_VI
  1398. * @dir_ac_vi: TSPEC direction for VI
  1399. * @nom_msdu_size_ac_vi: normal MSDU size for VI
  1400. * @mean_data_rate_ac_vi: mean data rate for VI
  1401. * @min_phy_rate_ac_vi: min PHY rate for VI
  1402. * @sba_ac_vi: surplus bandwidth allowance for VI
  1403. * @uapsd_vo_srv_intv: Uapsd service interval for VI
  1404. * @uapsd_vo_sus_intv: Uapsd suspension interval for VI
  1405. */
  1406. struct wlan_mlme_wmm_ac_vi {
  1407. uint8_t dir_ac_vi;
  1408. uint16_t nom_msdu_size_ac_vi;
  1409. uint32_t mean_data_rate_ac_vi;
  1410. uint32_t min_phy_rate_ac_vi;
  1411. uint16_t sba_ac_vi;
  1412. uint32_t uapsd_vi_srv_intv;
  1413. uint32_t uapsd_vi_sus_intv;
  1414. };
  1415. /**
  1416. * struct wlan_mlme_wmm_ac_be - Default TSPEC parameters
  1417. * for AC_BE
  1418. * @dir_ac_be: TSPEC direction for BE
  1419. * @nom_msdu_size_ac_be: normal MSDU size for BE
  1420. * @mean_data_rate_ac_be: mean data rate for BE
  1421. * @min_phy_rate_ac_be: min PHY rate for BE
  1422. * @sba_ac_be: surplus bandwidth allowance for BE
  1423. * @uapsd_be_srv_intv: Uapsd service interval for BE
  1424. * @uapsd_be_sus_intv: Uapsd suspension interval for BE
  1425. */
  1426. struct wlan_mlme_wmm_ac_be {
  1427. uint8_t dir_ac_be;
  1428. uint16_t nom_msdu_size_ac_be;
  1429. uint32_t mean_data_rate_ac_be;
  1430. uint32_t min_phy_rate_ac_be;
  1431. uint16_t sba_ac_be;
  1432. uint32_t uapsd_be_srv_intv;
  1433. uint32_t uapsd_be_sus_intv;
  1434. };
  1435. /**
  1436. * struct wlan_mlme_wmm_ac_bk - Default TSPEC parameters
  1437. * for AC_BK
  1438. * @dir_ac_bk: TSPEC direction for BK
  1439. * @nom_msdu_size_ac_bk: normal MSDU size for BK
  1440. * @mean_data_rate_ac_bk: mean data rate for BK
  1441. * @min_phy_rate_ac_bk: min PHY rate for BK
  1442. * @sba_ac_bk: surplus bandwidth allowance for BK
  1443. * @uapsd_bk_srv_intv: Uapsd service interval for BK
  1444. * @uapsd_bk_sus_intv: Uapsd suspension interval for BK
  1445. */
  1446. struct wlan_mlme_wmm_ac_bk {
  1447. uint8_t dir_ac_bk;
  1448. uint16_t nom_msdu_size_ac_bk;
  1449. uint32_t mean_data_rate_ac_bk;
  1450. uint32_t min_phy_rate_ac_bk;
  1451. uint16_t sba_ac_bk;
  1452. uint32_t uapsd_bk_srv_intv;
  1453. uint32_t uapsd_bk_sus_intv;
  1454. };
  1455. /**
  1456. * struct wlan_mlme_wmm_params - WMM CFG Items
  1457. * @qos_enabled: AP is enabled with 11E
  1458. * @wme_enabled: AP is enabled with WMM
  1459. * @max_sp_length: Maximum SP Length
  1460. * @wsm_enabled: AP is enabled with WSM
  1461. * @edca_profile: WMM Edca profile
  1462. * @wmm_config: WMM configuration
  1463. * @wmm_tspec_element: Default TSPEC parameters
  1464. * @ac_vo: Default TSPEC parameters for AC_VO
  1465. * @ac_vi: Default TSPEC parameters for AC_VI
  1466. * @ac_be: Default TSPEC parameters for AC_BE
  1467. * @ac_bk: Default TSPEC parameters for AC_BK
  1468. * @delayed_trigger_frm_int: delay int(in ms) of UAPSD auto trigger
  1469. */
  1470. struct wlan_mlme_wmm_params {
  1471. bool qos_enabled;
  1472. bool wme_enabled;
  1473. uint8_t max_sp_length;
  1474. bool wsm_enabled;
  1475. uint32_t edca_profile;
  1476. struct wlan_mlme_wmm_config wmm_config;
  1477. struct wlan_mlme_wmm_tspec_element wmm_tspec_element;
  1478. struct wlan_mlme_wmm_ac_vo ac_vo;
  1479. struct wlan_mlme_wmm_ac_vi ac_vi;
  1480. struct wlan_mlme_wmm_ac_be ac_be;
  1481. struct wlan_mlme_wmm_ac_bk ac_bk;
  1482. uint32_t delayed_trigger_frm_int;
  1483. };
  1484. /**
  1485. * struct wlan_mlme_weight_config - weight params to
  1486. * calculate best candidate
  1487. *
  1488. * @rssi_weightage: RSSI weightage
  1489. * @ht_caps_weightage: HT caps weightage
  1490. * @vht_caps_weightage: VHT caps weightage
  1491. * @he_caps_weightage: HE caps weightage
  1492. * @chan_width_weightage: Channel width weightage
  1493. * @chan_band_weightage: Channel band weightage
  1494. * @nss_weightage: NSS weightage
  1495. * @beamforming_cap_weightage: Beamforming caps weightage
  1496. * @pcl_weightage: PCL weightage
  1497. * @channel_congestion_weightage: channel congestion weightage
  1498. * @oce_wan_weightage: OCE WAN metrics weightage
  1499. */
  1500. struct wlan_mlme_weight_config {
  1501. uint8_t rssi_weightage;
  1502. uint8_t ht_caps_weightage;
  1503. uint8_t vht_caps_weightage;
  1504. uint8_t he_caps_weightage;
  1505. uint8_t chan_width_weightage;
  1506. uint8_t chan_band_weightage;
  1507. uint8_t nss_weightage;
  1508. uint8_t beamforming_cap_weightage;
  1509. uint8_t pcl_weightage;
  1510. uint8_t channel_congestion_weightage;
  1511. uint8_t oce_wan_weightage;
  1512. };
  1513. /**
  1514. * struct wlan_mlme_rssi_cfg_score - RSSI params to
  1515. * calculate best candidate
  1516. *
  1517. * @best_rssi_threshold: Best RSSI threshold
  1518. * @good_rssi_threshold: Good RSSI threshold
  1519. * @bad_rssi_threshold: Bad RSSI threshold
  1520. * @good_rssi_pcnt: Good RSSI Percentage
  1521. * @bad_rssi_pcnt: Bad RSSI Percentage
  1522. * @good_rssi_bucket_size: Good RSSI Bucket Size
  1523. * @bad_rssi_bucket_size: Bad RSSI Bucket Size
  1524. * @rssi_pref_5g_rssi_thresh: Preffered 5G RSSI threshold
  1525. */
  1526. struct wlan_mlme_rssi_cfg_score {
  1527. uint32_t best_rssi_threshold;
  1528. uint32_t good_rssi_threshold;
  1529. uint32_t bad_rssi_threshold;
  1530. uint32_t good_rssi_pcnt;
  1531. uint32_t bad_rssi_pcnt;
  1532. uint32_t good_rssi_bucket_size;
  1533. uint32_t bad_rssi_bucket_size;
  1534. uint32_t rssi_pref_5g_rssi_thresh;
  1535. };
  1536. /**
  1537. * struct wlan_mlme_per_slot_scoring - define % score for differents slots
  1538. * for a scoring param.
  1539. * num_slot: number of slots in which the param will be divided.
  1540. * Max 15. index 0 is used for 'not_present. Num_slot will
  1541. * equally divide 100. e.g, if num_slot = 4 slot 0 = 0-25%, slot
  1542. * 1 = 26-50% slot 2 = 51-75%, slot 3 = 76-100%
  1543. * score_pcnt3_to_0: Conatins score percentage for slot 0-3
  1544. * BITS 0-7 :- the scoring pcnt when not present
  1545. * BITS 8-15 :- SLOT_1
  1546. * BITS 16-23 :- SLOT_2
  1547. * BITS 24-31 :- SLOT_3
  1548. * score_pcnt7_to_4: Conatins score percentage for slot 4-7
  1549. * BITS 0-7 :- SLOT_4
  1550. * BITS 8-15 :- SLOT_5
  1551. * BITS 16-23 :- SLOT_6
  1552. * BITS 24-31 :- SLOT_7
  1553. * score_pcnt11_to_8: Conatins score percentage for slot 8-11
  1554. * BITS 0-7 :- SLOT_8
  1555. * BITS 8-15 :- SLOT_9
  1556. * BITS 16-23 :- SLOT_10
  1557. * BITS 24-31 :- SLOT_11
  1558. * score_pcnt15_to_12: Conatins score percentage for slot 12-15
  1559. * BITS 0-7 :- SLOT_12
  1560. * BITS 8-15 :- SLOT_13
  1561. * BITS 16-23 :- SLOT_14
  1562. * BITS 24-31 :- SLOT_15
  1563. */
  1564. struct wlan_mlme_per_slot_scoring {
  1565. uint32_t num_slot;
  1566. uint32_t score_pcnt3_to_0;
  1567. uint32_t score_pcnt7_to_4;
  1568. uint32_t score_pcnt11_to_8;
  1569. uint32_t score_pcnt15_to_12;
  1570. };
  1571. /*
  1572. * struct wlan_mlme_score_config - MLME BSS Scoring related config
  1573. * @enable_scoring_for_roam: Enable/disable BSS Scoring for Roaming
  1574. * @weight_cfg: Various Weight related Scoring Configs
  1575. * @rssi_score: RSSI Scoring related thresholds/percentages config
  1576. * @esp_qbss_scoring: ESP QBSS Scoring configs
  1577. * @oce_wan_scoring: OCE WAN Scoring Configs
  1578. * @bandwidth_weight_per_index: Bandwidth weight per index for scoring logic
  1579. * @nss_weight_per_index: NSS weight per index for scoring logic
  1580. * @band_weight_per_index: Band weight per index for scoring logic
  1581. * @roam_trigger_bitmap: bitmap for various roam triggers
  1582. * @roam_score_delta: percentage delta in roam score
  1583. * @apsd_enabled: Enable automatic power save delivery
  1584. */
  1585. struct wlan_mlme_scoring_cfg {
  1586. bool enable_scoring_for_roam;
  1587. struct wlan_mlme_weight_config weight_cfg;
  1588. struct wlan_mlme_rssi_cfg_score rssi_score;
  1589. struct wlan_mlme_per_slot_scoring esp_qbss_scoring;
  1590. struct wlan_mlme_per_slot_scoring oce_wan_scoring;
  1591. uint32_t bandwidth_weight_per_index;
  1592. uint32_t nss_weight_per_index;
  1593. uint32_t band_weight_per_index;
  1594. uint32_t roam_trigger_bitmap;
  1595. uint32_t roam_score_delta;
  1596. bool apsd_enabled;
  1597. };
  1598. /* struct wlan_mlme_threshold - Threshold related config items
  1599. * @rts_threshold: set rts threshold
  1600. * @frag_threshold: set fragmentation threshold
  1601. */
  1602. struct wlan_mlme_threshold {
  1603. uint32_t rts_threshold;
  1604. uint32_t frag_threshold;
  1605. };
  1606. /* struct mlme_max_tx_power_24 - power related items
  1607. * @max_len: max length of string
  1608. * @len: actual len of string
  1609. * @data: Data in string format
  1610. */
  1611. struct mlme_max_tx_power_24 {
  1612. qdf_size_t max_len;
  1613. qdf_size_t len;
  1614. uint8_t data[CFG_MAX_TX_POWER_2_4_LEN];
  1615. };
  1616. /* struct mlme_max_tx_power_5 - power related items
  1617. * @max_len: max length of string
  1618. * @len: actual len of string
  1619. * @data: Data in string format
  1620. */
  1621. struct mlme_max_tx_power_5 {
  1622. qdf_size_t max_len;
  1623. qdf_size_t len;
  1624. uint8_t data[CFG_MAX_TX_POWER_5_LEN];
  1625. };
  1626. /* struct mlme_power_usage - power related items
  1627. * @max_len: max length of string
  1628. * @len: actual len of string
  1629. * @data: Data in string format
  1630. */
  1631. struct mlme_power_usage {
  1632. qdf_size_t max_len;
  1633. qdf_size_t len;
  1634. char data[CFG_POWER_USAGE_MAX_LEN];
  1635. };
  1636. /*
  1637. * struct wlan_mlme_power - power related config items
  1638. * @max_tx_power_24: max power Tx for 2.4 ghz
  1639. * @max_tx_power_5: max power Tx for 5 ghz
  1640. * @power_usage: power usage mode, min, max, mod
  1641. * @tx_power_2g: limit tx power in 2.4 ghz
  1642. * @tx_power_5g: limit tx power in 5 ghz
  1643. * @max_tx_power: WLAN max tx power
  1644. * @current_tx_power_level: current tx power level
  1645. * @local_power_constraint: local power constraint
  1646. */
  1647. struct wlan_mlme_power {
  1648. struct mlme_max_tx_power_24 max_tx_power_24;
  1649. struct mlme_max_tx_power_5 max_tx_power_5;
  1650. struct mlme_power_usage power_usage;
  1651. uint8_t tx_power_2g;
  1652. uint8_t tx_power_5g;
  1653. uint8_t max_tx_power;
  1654. uint8_t current_tx_power_level;
  1655. uint8_t local_power_constraint;
  1656. };
  1657. /*
  1658. * struct wlan_mlme_timeout - mlme timeout related config items
  1659. * @join_failure_timeout: join failure timeout
  1660. * @auth_failure_timeout: authenticate failure timeout
  1661. * @auth_rsp_timeout: authenticate response timeout
  1662. * @assoc_failure_timeout: assoc failure timeout
  1663. * @reassoc_failure_timeout: re-assoc failure timeout
  1664. * @probe_after_hb_fail_timeout: Probe after HB fail timeout
  1665. * @olbc_detect_timeout: OLBC detect timeout
  1666. * @addts_rsp_timeout: ADDTS rsp timeout value
  1667. * @heart_beat_threshold: Heart beat threshold
  1668. * @ap_keep_alive_timeout: AP keep alive timeout value
  1669. * @ap_link_monitor_timeout: AP link monitor timeout value
  1670. * @ps_data_inactivity_timeout: PS data inactivity timeout
  1671. * @wmi_wq_watchdog_timeout: timeout period for wmi watchdog bite
  1672. */
  1673. struct wlan_mlme_timeout {
  1674. uint32_t join_failure_timeout;
  1675. uint32_t auth_failure_timeout;
  1676. uint32_t auth_rsp_timeout;
  1677. uint32_t assoc_failure_timeout;
  1678. uint32_t reassoc_failure_timeout;
  1679. uint32_t probe_after_hb_fail_timeout;
  1680. uint32_t olbc_detect_timeout;
  1681. uint32_t addts_rsp_timeout;
  1682. uint32_t heart_beat_threshold;
  1683. uint32_t ap_keep_alive_timeout;
  1684. uint32_t ap_link_monitor_timeout;
  1685. uint32_t ps_data_inactivity_timeout;
  1686. uint32_t wmi_wq_watchdog_timeout;
  1687. };
  1688. /**
  1689. * struct wlan_mlme_oce - OCE related config items
  1690. * @enable_bcast_probe_rsp: enable broadcast probe response
  1691. * @oce_sta_enabled: enable/disable oce feature for sta
  1692. * @oce_sap_enabled: enable/disable oce feature for sap
  1693. * @fils_enabled: enable/disable fils support
  1694. * @feature_bitmap: oce feature bitmap
  1695. *
  1696. */
  1697. struct wlan_mlme_oce {
  1698. bool enable_bcast_probe_rsp;
  1699. bool oce_sta_enabled;
  1700. bool oce_sap_enabled;
  1701. bool fils_enabled;
  1702. uint8_t feature_bitmap;
  1703. };
  1704. #define MLME_WEP_KEY_LEN_13 (13)
  1705. #define MLME_WEP_KEY_LENGTH_5 (5)
  1706. /**
  1707. * enum wep_key_id - values passed to get/set wep default keys
  1708. * @MLME_WEP_DEFAULT_KEY_1: wep default key 1
  1709. * @MLME_WEP_DEFAULT_KEY_2: wep default key 2
  1710. * @MLME_WEP_DEFAULT_KEY_3: wep default key 3
  1711. * @MLME_WEP_DEFAULT_KEY_4: wep default key 4
  1712. */
  1713. enum wep_key_id {
  1714. MLME_WEP_DEFAULT_KEY_1 = 0,
  1715. MLME_WEP_DEFAULT_KEY_2,
  1716. MLME_WEP_DEFAULT_KEY_3,
  1717. MLME_WEP_DEFAULT_KEY_4
  1718. };
  1719. /**
  1720. * struct wlan_mlme_wep_cfg - WEP related configs
  1721. * @is_privacy_enabled: Flag to check if encryption is enabled
  1722. * @is_shared_key_auth: Flag to check if the auth type is shared key
  1723. * @is_auth_open_system: Flag to check if the auth type is open
  1724. * @auth_type: Authentication type value
  1725. * @wep_default_key_id: Default WEP key id
  1726. * @wep_default_key_1: WEP encryption key 1
  1727. * @wep_default_key_2: WEP encryption key 2
  1728. * @wep_default_key_3: WEP encryption key 3
  1729. * @wep_default_key_4: WEP encryption key 4
  1730. */
  1731. struct wlan_mlme_wep_cfg {
  1732. bool is_privacy_enabled;
  1733. bool is_shared_key_auth;
  1734. bool is_auth_open_system;
  1735. uint8_t auth_type;
  1736. uint8_t wep_default_key_id;
  1737. struct mlme_cfg_str wep_default_key_1;
  1738. struct mlme_cfg_str wep_default_key_2;
  1739. struct mlme_cfg_str wep_default_key_3;
  1740. struct mlme_cfg_str wep_default_key_4;
  1741. };
  1742. /**
  1743. * struct wlan_mlme_wifi_pos_cfg - WIFI POS configs
  1744. * @fine_time_meas_cap: fine timing measurement capability information
  1745. */
  1746. struct wlan_mlme_wifi_pos_cfg {
  1747. uint32_t fine_time_meas_cap;
  1748. };
  1749. #define MLME_SET_BIT(value, bit_offset) ((value) |= (1 << (bit_offset)))
  1750. #define BTM_OFFLOAD_CONFIG_BIT_8 8
  1751. #define BTM_OFFLOAD_CONFIG_BIT_7 7
  1752. /*
  1753. * struct wlan_mlme_btm - BTM related configs
  1754. * @prefer_btm_query: flag to prefer btm query over 11k
  1755. * @abridge_flag: set this flag to enable firmware to sort candidates based on
  1756. * roam score rather than selecting preferred APs.
  1757. * @btm_offload_config: configure btm offload
  1758. * @btm_solicited_timeout: configure timeout value for waiting BTM request
  1759. * @btm_max_attempt_cnt: configure maximum attempt for sending BTM query to ESS
  1760. * @btm_sticky_time: configure Stick time after roaming to new AP by BTM
  1761. * @rct_validity_timer: Timeout values for roam cache table entries
  1762. * @disassoc_timer_threshold: Disassociation timeout till which roam scan need
  1763. * not be triggered
  1764. */
  1765. struct wlan_mlme_btm {
  1766. bool prefer_btm_query;
  1767. bool abridge_flag;
  1768. uint32_t btm_offload_config;
  1769. uint32_t btm_solicited_timeout;
  1770. uint32_t btm_max_attempt_cnt;
  1771. uint32_t btm_sticky_time;
  1772. uint32_t rct_validity_timer;
  1773. uint32_t disassoc_timer_threshold;
  1774. };
  1775. /**
  1776. * struct wlan_mlme_fe_wlm - WLM related configs
  1777. * @latency_enable: Flag to check if latency is enabled
  1778. * @latency_level: WLM latency level
  1779. * @latency_flags: WLM latency flags setting
  1780. */
  1781. struct wlan_mlme_fe_wlm {
  1782. bool latency_enable;
  1783. uint8_t latency_level;
  1784. uint32_t latency_flags[MLME_NUM_WLM_LATENCY_LEVEL];
  1785. };
  1786. /**
  1787. * struct wlan_mlme_fe_rrm - RRM related configs
  1788. * @rrm_enabled: Flag to check if RRM is enabled
  1789. * @rrm_rand_interval: RRM randomization interval
  1790. * @rm_capability: RM enabled capabilities IE
  1791. */
  1792. struct wlan_mlme_fe_rrm {
  1793. bool rrm_enabled;
  1794. uint8_t rrm_rand_interval;
  1795. uint8_t rm_capability[MLME_RMENABLEDCAP_MAX_LEN];
  1796. };
  1797. #ifdef MWS_COEX
  1798. /*
  1799. * struct wlan_mlme_mwc - MWC related configs
  1800. * @mws_coex_4g_quick_tdm: bitmap to set mws-coex 5g-nr power limit
  1801. * @mws_coex_5g_nr_pwr_limit: bitmap to set mws-coex 5g-nr power limit
  1802. **/
  1803. struct wlan_mlme_mwc {
  1804. uint32_t mws_coex_4g_quick_tdm;
  1805. uint32_t mws_coex_5g_nr_pwr_limit;
  1806. };
  1807. #else
  1808. struct wlan_mlme_mwc {
  1809. };
  1810. #endif
  1811. /**
  1812. * struct wlan_mlme_reg - REG related configs
  1813. * @self_gen_frm_pwr: self-generated frame power in tx chain mask
  1814. * for CCK rates
  1815. * @etsi13_srd_chan_in_master_mode: etsi13 srd chan in master mode
  1816. * @restart_beaconing_on_ch_avoid: restart beaconing on ch avoid
  1817. * @indoor_channel_support: indoor channel support
  1818. * @scan_11d_interval: scan 11d interval
  1819. * @valid_channel_list: array for valid channel list
  1820. * @valid_channel_list_num: valid channel list number
  1821. * @country_code: country code
  1822. * @country_code_len: country code length
  1823. * @enable_11d_in_world_mode: Whether to enable 11d scan in world mode or not
  1824. */
  1825. struct wlan_mlme_reg {
  1826. uint32_t self_gen_frm_pwr;
  1827. bool etsi13_srd_chan_in_master_mode;
  1828. enum restart_beaconing_on_ch_avoid_rule
  1829. restart_beaconing_on_ch_avoid;
  1830. bool indoor_channel_support;
  1831. uint32_t scan_11d_interval;
  1832. uint8_t valid_channel_list[CFG_VALID_CHANNEL_LIST_LEN];
  1833. uint8_t valid_channel_list_num;
  1834. uint8_t country_code[CFG_COUNTRY_CODE_LEN + 1];
  1835. uint8_t country_code_len;
  1836. bool enable_11d_in_world_mode;
  1837. };
  1838. /**
  1839. * struct wlan_mlme_ibss_cfg - IBSS config params
  1840. * @auto_bssid: Enable Auto BSSID for IBSS
  1841. * @atim_win_size: Set IBSS ATIM window size
  1842. * @adhoc_ch_5g: Default 5Ghz IBSS channel if not provided by supplicant
  1843. * @adhoc_ch_2g: Default 2.4Ghz IBSS channel if not provided by supplicant
  1844. * @coalesing_enable: IBSS coalesing control param
  1845. * @power_save_allow: IBSS Power Save control
  1846. * @power_collapse_allow: IBSS Power collapse control
  1847. * @awake_on_tx_rx: IBSS sta power save mode on TX/RX activity
  1848. * @inactivity_bcon_count: No of Beacons of data inactivity for power save
  1849. * @txsp_end_timeout: TX service period inactivity timeout
  1850. * @ps_warm_up_time: IBSS Power save skip time
  1851. * @ps_1rx_chain_atim_win: Control IBSS Power save in 1RX chain during ATIM
  1852. * @bssid: BSSID Mac address: IBSS BSSID if not provided by supplicant
  1853. */
  1854. struct wlan_mlme_ibss_cfg {
  1855. bool auto_bssid;
  1856. uint32_t atim_win_size;
  1857. uint32_t adhoc_ch_5g;
  1858. uint32_t adhoc_ch_2g;
  1859. bool coalesing_enable;
  1860. bool power_save_allow;
  1861. bool power_collapse_allow;
  1862. bool awake_on_tx_rx;
  1863. uint32_t inactivity_bcon_count;
  1864. uint32_t txsp_end_timeout;
  1865. uint32_t ps_warm_up_time;
  1866. uint32_t ps_1rx_chain_atim_win;
  1867. struct qdf_mac_addr bssid;
  1868. };
  1869. /**
  1870. * struct wlan_mlme_cfg - MLME config items
  1871. * @chainmask_cfg: VHT chainmask related cfg items
  1872. * @edca_params: edca related CFG items
  1873. * @gen: Generic CFG items
  1874. * @ht_caps: HT related CFG Items
  1875. * @he_caps: HE related cfg items
  1876. * @lfr: LFR related CFG Items
  1877. * @ibss: IBSS related CFG items
  1878. * @obss_ht40:obss ht40 CFG Items
  1879. * @mbo_cfg: Multiband Operation related CFG items
  1880. * @vht_caps: VHT related CFG Items
  1881. * @qos_mlme_params: QOS CFG Items
  1882. * @rates: Rates related cfg items
  1883. * @product_details: product details related CFG Items
  1884. * @dfs_cfg: DFS related CFG Items
  1885. * @sap_protection_cfg: SAP erp protection related CFG items
  1886. * @sap_cfg: sap CFG items
  1887. * @nss_chains_ini_cfg: Per vdev nss, chains related CFG items
  1888. * @sta: sta CFG Items
  1889. * @stats: stats CFG Items
  1890. * @scoring: BSS Scoring related CFG Items
  1891. * @oce: OCE related CFG items
  1892. * @threshold: threshold related cfg items
  1893. * @timeouts: mlme timeout related CFG items
  1894. * @twt_cfg: TWT CFG Items
  1895. * @wlan_mlme_power: power related items
  1896. * @acs: ACS related CFG items
  1897. * @feature_flags: Feature flag config items
  1898. * @ps_params: Powersave related ini configs
  1899. * @wep_params: WEP related config items
  1900. * @wifi_pos_cfg: WIFI POS config
  1901. * @wmm_params: WMM related CFG & INI Items
  1902. * @wps_params: WPS related CFG itmes
  1903. * @btm: BTM related CFG itmes
  1904. * @wlm_config: WLM related CFG items
  1905. * @rrm_config: RRM related CFG items
  1906. * @mwc: MWC related CFG items
  1907. * @dot11_mode: dot11 mode supported
  1908. * @reg: REG related CFG itmes
  1909. */
  1910. struct wlan_mlme_cfg {
  1911. struct wlan_mlme_chainmask chainmask_cfg;
  1912. struct wlan_mlme_edca_params edca_params;
  1913. struct wlan_mlme_generic gen;
  1914. struct wlan_mlme_ht_caps ht_caps;
  1915. #ifdef WLAN_FEATURE_11AX
  1916. struct wlan_mlme_he_caps he_caps;
  1917. #endif
  1918. struct wlan_mlme_lfr_cfg lfr;
  1919. struct wlan_mlme_ibss_cfg ibss;
  1920. struct wlan_mlme_obss_ht40 obss_ht40;
  1921. struct wlan_mlme_mbo mbo_cfg;
  1922. struct wlan_mlme_vht_caps vht_caps;
  1923. struct wlan_mlme_qos qos_mlme_params;
  1924. struct wlan_mlme_rates rates;
  1925. struct wlan_mlme_product_details_cfg product_details;
  1926. struct wlan_mlme_dfs_cfg dfs_cfg;
  1927. struct wlan_mlme_sap_protection sap_protection_cfg;
  1928. struct wlan_mlme_cfg_sap sap_cfg;
  1929. struct wlan_mlme_nss_chains nss_chains_ini_cfg;
  1930. struct wlan_mlme_sta_cfg sta;
  1931. struct wlan_mlme_stats_cfg stats;
  1932. struct wlan_mlme_scoring_cfg scoring;
  1933. struct wlan_mlme_oce oce;
  1934. struct wlan_mlme_threshold threshold;
  1935. struct wlan_mlme_timeout timeouts;
  1936. struct wlan_mlme_cfg_twt twt_cfg;
  1937. struct wlan_mlme_power power;
  1938. struct wlan_mlme_acs acs;
  1939. struct wlan_mlme_feature_flag feature_flags;
  1940. struct wlan_mlme_powersave ps_params;
  1941. struct wlan_mlme_wep_cfg wep_params;
  1942. struct wlan_mlme_wifi_pos_cfg wifi_pos_cfg;
  1943. struct wlan_mlme_wmm_params wmm_params;
  1944. struct wlan_mlme_wps_params wps_params;
  1945. struct wlan_mlme_btm btm;
  1946. struct wlan_mlme_fe_wlm wlm_config;
  1947. struct wlan_mlme_fe_rrm rrm_config;
  1948. struct wlan_mlme_mwc mwc;
  1949. struct wlan_mlme_dot11_mode dot11_mode;
  1950. struct wlan_mlme_reg reg;
  1951. };
  1952. #endif