wlan_scan_cfg.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. /*
  2. * Copyright (c) 2012-2018 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 SCAN component
  20. */
  21. #ifndef __CONFIG_SCAN_H
  22. #define __CONFIG_SCAN_H
  23. #include "cfg_define.h"
  24. /*
  25. * <ini>
  26. * drop_bcn_on_chan_mismatch - drop the beacon for chan mismatch
  27. * @Min: 0
  28. * @Max: 1
  29. * @Default: 1
  30. *
  31. * This ini is used to decide drop the beacon or not if channel received
  32. * in metadata doesn't match the one in beacon.
  33. *
  34. * Related: None
  35. *
  36. * Usage: External
  37. *
  38. * </ini>
  39. */
  40. #define CFG_DROP_BCN_ON_CHANNEL_MISMATCH CFG_INI_BOOL(\
  41. "drop_bcn_on_chan_mismatch",\
  42. true,\
  43. "drop bcn on channel mismatch")
  44. /*
  45. * <ini>
  46. * gActiveMaxChannelTime - Set max channel time for active scan
  47. * @Min: 0
  48. * @Max: 10000
  49. * @Default: 40
  50. *
  51. * This ini is used to set maximum channel time in msecs spent in
  52. * active scan
  53. *
  54. * Related: None
  55. *
  56. * Usage: External
  57. *
  58. * </ini>
  59. */
  60. #define CFG_ACTIVE_MAX_CHANNEL_TIME CFG_INI_UINT(\
  61. "gActiveMaxChannelTime",\
  62. 0, 10000, MCL_OR_WIN_VALUE(40, 105),\
  63. CFG_VALUE_OR_DEFAULT, "active dwell time")
  64. /*
  65. * <ini>
  66. * active_max_channel_time_2g - Set max time for active 2G channel scan
  67. * @Min: 0
  68. * @Max: 10000
  69. * @Default: 80
  70. *
  71. * This ini is used to set maximum time in msecs spent in active 2G channel scan
  72. * if it's not zero, in case of zero, CFG_ACTIVE_MAX_CHANNEL_TIME is used for 2G
  73. * channels also.
  74. *
  75. * Related: None
  76. *
  77. * Usage: External
  78. *
  79. * </ini>
  80. */
  81. #define CFG_ACTIVE_MAX_2G_CHANNEL_TIME CFG_INI_UINT(\
  82. "active_max_channel_time_2g",\
  83. 0, 10000, MCL_OR_WIN_VALUE(80, 0),\
  84. CFG_VALUE_OR_DEFAULT, "active dwell time for 2G channels")
  85. /*
  86. * <ini>
  87. * gPassiveMaxChannelTime - Set max channel time for passive scan
  88. * @Min: 0
  89. * @Max: 10000
  90. * @Default: 110
  91. *
  92. * This ini is used to set maximum channel time in msecs spent in
  93. * passive scan
  94. *
  95. * Related: None
  96. *
  97. * Usage: External
  98. *
  99. * </ini>
  100. */
  101. #define CFG_PASSIVE_MAX_CHANNEL_TIME CFG_INI_UINT(\
  102. "gPassiveMaxChannelTime",\
  103. 0, 10000, MCL_OR_WIN_VALUE(100, 300),\
  104. CFG_VALUE_OR_DEFAULT, "passive dwell time")
  105. /*
  106. * <ini>
  107. * gScanNumProbes - Set the number of probes on each channel for active scan
  108. * @Min: 0
  109. * @Max: 20
  110. * @Default: 0
  111. *
  112. * This ini is used to set number of probes on each channel for
  113. * active scan
  114. */
  115. #define CFG_SCAN_NUM_PROBES CFG_INI_UINT(\
  116. "gScanNumProbes",\
  117. 0, 20, MCL_OR_WIN_VALUE(0, 2),\
  118. CFG_VALUE_OR_DEFAULT,\
  119. "number of probes on each channel")
  120. /*
  121. * <ini>
  122. * gScanProbeRepeatTime - Set the probe repeat time on each channel
  123. * @Min: 0
  124. * @Max: 30
  125. * @Default: 0
  126. *
  127. * This ini is used to set probe repeat time on each channel for
  128. * active scan
  129. *
  130. * Related: None
  131. *
  132. * Supported Feature: Scan
  133. *
  134. * Usage: External
  135. *
  136. * </ini>
  137. */
  138. #define CFG_SCAN_PROBE_REPEAT_TIME CFG_INI_UINT(\
  139. "gScanProbeRepeatTime",\
  140. 0, 30, MCL_OR_WIN_VALUE(20, 50),\
  141. CFG_VALUE_OR_DEFAULT,\
  142. "probe repeat time on each channel")
  143. /*
  144. * <ini>
  145. * hostscan_adaptive_dwell_mode - Enable adaptive dwell mode
  146. * during host scan with conneciton
  147. * @Min: 0
  148. * @Max: 4
  149. * @Default: 2
  150. *
  151. * This ini will set the algo used in dwell time optimization
  152. * during host scan with connection.
  153. * See enum wmi_dwelltime_adaptive_mode.
  154. * Acceptable values for this:
  155. * 0: Default (Use firmware default mode)
  156. * 1: Conservative optimization
  157. * 2: Moderate optimization
  158. * 3: Aggressive optimization
  159. * 4: Static
  160. *
  161. * Related: None
  162. *
  163. * Supported Feature: Scan
  164. *
  165. * Usage: External
  166. *
  167. * </ini>
  168. */
  169. #define CFG_ADAPTIVE_SCAN_DWELL_MODE CFG_INI_UINT(\
  170. "hostscan_adaptive_dwell_mode",\
  171. 0, 4, MCL_OR_WIN_VALUE(2, 0),\
  172. CFG_VALUE_OR_DEFAULT,\
  173. "Enable adaptive dwell mode")
  174. /*
  175. * <ini>
  176. * hostscan_adaptive_dwell_mode_no_conn - Enable adaptive dwell mode
  177. * during host scan without conneciton
  178. * @Min: 0
  179. * @Max: 4
  180. * @Default: 4
  181. *
  182. * This ini will set the algo used in dwell time optimization
  183. * during host scan with connection.
  184. * See enum wmi_dwelltime_adaptive_mode.
  185. * Acceptable values for this:
  186. * 0: Default (Use firmware default mode)
  187. * 1: Conservative optimization
  188. * 2: Moderate optimization
  189. * 3: Aggressive optimization
  190. * 4: Static
  191. *
  192. * Related: None
  193. *
  194. * Supported Feature: Scan
  195. *
  196. * Usage: External
  197. *
  198. * </ini>
  199. */
  200. #define CFG_ADAPTIVE_SCAN_DWELL_MODE_NC CFG_INI_UINT(\
  201. "hostscan_adaptive_dwell_mode_no_conn",\
  202. 0, 4, MCL_OR_WIN_VALUE(4, 0),\
  203. CFG_VALUE_OR_DEFAULT,\
  204. "Enable adaptive dwell mode without connection")
  205. /*
  206. * <ini>
  207. * is_bssid_hint_priority - Set priority for connection with bssid_hint
  208. * BSSID.
  209. * @Min: 0
  210. * @Max: 1
  211. * @Default: 1
  212. *
  213. * This ini is used to give priority to BSS for connection which comes
  214. * as part of bssid_hint
  215. *
  216. * Related: None
  217. *
  218. * Supported Feature: STA
  219. *
  220. * Usage: External
  221. *
  222. * </ini>
  223. */
  224. #define CFG_IS_BSSID_HINT_PRIORITY CFG_INI_UINT(\
  225. "is_bssid_hint_priority",\
  226. 0, 1, 0,\
  227. CFG_VALUE_OR_DEFAULT, \
  228. "Set priority for connection with bssid_hint")
  229. #ifdef FEATURE_WLAN_SCAN_PNO
  230. /*
  231. * These scan PNO ini params are used only once by HDD to store the
  232. * values in wiphy structure
  233. */
  234. /*
  235. * <ini>
  236. * g_max_sched_scan_plan_iterations - pno sched max scan plan iterations.
  237. * @Min: 1
  238. * @Max: 100
  239. * @Default: 10
  240. *
  241. * This ini is used to set max sched scan plan iterations for pno scan
  242. * (value in seconds).
  243. *
  244. * Related: gPNOScanSupport
  245. *
  246. * Supported Feature: PNO scan
  247. *
  248. * Usage: External
  249. *
  250. * </ini>
  251. */
  252. #define CFG_MAX_SCHED_SCAN_PLAN_ITERATIONS CFG_INI_UINT( \
  253. "g_max_sched_scan_plan_iterations", \
  254. 1, 100, 10, \
  255. CFG_VALUE_OR_DEFAULT, \
  256. "Max sched scan plan iterations")
  257. /*
  258. * <ini>
  259. * g_max_sched_scan_plan_int - pno sched max scan plan interval.
  260. * @Min: 1
  261. * @Max: 7200
  262. * @Default: 3600
  263. *
  264. * This ini is used to set max sched scan plan interval for pno scan
  265. * (value in seconds).
  266. *
  267. * Related: gPNOScanSupport
  268. *
  269. * Supported Feature: PNO scan
  270. *
  271. * Usage: External
  272. *
  273. * </ini>
  274. */
  275. #define CFG_MAX_SCHED_SCAN_PLAN_INTERVAL CFG_INI_UINT( \
  276. "g_max_sched_scan_plan_int", \
  277. 1, 7200, 3600, \
  278. CFG_VALUE_OR_DEFAULT, \
  279. "Max sched scan plan interval")
  280. #define CFG_SCAN_PNO \
  281. CFG(CFG_MAX_SCHED_SCAN_PLAN_ITERATIONS) \
  282. CFG(CFG_MAX_SCHED_SCAN_PLAN_INTERVAL)
  283. #else
  284. #define CFG_SCAN_PNO
  285. #endif
  286. /*
  287. * <ini>
  288. * gActiveMaxChannelTimeConc - Maximum active scan time in milliseconds.
  289. * @Min: 0
  290. * @Max: 10000
  291. * @Default: 40
  292. *
  293. * This ini is used to set maximum active scan time in STA+SAP concurrent
  294. * mode.
  295. *
  296. * Related: None.
  297. *
  298. * Supported Feature: Concurrency
  299. *
  300. * Usage: Internal/External
  301. *
  302. * </ini>
  303. */
  304. #define CFG_ACTIVE_MAX_CHANNEL_TIME_CONC CFG_INI_UINT(\
  305. "gActiveMaxChannelTimeConc",\
  306. 0, 10000, MCL_OR_WIN_VALUE(40, 0),\
  307. CFG_VALUE_OR_DEFAULT, \
  308. "active scan time in STA+SAP concurrent")
  309. /*
  310. * <ini>
  311. * gPassiveMaxChannelTimeConc - Maximum passive scan time in milliseconds.
  312. * @Min: 0
  313. * @Max: 10000
  314. * @Default: 110
  315. *
  316. * This ini is used to set maximum passive scan time in STA+SAP concurrent
  317. * mode.
  318. *
  319. * Related: None.
  320. *
  321. * Supported Feature: Concurrency
  322. *
  323. * Usage: Internal/External
  324. *
  325. * </ini>
  326. */
  327. #define CFG_PASSIVE_MAX_CHANNEL_TIME_CONC CFG_INI_UINT(\
  328. "gPassiveMaxChannelTimeConc",\
  329. 0, 10000, MCL_OR_WIN_VALUE(110, 0),\
  330. CFG_VALUE_OR_DEFAULT, \
  331. "Set priority for connection with bssid_hint")
  332. /*
  333. * <ini>
  334. * gRestTimeConc - Rest time before moving to a new channel to scan.
  335. * @Min: 0
  336. * @Max: 10000
  337. * @Default: 100
  338. *
  339. * This ini is used to configure rest time.
  340. *
  341. * Related: None.
  342. *
  343. * Supported Feature: Concurrency
  344. *
  345. * Usage: Internal/External
  346. *
  347. * </ini>
  348. */
  349. #define CFG_MAX_REST_TIME_CONC CFG_INI_UINT(\
  350. "nRestTimeConc",\
  351. 0, 10000, MCL_OR_WIN_VALUE(100, 0),\
  352. CFG_VALUE_OR_DEFAULT, \
  353. "Rest time before moving to a new channel")
  354. /*
  355. * <ini>
  356. * min_rest_time_conc - Mininum time spent on home channel before moving to a
  357. * new channel to scan.
  358. * @Min: 0
  359. * @Max: 50
  360. * @Default: 50
  361. *
  362. * This ini is used to configure minimum time spent on home channel before
  363. * moving to a new channel to scan.
  364. *
  365. * Related: None.
  366. *
  367. * Supported Feature: Concurrency
  368. *
  369. * Usage: Internal/External
  370. *
  371. * </ini>
  372. */
  373. #define CFG_MIN_REST_TIME_CONC CFG_INI_UINT(\
  374. "min_rest_time_conc",\
  375. 0, 50, MCL_OR_WIN_VALUE(50, 0),\
  376. CFG_VALUE_OR_DEFAULT, \
  377. "minimum time spent on home channel")
  378. /*
  379. * <ini>
  380. * gIdleTimeConc - Data inactivity time in msec.
  381. * @Min: 0
  382. * @Max: 25
  383. * @Default: 25
  384. *
  385. * This ini is used to configure data inactivity time in msec on bss channel
  386. * that will be used by scan engine in firmware.
  387. * For example if this value is 25ms then firmware will check for data
  388. * inactivity every 25ms till gRestTimeConc is reached.
  389. * If inactive then scan engine will move from home channel to scan the next
  390. * frequency.
  391. *
  392. * Related: None.
  393. *
  394. * Supported Feature: Concurrency
  395. *
  396. * Usage: Internal/External
  397. *
  398. * </ini>
  399. */
  400. #define CFG_IDLE_TIME_CONC CFG_INI_UINT(\
  401. "gIdleTimeConc",\
  402. 0, 25, MCL_OR_WIN_VALUE(25, 0),\
  403. CFG_VALUE_OR_DEFAULT, \
  404. "data inactivity time on bss channel")
  405. #define CFG_SCAN_ALL \
  406. CFG(CFG_DROP_BCN_ON_CHANNEL_MISMATCH) \
  407. CFG(CFG_ACTIVE_MAX_CHANNEL_TIME) \
  408. CFG(CFG_ACTIVE_MAX_2G_CHANNEL_TIME) \
  409. CFG(CFG_PASSIVE_MAX_CHANNEL_TIME) \
  410. CFG(CFG_SCAN_NUM_PROBES) \
  411. CFG(CFG_SCAN_PROBE_REPEAT_TIME) \
  412. CFG(CFG_ADAPTIVE_SCAN_DWELL_MODE) \
  413. CFG(CFG_ADAPTIVE_SCAN_DWELL_MODE_NC) \
  414. CFG(CFG_IS_BSSID_HINT_PRIORITY) \
  415. CFG_SCAN_PNO \
  416. CFG(CFG_PASSIVE_MAX_CHANNEL_TIME_CONC) \
  417. CFG(CFG_ACTIVE_MAX_CHANNEL_TIME_CONC) \
  418. CFG(CFG_MAX_REST_TIME_CONC) \
  419. CFG(CFG_MIN_REST_TIME_CONC) \
  420. CFG(CFG_IDLE_TIME_CONC)
  421. #endif