rs.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
  4. * Copyright(c) 2015 Intel Mobile Communications GmbH
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of version 2 of the GNU General Public License as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  18. *
  19. * The full GNU General Public License is included in this distribution in the
  20. * file called LICENSE.
  21. *
  22. * Contact Information:
  23. * Intel Linux Wireless <ilw@linux.intel.com>
  24. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  25. *
  26. *****************************************************************************/
  27. #ifndef __rs_h__
  28. #define __rs_h__
  29. #include <net/mac80211.h>
  30. #include "iwl-config.h"
  31. #include "fw-api.h"
  32. #include "iwl-trans.h"
  33. struct iwl_rs_rate_info {
  34. u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
  35. u8 plcp_ht_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
  36. u8 plcp_ht_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
  37. u8 plcp_vht_siso;
  38. u8 plcp_vht_mimo2;
  39. u8 prev_rs; /* previous rate used in rs algo */
  40. u8 next_rs; /* next rate used in rs algo */
  41. };
  42. #define IWL_RATE_60M_PLCP 3
  43. enum {
  44. IWL_RATE_INVM_INDEX = IWL_RATE_COUNT,
  45. IWL_RATE_INVALID = IWL_RATE_COUNT,
  46. };
  47. #define LINK_QUAL_MAX_RETRY_NUM 16
  48. enum {
  49. IWL_RATE_6M_INDEX_TABLE = 0,
  50. IWL_RATE_9M_INDEX_TABLE,
  51. IWL_RATE_12M_INDEX_TABLE,
  52. IWL_RATE_18M_INDEX_TABLE,
  53. IWL_RATE_24M_INDEX_TABLE,
  54. IWL_RATE_36M_INDEX_TABLE,
  55. IWL_RATE_48M_INDEX_TABLE,
  56. IWL_RATE_54M_INDEX_TABLE,
  57. IWL_RATE_1M_INDEX_TABLE,
  58. IWL_RATE_2M_INDEX_TABLE,
  59. IWL_RATE_5M_INDEX_TABLE,
  60. IWL_RATE_11M_INDEX_TABLE,
  61. IWL_RATE_INVM_INDEX_TABLE = IWL_RATE_INVM_INDEX - 1,
  62. };
  63. /* #define vs. enum to keep from defaulting to 'large integer' */
  64. #define IWL_RATE_6M_MASK (1 << IWL_RATE_6M_INDEX)
  65. #define IWL_RATE_9M_MASK (1 << IWL_RATE_9M_INDEX)
  66. #define IWL_RATE_12M_MASK (1 << IWL_RATE_12M_INDEX)
  67. #define IWL_RATE_18M_MASK (1 << IWL_RATE_18M_INDEX)
  68. #define IWL_RATE_24M_MASK (1 << IWL_RATE_24M_INDEX)
  69. #define IWL_RATE_36M_MASK (1 << IWL_RATE_36M_INDEX)
  70. #define IWL_RATE_48M_MASK (1 << IWL_RATE_48M_INDEX)
  71. #define IWL_RATE_54M_MASK (1 << IWL_RATE_54M_INDEX)
  72. #define IWL_RATE_60M_MASK (1 << IWL_RATE_60M_INDEX)
  73. #define IWL_RATE_1M_MASK (1 << IWL_RATE_1M_INDEX)
  74. #define IWL_RATE_2M_MASK (1 << IWL_RATE_2M_INDEX)
  75. #define IWL_RATE_5M_MASK (1 << IWL_RATE_5M_INDEX)
  76. #define IWL_RATE_11M_MASK (1 << IWL_RATE_11M_INDEX)
  77. /* uCode API values for HT/VHT bit rates */
  78. enum {
  79. IWL_RATE_HT_SISO_MCS_0_PLCP = 0,
  80. IWL_RATE_HT_SISO_MCS_1_PLCP = 1,
  81. IWL_RATE_HT_SISO_MCS_2_PLCP = 2,
  82. IWL_RATE_HT_SISO_MCS_3_PLCP = 3,
  83. IWL_RATE_HT_SISO_MCS_4_PLCP = 4,
  84. IWL_RATE_HT_SISO_MCS_5_PLCP = 5,
  85. IWL_RATE_HT_SISO_MCS_6_PLCP = 6,
  86. IWL_RATE_HT_SISO_MCS_7_PLCP = 7,
  87. IWL_RATE_HT_MIMO2_MCS_0_PLCP = 0x8,
  88. IWL_RATE_HT_MIMO2_MCS_1_PLCP = 0x9,
  89. IWL_RATE_HT_MIMO2_MCS_2_PLCP = 0xA,
  90. IWL_RATE_HT_MIMO2_MCS_3_PLCP = 0xB,
  91. IWL_RATE_HT_MIMO2_MCS_4_PLCP = 0xC,
  92. IWL_RATE_HT_MIMO2_MCS_5_PLCP = 0xD,
  93. IWL_RATE_HT_MIMO2_MCS_6_PLCP = 0xE,
  94. IWL_RATE_HT_MIMO2_MCS_7_PLCP = 0xF,
  95. IWL_RATE_VHT_SISO_MCS_0_PLCP = 0,
  96. IWL_RATE_VHT_SISO_MCS_1_PLCP = 1,
  97. IWL_RATE_VHT_SISO_MCS_2_PLCP = 2,
  98. IWL_RATE_VHT_SISO_MCS_3_PLCP = 3,
  99. IWL_RATE_VHT_SISO_MCS_4_PLCP = 4,
  100. IWL_RATE_VHT_SISO_MCS_5_PLCP = 5,
  101. IWL_RATE_VHT_SISO_MCS_6_PLCP = 6,
  102. IWL_RATE_VHT_SISO_MCS_7_PLCP = 7,
  103. IWL_RATE_VHT_SISO_MCS_8_PLCP = 8,
  104. IWL_RATE_VHT_SISO_MCS_9_PLCP = 9,
  105. IWL_RATE_VHT_MIMO2_MCS_0_PLCP = 0x10,
  106. IWL_RATE_VHT_MIMO2_MCS_1_PLCP = 0x11,
  107. IWL_RATE_VHT_MIMO2_MCS_2_PLCP = 0x12,
  108. IWL_RATE_VHT_MIMO2_MCS_3_PLCP = 0x13,
  109. IWL_RATE_VHT_MIMO2_MCS_4_PLCP = 0x14,
  110. IWL_RATE_VHT_MIMO2_MCS_5_PLCP = 0x15,
  111. IWL_RATE_VHT_MIMO2_MCS_6_PLCP = 0x16,
  112. IWL_RATE_VHT_MIMO2_MCS_7_PLCP = 0x17,
  113. IWL_RATE_VHT_MIMO2_MCS_8_PLCP = 0x18,
  114. IWL_RATE_VHT_MIMO2_MCS_9_PLCP = 0x19,
  115. IWL_RATE_HT_SISO_MCS_INV_PLCP,
  116. IWL_RATE_HT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  117. IWL_RATE_VHT_SISO_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  118. IWL_RATE_VHT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  119. IWL_RATE_HT_SISO_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  120. IWL_RATE_HT_SISO_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  121. IWL_RATE_HT_MIMO2_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  122. IWL_RATE_HT_MIMO2_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
  123. };
  124. #define IWL_RATES_MASK ((1 << IWL_RATE_COUNT) - 1)
  125. #define IWL_INVALID_VALUE -1
  126. #define TPC_MAX_REDUCTION 15
  127. #define TPC_NO_REDUCTION 0
  128. #define TPC_INVALID 0xff
  129. #define LINK_QUAL_AGG_FRAME_LIMIT_DEF (63)
  130. #define LINK_QUAL_AGG_FRAME_LIMIT_MAX (63)
  131. #define LINK_QUAL_AGG_FRAME_LIMIT_MIN (0)
  132. #define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
  133. /* load per tid defines for A-MPDU activation */
  134. #define IWL_AGG_TPT_THREHOLD 0
  135. #define IWL_AGG_ALL_TID 0xff
  136. enum iwl_table_type {
  137. LQ_NONE,
  138. LQ_LEGACY_G, /* legacy types */
  139. LQ_LEGACY_A,
  140. LQ_HT_SISO, /* HT types */
  141. LQ_HT_MIMO2,
  142. LQ_VHT_SISO, /* VHT types */
  143. LQ_VHT_MIMO2,
  144. LQ_MAX,
  145. };
  146. struct rs_rate {
  147. int index;
  148. enum iwl_table_type type;
  149. u8 ant;
  150. u32 bw;
  151. bool sgi;
  152. bool ldpc;
  153. bool stbc;
  154. bool bfer;
  155. };
  156. #define is_type_legacy(type) (((type) == LQ_LEGACY_G) || \
  157. ((type) == LQ_LEGACY_A))
  158. #define is_type_ht_siso(type) ((type) == LQ_HT_SISO)
  159. #define is_type_ht_mimo2(type) ((type) == LQ_HT_MIMO2)
  160. #define is_type_vht_siso(type) ((type) == LQ_VHT_SISO)
  161. #define is_type_vht_mimo2(type) ((type) == LQ_VHT_MIMO2)
  162. #define is_type_siso(type) (is_type_ht_siso(type) || is_type_vht_siso(type))
  163. #define is_type_mimo2(type) (is_type_ht_mimo2(type) || is_type_vht_mimo2(type))
  164. #define is_type_mimo(type) (is_type_mimo2(type))
  165. #define is_type_ht(type) (is_type_ht_siso(type) || is_type_ht_mimo2(type))
  166. #define is_type_vht(type) (is_type_vht_siso(type) || is_type_vht_mimo2(type))
  167. #define is_type_a_band(type) ((type) == LQ_LEGACY_A)
  168. #define is_type_g_band(type) ((type) == LQ_LEGACY_G)
  169. #define is_legacy(rate) is_type_legacy((rate)->type)
  170. #define is_ht_siso(rate) is_type_ht_siso((rate)->type)
  171. #define is_ht_mimo2(rate) is_type_ht_mimo2((rate)->type)
  172. #define is_vht_siso(rate) is_type_vht_siso((rate)->type)
  173. #define is_vht_mimo2(rate) is_type_vht_mimo2((rate)->type)
  174. #define is_siso(rate) is_type_siso((rate)->type)
  175. #define is_mimo2(rate) is_type_mimo2((rate)->type)
  176. #define is_mimo(rate) is_type_mimo((rate)->type)
  177. #define is_ht(rate) is_type_ht((rate)->type)
  178. #define is_vht(rate) is_type_vht((rate)->type)
  179. #define is_a_band(rate) is_type_a_band((rate)->type)
  180. #define is_g_band(rate) is_type_g_band((rate)->type)
  181. #define is_ht20(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_20)
  182. #define is_ht40(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_40)
  183. #define is_ht80(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_80)
  184. #define IWL_MAX_MCS_DISPLAY_SIZE 12
  185. struct iwl_rate_mcs_info {
  186. char mbps[IWL_MAX_MCS_DISPLAY_SIZE];
  187. char mcs[IWL_MAX_MCS_DISPLAY_SIZE];
  188. };
  189. /**
  190. * struct iwl_rate_scale_data -- tx success history for one rate
  191. */
  192. struct iwl_rate_scale_data {
  193. u64 data; /* bitmap of successful frames */
  194. s32 success_counter; /* number of frames successful */
  195. s32 success_ratio; /* per-cent * 128 */
  196. s32 counter; /* number of frames attempted */
  197. s32 average_tpt; /* success ratio * expected throughput */
  198. };
  199. /* Possible Tx columns
  200. * Tx Column = a combo of legacy/siso/mimo x antenna x SGI
  201. */
  202. enum rs_column {
  203. RS_COLUMN_LEGACY_ANT_A = 0,
  204. RS_COLUMN_LEGACY_ANT_B,
  205. RS_COLUMN_SISO_ANT_A,
  206. RS_COLUMN_SISO_ANT_B,
  207. RS_COLUMN_SISO_ANT_A_SGI,
  208. RS_COLUMN_SISO_ANT_B_SGI,
  209. RS_COLUMN_MIMO2,
  210. RS_COLUMN_MIMO2_SGI,
  211. RS_COLUMN_LAST = RS_COLUMN_MIMO2_SGI,
  212. RS_COLUMN_COUNT = RS_COLUMN_LAST + 1,
  213. RS_COLUMN_INVALID,
  214. };
  215. enum rs_ss_force_opt {
  216. RS_SS_FORCE_NONE = 0,
  217. RS_SS_FORCE_STBC,
  218. RS_SS_FORCE_BFER,
  219. RS_SS_FORCE_SISO,
  220. };
  221. /* Packet stats per rate */
  222. struct rs_rate_stats {
  223. u64 success;
  224. u64 total;
  225. };
  226. /**
  227. * struct iwl_scale_tbl_info -- tx params and success history for all rates
  228. *
  229. * There are two of these in struct iwl_lq_sta,
  230. * one for "active", and one for "search".
  231. */
  232. struct iwl_scale_tbl_info {
  233. struct rs_rate rate;
  234. enum rs_column column;
  235. const u16 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
  236. struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
  237. /* per txpower-reduction history */
  238. struct iwl_rate_scale_data tpc_win[TPC_MAX_REDUCTION + 1];
  239. };
  240. enum {
  241. RS_STATE_SEARCH_CYCLE_STARTED,
  242. RS_STATE_SEARCH_CYCLE_ENDED,
  243. RS_STATE_STAY_IN_COLUMN,
  244. };
  245. /**
  246. * struct iwl_lq_sta -- driver's rate scaling private structure
  247. *
  248. * Pointer to this gets passed back and forth between driver and mac80211.
  249. */
  250. struct iwl_lq_sta {
  251. u8 active_tbl; /* index of active table, range 0-1 */
  252. u8 rs_state; /* RS_STATE_* */
  253. u8 search_better_tbl; /* 1: currently trying alternate mode */
  254. s32 last_tpt;
  255. /* The following determine when to search for a new mode */
  256. u32 table_count_limit;
  257. u32 max_failure_limit; /* # failed frames before new search */
  258. u32 max_success_limit; /* # successful frames before new search */
  259. u32 table_count;
  260. u32 total_failed; /* total failed frames, any/all rates */
  261. u32 total_success; /* total successful frames, any/all rates */
  262. u64 flush_timer; /* time staying in mode before new search */
  263. u32 visited_columns; /* Bitmask marking which Tx columns were
  264. * explored during a search cycle
  265. */
  266. u64 last_tx;
  267. bool is_vht;
  268. bool ldpc; /* LDPC Rx is supported by the STA */
  269. bool stbc_capable; /* Tx STBC is supported by chip and Rx by STA */
  270. bool bfer_capable; /* Remote supports beamformee and we BFer */
  271. enum ieee80211_band band;
  272. /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
  273. unsigned long active_legacy_rate;
  274. unsigned long active_siso_rate;
  275. unsigned long active_mimo2_rate;
  276. /* Highest rate per Tx mode */
  277. u8 max_legacy_rate_idx;
  278. u8 max_siso_rate_idx;
  279. u8 max_mimo2_rate_idx;
  280. /* Optimal rate based on RSSI and STA caps.
  281. * Used only to reflect link speed to userspace.
  282. */
  283. struct rs_rate optimal_rate;
  284. unsigned long optimal_rate_mask;
  285. const struct rs_init_rate_info *optimal_rates;
  286. int optimal_nentries;
  287. u8 missed_rate_counter;
  288. struct iwl_lq_cmd lq;
  289. struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
  290. u8 tx_agg_tid_en;
  291. /* last tx rate_n_flags */
  292. u32 last_rate_n_flags;
  293. /* packets destined for this STA are aggregated */
  294. u8 is_agg;
  295. /* tx power reduce for this sta */
  296. int tpc_reduce;
  297. /* persistent fields - initialized only once - keep last! */
  298. struct lq_sta_pers {
  299. #ifdef CONFIG_MAC80211_DEBUGFS
  300. u32 dbg_fixed_rate;
  301. u8 dbg_fixed_txp_reduction;
  302. /* force STBC/BFER/SISO for testing */
  303. enum rs_ss_force_opt ss_force;
  304. #endif
  305. u8 chains;
  306. s8 chain_signal[IEEE80211_MAX_CHAINS];
  307. s8 last_rssi;
  308. struct rs_rate_stats tx_stats[RS_COLUMN_COUNT][IWL_RATE_COUNT];
  309. struct iwl_mvm *drv;
  310. } pers;
  311. };
  312. /* Initialize station's rate scaling information after adding station */
  313. void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
  314. enum ieee80211_band band, bool init);
  315. /* Notify RS about Tx status */
  316. void iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
  317. int tid, struct ieee80211_tx_info *info);
  318. /**
  319. * iwl_rate_control_register - Register the rate control algorithm callbacks
  320. *
  321. * Since the rate control algorithm is hardware specific, there is no need
  322. * or reason to place it as a stand alone module. The driver can call
  323. * iwl_rate_control_register in order to register the rate control callbacks
  324. * with the mac80211 subsystem. This should be performed prior to calling
  325. * ieee80211_register_hw
  326. *
  327. */
  328. int iwl_mvm_rate_control_register(void);
  329. /**
  330. * iwl_rate_control_unregister - Unregister the rate control callbacks
  331. *
  332. * This should be called after calling ieee80211_unregister_hw, but before
  333. * the driver is unloaded.
  334. */
  335. void iwl_mvm_rate_control_unregister(void);
  336. struct iwl_mvm_sta;
  337. int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
  338. bool enable);
  339. #endif /* __rs__ */