rs.h 14 KB

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