conf.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269
  1. /*
  2. * This file is part of wl1271
  3. *
  4. * Copyright (C) 2009 Nokia Corporation
  5. *
  6. * Contact: Luciano Coelho <luciano.coelho@nokia.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * version 2 as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA
  21. *
  22. */
  23. #ifndef __CONF_H__
  24. #define __CONF_H__
  25. enum {
  26. CONF_HW_BIT_RATE_1MBPS = BIT(0),
  27. CONF_HW_BIT_RATE_2MBPS = BIT(1),
  28. CONF_HW_BIT_RATE_5_5MBPS = BIT(2),
  29. CONF_HW_BIT_RATE_6MBPS = BIT(3),
  30. CONF_HW_BIT_RATE_9MBPS = BIT(4),
  31. CONF_HW_BIT_RATE_11MBPS = BIT(5),
  32. CONF_HW_BIT_RATE_12MBPS = BIT(6),
  33. CONF_HW_BIT_RATE_18MBPS = BIT(7),
  34. CONF_HW_BIT_RATE_22MBPS = BIT(8),
  35. CONF_HW_BIT_RATE_24MBPS = BIT(9),
  36. CONF_HW_BIT_RATE_36MBPS = BIT(10),
  37. CONF_HW_BIT_RATE_48MBPS = BIT(11),
  38. CONF_HW_BIT_RATE_54MBPS = BIT(12),
  39. CONF_HW_BIT_RATE_MCS_0 = BIT(13),
  40. CONF_HW_BIT_RATE_MCS_1 = BIT(14),
  41. CONF_HW_BIT_RATE_MCS_2 = BIT(15),
  42. CONF_HW_BIT_RATE_MCS_3 = BIT(16),
  43. CONF_HW_BIT_RATE_MCS_4 = BIT(17),
  44. CONF_HW_BIT_RATE_MCS_5 = BIT(18),
  45. CONF_HW_BIT_RATE_MCS_6 = BIT(19),
  46. CONF_HW_BIT_RATE_MCS_7 = BIT(20)
  47. };
  48. enum {
  49. CONF_HW_RATE_INDEX_1MBPS = 0,
  50. CONF_HW_RATE_INDEX_2MBPS = 1,
  51. CONF_HW_RATE_INDEX_5_5MBPS = 2,
  52. CONF_HW_RATE_INDEX_6MBPS = 3,
  53. CONF_HW_RATE_INDEX_9MBPS = 4,
  54. CONF_HW_RATE_INDEX_11MBPS = 5,
  55. CONF_HW_RATE_INDEX_12MBPS = 6,
  56. CONF_HW_RATE_INDEX_18MBPS = 7,
  57. CONF_HW_RATE_INDEX_22MBPS = 8,
  58. CONF_HW_RATE_INDEX_24MBPS = 9,
  59. CONF_HW_RATE_INDEX_36MBPS = 10,
  60. CONF_HW_RATE_INDEX_48MBPS = 11,
  61. CONF_HW_RATE_INDEX_54MBPS = 12,
  62. CONF_HW_RATE_INDEX_MAX = CONF_HW_RATE_INDEX_54MBPS,
  63. };
  64. enum {
  65. CONF_HW_RXTX_RATE_MCS7 = 0,
  66. CONF_HW_RXTX_RATE_MCS6,
  67. CONF_HW_RXTX_RATE_MCS5,
  68. CONF_HW_RXTX_RATE_MCS4,
  69. CONF_HW_RXTX_RATE_MCS3,
  70. CONF_HW_RXTX_RATE_MCS2,
  71. CONF_HW_RXTX_RATE_MCS1,
  72. CONF_HW_RXTX_RATE_MCS0,
  73. CONF_HW_RXTX_RATE_54,
  74. CONF_HW_RXTX_RATE_48,
  75. CONF_HW_RXTX_RATE_36,
  76. CONF_HW_RXTX_RATE_24,
  77. CONF_HW_RXTX_RATE_22,
  78. CONF_HW_RXTX_RATE_18,
  79. CONF_HW_RXTX_RATE_12,
  80. CONF_HW_RXTX_RATE_11,
  81. CONF_HW_RXTX_RATE_9,
  82. CONF_HW_RXTX_RATE_6,
  83. CONF_HW_RXTX_RATE_5_5,
  84. CONF_HW_RXTX_RATE_2,
  85. CONF_HW_RXTX_RATE_1,
  86. CONF_HW_RXTX_RATE_MAX,
  87. CONF_HW_RXTX_RATE_UNSUPPORTED = 0xff
  88. };
  89. enum {
  90. CONF_SG_DISABLE = 0,
  91. CONF_SG_PROTECTIVE,
  92. CONF_SG_OPPORTUNISTIC
  93. };
  94. enum {
  95. /*
  96. * Configure the min and max time BT gains the antenna
  97. * in WLAN / BT master basic rate
  98. *
  99. * Range: 0 - 255 (ms)
  100. */
  101. CONF_SG_ACL_BT_MASTER_MIN_BR = 0,
  102. CONF_SG_ACL_BT_MASTER_MAX_BR,
  103. /*
  104. * Configure the min and max time BT gains the antenna
  105. * in WLAN / BT slave basic rate
  106. *
  107. * Range: 0 - 255 (ms)
  108. */
  109. CONF_SG_ACL_BT_SLAVE_MIN_BR,
  110. CONF_SG_ACL_BT_SLAVE_MAX_BR,
  111. /*
  112. * Configure the min and max time BT gains the antenna
  113. * in WLAN / BT master EDR
  114. *
  115. * Range: 0 - 255 (ms)
  116. */
  117. CONF_SG_ACL_BT_MASTER_MIN_EDR,
  118. CONF_SG_ACL_BT_MASTER_MAX_EDR,
  119. /*
  120. * Configure the min and max time BT gains the antenna
  121. * in WLAN / BT slave EDR
  122. *
  123. * Range: 0 - 255 (ms)
  124. */
  125. CONF_SG_ACL_BT_SLAVE_MIN_EDR,
  126. CONF_SG_ACL_BT_SLAVE_MAX_EDR,
  127. /*
  128. * The maximum time WLAN can gain the antenna
  129. * in WLAN PSM / BT master/slave BR
  130. *
  131. * Range: 0 - 255 (ms)
  132. */
  133. CONF_SG_ACL_WLAN_PS_MASTER_BR,
  134. CONF_SG_ACL_WLAN_PS_SLAVE_BR,
  135. /*
  136. * The maximum time WLAN can gain the antenna
  137. * in WLAN PSM / BT master/slave EDR
  138. *
  139. * Range: 0 - 255 (ms)
  140. */
  141. CONF_SG_ACL_WLAN_PS_MASTER_EDR,
  142. CONF_SG_ACL_WLAN_PS_SLAVE_EDR,
  143. /* TODO: explain these values */
  144. CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_BR,
  145. CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_BR,
  146. CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_BR,
  147. CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_BR,
  148. CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_EDR,
  149. CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_EDR,
  150. CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_EDR,
  151. CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_EDR,
  152. CONF_SG_ACL_ACTIVE_SCAN_WLAN_BR,
  153. CONF_SG_ACL_ACTIVE_SCAN_WLAN_EDR,
  154. CONF_SG_ACL_PASSIVE_SCAN_BT_BR,
  155. CONF_SG_ACL_PASSIVE_SCAN_WLAN_BR,
  156. CONF_SG_ACL_PASSIVE_SCAN_BT_EDR,
  157. CONF_SG_ACL_PASSIVE_SCAN_WLAN_EDR,
  158. /*
  159. * Compensation percentage of probe requests when scan initiated
  160. * during BT voice/ACL link.
  161. *
  162. * Range: 0 - 255 (%)
  163. */
  164. CONF_SG_AUTO_SCAN_PROBE_REQ,
  165. /*
  166. * Compensation percentage of probe requests when active scan initiated
  167. * during BT voice
  168. *
  169. * Range: 0 - 255 (%)
  170. */
  171. CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_HV3,
  172. /*
  173. * Compensation percentage of WLAN active scan window if initiated
  174. * during BT A2DP
  175. *
  176. * Range: 0 - 1000 (%)
  177. */
  178. CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_A2DP,
  179. /*
  180. * Compensation percentage of WLAN passive scan window if initiated
  181. * during BT A2DP BR
  182. *
  183. * Range: 0 - 1000 (%)
  184. */
  185. CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_BR,
  186. /*
  187. * Compensation percentage of WLAN passive scan window if initiated
  188. * during BT A2DP EDR
  189. *
  190. * Range: 0 - 1000 (%)
  191. */
  192. CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_EDR,
  193. /*
  194. * Compensation percentage of WLAN passive scan window if initiated
  195. * during BT voice
  196. *
  197. * Range: 0 - 1000 (%)
  198. */
  199. CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_HV3,
  200. /* TODO: explain these values */
  201. CONF_SG_CONSECUTIVE_HV3_IN_PASSIVE_SCAN,
  202. CONF_SG_BCN_HV3_COLLISION_THRESH_IN_PASSIVE_SCAN,
  203. CONF_SG_TX_RX_PROTECTION_BWIDTH_IN_PASSIVE_SCAN,
  204. /*
  205. * Defines whether the SG will force WLAN host to enter/exit PSM
  206. *
  207. * Range: 1 - SG can force, 0 - host handles PSM
  208. */
  209. CONF_SG_STA_FORCE_PS_IN_BT_SCO,
  210. /*
  211. * Defines antenna configuration (single/dual antenna)
  212. *
  213. * Range: 0 - single antenna, 1 - dual antenna
  214. */
  215. CONF_SG_ANTENNA_CONFIGURATION,
  216. /*
  217. * The threshold (percent) of max consecutive beacon misses before
  218. * increasing priority of beacon reception.
  219. *
  220. * Range: 0 - 100 (%)
  221. */
  222. CONF_SG_BEACON_MISS_PERCENT,
  223. /*
  224. * Protection time of the DHCP procedure.
  225. *
  226. * Range: 0 - 100000 (ms)
  227. */
  228. CONF_SG_DHCP_TIME,
  229. /*
  230. * RX guard time before the beginning of a new BT voice frame during
  231. * which no new WLAN trigger frame is transmitted.
  232. *
  233. * Range: 0 - 100000 (us)
  234. */
  235. CONF_SG_RXT,
  236. /*
  237. * TX guard time before the beginning of a new BT voice frame during
  238. * which no new WLAN frame is transmitted.
  239. *
  240. * Range: 0 - 100000 (us)
  241. */
  242. CONF_SG_TXT,
  243. /*
  244. * Enable adaptive RXT/TXT algorithm. If disabled, the host values
  245. * will be utilized.
  246. *
  247. * Range: 0 - disable, 1 - enable
  248. */
  249. CONF_SG_ADAPTIVE_RXT_TXT,
  250. /* TODO: explain this value */
  251. CONF_SG_GENERAL_USAGE_BIT_MAP,
  252. /*
  253. * Number of consecutive BT voice frames not interrupted by WLAN
  254. *
  255. * Range: 0 - 100
  256. */
  257. CONF_SG_HV3_MAX_SERVED,
  258. /*
  259. * The used WLAN legacy service period during active BT ACL link
  260. *
  261. * Range: 0 - 255 (ms)
  262. */
  263. CONF_SG_PS_POLL_TIMEOUT,
  264. /*
  265. * The used WLAN UPSD service period during active BT ACL link
  266. *
  267. * Range: 0 - 255 (ms)
  268. */
  269. CONF_SG_UPSD_TIMEOUT,
  270. CONF_SG_CONSECUTIVE_CTS_THRESHOLD,
  271. CONF_SG_STA_RX_WINDOW_AFTER_DTIM,
  272. CONF_SG_STA_CONNECTION_PROTECTION_TIME,
  273. /* AP params */
  274. CONF_AP_BEACON_MISS_TX,
  275. CONF_AP_RX_WINDOW_AFTER_BEACON,
  276. CONF_AP_BEACON_WINDOW_INTERVAL,
  277. CONF_AP_CONNECTION_PROTECTION_TIME,
  278. CONF_AP_BT_ACL_VAL_BT_SERVE_TIME,
  279. CONF_AP_BT_ACL_VAL_WL_SERVE_TIME,
  280. CONF_SG_TEMP_PARAM_1,
  281. CONF_SG_TEMP_PARAM_2,
  282. CONF_SG_TEMP_PARAM_3,
  283. CONF_SG_TEMP_PARAM_4,
  284. CONF_SG_TEMP_PARAM_5,
  285. CONF_SG_TEMP_PARAM_6,
  286. CONF_SG_TEMP_PARAM_7,
  287. CONF_SG_TEMP_PARAM_8,
  288. CONF_SG_TEMP_PARAM_9,
  289. CONF_SG_TEMP_PARAM_10,
  290. CONF_SG_PARAMS_MAX,
  291. CONF_SG_PARAMS_ALL = 0xff
  292. };
  293. struct conf_sg_settings {
  294. u32 params[CONF_SG_PARAMS_MAX];
  295. u8 state;
  296. };
  297. enum conf_rx_queue_type {
  298. CONF_RX_QUEUE_TYPE_LOW_PRIORITY, /* All except the high priority */
  299. CONF_RX_QUEUE_TYPE_HIGH_PRIORITY, /* Management and voice packets */
  300. };
  301. struct conf_rx_settings {
  302. /*
  303. * The maximum amount of time, in TU, before the
  304. * firmware discards the MSDU.
  305. *
  306. * Range: 0 - 0xFFFFFFFF
  307. */
  308. u32 rx_msdu_life_time;
  309. /*
  310. * Packet detection threshold in the PHY.
  311. *
  312. * FIXME: details unknown.
  313. */
  314. u32 packet_detection_threshold;
  315. /*
  316. * The longest time the STA will wait to receive traffic from the AP
  317. * after a PS-poll has been transmitted.
  318. *
  319. * Range: 0 - 200000
  320. */
  321. u16 ps_poll_timeout;
  322. /*
  323. * The longest time the STA will wait to receive traffic from the AP
  324. * after a frame has been sent from an UPSD enabled queue.
  325. *
  326. * Range: 0 - 200000
  327. */
  328. u16 upsd_timeout;
  329. /*
  330. * The number of octets in an MPDU, below which an RTS/CTS
  331. * handshake is not performed.
  332. *
  333. * Range: 0 - 4096
  334. */
  335. u16 rts_threshold;
  336. /*
  337. * The RX Clear Channel Assessment threshold in the PHY
  338. * (the energy threshold).
  339. *
  340. * Range: ENABLE_ENERGY_D == 0x140A
  341. * DISABLE_ENERGY_D == 0xFFEF
  342. */
  343. u16 rx_cca_threshold;
  344. /*
  345. * Occupied Rx mem-blocks number which requires interrupting the host
  346. * (0 = no buffering, 0xffff = disabled).
  347. *
  348. * Range: u16
  349. */
  350. u16 irq_blk_threshold;
  351. /*
  352. * Rx packets number which requires interrupting the host
  353. * (0 = no buffering).
  354. *
  355. * Range: u16
  356. */
  357. u16 irq_pkt_threshold;
  358. /*
  359. * Max time in msec the FW may delay RX-Complete interrupt.
  360. *
  361. * Range: 1 - 100
  362. */
  363. u16 irq_timeout;
  364. /*
  365. * The RX queue type.
  366. *
  367. * Range: RX_QUEUE_TYPE_RX_LOW_PRIORITY, RX_QUEUE_TYPE_RX_HIGH_PRIORITY,
  368. */
  369. u8 queue_type;
  370. };
  371. #define CONF_TX_MAX_RATE_CLASSES 10
  372. #define CONF_TX_RATE_MASK_UNSPECIFIED 0
  373. #define CONF_TX_RATE_MASK_BASIC (CONF_HW_BIT_RATE_1MBPS | \
  374. CONF_HW_BIT_RATE_2MBPS)
  375. #define CONF_TX_RATE_RETRY_LIMIT 10
  376. /* basic rates for p2p operations (probe req/resp, etc.) */
  377. #define CONF_TX_RATE_MASK_BASIC_P2P (CONF_HW_BIT_RATE_6MBPS | \
  378. CONF_HW_BIT_RATE_12MBPS | CONF_HW_BIT_RATE_24MBPS)
  379. /*
  380. * Rates supported for data packets when operating as AP. Note the absence
  381. * of the 22Mbps rate. There is a FW limitation on 12 rates so we must drop
  382. * one. The rate dropped is not mandatory under any operating mode.
  383. */
  384. #define CONF_TX_AP_ENABLED_RATES (CONF_HW_BIT_RATE_1MBPS | \
  385. CONF_HW_BIT_RATE_2MBPS | CONF_HW_BIT_RATE_5_5MBPS | \
  386. CONF_HW_BIT_RATE_6MBPS | CONF_HW_BIT_RATE_9MBPS | \
  387. CONF_HW_BIT_RATE_11MBPS | CONF_HW_BIT_RATE_12MBPS | \
  388. CONF_HW_BIT_RATE_18MBPS | CONF_HW_BIT_RATE_24MBPS | \
  389. CONF_HW_BIT_RATE_36MBPS | CONF_HW_BIT_RATE_48MBPS | \
  390. CONF_HW_BIT_RATE_54MBPS)
  391. #define CONF_TX_OFDM_RATES (CONF_HW_BIT_RATE_6MBPS | \
  392. CONF_HW_BIT_RATE_12MBPS | CONF_HW_BIT_RATE_24MBPS | \
  393. CONF_HW_BIT_RATE_36MBPS | CONF_HW_BIT_RATE_48MBPS | \
  394. CONF_HW_BIT_RATE_54MBPS)
  395. #define CONF_TX_MCS_RATES (CONF_HW_BIT_RATE_MCS_0 | \
  396. CONF_HW_BIT_RATE_MCS_1 | CONF_HW_BIT_RATE_MCS_2 | \
  397. CONF_HW_BIT_RATE_MCS_3 | CONF_HW_BIT_RATE_MCS_4 | \
  398. CONF_HW_BIT_RATE_MCS_5 | CONF_HW_BIT_RATE_MCS_6 | \
  399. CONF_HW_BIT_RATE_MCS_7)
  400. /*
  401. * Default rates for management traffic when operating in AP mode. This
  402. * should be configured according to the basic rate set of the AP
  403. */
  404. #define CONF_TX_AP_DEFAULT_MGMT_RATES (CONF_HW_BIT_RATE_1MBPS | \
  405. CONF_HW_BIT_RATE_2MBPS | CONF_HW_BIT_RATE_5_5MBPS)
  406. /* default rates for working as IBSS (11b and OFDM) */
  407. #define CONF_TX_IBSS_DEFAULT_RATES (CONF_HW_BIT_RATE_1MBPS | \
  408. CONF_HW_BIT_RATE_2MBPS | CONF_HW_BIT_RATE_5_5MBPS | \
  409. CONF_HW_BIT_RATE_11MBPS | CONF_TX_OFDM_RATES);
  410. struct conf_tx_rate_class {
  411. /*
  412. * The rates enabled for this rate class.
  413. *
  414. * Range: CONF_HW_BIT_RATE_* bit mask
  415. */
  416. u32 enabled_rates;
  417. /*
  418. * The dot11 short retry limit used for TX retries.
  419. *
  420. * Range: u8
  421. */
  422. u8 short_retry_limit;
  423. /*
  424. * The dot11 long retry limit used for TX retries.
  425. *
  426. * Range: u8
  427. */
  428. u8 long_retry_limit;
  429. /*
  430. * Flags controlling the attributes of TX transmission.
  431. *
  432. * Range: bit 0: Truncate - when set, FW attempts to send a frame stop
  433. * when the total valid per-rate attempts have
  434. * been exhausted; otherwise transmissions
  435. * will continue at the lowest available rate
  436. * until the appropriate one of the
  437. * short_retry_limit, long_retry_limit,
  438. * dot11_max_transmit_msdu_life_time, or
  439. * max_tx_life_time, is exhausted.
  440. * 1: Preamble Override - indicates if the preamble type
  441. * should be used in TX.
  442. * 2: Preamble Type - the type of the preamble to be used by
  443. * the policy (0 - long preamble, 1 - short preamble.
  444. */
  445. u8 aflags;
  446. };
  447. #define CONF_TX_MAX_AC_COUNT 4
  448. /* Slot number setting to start transmission at PIFS interval */
  449. #define CONF_TX_AIFS_PIFS 1
  450. /* Slot number setting to start transmission at DIFS interval normal
  451. * DCF access */
  452. #define CONF_TX_AIFS_DIFS 2
  453. enum conf_tx_ac {
  454. CONF_TX_AC_BE = 0, /* best effort / legacy */
  455. CONF_TX_AC_BK = 1, /* background */
  456. CONF_TX_AC_VI = 2, /* video */
  457. CONF_TX_AC_VO = 3, /* voice */
  458. CONF_TX_AC_CTS2SELF = 4, /* fictitious AC, follows AC_VO */
  459. CONF_TX_AC_ANY_TID = 0x1f
  460. };
  461. struct conf_tx_ac_category {
  462. /*
  463. * The AC class identifier.
  464. *
  465. * Range: enum conf_tx_ac
  466. */
  467. u8 ac;
  468. /*
  469. * The contention window minimum size (in slots) for the access
  470. * class.
  471. *
  472. * Range: u8
  473. */
  474. u8 cw_min;
  475. /*
  476. * The contention window maximum size (in slots) for the access
  477. * class.
  478. *
  479. * Range: u8
  480. */
  481. u16 cw_max;
  482. /*
  483. * The AIF value (in slots) for the access class.
  484. *
  485. * Range: u8
  486. */
  487. u8 aifsn;
  488. /*
  489. * The TX Op Limit (in microseconds) for the access class.
  490. *
  491. * Range: u16
  492. */
  493. u16 tx_op_limit;
  494. };
  495. #define CONF_TX_MAX_TID_COUNT 8
  496. /* Allow TX BA on all TIDs but 6,7. These are currently reserved in the FW */
  497. #define CONF_TX_BA_ENABLED_TID_BITMAP 0x3F
  498. enum {
  499. CONF_CHANNEL_TYPE_DCF = 0, /* DC/LEGACY*/
  500. CONF_CHANNEL_TYPE_EDCF = 1, /* EDCA*/
  501. CONF_CHANNEL_TYPE_HCCA = 2, /* HCCA*/
  502. };
  503. enum {
  504. CONF_PS_SCHEME_LEGACY = 0,
  505. CONF_PS_SCHEME_UPSD_TRIGGER = 1,
  506. CONF_PS_SCHEME_LEGACY_PSPOLL = 2,
  507. CONF_PS_SCHEME_SAPSD = 3,
  508. };
  509. enum {
  510. CONF_ACK_POLICY_LEGACY = 0,
  511. CONF_ACK_POLICY_NO_ACK = 1,
  512. CONF_ACK_POLICY_BLOCK = 2,
  513. };
  514. struct conf_tx_tid {
  515. u8 queue_id;
  516. u8 channel_type;
  517. u8 tsid;
  518. u8 ps_scheme;
  519. u8 ack_policy;
  520. u32 apsd_conf[2];
  521. };
  522. struct conf_tx_settings {
  523. /*
  524. * The TX ED value for TELEC Enable/Disable.
  525. *
  526. * Range: 0, 1
  527. */
  528. u8 tx_energy_detection;
  529. /*
  530. * Configuration for rate classes for TX (currently only one
  531. * rate class supported). Used in non-AP mode.
  532. */
  533. struct conf_tx_rate_class sta_rc_conf;
  534. /*
  535. * Configuration for access categories for TX rate control.
  536. */
  537. u8 ac_conf_count;
  538. struct conf_tx_ac_category ac_conf[CONF_TX_MAX_AC_COUNT];
  539. /*
  540. * AP-mode - allow this number of TX retries to a station before an
  541. * event is triggered from FW.
  542. * In AP-mode the hlids of unreachable stations are given in the
  543. * "sta_tx_retry_exceeded" member in the event mailbox.
  544. */
  545. u8 max_tx_retries;
  546. /*
  547. * AP-mode - after this number of seconds a connected station is
  548. * considered inactive.
  549. */
  550. u16 ap_aging_period;
  551. /*
  552. * Configuration for TID parameters.
  553. */
  554. u8 tid_conf_count;
  555. struct conf_tx_tid tid_conf[CONF_TX_MAX_TID_COUNT];
  556. /*
  557. * The TX fragmentation threshold.
  558. *
  559. * Range: u16
  560. */
  561. u16 frag_threshold;
  562. /*
  563. * Max time in msec the FW may delay frame TX-Complete interrupt.
  564. *
  565. * Range: u16
  566. */
  567. u16 tx_compl_timeout;
  568. /*
  569. * Completed TX packet count which requires to issue the TX-Complete
  570. * interrupt.
  571. *
  572. * Range: u16
  573. */
  574. u16 tx_compl_threshold;
  575. /*
  576. * The rate used for control messages and scanning on the 2.4GHz band
  577. *
  578. * Range: CONF_HW_BIT_RATE_* bit mask
  579. */
  580. u32 basic_rate;
  581. /*
  582. * The rate used for control messages and scanning on the 5GHz band
  583. *
  584. * Range: CONF_HW_BIT_RATE_* bit mask
  585. */
  586. u32 basic_rate_5;
  587. /*
  588. * TX retry limits for templates
  589. */
  590. u8 tmpl_short_retry_limit;
  591. u8 tmpl_long_retry_limit;
  592. };
  593. enum {
  594. CONF_WAKE_UP_EVENT_BEACON = 0x01, /* Wake on every Beacon*/
  595. CONF_WAKE_UP_EVENT_DTIM = 0x02, /* Wake on every DTIM*/
  596. CONF_WAKE_UP_EVENT_N_DTIM = 0x04, /* Wake every Nth DTIM */
  597. CONF_WAKE_UP_EVENT_N_BEACONS = 0x08, /* Wake every Nth beacon */
  598. CONF_WAKE_UP_EVENT_BITS_MASK = 0x0F
  599. };
  600. #define CONF_MAX_BCN_FILT_IE_COUNT 32
  601. #define CONF_BCN_RULE_PASS_ON_CHANGE BIT(0)
  602. #define CONF_BCN_RULE_PASS_ON_APPEARANCE BIT(1)
  603. #define CONF_BCN_IE_OUI_LEN 3
  604. #define CONF_BCN_IE_VER_LEN 2
  605. struct conf_bcn_filt_rule {
  606. /*
  607. * IE number to which to associate a rule.
  608. *
  609. * Range: u8
  610. */
  611. u8 ie;
  612. /*
  613. * Rule to associate with the specific ie.
  614. *
  615. * Range: CONF_BCN_RULE_PASS_ON_*
  616. */
  617. u8 rule;
  618. /*
  619. * OUI for the vendor specifie IE (221)
  620. */
  621. u8 oui[CONF_BCN_IE_OUI_LEN];
  622. /*
  623. * Type for the vendor specifie IE (221)
  624. */
  625. u8 type;
  626. /*
  627. * Version for the vendor specifie IE (221)
  628. */
  629. u8 version[CONF_BCN_IE_VER_LEN];
  630. };
  631. #define CONF_MAX_RSSI_SNR_TRIGGERS 8
  632. enum {
  633. CONF_TRIG_METRIC_RSSI_BEACON = 0,
  634. CONF_TRIG_METRIC_RSSI_DATA,
  635. CONF_TRIG_METRIC_SNR_BEACON,
  636. CONF_TRIG_METRIC_SNR_DATA
  637. };
  638. enum {
  639. CONF_TRIG_EVENT_TYPE_LEVEL = 0,
  640. CONF_TRIG_EVENT_TYPE_EDGE
  641. };
  642. enum {
  643. CONF_TRIG_EVENT_DIR_LOW = 0,
  644. CONF_TRIG_EVENT_DIR_HIGH,
  645. CONF_TRIG_EVENT_DIR_BIDIR
  646. };
  647. struct conf_sig_weights {
  648. /*
  649. * RSSI from beacons average weight.
  650. *
  651. * Range: u8
  652. */
  653. u8 rssi_bcn_avg_weight;
  654. /*
  655. * RSSI from data average weight.
  656. *
  657. * Range: u8
  658. */
  659. u8 rssi_pkt_avg_weight;
  660. /*
  661. * SNR from beacons average weight.
  662. *
  663. * Range: u8
  664. */
  665. u8 snr_bcn_avg_weight;
  666. /*
  667. * SNR from data average weight.
  668. *
  669. * Range: u8
  670. */
  671. u8 snr_pkt_avg_weight;
  672. };
  673. enum conf_bcn_filt_mode {
  674. CONF_BCN_FILT_MODE_DISABLED = 0,
  675. CONF_BCN_FILT_MODE_ENABLED = 1
  676. };
  677. enum conf_bet_mode {
  678. CONF_BET_MODE_DISABLE = 0,
  679. CONF_BET_MODE_ENABLE = 1,
  680. };
  681. struct conf_conn_settings {
  682. /*
  683. * Firmware wakeup conditions configuration. The host may set only
  684. * one bit.
  685. *
  686. * Range: CONF_WAKE_UP_EVENT_*
  687. */
  688. u8 wake_up_event;
  689. /*
  690. * Listen interval for beacons or Dtims.
  691. *
  692. * Range: 0 for beacon and Dtim wakeup
  693. * 1-10 for x Dtims
  694. * 1-255 for x beacons
  695. */
  696. u8 listen_interval;
  697. /*
  698. * Enable or disable the beacon filtering.
  699. *
  700. * Range: CONF_BCN_FILT_MODE_*
  701. */
  702. enum conf_bcn_filt_mode bcn_filt_mode;
  703. /*
  704. * Configure Beacon filter pass-thru rules.
  705. */
  706. u8 bcn_filt_ie_count;
  707. struct conf_bcn_filt_rule bcn_filt_ie[CONF_MAX_BCN_FILT_IE_COUNT];
  708. /*
  709. * The number of consecutive beacons to lose, before the firmware
  710. * becomes out of synch.
  711. *
  712. * Range: u32
  713. */
  714. u32 synch_fail_thold;
  715. /*
  716. * After out-of-synch, the number of TU's to wait without a further
  717. * received beacon (or probe response) before issuing the BSS_EVENT_LOSE
  718. * event.
  719. *
  720. * Range: u32
  721. */
  722. u32 bss_lose_timeout;
  723. /*
  724. * Beacon receive timeout.
  725. *
  726. * Range: u32
  727. */
  728. u32 beacon_rx_timeout;
  729. /*
  730. * Broadcast receive timeout.
  731. *
  732. * Range: u32
  733. */
  734. u32 broadcast_timeout;
  735. /*
  736. * Enable/disable reception of broadcast packets in power save mode
  737. *
  738. * Range: 1 - enable, 0 - disable
  739. */
  740. u8 rx_broadcast_in_ps;
  741. /*
  742. * Consecutive PS Poll failures before sending event to driver
  743. *
  744. * Range: u8
  745. */
  746. u8 ps_poll_threshold;
  747. /*
  748. * PS Poll failure recovery ACTIVE period length
  749. *
  750. * Range: u32 (ms)
  751. */
  752. u32 ps_poll_recovery_period;
  753. /*
  754. * Configuration of signal average weights.
  755. */
  756. struct conf_sig_weights sig_weights;
  757. /*
  758. * Specifies if beacon early termination procedure is enabled or
  759. * disabled.
  760. *
  761. * Range: CONF_BET_MODE_*
  762. */
  763. u8 bet_enable;
  764. /*
  765. * Specifies the maximum number of consecutive beacons that may be
  766. * early terminated. After this number is reached at least one full
  767. * beacon must be correctly received in FW before beacon ET
  768. * resumes.
  769. *
  770. * Range 0 - 255
  771. */
  772. u8 bet_max_consecutive;
  773. /*
  774. * Specifies the maximum number of times to try PSM entry if it fails
  775. * (if sending the appropriate null-func message fails.)
  776. *
  777. * Range 0 - 255
  778. */
  779. u8 psm_entry_retries;
  780. /*
  781. * Specifies the maximum number of times to try PSM exit if it fails
  782. * (if sending the appropriate null-func message fails.)
  783. *
  784. * Range 0 - 255
  785. */
  786. u8 psm_exit_retries;
  787. /*
  788. * Specifies the maximum number of times to try transmit the PSM entry
  789. * null-func frame for each PSM entry attempt
  790. *
  791. * Range 0 - 255
  792. */
  793. u8 psm_entry_nullfunc_retries;
  794. /*
  795. *
  796. * Specifies the interval of the connection keep-alive null-func
  797. * frame in ms.
  798. *
  799. * Range: 1000 - 3600000
  800. */
  801. u32 keep_alive_interval;
  802. /*
  803. * Maximum listen interval supported by the driver in units of beacons.
  804. *
  805. * Range: u16
  806. */
  807. u8 max_listen_interval;
  808. };
  809. enum {
  810. CONF_REF_CLK_19_2_E,
  811. CONF_REF_CLK_26_E,
  812. CONF_REF_CLK_38_4_E,
  813. CONF_REF_CLK_52_E,
  814. CONF_REF_CLK_38_4_M_XTAL,
  815. CONF_REF_CLK_26_M_XTAL,
  816. };
  817. enum single_dual_band_enum {
  818. CONF_SINGLE_BAND,
  819. CONF_DUAL_BAND
  820. };
  821. #define CONF_RSSI_AND_PROCESS_COMPENSATION_SIZE 15
  822. #define CONF_NUMBER_OF_SUB_BANDS_5 7
  823. #define CONF_NUMBER_OF_RATE_GROUPS 6
  824. #define CONF_NUMBER_OF_CHANNELS_2_4 14
  825. #define CONF_NUMBER_OF_CHANNELS_5 35
  826. struct conf_itrim_settings {
  827. /* enable dco itrim */
  828. u8 enable;
  829. /* moderation timeout in microsecs from the last TX */
  830. u32 timeout;
  831. };
  832. struct conf_pm_config_settings {
  833. /*
  834. * Host clock settling time
  835. *
  836. * Range: 0 - 30000 us
  837. */
  838. u32 host_clk_settling_time;
  839. /*
  840. * Host fast wakeup support
  841. *
  842. * Range: true, false
  843. */
  844. bool host_fast_wakeup_support;
  845. };
  846. struct conf_roam_trigger_settings {
  847. /*
  848. * The minimum interval between two trigger events.
  849. *
  850. * Range: 0 - 60000 ms
  851. */
  852. u16 trigger_pacing;
  853. /*
  854. * The weight for rssi/beacon average calculation
  855. *
  856. * Range: 0 - 255
  857. */
  858. u8 avg_weight_rssi_beacon;
  859. /*
  860. * The weight for rssi/data frame average calculation
  861. *
  862. * Range: 0 - 255
  863. */
  864. u8 avg_weight_rssi_data;
  865. /*
  866. * The weight for snr/beacon average calculation
  867. *
  868. * Range: 0 - 255
  869. */
  870. u8 avg_weight_snr_beacon;
  871. /*
  872. * The weight for snr/data frame average calculation
  873. *
  874. * Range: 0 - 255
  875. */
  876. u8 avg_weight_snr_data;
  877. };
  878. struct conf_scan_settings {
  879. /*
  880. * The minimum time to wait on each channel for active scans
  881. *
  882. * Range: u32 tu/1000
  883. */
  884. u32 min_dwell_time_active;
  885. /*
  886. * The maximum time to wait on each channel for active scans
  887. *
  888. * Range: u32 tu/1000
  889. */
  890. u32 max_dwell_time_active;
  891. /*
  892. * The minimum time to wait on each channel for passive scans
  893. *
  894. * Range: u32 tu/1000
  895. */
  896. u32 min_dwell_time_passive;
  897. /*
  898. * The maximum time to wait on each channel for passive scans
  899. *
  900. * Range: u32 tu/1000
  901. */
  902. u32 max_dwell_time_passive;
  903. /*
  904. * Number of probe requests to transmit on each active scan channel
  905. *
  906. * Range: u8
  907. */
  908. u16 num_probe_reqs;
  909. };
  910. struct conf_sched_scan_settings {
  911. /* minimum time to wait on the channel for active scans (in TUs) */
  912. u16 min_dwell_time_active;
  913. /* maximum time to wait on the channel for active scans (in TUs) */
  914. u16 max_dwell_time_active;
  915. /* time to wait on the channel for passive scans (in TUs) */
  916. u32 dwell_time_passive;
  917. /* time to wait on the channel for DFS scans (in TUs) */
  918. u32 dwell_time_dfs;
  919. /* number of probe requests to send on each channel in active scans */
  920. u8 num_probe_reqs;
  921. /* RSSI threshold to be used for filtering */
  922. s8 rssi_threshold;
  923. /* SNR threshold to be used for filtering */
  924. s8 snr_threshold;
  925. };
  926. /* these are number of channels on the band divided by two, rounded up */
  927. #define CONF_TX_PWR_COMPENSATION_LEN_2 7
  928. #define CONF_TX_PWR_COMPENSATION_LEN_5 18
  929. struct conf_rf_settings {
  930. /*
  931. * Per channel power compensation for 2.4GHz
  932. *
  933. * Range: s8
  934. */
  935. u8 tx_per_channel_power_compensation_2[CONF_TX_PWR_COMPENSATION_LEN_2];
  936. /*
  937. * Per channel power compensation for 5GHz
  938. *
  939. * Range: s8
  940. */
  941. u8 tx_per_channel_power_compensation_5[CONF_TX_PWR_COMPENSATION_LEN_5];
  942. };
  943. struct conf_ht_setting {
  944. u8 rx_ba_win_size;
  945. u8 tx_ba_win_size;
  946. u16 inactivity_timeout;
  947. /* bitmap of enabled TIDs for TX BA sessions */
  948. u8 tx_ba_tid_bitmap;
  949. };
  950. struct conf_memory_settings {
  951. /* Number of stations supported in IBSS mode */
  952. u8 num_stations;
  953. /* Number of ssid profiles used in IBSS mode */
  954. u8 ssid_profiles;
  955. /* Number of memory buffers allocated to rx pool */
  956. u8 rx_block_num;
  957. /* Minimum number of blocks allocated to tx pool */
  958. u8 tx_min_block_num;
  959. /* Disable/Enable dynamic memory */
  960. u8 dynamic_memory;
  961. /*
  962. * Minimum required free tx memory blocks in order to assure optimum
  963. * performance
  964. *
  965. * Range: 0-120
  966. */
  967. u8 min_req_tx_blocks;
  968. /*
  969. * Minimum required free rx memory blocks in order to assure optimum
  970. * performance
  971. *
  972. * Range: 0-120
  973. */
  974. u8 min_req_rx_blocks;
  975. /*
  976. * Minimum number of mem blocks (free+used) guaranteed for TX
  977. *
  978. * Range: 0-120
  979. */
  980. u8 tx_min;
  981. };
  982. struct conf_fm_coex {
  983. u8 enable;
  984. u8 swallow_period;
  985. u8 n_divider_fref_set_1;
  986. u8 n_divider_fref_set_2;
  987. u16 m_divider_fref_set_1;
  988. u16 m_divider_fref_set_2;
  989. u32 coex_pll_stabilization_time;
  990. u16 ldo_stabilization_time;
  991. u8 fm_disturbed_band_margin;
  992. u8 swallow_clk_diff;
  993. };
  994. struct conf_rx_streaming_settings {
  995. /*
  996. * RX Streaming duration (in msec) from last tx/rx
  997. *
  998. * Range: u32
  999. */
  1000. u32 duration;
  1001. /*
  1002. * Bitmap of tids to be polled during RX streaming.
  1003. * (Note: it doesn't look like it really matters)
  1004. *
  1005. * Range: 0x1-0xff
  1006. */
  1007. u8 queues;
  1008. /*
  1009. * RX Streaming interval.
  1010. * (Note:this value is also used as the rx streaming timeout)
  1011. * Range: 0 (disabled), 10 - 100
  1012. */
  1013. u8 interval;
  1014. /*
  1015. * enable rx streaming also when there is no coex activity
  1016. */
  1017. u8 always;
  1018. };
  1019. struct conf_fwlog {
  1020. /* Continuous or on-demand */
  1021. u8 mode;
  1022. /*
  1023. * Number of memory blocks dedicated for the FW logger
  1024. *
  1025. * Range: 1-3, or 0 to disable the FW logger
  1026. */
  1027. u8 mem_blocks;
  1028. /* Minimum log level threshold */
  1029. u8 severity;
  1030. /* Include/exclude timestamps from the log messages */
  1031. u8 timestamp;
  1032. /* See enum wl1271_fwlogger_output */
  1033. u8 output;
  1034. /* Regulates the frequency of log messages */
  1035. u8 threshold;
  1036. };
  1037. #define ACX_RATE_MGMT_NUM_OF_RATES 13
  1038. struct conf_rate_policy_settings {
  1039. u16 rate_retry_score;
  1040. u16 per_add;
  1041. u16 per_th1;
  1042. u16 per_th2;
  1043. u16 max_per;
  1044. u8 inverse_curiosity_factor;
  1045. u8 tx_fail_low_th;
  1046. u8 tx_fail_high_th;
  1047. u8 per_alpha_shift;
  1048. u8 per_add_shift;
  1049. u8 per_beta1_shift;
  1050. u8 per_beta2_shift;
  1051. u8 rate_check_up;
  1052. u8 rate_check_down;
  1053. u8 rate_retry_policy[ACX_RATE_MGMT_NUM_OF_RATES];
  1054. };
  1055. struct conf_hangover_settings {
  1056. u32 recover_time;
  1057. u8 hangover_period;
  1058. u8 dynamic_mode;
  1059. u8 early_termination_mode;
  1060. u8 max_period;
  1061. u8 min_period;
  1062. u8 increase_delta;
  1063. u8 decrease_delta;
  1064. u8 quiet_time;
  1065. u8 increase_time;
  1066. u8 window_size;
  1067. };
  1068. struct conf_drv_settings {
  1069. struct conf_sg_settings sg;
  1070. struct conf_rx_settings rx;
  1071. struct conf_tx_settings tx;
  1072. struct conf_conn_settings conn;
  1073. struct conf_itrim_settings itrim;
  1074. struct conf_pm_config_settings pm_config;
  1075. struct conf_roam_trigger_settings roam_trigger;
  1076. struct conf_scan_settings scan;
  1077. struct conf_sched_scan_settings sched_scan;
  1078. struct conf_rf_settings rf;
  1079. struct conf_ht_setting ht;
  1080. struct conf_memory_settings mem_wl127x;
  1081. struct conf_memory_settings mem_wl128x;
  1082. struct conf_fm_coex fm_coex;
  1083. struct conf_rx_streaming_settings rx_streaming;
  1084. struct conf_fwlog fwlog;
  1085. struct conf_rate_policy_settings rate;
  1086. struct conf_hangover_settings hangover;
  1087. u8 hci_io_ds;
  1088. };
  1089. #endif