iwl-legacy-rs.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. * Contact Information:
  22. * Intel Linux Wireless <ilw@linux.intel.com>
  23. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  24. *
  25. *****************************************************************************/
  26. #ifndef __il_rs_h__
  27. #define __il_rs_h__
  28. struct il_rate_info {
  29. u8 plcp; /* uCode API: IL_RATE_6M_PLCP, etc. */
  30. u8 plcp_siso; /* uCode API: IL_RATE_SISO_6M_PLCP, etc. */
  31. u8 plcp_mimo2; /* uCode API: IL_RATE_MIMO2_6M_PLCP, etc. */
  32. u8 ieee; /* MAC header: IL_RATE_6M_IEEE, etc. */
  33. u8 prev_ieee; /* previous rate in IEEE speeds */
  34. u8 next_ieee; /* next rate in IEEE speeds */
  35. u8 prev_rs; /* previous rate used in rs algo */
  36. u8 next_rs; /* next rate used in rs algo */
  37. u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
  38. u8 next_rs_tgg; /* next rate used in TGG rs algo */
  39. };
  40. struct il3945_rate_info {
  41. u8 plcp; /* uCode API: IL_RATE_6M_PLCP, etc. */
  42. u8 ieee; /* MAC header: IL_RATE_6M_IEEE, etc. */
  43. u8 prev_ieee; /* previous rate in IEEE speeds */
  44. u8 next_ieee; /* next rate in IEEE speeds */
  45. u8 prev_rs; /* previous rate used in rs algo */
  46. u8 next_rs; /* next rate used in rs algo */
  47. u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
  48. u8 next_rs_tgg; /* next rate used in TGG rs algo */
  49. u8 table_rs_index; /* index in rate scale table cmd */
  50. u8 prev_table_rs; /* prev in rate table cmd */
  51. };
  52. /*
  53. * These serve as indexes into
  54. * struct il_rate_info il_rates[IL_RATE_COUNT];
  55. */
  56. enum {
  57. IL_RATE_1M_INDEX = 0,
  58. IL_RATE_2M_INDEX,
  59. IL_RATE_5M_INDEX,
  60. IL_RATE_11M_INDEX,
  61. IL_RATE_6M_INDEX,
  62. IL_RATE_9M_INDEX,
  63. IL_RATE_12M_INDEX,
  64. IL_RATE_18M_INDEX,
  65. IL_RATE_24M_INDEX,
  66. IL_RATE_36M_INDEX,
  67. IL_RATE_48M_INDEX,
  68. IL_RATE_54M_INDEX,
  69. IL_RATE_60M_INDEX,
  70. IL_RATE_COUNT,
  71. IL_RATE_COUNT_LEGACY = IL_RATE_COUNT - 1, /* Excluding 60M */
  72. IL_RATE_COUNT_3945 = IL_RATE_COUNT - 1,
  73. IL_RATE_INVM_INDEX = IL_RATE_COUNT,
  74. IL_RATE_INVALID = IL_RATE_COUNT,
  75. };
  76. enum {
  77. IL_RATE_6M_INDEX_TABLE = 0,
  78. IL_RATE_9M_INDEX_TABLE,
  79. IL_RATE_12M_INDEX_TABLE,
  80. IL_RATE_18M_INDEX_TABLE,
  81. IL_RATE_24M_INDEX_TABLE,
  82. IL_RATE_36M_INDEX_TABLE,
  83. IL_RATE_48M_INDEX_TABLE,
  84. IL_RATE_54M_INDEX_TABLE,
  85. IL_RATE_1M_INDEX_TABLE,
  86. IL_RATE_2M_INDEX_TABLE,
  87. IL_RATE_5M_INDEX_TABLE,
  88. IL_RATE_11M_INDEX_TABLE,
  89. IL_RATE_INVM_INDEX_TABLE = IL_RATE_INVM_INDEX - 1,
  90. };
  91. enum {
  92. IL_FIRST_OFDM_RATE = IL_RATE_6M_INDEX,
  93. IL39_LAST_OFDM_RATE = IL_RATE_54M_INDEX,
  94. IL_LAST_OFDM_RATE = IL_RATE_60M_INDEX,
  95. IL_FIRST_CCK_RATE = IL_RATE_1M_INDEX,
  96. IL_LAST_CCK_RATE = IL_RATE_11M_INDEX,
  97. };
  98. /* #define vs. enum to keep from defaulting to 'large integer' */
  99. #define IL_RATE_6M_MASK (1 << IL_RATE_6M_INDEX)
  100. #define IL_RATE_9M_MASK (1 << IL_RATE_9M_INDEX)
  101. #define IL_RATE_12M_MASK (1 << IL_RATE_12M_INDEX)
  102. #define IL_RATE_18M_MASK (1 << IL_RATE_18M_INDEX)
  103. #define IL_RATE_24M_MASK (1 << IL_RATE_24M_INDEX)
  104. #define IL_RATE_36M_MASK (1 << IL_RATE_36M_INDEX)
  105. #define IL_RATE_48M_MASK (1 << IL_RATE_48M_INDEX)
  106. #define IL_RATE_54M_MASK (1 << IL_RATE_54M_INDEX)
  107. #define IL_RATE_60M_MASK (1 << IL_RATE_60M_INDEX)
  108. #define IL_RATE_1M_MASK (1 << IL_RATE_1M_INDEX)
  109. #define IL_RATE_2M_MASK (1 << IL_RATE_2M_INDEX)
  110. #define IL_RATE_5M_MASK (1 << IL_RATE_5M_INDEX)
  111. #define IL_RATE_11M_MASK (1 << IL_RATE_11M_INDEX)
  112. /* uCode API values for legacy bit rates, both OFDM and CCK */
  113. enum {
  114. IL_RATE_6M_PLCP = 13,
  115. IL_RATE_9M_PLCP = 15,
  116. IL_RATE_12M_PLCP = 5,
  117. IL_RATE_18M_PLCP = 7,
  118. IL_RATE_24M_PLCP = 9,
  119. IL_RATE_36M_PLCP = 11,
  120. IL_RATE_48M_PLCP = 1,
  121. IL_RATE_54M_PLCP = 3,
  122. IL_RATE_60M_PLCP = 3,/*FIXME:RS:should be removed*/
  123. IL_RATE_1M_PLCP = 10,
  124. IL_RATE_2M_PLCP = 20,
  125. IL_RATE_5M_PLCP = 55,
  126. IL_RATE_11M_PLCP = 110,
  127. /*FIXME:RS:add IL_RATE_LEGACY_INVM_PLCP = 0,*/
  128. };
  129. /* uCode API values for OFDM high-throughput (HT) bit rates */
  130. enum {
  131. IL_RATE_SISO_6M_PLCP = 0,
  132. IL_RATE_SISO_12M_PLCP = 1,
  133. IL_RATE_SISO_18M_PLCP = 2,
  134. IL_RATE_SISO_24M_PLCP = 3,
  135. IL_RATE_SISO_36M_PLCP = 4,
  136. IL_RATE_SISO_48M_PLCP = 5,
  137. IL_RATE_SISO_54M_PLCP = 6,
  138. IL_RATE_SISO_60M_PLCP = 7,
  139. IL_RATE_MIMO2_6M_PLCP = 0x8,
  140. IL_RATE_MIMO2_12M_PLCP = 0x9,
  141. IL_RATE_MIMO2_18M_PLCP = 0xa,
  142. IL_RATE_MIMO2_24M_PLCP = 0xb,
  143. IL_RATE_MIMO2_36M_PLCP = 0xc,
  144. IL_RATE_MIMO2_48M_PLCP = 0xd,
  145. IL_RATE_MIMO2_54M_PLCP = 0xe,
  146. IL_RATE_MIMO2_60M_PLCP = 0xf,
  147. IL_RATE_SISO_INVM_PLCP,
  148. IL_RATE_MIMO2_INVM_PLCP = IL_RATE_SISO_INVM_PLCP,
  149. };
  150. /* MAC header values for bit rates */
  151. enum {
  152. IL_RATE_6M_IEEE = 12,
  153. IL_RATE_9M_IEEE = 18,
  154. IL_RATE_12M_IEEE = 24,
  155. IL_RATE_18M_IEEE = 36,
  156. IL_RATE_24M_IEEE = 48,
  157. IL_RATE_36M_IEEE = 72,
  158. IL_RATE_48M_IEEE = 96,
  159. IL_RATE_54M_IEEE = 108,
  160. IL_RATE_60M_IEEE = 120,
  161. IL_RATE_1M_IEEE = 2,
  162. IL_RATE_2M_IEEE = 4,
  163. IL_RATE_5M_IEEE = 11,
  164. IL_RATE_11M_IEEE = 22,
  165. };
  166. #define IL_CCK_BASIC_RATES_MASK \
  167. (IL_RATE_1M_MASK | \
  168. IL_RATE_2M_MASK)
  169. #define IL_CCK_RATES_MASK \
  170. (IL_CCK_BASIC_RATES_MASK | \
  171. IL_RATE_5M_MASK | \
  172. IL_RATE_11M_MASK)
  173. #define IL_OFDM_BASIC_RATES_MASK \
  174. (IL_RATE_6M_MASK | \
  175. IL_RATE_12M_MASK | \
  176. IL_RATE_24M_MASK)
  177. #define IL_OFDM_RATES_MASK \
  178. (IL_OFDM_BASIC_RATES_MASK | \
  179. IL_RATE_9M_MASK | \
  180. IL_RATE_18M_MASK | \
  181. IL_RATE_36M_MASK | \
  182. IL_RATE_48M_MASK | \
  183. IL_RATE_54M_MASK)
  184. #define IL_BASIC_RATES_MASK \
  185. (IL_OFDM_BASIC_RATES_MASK | \
  186. IL_CCK_BASIC_RATES_MASK)
  187. #define IL_RATES_MASK ((1 << IL_RATE_COUNT) - 1)
  188. #define IL_RATES_MASK_3945 ((1 << IL_RATE_COUNT_3945) - 1)
  189. #define IL_INVALID_VALUE -1
  190. #define IL_MIN_RSSI_VAL -100
  191. #define IL_MAX_RSSI_VAL 0
  192. /* These values specify how many Tx frame attempts before
  193. * searching for a new modulation mode */
  194. #define IL_LEGACY_FAILURE_LIMIT 160
  195. #define IL_LEGACY_SUCCESS_LIMIT 480
  196. #define IL_LEGACY_TABLE_COUNT 160
  197. #define IL_NONE_LEGACY_FAILURE_LIMIT 400
  198. #define IL_NONE_LEGACY_SUCCESS_LIMIT 4500
  199. #define IL_NONE_LEGACY_TABLE_COUNT 1500
  200. /* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
  201. #define IL_RS_GOOD_RATIO 12800 /* 100% */
  202. #define IL_RATE_SCALE_SWITCH 10880 /* 85% */
  203. #define IL_RATE_HIGH_TH 10880 /* 85% */
  204. #define IL_RATE_INCREASE_TH 6400 /* 50% */
  205. #define IL_RATE_DECREASE_TH 1920 /* 15% */
  206. /* possible actions when in legacy mode */
  207. #define IL_LEGACY_SWITCH_ANTENNA1 0
  208. #define IL_LEGACY_SWITCH_ANTENNA2 1
  209. #define IL_LEGACY_SWITCH_SISO 2
  210. #define IL_LEGACY_SWITCH_MIMO2_AB 3
  211. #define IL_LEGACY_SWITCH_MIMO2_AC 4
  212. #define IL_LEGACY_SWITCH_MIMO2_BC 5
  213. /* possible actions when in siso mode */
  214. #define IL_SISO_SWITCH_ANTENNA1 0
  215. #define IL_SISO_SWITCH_ANTENNA2 1
  216. #define IL_SISO_SWITCH_MIMO2_AB 2
  217. #define IL_SISO_SWITCH_MIMO2_AC 3
  218. #define IL_SISO_SWITCH_MIMO2_BC 4
  219. #define IL_SISO_SWITCH_GI 5
  220. /* possible actions when in mimo mode */
  221. #define IL_MIMO2_SWITCH_ANTENNA1 0
  222. #define IL_MIMO2_SWITCH_ANTENNA2 1
  223. #define IL_MIMO2_SWITCH_SISO_A 2
  224. #define IL_MIMO2_SWITCH_SISO_B 3
  225. #define IL_MIMO2_SWITCH_SISO_C 4
  226. #define IL_MIMO2_SWITCH_GI 5
  227. #define IL_MAX_SEARCH IL_MIMO2_SWITCH_GI
  228. #define IL_ACTION_LIMIT 3 /* # possible actions */
  229. #define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
  230. /* load per tid defines for A-MPDU activation */
  231. #define IL_AGG_TPT_THREHOLD 0
  232. #define IL_AGG_LOAD_THRESHOLD 10
  233. #define IL_AGG_ALL_TID 0xff
  234. #define TID_QUEUE_CELL_SPACING 50 /*mS */
  235. #define TID_QUEUE_MAX_SIZE 20
  236. #define TID_ROUND_VALUE 5 /* mS */
  237. #define TID_MAX_LOAD_COUNT 8
  238. #define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
  239. #define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
  240. extern const struct il_rate_info il_rates[IL_RATE_COUNT];
  241. enum il_table_type {
  242. LQ_NONE,
  243. LQ_G, /* legacy types */
  244. LQ_A,
  245. LQ_SISO, /* high-throughput types */
  246. LQ_MIMO2,
  247. LQ_MAX,
  248. };
  249. #define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
  250. #define is_siso(tbl) ((tbl) == LQ_SISO)
  251. #define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
  252. #define is_mimo(tbl) (is_mimo2(tbl))
  253. #define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl))
  254. #define is_a_band(tbl) ((tbl) == LQ_A)
  255. #define is_g_and(tbl) ((tbl) == LQ_G)
  256. #define ANT_NONE 0x0
  257. #define ANT_A BIT(0)
  258. #define ANT_B BIT(1)
  259. #define ANT_AB (ANT_A | ANT_B)
  260. #define ANT_C BIT(2)
  261. #define ANT_AC (ANT_A | ANT_C)
  262. #define ANT_BC (ANT_B | ANT_C)
  263. #define ANT_ABC (ANT_AB | ANT_C)
  264. #define IL_MAX_MCS_DISPLAY_SIZE 12
  265. struct il_rate_mcs_info {
  266. char mbps[IL_MAX_MCS_DISPLAY_SIZE];
  267. char mcs[IL_MAX_MCS_DISPLAY_SIZE];
  268. };
  269. /**
  270. * struct il_rate_scale_data -- tx success history for one rate
  271. */
  272. struct il_rate_scale_data {
  273. u64 data; /* bitmap of successful frames */
  274. s32 success_counter; /* number of frames successful */
  275. s32 success_ratio; /* per-cent * 128 */
  276. s32 counter; /* number of frames attempted */
  277. s32 average_tpt; /* success ratio * expected throughput */
  278. unsigned long stamp;
  279. };
  280. /**
  281. * struct il_scale_tbl_info -- tx params and success history for all rates
  282. *
  283. * There are two of these in struct il_lq_sta,
  284. * one for "active", and one for "search".
  285. */
  286. struct il_scale_tbl_info {
  287. enum il_table_type lq_type;
  288. u8 ant_type;
  289. u8 is_SGI; /* 1 = short guard interval */
  290. u8 is_ht40; /* 1 = 40 MHz channel width */
  291. u8 is_dup; /* 1 = duplicated data streams */
  292. u8 action; /* change modulation; IL_[LEGACY/SISO/MIMO]_SWITCH_* */
  293. u8 max_search; /* maximun number of tables we can search */
  294. s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
  295. u32 current_rate; /* rate_n_flags, uCode API format */
  296. struct il_rate_scale_data win[IL_RATE_COUNT]; /* rate histories */
  297. };
  298. struct il_traffic_load {
  299. unsigned long time_stamp; /* age of the oldest statistics */
  300. u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
  301. * slice */
  302. u32 total; /* total num of packets during the
  303. * last TID_MAX_TIME_DIFF */
  304. u8 queue_count; /* number of queues that has
  305. * been used since the last cleanup */
  306. u8 head; /* start of the circular buffer */
  307. };
  308. /**
  309. * struct il_lq_sta -- driver's rate scaling ilate structure
  310. *
  311. * Pointer to this gets passed back and forth between driver and mac80211.
  312. */
  313. struct il_lq_sta {
  314. u8 active_tbl; /* index of active table, range 0-1 */
  315. u8 enable_counter; /* indicates HT mode */
  316. u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
  317. u8 search_better_tbl; /* 1: currently trying alternate mode */
  318. s32 last_tpt;
  319. /* The following determine when to search for a new mode */
  320. u32 table_count_limit;
  321. u32 max_failure_limit; /* # failed frames before new search */
  322. u32 max_success_limit; /* # successful frames before new search */
  323. u32 table_count;
  324. u32 total_failed; /* total failed frames, any/all rates */
  325. u32 total_success; /* total successful frames, any/all rates */
  326. u64 flush_timer; /* time staying in mode before new search */
  327. u8 action_counter; /* # mode-switch actions tried */
  328. u8 is_green;
  329. u8 is_dup;
  330. enum ieee80211_band band;
  331. /* The following are bitmaps of rates; IL_RATE_6M_MASK, etc. */
  332. u32 supp_rates;
  333. u16 active_legacy_rate;
  334. u16 active_siso_rate;
  335. u16 active_mimo2_rate;
  336. s8 max_rate_idx; /* Max rate set by user */
  337. u8 missed_rate_counter;
  338. struct il_link_quality_cmd lq;
  339. struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
  340. struct il_traffic_load load[TID_MAX_LOAD_COUNT];
  341. u8 tx_agg_tid_en;
  342. #ifdef CONFIG_MAC80211_DEBUGFS
  343. struct dentry *rs_sta_dbgfs_scale_table_file;
  344. struct dentry *rs_sta_dbgfs_stats_table_file;
  345. struct dentry *rs_sta_dbgfs_rate_scale_data_file;
  346. struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
  347. u32 dbg_fixed_rate;
  348. #endif
  349. struct il_priv *drv;
  350. /* used to be in sta_info */
  351. int last_txrate_idx;
  352. /* last tx rate_n_flags */
  353. u32 last_rate_n_flags;
  354. /* packets destined for this STA are aggregated */
  355. u8 is_agg;
  356. };
  357. static inline u8 il4965_num_of_ant(u8 m)
  358. {
  359. return !!(m & ANT_A) + !!(m & ANT_B) + !!(m & ANT_C);
  360. }
  361. static inline u8 il4965_first_antenna(u8 mask)
  362. {
  363. if (mask & ANT_A)
  364. return ANT_A;
  365. if (mask & ANT_B)
  366. return ANT_B;
  367. return ANT_C;
  368. }
  369. /**
  370. * il3945_rate_scale_init - Initialize the rate scale table based on assoc info
  371. *
  372. * The specific throughput table used is based on the type of network
  373. * the associated with, including A, B, G, and G w/ TGG protection
  374. */
  375. extern void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
  376. /* Initialize station's rate scaling information after adding station */
  377. extern void il4965_rs_rate_init(struct il_priv *il,
  378. struct ieee80211_sta *sta, u8 sta_id);
  379. extern void il3945_rs_rate_init(struct il_priv *il,
  380. struct ieee80211_sta *sta, u8 sta_id);
  381. /**
  382. * il_rate_control_register - Register the rate control algorithm callbacks
  383. *
  384. * Since the rate control algorithm is hardware specific, there is no need
  385. * or reason to place it as a stand alone module. The driver can call
  386. * il_rate_control_register in order to register the rate control callbacks
  387. * with the mac80211 subsystem. This should be performed prior to calling
  388. * ieee80211_register_hw
  389. *
  390. */
  391. extern int il4965_rate_control_register(void);
  392. extern int il3945_rate_control_register(void);
  393. /**
  394. * il_rate_control_unregister - Unregister the rate control callbacks
  395. *
  396. * This should be called after calling ieee80211_unregister_hw, but before
  397. * the driver is unloaded.
  398. */
  399. extern void il4965_rate_control_unregister(void);
  400. extern void il3945_rate_control_unregister(void);
  401. #endif /* __il_rs__ */