cfg_qos.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. /*
  2. * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: This file contains centralized definitions of QOS related
  20. * converged configurations.
  21. */
  22. #ifndef __CFG_MLME_QOS_H
  23. #define __CFG_MLME_QOS_H
  24. #define ADDBA_TXAGGR_SIZE 256
  25. /*
  26. * <ini>
  27. * gTxAggregationSize - Gives an option to configure Tx aggregation size
  28. * in no of MPDUs
  29. * @Min: 0
  30. * @Max: ADDBA_TXAGGR_SIZE
  31. * @Default: ADDBA_TXAGGR_SIZE
  32. *
  33. * gTxAggregationSize gives an option to configure Tx aggregation size
  34. * in no of MPDUs.This can be useful in debugging throughput issues
  35. *
  36. * Related: None
  37. *
  38. * Supported Feature: STA
  39. *
  40. * Usage: External
  41. *
  42. * </ini>
  43. */
  44. #define CFG_TX_AGGREGATION_SIZE CFG_INI_UINT( \
  45. "gTxAggregationSize", \
  46. 0, \
  47. ADDBA_TXAGGR_SIZE, \
  48. ADDBA_TXAGGR_SIZE, \
  49. CFG_VALUE_OR_DEFAULT, \
  50. "Tx Aggregation size value")
  51. /*
  52. * <ini>
  53. * gTxAggregationSizeBE - To configure Tx aggregation size for BE queue
  54. * in no of MPDUs
  55. * @Min: 0
  56. * @Max: ADDBA_TXAGGR_SIZE
  57. * @Default: 0
  58. *
  59. * gTxAggregationSizeBE gives an option to configure Tx aggregation size
  60. * for BE queue in no of MPDUs.This can be useful in debugging
  61. * throughput issues
  62. *
  63. * Related: None
  64. *
  65. * Supported Feature: STA
  66. *
  67. * Usage: Internal
  68. *
  69. * </ini>
  70. */
  71. #define CFG_TX_AGGREGATION_SIZEBE CFG_INI_UINT( \
  72. "gTxAggregationSizeBE", \
  73. 0, \
  74. ADDBA_TXAGGR_SIZE, \
  75. 0, \
  76. CFG_VALUE_OR_DEFAULT, \
  77. "Tx Aggregation size value BE")
  78. /*
  79. * <ini>
  80. * gTxAggregationSizeBK - To configure Tx aggregation size for BK queue
  81. * in no of MPDUs
  82. * @Min: 0
  83. * @Max: ADDBA_TXAGGR_SIZE
  84. * @Default: 0
  85. *
  86. * gTxAggregationSizeBK gives an option to configure Tx aggregation size
  87. * for BK queue in no of MPDUs.This can be useful in debugging
  88. * throughput issues
  89. *
  90. * Related: None
  91. *
  92. * Supported Feature: STA
  93. *
  94. * Usage: Internal
  95. *
  96. * </ini>
  97. */
  98. #define CFG_TX_AGGREGATION_SIZEBK CFG_INI_UINT( \
  99. "gTxAggregationSizeBK", \
  100. 0, \
  101. ADDBA_TXAGGR_SIZE, \
  102. 0, \
  103. CFG_VALUE_OR_DEFAULT, \
  104. "Tx Aggregation size value BK")
  105. /*
  106. * <ini>
  107. * gTxAggregationSizeVI - To configure Tx aggregation size for VI queue
  108. * in no of MPDUs
  109. * @Min: 0
  110. * @Max: ADDBA_TXAGGR_SIZE
  111. * @Default: 0
  112. *
  113. * gTxAggregationSizeVI gives an option to configure Tx aggregation size
  114. * for VI queue in no of MPDUs.This can be useful in debugging
  115. * throughput issues
  116. *
  117. * Related: None
  118. *
  119. * Supported Feature: STA
  120. *
  121. * Usage: Internal
  122. *
  123. * </ini>
  124. */
  125. #define CFG_TX_AGGREGATION_SIZEVI CFG_INI_UINT( \
  126. "gTxAggregationSizeVI", \
  127. 0, \
  128. ADDBA_TXAGGR_SIZE, \
  129. 0, \
  130. CFG_VALUE_OR_DEFAULT, \
  131. "Tx Aggregation size value for VI")
  132. /*
  133. * <ini>
  134. * gTxAggregationSizeVO - To configure Tx aggregation size for VO queue
  135. * in no of MPDUs
  136. * @Min: 0
  137. * @Max: ADDBA_TXAGGR_SIZE
  138. * @Default: 0
  139. *
  140. * gTxAggregationSizeVO gives an option to configure Tx aggregation size
  141. * for BE queue in no of MPDUs.This can be useful in debugging
  142. * throughput issues
  143. *
  144. * Related: None
  145. *
  146. * Supported Feature: STA
  147. *
  148. * Usage: Internal
  149. *
  150. * </ini>
  151. */
  152. #define CFG_TX_AGGREGATION_SIZEVO CFG_INI_UINT( \
  153. "gTxAggregationSizeVO", \
  154. 0, \
  155. ADDBA_TXAGGR_SIZE, \
  156. 0, \
  157. CFG_VALUE_OR_DEFAULT, \
  158. "Tx Aggregation size value for VO")
  159. /*
  160. * <ini>
  161. * gRxAggregationSize - Gives an option to configure Rx aggregation size
  162. * in no of MPDUs
  163. * @Min: 1
  164. * @Max: 256
  165. * @Default: 256
  166. *
  167. * gRxAggregationSize gives an option to configure Rx aggregation size
  168. * in no of MPDUs. This can be useful in debugging throughput issues
  169. *
  170. * Related: None
  171. *
  172. * Supported Feature: STA
  173. *
  174. * Usage: External
  175. *
  176. * </ini>
  177. */
  178. #define CFG_RX_AGGREGATION_SIZE CFG_INI_UINT( \
  179. "gRxAggregationSize", \
  180. 1, \
  181. 256, \
  182. 256, \
  183. CFG_VALUE_OR_DEFAULT, \
  184. "Rx Aggregation size value")
  185. /*
  186. * <ini>
  187. * gTxAggSwRetryBE - Configure Tx aggregation sw retry for BE
  188. * @Min: 0
  189. * @Max: 64
  190. * @Default: 0
  191. *
  192. * gTxAggSwRetryBE gives an option to configure Tx aggregation sw
  193. * retry for BE. This can be useful in debugging throughput issues.
  194. *
  195. * Related: None
  196. *
  197. * Supported Feature: STA
  198. *
  199. * Usage: Internal
  200. *
  201. * </ini>
  202. */
  203. #define CFG_TX_AGGR_SW_RETRY_BE CFG_INI_UINT( \
  204. "gTxAggSwRetryBE", \
  205. 0, \
  206. 64, \
  207. 0, \
  208. CFG_VALUE_OR_DEFAULT, \
  209. "Tx aggregation retry value for BE")
  210. /*
  211. * <ini>
  212. * gTxAggSwRetryBK - Configure Tx aggregation sw retry for BK
  213. * @Min: 0
  214. * @Max: 64
  215. * @Default: 0
  216. *
  217. * gTxAggSwRetryBK gives an option to configure Tx aggregation sw
  218. * retry for BK. This can be useful in debugging throughput issues.
  219. *
  220. * Related: None
  221. *
  222. * Supported Feature: STA
  223. *
  224. * Usage: Internal
  225. *
  226. * </ini>
  227. */
  228. #define CFG_TX_AGGR_SW_RETRY_BK CFG_INI_UINT( \
  229. "gTxAggSwRetryBK", \
  230. 0, \
  231. 64, \
  232. 0, \
  233. CFG_VALUE_OR_DEFAULT, \
  234. "Tx aggregation retry value for BK")
  235. /*
  236. * <ini>
  237. * gTxAggSwRetryVI - Configure Tx aggregation sw retry for VI
  238. * @Min: 0
  239. * @Max: 64
  240. * @Default: 0
  241. *
  242. * gTxAggSwRetryVI gives an option to configure Tx aggregation sw
  243. * retry for VI. This can be useful in debugging throughput issues.
  244. *
  245. * Related: None
  246. *
  247. * Supported Feature: STA
  248. *
  249. * Usage: Internal
  250. *
  251. * </ini>
  252. */
  253. #define CFG_TX_AGGR_SW_RETRY_VI CFG_INI_UINT( \
  254. "gTxAggSwRetryVI", \
  255. 0, \
  256. 64, \
  257. 0, \
  258. CFG_VALUE_OR_DEFAULT, \
  259. "Tx aggregation retry value for VI")
  260. /*
  261. * <ini>
  262. * gTxAggSwRetryVO - Configure Tx aggregation sw retry for VO
  263. * @Min: 0
  264. * @Max: 64
  265. * @Default: 0
  266. *
  267. * gTxAggSwRetryVO gives an option to configure Tx aggregation sw
  268. * retry for VO. This can be useful in debugging throughput issues.
  269. *
  270. * Related: None
  271. *
  272. * Supported Feature: STA
  273. *
  274. * Usage: Internal
  275. *
  276. * </ini>
  277. */
  278. #define CFG_TX_AGGR_SW_RETRY_VO CFG_INI_UINT( \
  279. "gTxAggSwRetryVO", \
  280. 0, \
  281. 64, \
  282. 0, \
  283. CFG_VALUE_OR_DEFAULT, \
  284. "Tx aggregation retry value for VO")
  285. /*
  286. * <ini>
  287. * gTxNonAggSwRetryBE - Configure Tx non aggregation sw retry for BE
  288. * @Min: 0
  289. * @Max: 64
  290. * @Default: 0
  291. *
  292. * gTxNonAggSwRetryBE gives an option to configure Tx non aggregation sw
  293. * retry for BE. This can be useful in debugging throughput issues.
  294. *
  295. * Related: None
  296. *
  297. * Supported Feature: STA
  298. *
  299. * Usage: Internal
  300. *
  301. * </ini>
  302. */
  303. #define CFG_TX_NON_AGGR_SW_RETRY_BE CFG_INI_UINT( \
  304. "gTxNonAggSwRetryBE", \
  305. 0, \
  306. 64, \
  307. 0, \
  308. CFG_VALUE_OR_DEFAULT, \
  309. "Tx non aggregation retry value for BE")
  310. /*
  311. * <ini>
  312. * gTxNonAggSwRetryBK - Configure Tx non aggregation sw retry for BK
  313. * @Min: 0
  314. * @Max: 64
  315. * @Default: 0
  316. *
  317. * gTxNonAggSwRetryBK gives an option to configure Tx non aggregation sw
  318. * retry for BK. This can be useful in debugging throughput issues.
  319. *
  320. * Related: None
  321. *
  322. * Supported Feature: STA
  323. *
  324. * Usage: Internal
  325. *
  326. * </ini>
  327. */
  328. #define CFG_TX_NON_AGGR_SW_RETRY_BK CFG_INI_UINT( \
  329. "gTxNonAggSwRetryBK", \
  330. 0, \
  331. 64, \
  332. 0, \
  333. CFG_VALUE_OR_DEFAULT, \
  334. "Tx non aggregation retry value for BK")
  335. /*
  336. * <ini>
  337. * gTxNonAggSwRetryVI - Configure Tx non aggregation sw retry for VI
  338. * @Min: 0
  339. * @Max: 64
  340. * @Default: 0
  341. *
  342. * gTxNonAggSwRetryVI gives an option to configure Tx non aggregation sw
  343. * retry for VI. This can be useful in debugging throughput issues.
  344. *
  345. * Related: None
  346. *
  347. * Supported Feature: STA
  348. *
  349. * Usage: Internal
  350. *
  351. * </ini>
  352. */
  353. #define CFG_TX_NON_AGGR_SW_RETRY_VI CFG_INI_UINT( \
  354. "gTxNonAggSwRetryVI", \
  355. 0, \
  356. 64, \
  357. 0, \
  358. CFG_VALUE_OR_DEFAULT, \
  359. "Tx non aggregation retry value for VI")
  360. /*
  361. * <ini>
  362. * gTxNonAggSwRetryVO - Configure Tx non aggregation sw retry for VO
  363. * @Min: 0
  364. * @Max: 64
  365. * @Default: 0
  366. *
  367. * gTxNonAggSwRetryVO gives an option to configure Tx non aggregation sw
  368. * retry for VO. This can be useful in debugging throughput issues.
  369. *
  370. * Related: None
  371. *
  372. * Supported Feature: STA
  373. *
  374. * Usage: Internal
  375. *
  376. * </ini>
  377. */
  378. #define CFG_TX_NON_AGGR_SW_RETRY_VO CFG_INI_UINT( \
  379. "gTxNonAggSwRetryVO", \
  380. 0, \
  381. 64, \
  382. 0, \
  383. CFG_VALUE_OR_DEFAULT, \
  384. "Tx non aggregation retry value for VO")
  385. /*
  386. * <ini>
  387. * gTxAggSwRetry - Configure Tx aggregation sw retry
  388. * @Min: 0
  389. * @Max: 64
  390. * @Default: 16
  391. *
  392. * gTxAggSwRetry gives an option to configure Tx aggregation sw
  393. * retry. This can be useful in debugging throughput issues.
  394. *
  395. * Related: None
  396. *
  397. * Supported Feature: STA
  398. *
  399. * Usage: External
  400. *
  401. * </ini>
  402. */
  403. #define CFG_TX_AGGR_SW_RETRY CFG_INI_UINT( \
  404. "gTxAggSwRetry", \
  405. 0, \
  406. 64, \
  407. 16, \
  408. CFG_VALUE_OR_DEFAULT, \
  409. "Tx aggregation retry value")
  410. /*
  411. * <ini>
  412. * gTxNonAggSwRetry - Configure Tx non aggregation sw retry
  413. * @Min: 0
  414. * @Max: 64
  415. * @Default: 16
  416. *
  417. * gTxNonAggSwRetry gives an option to configure Tx non aggregation sw
  418. * retry. This can be useful in debugging throughput issues.
  419. *
  420. * Related: None
  421. *
  422. * Supported Feature: STA
  423. *
  424. * Usage: External
  425. *
  426. * </ini>
  427. */
  428. #define CFG_TX_NON_AGGR_SW_RETRY CFG_INI_UINT( \
  429. "gTxNonAggSwRetry", \
  430. 0, \
  431. 64, \
  432. 16, \
  433. CFG_VALUE_OR_DEFAULT, \
  434. "Tx non aggregation retry value")
  435. /*
  436. * <ini>
  437. * gSapMaxInactivityOverride - Configure
  438. * @Min: 0
  439. * @Max: 1
  440. * @Default: 0
  441. *
  442. * This parameter will avoid updating ap_sta_inactivity from hostapd.conf
  443. * file. If a station does not send anything in ap_max_inactivity seconds, an
  444. * empty data frame is sent to it in order to verify whether it is
  445. * still in range. If this frame is not ACKed, the station will be
  446. * disassociated and then deauthenticated. This feature is used to
  447. * clear station table of old entries when the STAs move out of the
  448. * range.
  449. *
  450. * Related: None
  451. *
  452. * Supported Feature: SAP
  453. *
  454. * Usage: External
  455. * </ini>
  456. */
  457. #define CFG_SAP_MAX_INACTIVITY_OVERRIDE CFG_INI_BOOL( \
  458. "gSapMaxInactivityOverride", \
  459. 0, \
  460. "SAP maximum inactivity override flag")
  461. /*
  462. * <ini>
  463. * gEnableApUapsd - Enable/disable UAPSD for SoftAP
  464. * @Min: 0
  465. * @Max: 1
  466. * @Default: 1
  467. *
  468. * This ini is used to setup setup U-APSD for Acs at association
  469. *
  470. * Related: None.
  471. *
  472. * Supported Feature: SAP
  473. *
  474. * Usage: External
  475. *
  476. * </ini>
  477. */
  478. #define CFG_SAP_QOS_UAPSD CFG_INI_BOOL( \
  479. "gEnableApUapsd", \
  480. 1, \
  481. "Enable UAPSD for SAP")
  482. #define IOT_AGGR_INFO_MAX_LEN 500
  483. #define IOT_AGGR_INFO_MAX_NUM 32
  484. #define IOT_AGGR_MSDU_MAX_NUM 6
  485. #define IOT_AGGR_MPDU_MAX_NUM 512
  486. /*
  487. * <ini>
  488. * cfg_tx_iot_aggr - OUI based tx aggr size for msdu/mpdu
  489. *
  490. * This ini gives an option to configure Tx aggregation size
  491. * in no. of MPDUs/MSDUs for specified OUI.
  492. * This can be useful for IOT issues.
  493. *
  494. * Format of the configuration:
  495. * cfg_tx_iot_aggr=<OUI-1>,<MSDU-1>,<MPDU-1>,<OUI-2>,<MSDU-2>,<MPDU-2>...
  496. * MSDU: 0..IOT_AGGR_MSDU_MAX_NUM, the max tx aggregation size in no. of MSDUs,
  497. * 0 means not specified.
  498. * MPDU: 0..IOT_AGGR_MPDU_MAX_NUM, the max tx aggregation size in no. of MPDUs,
  499. * 0 means not specified.
  500. * Note: MSDU-x/MPDU-x are the max values, FW will take decision for actual
  501. * AMSDU/AMPDU size on different platforms.
  502. *
  503. * For example:
  504. * cfg_tx_iot_aggr=112233,2,0,445566,3,32,778899,0,64
  505. * If vendor OUI-1("\x11\x22\x33") is found in assoc resp,
  506. * set tx amsdu size to 2;
  507. * If vendor OUI-2("\x44\x55\x66") is found in assoc resp,
  508. * set tx amsdu size to 3, set tx ampdu size to 32;
  509. * If vendor OUI-3("\x77\x88\x99") is found in assoc resp,
  510. * set tx ampdu size to 64.
  511. *
  512. * Related: IOT
  513. *
  514. * Supported Feature: IOT
  515. *
  516. * Usage: External
  517. *
  518. * </ini>
  519. */
  520. #define CFG_TX_IOT_AGGR CFG_INI_STRING( \
  521. "cfg_tx_iot_aggr", \
  522. 0, \
  523. IOT_AGGR_INFO_MAX_LEN, \
  524. "", \
  525. "Used to configure OUI based tx aggr size for msdu/mpdu")
  526. #define CFG_QOS_ALL \
  527. CFG(CFG_SAP_MAX_INACTIVITY_OVERRIDE) \
  528. CFG(CFG_TX_AGGREGATION_SIZE) \
  529. CFG(CFG_TX_AGGREGATION_SIZEBE) \
  530. CFG(CFG_TX_AGGREGATION_SIZEBK) \
  531. CFG(CFG_TX_AGGREGATION_SIZEVI) \
  532. CFG(CFG_TX_AGGREGATION_SIZEVO) \
  533. CFG(CFG_RX_AGGREGATION_SIZE) \
  534. CFG(CFG_TX_AGGR_SW_RETRY_BE) \
  535. CFG(CFG_TX_AGGR_SW_RETRY_BK) \
  536. CFG(CFG_TX_AGGR_SW_RETRY_VI) \
  537. CFG(CFG_TX_AGGR_SW_RETRY_VO) \
  538. CFG(CFG_TX_AGGR_SW_RETRY) \
  539. CFG(CFG_TX_NON_AGGR_SW_RETRY_BE) \
  540. CFG(CFG_TX_NON_AGGR_SW_RETRY_BK) \
  541. CFG(CFG_TX_NON_AGGR_SW_RETRY_VI) \
  542. CFG(CFG_TX_NON_AGGR_SW_RETRY_VO) \
  543. CFG(CFG_TX_NON_AGGR_SW_RETRY) \
  544. CFG(CFG_SAP_QOS_UAPSD) \
  545. CFG(CFG_TX_IOT_AGGR)
  546. #endif /* __CFG_MLME_QOS_H */