Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 1 | /* |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 2 | * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org> |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | #include <linux/netdevice.h> |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/skbuff.h> |
| 11 | #include <linux/debugfs.h> |
| 12 | #include <linux/random.h> |
| 13 | #include <linux/ieee80211.h> |
| 14 | #include <net/mac80211.h> |
| 15 | #include "rate.h" |
| 16 | #include "rc80211_minstrel.h" |
| 17 | #include "rc80211_minstrel_ht.h" |
| 18 | |
| 19 | #define AVG_PKT_SIZE 1200 |
| 20 | #define SAMPLE_COLUMNS 10 |
| 21 | #define EWMA_LEVEL 75 |
| 22 | |
| 23 | /* Number of bits for an average sized packet */ |
| 24 | #define MCS_NBITS (AVG_PKT_SIZE << 3) |
| 25 | |
| 26 | /* Number of symbols for a packet with (bps) bits per symbol */ |
| 27 | #define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps)) |
| 28 | |
| 29 | /* Transmission time for a packet containing (syms) symbols */ |
| 30 | #define MCS_SYMBOL_TIME(sgi, syms) \ |
| 31 | (sgi ? \ |
| 32 | ((syms) * 18 + 4) / 5 : /* syms * 3.6 us */ \ |
| 33 | (syms) << 2 /* syms * 4 us */ \ |
| 34 | ) |
| 35 | |
| 36 | /* Transmit duration for the raw data part of an average sized packet */ |
| 37 | #define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps))) |
| 38 | |
Helmut Schaa | a5f69d94 | 2011-11-14 15:28:20 +0100 | [diff] [blame] | 39 | /* |
| 40 | * Define group sort order: HT40 -> SGI -> #streams |
| 41 | */ |
| 42 | #define GROUP_IDX(_streams, _sgi, _ht40) \ |
| 43 | MINSTREL_MAX_STREAMS * 2 * _ht40 + \ |
| 44 | MINSTREL_MAX_STREAMS * _sgi + \ |
| 45 | _streams - 1 |
| 46 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 47 | /* MCS rate information for an MCS group */ |
Helmut Schaa | a5f69d94 | 2011-11-14 15:28:20 +0100 | [diff] [blame] | 48 | #define MCS_GROUP(_streams, _sgi, _ht40) \ |
| 49 | [GROUP_IDX(_streams, _sgi, _ht40)] = { \ |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 50 | .streams = _streams, \ |
| 51 | .flags = \ |
| 52 | (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \ |
| 53 | (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \ |
| 54 | .duration = { \ |
| 55 | MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \ |
| 56 | MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \ |
| 57 | MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \ |
| 58 | MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \ |
| 59 | MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \ |
| 60 | MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \ |
| 61 | MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \ |
| 62 | MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \ |
| 63 | } \ |
| 64 | } |
| 65 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 66 | #define CCK_DURATION(_bitrate, _short, _len) \ |
| 67 | (10 /* SIFS */ + \ |
| 68 | (_short ? 72 + 24 : 144 + 48 ) + \ |
| 69 | (8 * (_len + 4) * 10) / (_bitrate)) |
| 70 | |
| 71 | #define CCK_ACK_DURATION(_bitrate, _short) \ |
| 72 | (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \ |
| 73 | CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE)) |
| 74 | |
| 75 | #define CCK_DURATION_LIST(_short) \ |
| 76 | CCK_ACK_DURATION(10, _short), \ |
| 77 | CCK_ACK_DURATION(20, _short), \ |
| 78 | CCK_ACK_DURATION(55, _short), \ |
| 79 | CCK_ACK_DURATION(110, _short) |
| 80 | |
| 81 | #define CCK_GROUP \ |
| 82 | [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \ |
| 83 | .streams = 0, \ |
| 84 | .duration = { \ |
| 85 | CCK_DURATION_LIST(false), \ |
| 86 | CCK_DURATION_LIST(true) \ |
| 87 | } \ |
| 88 | } |
| 89 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 90 | /* |
| 91 | * To enable sufficiently targeted rate sampling, MCS rates are divided into |
| 92 | * groups, based on the number of streams and flags (HT40, SGI) that they |
| 93 | * use. |
Helmut Schaa | a5f69d94 | 2011-11-14 15:28:20 +0100 | [diff] [blame] | 94 | * |
| 95 | * Sortorder has to be fixed for GROUP_IDX macro to be applicable: |
| 96 | * HT40 -> SGI -> #streams |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 97 | */ |
| 98 | const struct mcs_group minstrel_mcs_groups[] = { |
| 99 | MCS_GROUP(1, 0, 0), |
| 100 | MCS_GROUP(2, 0, 0), |
| 101 | #if MINSTREL_MAX_STREAMS >= 3 |
| 102 | MCS_GROUP(3, 0, 0), |
| 103 | #endif |
| 104 | |
| 105 | MCS_GROUP(1, 1, 0), |
| 106 | MCS_GROUP(2, 1, 0), |
| 107 | #if MINSTREL_MAX_STREAMS >= 3 |
| 108 | MCS_GROUP(3, 1, 0), |
| 109 | #endif |
| 110 | |
| 111 | MCS_GROUP(1, 0, 1), |
| 112 | MCS_GROUP(2, 0, 1), |
| 113 | #if MINSTREL_MAX_STREAMS >= 3 |
| 114 | MCS_GROUP(3, 0, 1), |
| 115 | #endif |
| 116 | |
| 117 | MCS_GROUP(1, 1, 1), |
| 118 | MCS_GROUP(2, 1, 1), |
| 119 | #if MINSTREL_MAX_STREAMS >= 3 |
| 120 | MCS_GROUP(3, 1, 1), |
| 121 | #endif |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 122 | |
| 123 | /* must be last */ |
| 124 | CCK_GROUP |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 125 | }; |
| 126 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 127 | #define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1) |
| 128 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 129 | static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES]; |
| 130 | |
| 131 | /* |
| 132 | * Perform EWMA (Exponentially Weighted Moving Average) calculation |
| 133 | */ |
| 134 | static int |
| 135 | minstrel_ewma(int old, int new, int weight) |
| 136 | { |
| 137 | return (new * (100 - weight) + old * weight) / 100; |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Look up an MCS group index based on mac80211 rate information |
| 142 | */ |
| 143 | static int |
| 144 | minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate) |
| 145 | { |
Helmut Schaa | a5f69d94 | 2011-11-14 15:28:20 +0100 | [diff] [blame] | 146 | return GROUP_IDX((rate->idx / MCS_GROUP_RATES) + 1, |
| 147 | !!(rate->flags & IEEE80211_TX_RC_SHORT_GI), |
| 148 | !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 149 | } |
| 150 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 151 | static struct minstrel_rate_stats * |
| 152 | minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi, |
| 153 | struct ieee80211_tx_rate *rate) |
| 154 | { |
| 155 | int group, idx; |
| 156 | |
| 157 | if (rate->flags & IEEE80211_TX_RC_MCS) { |
| 158 | group = minstrel_ht_get_group_idx(rate); |
| 159 | idx = rate->idx % MCS_GROUP_RATES; |
| 160 | } else { |
| 161 | group = MINSTREL_CCK_GROUP; |
| 162 | |
| 163 | for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++) |
| 164 | if (rate->idx == mp->cck_rates[idx]) |
| 165 | break; |
| 166 | |
| 167 | /* short preamble */ |
| 168 | if (!(mi->groups[group].supported & BIT(idx))) |
| 169 | idx += 4; |
| 170 | } |
| 171 | return &mi->groups[group].rates[idx]; |
| 172 | } |
| 173 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 174 | static inline struct minstrel_rate_stats * |
| 175 | minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index) |
| 176 | { |
| 177 | return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES]; |
| 178 | } |
| 179 | |
| 180 | |
| 181 | /* |
| 182 | * Recalculate success probabilities and counters for a rate using EWMA |
| 183 | */ |
| 184 | static void |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 185 | minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 186 | { |
| 187 | if (unlikely(mr->attempts > 0)) { |
| 188 | mr->sample_skipped = 0; |
| 189 | mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts); |
| 190 | if (!mr->att_hist) |
| 191 | mr->probability = mr->cur_prob; |
| 192 | else |
| 193 | mr->probability = minstrel_ewma(mr->probability, |
| 194 | mr->cur_prob, EWMA_LEVEL); |
| 195 | mr->att_hist += mr->attempts; |
| 196 | mr->succ_hist += mr->success; |
| 197 | } else { |
| 198 | mr->sample_skipped++; |
| 199 | } |
| 200 | mr->last_success = mr->success; |
| 201 | mr->last_attempts = mr->attempts; |
| 202 | mr->success = 0; |
| 203 | mr->attempts = 0; |
| 204 | } |
| 205 | |
| 206 | /* |
| 207 | * Calculate throughput based on the average A-MPDU length, taking into account |
| 208 | * the expected number of retransmissions and their expected length |
| 209 | */ |
| 210 | static void |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 211 | minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 212 | { |
| 213 | struct minstrel_rate_stats *mr; |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 214 | unsigned int usecs = 0; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 215 | |
| 216 | mr = &mi->groups[group].rates[rate]; |
| 217 | |
| 218 | if (mr->probability < MINSTREL_FRAC(1, 10)) { |
| 219 | mr->cur_tp = 0; |
| 220 | return; |
| 221 | } |
| 222 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 223 | if (group != MINSTREL_CCK_GROUP) |
| 224 | usecs = mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len); |
| 225 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 226 | usecs += minstrel_mcs_groups[group].duration[rate]; |
| 227 | mr->cur_tp = MINSTREL_TRUNC((1000000 / usecs) * mr->probability); |
| 228 | } |
| 229 | |
| 230 | /* |
| 231 | * Update rate statistics and select new primary rates |
| 232 | * |
| 233 | * Rules for rate selection: |
| 234 | * - max_prob_rate must use only one stream, as a tradeoff between delivery |
| 235 | * probability and throughput during strong fluctuations |
| 236 | * - as long as the max prob rate has a probability of more than 3/4, pick |
| 237 | * higher throughput rates, even if the probablity is a bit lower |
| 238 | */ |
| 239 | static void |
| 240 | minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi) |
| 241 | { |
| 242 | struct minstrel_mcs_group_data *mg; |
| 243 | struct minstrel_rate_stats *mr; |
| 244 | int cur_prob, cur_prob_tp, cur_tp, cur_tp2; |
| 245 | int group, i, index; |
| 246 | |
| 247 | if (mi->ampdu_packets > 0) { |
| 248 | mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len, |
| 249 | MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL); |
| 250 | mi->ampdu_len = 0; |
| 251 | mi->ampdu_packets = 0; |
| 252 | } |
| 253 | |
| 254 | mi->sample_slow = 0; |
| 255 | mi->sample_count = 0; |
| 256 | mi->max_tp_rate = 0; |
| 257 | mi->max_tp_rate2 = 0; |
| 258 | mi->max_prob_rate = 0; |
| 259 | |
| 260 | for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) { |
| 261 | cur_prob = 0; |
| 262 | cur_prob_tp = 0; |
| 263 | cur_tp = 0; |
| 264 | cur_tp2 = 0; |
| 265 | |
| 266 | mg = &mi->groups[group]; |
| 267 | if (!mg->supported) |
| 268 | continue; |
| 269 | |
| 270 | mg->max_tp_rate = 0; |
| 271 | mg->max_tp_rate2 = 0; |
| 272 | mg->max_prob_rate = 0; |
| 273 | mi->sample_count++; |
| 274 | |
| 275 | for (i = 0; i < MCS_GROUP_RATES; i++) { |
| 276 | if (!(mg->supported & BIT(i))) |
| 277 | continue; |
| 278 | |
| 279 | mr = &mg->rates[i]; |
| 280 | mr->retry_updated = false; |
| 281 | index = MCS_GROUP_RATES * group + i; |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 282 | minstrel_calc_rate_ewma(mr); |
| 283 | minstrel_ht_calc_tp(mi, group, i); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 284 | |
| 285 | if (!mr->cur_tp) |
| 286 | continue; |
| 287 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 288 | if ((mr->cur_tp > cur_prob_tp && mr->probability > |
| 289 | MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) { |
| 290 | mg->max_prob_rate = index; |
| 291 | cur_prob = mr->probability; |
Ming Lei | 009271f | 2010-07-01 23:18:42 +0800 | [diff] [blame] | 292 | cur_prob_tp = mr->cur_tp; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | if (mr->cur_tp > cur_tp) { |
| 296 | swap(index, mg->max_tp_rate); |
| 297 | cur_tp = mr->cur_tp; |
| 298 | mr = minstrel_get_ratestats(mi, index); |
| 299 | } |
| 300 | |
| 301 | if (index >= mg->max_tp_rate) |
| 302 | continue; |
| 303 | |
| 304 | if (mr->cur_tp > cur_tp2) { |
| 305 | mg->max_tp_rate2 = index; |
| 306 | cur_tp2 = mr->cur_tp; |
| 307 | } |
| 308 | } |
| 309 | } |
| 310 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 311 | /* try to sample up to half of the available rates during each interval */ |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 312 | mi->sample_count *= 4; |
| 313 | |
| 314 | cur_prob = 0; |
| 315 | cur_prob_tp = 0; |
| 316 | cur_tp = 0; |
| 317 | cur_tp2 = 0; |
| 318 | for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) { |
| 319 | mg = &mi->groups[group]; |
| 320 | if (!mg->supported) |
| 321 | continue; |
| 322 | |
| 323 | mr = minstrel_get_ratestats(mi, mg->max_prob_rate); |
| 324 | if (cur_prob_tp < mr->cur_tp && |
| 325 | minstrel_mcs_groups[group].streams == 1) { |
| 326 | mi->max_prob_rate = mg->max_prob_rate; |
| 327 | cur_prob = mr->cur_prob; |
Ming Lei | 009271f | 2010-07-01 23:18:42 +0800 | [diff] [blame] | 328 | cur_prob_tp = mr->cur_tp; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | mr = minstrel_get_ratestats(mi, mg->max_tp_rate); |
| 332 | if (cur_tp < mr->cur_tp) { |
Lorenzo Bianconi | 89888e3 | 2011-09-24 18:48:26 +0200 | [diff] [blame] | 333 | mi->max_tp_rate2 = mi->max_tp_rate; |
| 334 | cur_tp2 = cur_tp; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 335 | mi->max_tp_rate = mg->max_tp_rate; |
| 336 | cur_tp = mr->cur_tp; |
| 337 | } |
| 338 | |
| 339 | mr = minstrel_get_ratestats(mi, mg->max_tp_rate2); |
| 340 | if (cur_tp2 < mr->cur_tp) { |
| 341 | mi->max_tp_rate2 = mg->max_tp_rate2; |
| 342 | cur_tp2 = mr->cur_tp; |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | mi->stats_update = jiffies; |
| 347 | } |
| 348 | |
| 349 | static bool |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 350 | minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 351 | { |
Helmut Schaa | b79296b | 2011-11-14 15:28:19 +0100 | [diff] [blame] | 352 | if (rate->idx < 0) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 353 | return false; |
| 354 | |
Helmut Schaa | b79296b | 2011-11-14 15:28:19 +0100 | [diff] [blame] | 355 | if (!rate->count) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 356 | return false; |
| 357 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 358 | if (rate->flags & IEEE80211_TX_RC_MCS) |
| 359 | return true; |
| 360 | |
| 361 | return rate->idx == mp->cck_rates[0] || |
| 362 | rate->idx == mp->cck_rates[1] || |
| 363 | rate->idx == mp->cck_rates[2] || |
| 364 | rate->idx == mp->cck_rates[3]; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | static void |
| 368 | minstrel_next_sample_idx(struct minstrel_ht_sta *mi) |
| 369 | { |
| 370 | struct minstrel_mcs_group_data *mg; |
| 371 | |
| 372 | for (;;) { |
| 373 | mi->sample_group++; |
| 374 | mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups); |
| 375 | mg = &mi->groups[mi->sample_group]; |
| 376 | |
| 377 | if (!mg->supported) |
| 378 | continue; |
| 379 | |
| 380 | if (++mg->index >= MCS_GROUP_RATES) { |
| 381 | mg->index = 0; |
| 382 | if (++mg->column >= ARRAY_SIZE(sample_table)) |
| 383 | mg->column = 0; |
| 384 | } |
| 385 | break; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | static void |
John W. Linville | d5ece21 | 2010-06-24 11:18:38 -0400 | [diff] [blame] | 390 | minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx, |
| 391 | bool primary) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 392 | { |
| 393 | int group, orig_group; |
| 394 | |
| 395 | orig_group = group = *idx / MCS_GROUP_RATES; |
| 396 | while (group > 0) { |
| 397 | group--; |
| 398 | |
| 399 | if (!mi->groups[group].supported) |
| 400 | continue; |
| 401 | |
| 402 | if (minstrel_mcs_groups[group].streams > |
| 403 | minstrel_mcs_groups[orig_group].streams) |
| 404 | continue; |
| 405 | |
| 406 | if (primary) |
| 407 | *idx = mi->groups[group].max_tp_rate; |
| 408 | else |
| 409 | *idx = mi->groups[group].max_tp_rate2; |
| 410 | break; |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | static void |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 415 | minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 416 | { |
| 417 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 418 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 419 | u16 tid; |
| 420 | |
| 421 | if (unlikely(!ieee80211_is_data_qos(hdr->frame_control))) |
| 422 | return; |
| 423 | |
| 424 | if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE))) |
| 425 | return; |
| 426 | |
| 427 | tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 428 | if (likely(sta->ampdu_mlme.tid_tx[tid])) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 429 | return; |
| 430 | |
Luis R. Rodriguez | 48124d1 | 2010-11-23 15:05:02 -0800 | [diff] [blame] | 431 | if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO) |
| 432 | return; |
| 433 | |
Sujith Manoharan | bd2ce6e | 2010-12-15 07:47:10 +0530 | [diff] [blame] | 434 | ieee80211_start_tx_ba_session(pubsta, tid, 5000); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | static void |
| 438 | minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband, |
| 439 | struct ieee80211_sta *sta, void *priv_sta, |
| 440 | struct sk_buff *skb) |
| 441 | { |
| 442 | struct minstrel_ht_sta_priv *msp = priv_sta; |
| 443 | struct minstrel_ht_sta *mi = &msp->ht; |
| 444 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 445 | struct ieee80211_tx_rate *ar = info->status.rates; |
| 446 | struct minstrel_rate_stats *rate, *rate2; |
| 447 | struct minstrel_priv *mp = priv; |
Johannes Berg | a544ab7 | 2012-11-13 21:36:27 +0100 | [diff] [blame] | 448 | bool last; |
Johannes Berg | a544ab7 | 2012-11-13 21:36:27 +0100 | [diff] [blame] | 449 | int i; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 450 | |
| 451 | if (!msp->is_ht) |
| 452 | return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb); |
| 453 | |
| 454 | /* This packet was aggregated but doesn't carry status info */ |
| 455 | if ((info->flags & IEEE80211_TX_CTL_AMPDU) && |
| 456 | !(info->flags & IEEE80211_TX_STAT_AMPDU)) |
| 457 | return; |
| 458 | |
Björn Smedman | 15d46f3 | 2010-10-10 22:14:25 +0200 | [diff] [blame] | 459 | if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) { |
| 460 | info->status.ampdu_ack_len = |
| 461 | (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 462 | info->status.ampdu_len = 1; |
| 463 | } |
| 464 | |
| 465 | mi->ampdu_packets++; |
| 466 | mi->ampdu_len += info->status.ampdu_len; |
| 467 | |
| 468 | if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) { |
Felix Fietkau | c7317e4 | 2010-10-21 02:47:25 +0200 | [diff] [blame] | 469 | mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len); |
| 470 | mi->sample_tries = 2; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 471 | mi->sample_count--; |
| 472 | } |
| 473 | |
Daniel Halperin | 8d5eab5 | 2011-03-09 03:10:18 -0800 | [diff] [blame] | 474 | if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 475 | mi->sample_packets += info->status.ampdu_len; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 476 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 477 | last = !minstrel_ht_txstat_valid(mp, &ar[0]); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 478 | for (i = 0; !last; i++) { |
| 479 | last = (i == IEEE80211_TX_MAX_RATES - 1) || |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 480 | !minstrel_ht_txstat_valid(mp, &ar[i + 1]); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 481 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 482 | rate = minstrel_ht_get_stats(mp, mi, &ar[i]); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 483 | |
Björn Smedman | 15d46f3 | 2010-10-10 22:14:25 +0200 | [diff] [blame] | 484 | if (last) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 485 | rate->success += info->status.ampdu_ack_len; |
| 486 | |
| 487 | rate->attempts += ar[i].count * info->status.ampdu_len; |
| 488 | } |
| 489 | |
| 490 | /* |
| 491 | * check for sudden death of spatial multiplexing, |
| 492 | * downgrade to a lower number of streams if necessary. |
| 493 | */ |
| 494 | rate = minstrel_get_ratestats(mi, mi->max_tp_rate); |
| 495 | if (rate->attempts > 30 && |
| 496 | MINSTREL_FRAC(rate->success, rate->attempts) < |
| 497 | MINSTREL_FRAC(20, 100)) |
| 498 | minstrel_downgrade_rate(mi, &mi->max_tp_rate, true); |
| 499 | |
| 500 | rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2); |
Ming Lei | ecc3d5a | 2010-07-01 23:19:50 +0800 | [diff] [blame] | 501 | if (rate2->attempts > 30 && |
| 502 | MINSTREL_FRAC(rate2->success, rate2->attempts) < |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 503 | MINSTREL_FRAC(20, 100)) |
| 504 | minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false); |
| 505 | |
| 506 | if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) { |
| 507 | minstrel_ht_update_stats(mp, mi); |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 508 | if (!(info->flags & IEEE80211_TX_CTL_AMPDU) && |
| 509 | mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 510 | minstrel_aggr_check(sta, skb); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 511 | } |
| 512 | } |
| 513 | |
| 514 | static void |
| 515 | minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi, |
| 516 | int index) |
| 517 | { |
| 518 | struct minstrel_rate_stats *mr; |
| 519 | const struct mcs_group *group; |
| 520 | unsigned int tx_time, tx_time_rtscts, tx_time_data; |
| 521 | unsigned int cw = mp->cw_min; |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 522 | unsigned int ctime = 0; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 523 | unsigned int t_slot = 9; /* FIXME */ |
| 524 | unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len); |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 525 | unsigned int overhead = 0, overhead_rtscts = 0; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 526 | |
| 527 | mr = minstrel_get_ratestats(mi, index); |
| 528 | if (mr->probability < MINSTREL_FRAC(1, 10)) { |
| 529 | mr->retry_count = 1; |
| 530 | mr->retry_count_rtscts = 1; |
| 531 | return; |
| 532 | } |
| 533 | |
| 534 | mr->retry_count = 2; |
| 535 | mr->retry_count_rtscts = 2; |
| 536 | mr->retry_updated = true; |
| 537 | |
| 538 | group = &minstrel_mcs_groups[index / MCS_GROUP_RATES]; |
| 539 | tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len; |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 540 | |
| 541 | /* Contention time for first 2 tries */ |
| 542 | ctime = (t_slot * cw) >> 1; |
| 543 | cw = min((cw << 1) | 1, mp->cw_max); |
| 544 | ctime += (t_slot * cw) >> 1; |
| 545 | cw = min((cw << 1) | 1, mp->cw_max); |
| 546 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 547 | if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) { |
| 548 | overhead = mi->overhead; |
| 549 | overhead_rtscts = mi->overhead_rtscts; |
| 550 | } |
| 551 | |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 552 | /* Total TX time for data and Contention after first 2 tries */ |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 553 | tx_time = ctime + 2 * (overhead + tx_time_data); |
| 554 | tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data); |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 555 | |
| 556 | /* See how many more tries we can fit inside segment size */ |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 557 | do { |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 558 | /* Contention time for this try */ |
| 559 | ctime = (t_slot * cw) >> 1; |
| 560 | cw = min((cw << 1) | 1, mp->cw_max); |
| 561 | |
| 562 | /* Total TX time after this try */ |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 563 | tx_time += ctime + overhead + tx_time_data; |
| 564 | tx_time_rtscts += ctime + overhead_rtscts + tx_time_data; |
Daniel Halperin | 8fddddf | 2011-05-10 19:00:45 -0700 | [diff] [blame] | 565 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 566 | if (tx_time_rtscts < mp->segment_size) |
| 567 | mr->retry_count_rtscts++; |
| 568 | } while ((tx_time < mp->segment_size) && |
| 569 | (++mr->retry_count < mp->max_retry)); |
| 570 | } |
| 571 | |
| 572 | |
| 573 | static void |
| 574 | minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi, |
| 575 | struct ieee80211_tx_rate *rate, int index, |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 576 | bool sample, bool rtscts) |
| 577 | { |
| 578 | const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES]; |
| 579 | struct minstrel_rate_stats *mr; |
| 580 | |
| 581 | mr = minstrel_get_ratestats(mi, index); |
| 582 | if (!mr->retry_updated) |
| 583 | minstrel_calc_retransmit(mp, mi, index); |
| 584 | |
Felix Fietkau | c7317e4 | 2010-10-21 02:47:25 +0200 | [diff] [blame] | 585 | if (sample) |
| 586 | rate->count = 1; |
| 587 | else if (mr->probability < MINSTREL_FRAC(20, 100)) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 588 | rate->count = 2; |
| 589 | else if (rtscts) |
| 590 | rate->count = mr->retry_count_rtscts; |
| 591 | else |
| 592 | rate->count = mr->retry_count; |
| 593 | |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 594 | rate->flags = 0; |
Helmut Schaa | 9d468d2 | 2011-03-04 13:31:31 +0100 | [diff] [blame] | 595 | if (rtscts) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 596 | rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS; |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 597 | |
| 598 | if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) { |
| 599 | rate->idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)]; |
| 600 | return; |
| 601 | } |
| 602 | |
| 603 | rate->flags |= IEEE80211_TX_RC_MCS | group->flags; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 604 | rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES; |
| 605 | } |
| 606 | |
| 607 | static inline int |
| 608 | minstrel_get_duration(int index) |
| 609 | { |
| 610 | const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES]; |
| 611 | return group->duration[index % MCS_GROUP_RATES]; |
| 612 | } |
| 613 | |
| 614 | static int |
| 615 | minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi) |
| 616 | { |
| 617 | struct minstrel_rate_stats *mr; |
| 618 | struct minstrel_mcs_group_data *mg; |
| 619 | int sample_idx = 0; |
| 620 | |
| 621 | if (mi->sample_wait > 0) { |
| 622 | mi->sample_wait--; |
| 623 | return -1; |
| 624 | } |
| 625 | |
| 626 | if (!mi->sample_tries) |
| 627 | return -1; |
| 628 | |
| 629 | mi->sample_tries--; |
| 630 | mg = &mi->groups[mi->sample_group]; |
| 631 | sample_idx = sample_table[mg->column][mg->index]; |
| 632 | mr = &mg->rates[sample_idx]; |
| 633 | sample_idx += mi->sample_group * MCS_GROUP_RATES; |
Daniel Halperin | 8d5eab5 | 2011-03-09 03:10:18 -0800 | [diff] [blame] | 634 | minstrel_next_sample_idx(mi); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 635 | |
| 636 | /* |
Helmut Schaa | ba6fa29 | 2012-03-14 13:31:11 +0100 | [diff] [blame] | 637 | * Sampling might add some overhead (RTS, no aggregation) |
| 638 | * to the frame. Hence, don't use sampling for the currently |
| 639 | * used max TP rate. |
| 640 | */ |
| 641 | if (sample_idx == mi->max_tp_rate) |
| 642 | return -1; |
| 643 | /* |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 644 | * When not using MRR, do not sample if the probability is already |
| 645 | * higher than 95% to avoid wasting airtime |
| 646 | */ |
| 647 | if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100))) |
Daniel Halperin | 8d5eab5 | 2011-03-09 03:10:18 -0800 | [diff] [blame] | 648 | return -1; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 649 | |
| 650 | /* |
| 651 | * Make sure that lower rates get sampled only occasionally, |
| 652 | * if the link is working perfectly. |
| 653 | */ |
| 654 | if (minstrel_get_duration(sample_idx) > |
| 655 | minstrel_get_duration(mi->max_tp_rate)) { |
Felix Fietkau | c7317e4 | 2010-10-21 02:47:25 +0200 | [diff] [blame] | 656 | if (mr->sample_skipped < 20) |
Daniel Halperin | 8d5eab5 | 2011-03-09 03:10:18 -0800 | [diff] [blame] | 657 | return -1; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 658 | |
| 659 | if (mi->sample_slow++ > 2) |
Daniel Halperin | 8d5eab5 | 2011-03-09 03:10:18 -0800 | [diff] [blame] | 660 | return -1; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | return sample_idx; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | static void |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 667 | minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp, |
| 668 | struct minstrel_ht_sta *mi, bool val) |
| 669 | { |
| 670 | u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported; |
| 671 | |
| 672 | if (!supported || !mi->cck_supported_short) |
| 673 | return; |
| 674 | |
| 675 | if (supported & (mi->cck_supported_short << (val * 4))) |
| 676 | return; |
| 677 | |
| 678 | supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4); |
| 679 | mi->groups[MINSTREL_CCK_GROUP].supported = supported; |
| 680 | } |
| 681 | |
| 682 | static void |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 683 | minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta, |
| 684 | struct ieee80211_tx_rate_control *txrc) |
| 685 | { |
| 686 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb); |
| 687 | struct ieee80211_tx_rate *ar = info->status.rates; |
| 688 | struct minstrel_ht_sta_priv *msp = priv_sta; |
| 689 | struct minstrel_ht_sta *mi = &msp->ht; |
| 690 | struct minstrel_priv *mp = priv; |
| 691 | int sample_idx; |
Felix Fietkau | c7317e4 | 2010-10-21 02:47:25 +0200 | [diff] [blame] | 692 | bool sample = false; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 693 | |
| 694 | if (rate_control_send_low(sta, priv_sta, txrc)) |
| 695 | return; |
| 696 | |
| 697 | if (!msp->is_ht) |
| 698 | return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc); |
| 699 | |
| 700 | info->flags |= mi->tx_flags; |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 701 | minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble); |
Helmut Schaa | 6de062c | 2011-08-01 11:32:53 +0200 | [diff] [blame] | 702 | |
| 703 | /* Don't use EAPOL frames for sampling on non-mrr hw */ |
| 704 | if (mp->hw->max_rates == 1 && |
| 705 | txrc->skb->protocol == cpu_to_be16(ETH_P_PAE)) |
| 706 | sample_idx = -1; |
| 707 | else |
| 708 | sample_idx = minstrel_get_sample_rate(mp, mi); |
Zefir Kurtisi | 24f7580 | 2011-05-20 20:29:17 +0200 | [diff] [blame] | 709 | |
| 710 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 711 | /* use fixed index if set */ |
Sylvain Roger Rieunier | 2a9e6c5 | 2012-07-09 19:25:09 +0200 | [diff] [blame] | 712 | if (mp->fixed_rate_idx != -1) { |
| 713 | mi->max_tp_rate = mp->fixed_rate_idx; |
| 714 | mi->max_tp_rate2 = mp->fixed_rate_idx; |
| 715 | mi->max_prob_rate = mp->fixed_rate_idx; |
| 716 | sample_idx = -1; |
| 717 | } |
Zefir Kurtisi | 24f7580 | 2011-05-20 20:29:17 +0200 | [diff] [blame] | 718 | #endif |
| 719 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 720 | if (sample_idx >= 0) { |
Felix Fietkau | c7317e4 | 2010-10-21 02:47:25 +0200 | [diff] [blame] | 721 | sample = true; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 722 | minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 723 | true, false); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 724 | info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE; |
| 725 | } else { |
| 726 | minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 727 | false, false); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 728 | } |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 729 | |
Helmut Schaa | cf28d79 | 2011-03-09 10:02:38 +0100 | [diff] [blame] | 730 | if (mp->hw->max_rates >= 3) { |
| 731 | /* |
| 732 | * At least 3 tx rates supported, use |
| 733 | * sample_rate -> max_tp_rate -> max_prob_rate for sampling and |
| 734 | * max_tp_rate -> max_tp_rate2 -> max_prob_rate by default. |
| 735 | */ |
| 736 | if (sample_idx >= 0) |
| 737 | minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 738 | false, false); |
Helmut Schaa | cf28d79 | 2011-03-09 10:02:38 +0100 | [diff] [blame] | 739 | else |
| 740 | minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 741 | false, true); |
Helmut Schaa | cf28d79 | 2011-03-09 10:02:38 +0100 | [diff] [blame] | 742 | |
| 743 | minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 744 | false, !sample); |
Helmut Schaa | cf28d79 | 2011-03-09 10:02:38 +0100 | [diff] [blame] | 745 | |
| 746 | ar[3].count = 0; |
| 747 | ar[3].idx = -1; |
| 748 | } else if (mp->hw->max_rates == 2) { |
| 749 | /* |
| 750 | * Only 2 tx rates supported, use |
| 751 | * sample_rate -> max_prob_rate for sampling and |
| 752 | * max_tp_rate -> max_prob_rate by default. |
| 753 | */ |
| 754 | minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_prob_rate, |
Patrick Kelle | 6048d763 | 2011-11-15 16:44:48 +0100 | [diff] [blame] | 755 | false, !sample); |
Helmut Schaa | cf28d79 | 2011-03-09 10:02:38 +0100 | [diff] [blame] | 756 | |
| 757 | ar[2].count = 0; |
| 758 | ar[2].idx = -1; |
| 759 | } else { |
| 760 | /* Not using MRR, only use the first rate */ |
| 761 | ar[1].count = 0; |
| 762 | ar[1].idx = -1; |
| 763 | } |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 764 | |
| 765 | mi->total_packets++; |
| 766 | |
| 767 | /* wraparound */ |
| 768 | if (mi->total_packets == ~0) { |
| 769 | mi->total_packets = 0; |
| 770 | mi->sample_packets = 0; |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | static void |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 775 | minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi, |
| 776 | struct ieee80211_supported_band *sband, |
| 777 | struct ieee80211_sta *sta) |
| 778 | { |
| 779 | int i; |
| 780 | |
| 781 | if (sband->band != IEEE80211_BAND_2GHZ) |
| 782 | return; |
| 783 | |
| 784 | mi->cck_supported = 0; |
| 785 | mi->cck_supported_short = 0; |
| 786 | for (i = 0; i < 4; i++) { |
| 787 | if (!rate_supported(sta, sband->band, mp->cck_rates[i])) |
| 788 | continue; |
| 789 | |
| 790 | mi->cck_supported |= BIT(i); |
| 791 | if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE) |
| 792 | mi->cck_supported_short |= BIT(i); |
| 793 | } |
| 794 | |
| 795 | mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported; |
| 796 | } |
| 797 | |
| 798 | static void |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 799 | minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband, |
Johannes Berg | 64f68e5 | 2012-03-28 10:58:37 +0200 | [diff] [blame] | 800 | struct ieee80211_sta *sta, void *priv_sta) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 801 | { |
| 802 | struct minstrel_priv *mp = priv; |
| 803 | struct minstrel_ht_sta_priv *msp = priv_sta; |
| 804 | struct minstrel_ht_sta *mi = &msp->ht; |
| 805 | struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 806 | u16 sta_cap = sta->ht_cap.cap; |
Felix Fietkau | 4dc217d | 2011-03-25 15:30:38 +0100 | [diff] [blame] | 807 | int n_supported = 0; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 808 | int ack_dur; |
| 809 | int stbc; |
| 810 | int i; |
Helmut Schaa | e921977 | 2012-03-09 14:13:45 +0100 | [diff] [blame] | 811 | unsigned int smps; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 812 | |
| 813 | /* fall back to the old minstrel for legacy stations */ |
Felix Fietkau | 4dc217d | 2011-03-25 15:30:38 +0100 | [diff] [blame] | 814 | if (!sta->ht_cap.ht_supported) |
| 815 | goto use_legacy; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 816 | |
| 817 | BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) != |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 818 | MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 819 | |
| 820 | msp->is_ht = true; |
| 821 | memset(mi, 0, sizeof(*mi)); |
| 822 | mi->stats_update = jiffies; |
| 823 | |
Michal Kazior | 4ee73f3 | 2012-04-11 08:47:56 +0200 | [diff] [blame] | 824 | ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1); |
| 825 | mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1) + ack_dur; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 826 | mi->overhead_rtscts = mi->overhead + 2 * ack_dur; |
| 827 | |
| 828 | mi->avg_ampdu_len = MINSTREL_FRAC(1, 1); |
| 829 | |
| 830 | /* When using MRR, sample more on the first attempt, without delay */ |
| 831 | if (mp->has_mrr) { |
| 832 | mi->sample_count = 16; |
| 833 | mi->sample_wait = 0; |
| 834 | } else { |
| 835 | mi->sample_count = 8; |
| 836 | mi->sample_wait = 8; |
| 837 | } |
| 838 | mi->sample_tries = 4; |
| 839 | |
| 840 | stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >> |
| 841 | IEEE80211_HT_CAP_RX_STBC_SHIFT; |
| 842 | mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT; |
| 843 | |
| 844 | if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING) |
| 845 | mi->tx_flags |= IEEE80211_TX_CTL_LDPC; |
| 846 | |
Helmut Schaa | e921977 | 2012-03-09 14:13:45 +0100 | [diff] [blame] | 847 | smps = (sta_cap & IEEE80211_HT_CAP_SM_PS) >> |
| 848 | IEEE80211_HT_CAP_SM_PS_SHIFT; |
| 849 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 850 | for (i = 0; i < ARRAY_SIZE(mi->groups); i++) { |
| 851 | u16 req = 0; |
| 852 | |
| 853 | mi->groups[i].supported = 0; |
Felix Fietkau | a0497f9 | 2013-02-13 10:51:08 +0100 | [diff] [blame^] | 854 | if (i == MINSTREL_CCK_GROUP) { |
| 855 | minstrel_ht_update_cck(mp, mi, sband, sta); |
| 856 | continue; |
| 857 | } |
| 858 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 859 | if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) { |
| 860 | if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 861 | req |= IEEE80211_HT_CAP_SGI_40; |
| 862 | else |
| 863 | req |= IEEE80211_HT_CAP_SGI_20; |
| 864 | } |
| 865 | |
| 866 | if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 867 | req |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
| 868 | |
| 869 | if ((sta_cap & req) != req) |
| 870 | continue; |
| 871 | |
Helmut Schaa | e921977 | 2012-03-09 14:13:45 +0100 | [diff] [blame] | 872 | /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */ |
| 873 | if (smps == WLAN_HT_CAP_SM_PS_STATIC && |
| 874 | minstrel_mcs_groups[i].streams > 1) |
| 875 | continue; |
| 876 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 877 | mi->groups[i].supported = |
| 878 | mcs->rx_mask[minstrel_mcs_groups[i].streams - 1]; |
Felix Fietkau | 4dc217d | 2011-03-25 15:30:38 +0100 | [diff] [blame] | 879 | |
| 880 | if (mi->groups[i].supported) |
| 881 | n_supported++; |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 882 | } |
Felix Fietkau | 4dc217d | 2011-03-25 15:30:38 +0100 | [diff] [blame] | 883 | |
| 884 | if (!n_supported) |
| 885 | goto use_legacy; |
| 886 | |
| 887 | return; |
| 888 | |
| 889 | use_legacy: |
| 890 | msp->is_ht = false; |
| 891 | memset(&msp->legacy, 0, sizeof(msp->legacy)); |
| 892 | msp->legacy.r = msp->ratelist; |
| 893 | msp->legacy.sample_table = msp->sample_table; |
| 894 | return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | static void |
| 898 | minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband, |
| 899 | struct ieee80211_sta *sta, void *priv_sta) |
| 900 | { |
Johannes Berg | 64f68e5 | 2012-03-28 10:58:37 +0200 | [diff] [blame] | 901 | minstrel_ht_update_caps(priv, sband, sta, priv_sta); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | static void |
| 905 | minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband, |
| 906 | struct ieee80211_sta *sta, void *priv_sta, |
Johannes Berg | 64f68e5 | 2012-03-28 10:58:37 +0200 | [diff] [blame] | 907 | u32 changed) |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 908 | { |
Johannes Berg | 64f68e5 | 2012-03-28 10:58:37 +0200 | [diff] [blame] | 909 | minstrel_ht_update_caps(priv, sband, sta, priv_sta); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | static void * |
| 913 | minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp) |
| 914 | { |
| 915 | struct ieee80211_supported_band *sband; |
| 916 | struct minstrel_ht_sta_priv *msp; |
| 917 | struct minstrel_priv *mp = priv; |
| 918 | struct ieee80211_hw *hw = mp->hw; |
| 919 | int max_rates = 0; |
| 920 | int i; |
| 921 | |
| 922 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { |
| 923 | sband = hw->wiphy->bands[i]; |
| 924 | if (sband && sband->n_bitrates > max_rates) |
| 925 | max_rates = sband->n_bitrates; |
| 926 | } |
| 927 | |
Thomas Huehn | 472dd35 | 2012-06-29 06:26:27 -0700 | [diff] [blame] | 928 | msp = kzalloc(sizeof(*msp), gfp); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 929 | if (!msp) |
| 930 | return NULL; |
| 931 | |
| 932 | msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp); |
| 933 | if (!msp->ratelist) |
| 934 | goto error; |
| 935 | |
| 936 | msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp); |
| 937 | if (!msp->sample_table) |
| 938 | goto error1; |
| 939 | |
| 940 | return msp; |
| 941 | |
| 942 | error1: |
Dan Carpenter | 7e98801 | 2010-07-22 13:14:19 +0200 | [diff] [blame] | 943 | kfree(msp->ratelist); |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 944 | error: |
| 945 | kfree(msp); |
| 946 | return NULL; |
| 947 | } |
| 948 | |
| 949 | static void |
| 950 | minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta) |
| 951 | { |
| 952 | struct minstrel_ht_sta_priv *msp = priv_sta; |
| 953 | |
| 954 | kfree(msp->sample_table); |
| 955 | kfree(msp->ratelist); |
| 956 | kfree(msp); |
| 957 | } |
| 958 | |
| 959 | static void * |
| 960 | minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir) |
| 961 | { |
| 962 | return mac80211_minstrel.alloc(hw, debugfsdir); |
| 963 | } |
| 964 | |
| 965 | static void |
| 966 | minstrel_ht_free(void *priv) |
| 967 | { |
| 968 | mac80211_minstrel.free(priv); |
| 969 | } |
| 970 | |
| 971 | static struct rate_control_ops mac80211_minstrel_ht = { |
| 972 | .name = "minstrel_ht", |
| 973 | .tx_status = minstrel_ht_tx_status, |
| 974 | .get_rate = minstrel_ht_get_rate, |
| 975 | .rate_init = minstrel_ht_rate_init, |
| 976 | .rate_update = minstrel_ht_rate_update, |
| 977 | .alloc_sta = minstrel_ht_alloc_sta, |
| 978 | .free_sta = minstrel_ht_free_sta, |
| 979 | .alloc = minstrel_ht_alloc, |
| 980 | .free = minstrel_ht_free, |
| 981 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 982 | .add_sta_debugfs = minstrel_ht_add_sta_debugfs, |
| 983 | .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs, |
| 984 | #endif |
| 985 | }; |
| 986 | |
| 987 | |
| 988 | static void |
| 989 | init_sample_table(void) |
| 990 | { |
| 991 | int col, i, new_idx; |
| 992 | u8 rnd[MCS_GROUP_RATES]; |
| 993 | |
| 994 | memset(sample_table, 0xff, sizeof(sample_table)); |
| 995 | for (col = 0; col < SAMPLE_COLUMNS; col++) { |
| 996 | for (i = 0; i < MCS_GROUP_RATES; i++) { |
| 997 | get_random_bytes(rnd, sizeof(rnd)); |
| 998 | new_idx = (i + rnd[i]) % MCS_GROUP_RATES; |
| 999 | |
| 1000 | while (sample_table[col][new_idx] != 0xff) |
| 1001 | new_idx = (new_idx + 1) % MCS_GROUP_RATES; |
| 1002 | |
| 1003 | sample_table[col][new_idx] = i; |
| 1004 | } |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | int __init |
| 1009 | rc80211_minstrel_ht_init(void) |
| 1010 | { |
| 1011 | init_sample_table(); |
| 1012 | return ieee80211_rate_control_register(&mac80211_minstrel_ht); |
| 1013 | } |
| 1014 | |
| 1015 | void |
| 1016 | rc80211_minstrel_ht_exit(void) |
| 1017 | { |
| 1018 | ieee80211_rate_control_unregister(&mac80211_minstrel_ht); |
| 1019 | } |