1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/skbuff.h>
29#include <linux/slab.h>
30#include <net/mac80211.h>
31
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/delay.h>
35
36#include <linux/workqueue.h>
37
38#include "common.h"
39#include "4965.h"
40
41#define IL4965_RS_NAME "iwl-4965-rs"
42
43#define NUM_TRY_BEFORE_ANT_TOGGLE 1
44#define IL_NUMBER_TRY 1
45#define IL_HT_NUMBER_TRY 3
46
47#define RATE_MAX_WINDOW 62
48#define RATE_MIN_FAILURE_TH 6
49#define RATE_MIN_SUCCESS_TH 8
50
51
52#define IL_MISSED_RATE_MAX 15
53
54#define RATE_SCALE_FLUSH_INTVL (3*HZ)
55
56static u8 rs_ht_to_legacy[] = {
57 RATE_6M_IDX, RATE_6M_IDX,
58 RATE_6M_IDX, RATE_6M_IDX,
59 RATE_6M_IDX,
60 RATE_6M_IDX, RATE_9M_IDX,
61 RATE_12M_IDX, RATE_18M_IDX,
62 RATE_24M_IDX, RATE_36M_IDX,
63 RATE_48M_IDX, RATE_54M_IDX
64};
65
66static const u8 ant_toggle_lookup[] = {
67 ANT_NONE,
68 ANT_B,
69 ANT_C,
70 ANT_BC,
71 ANT_A,
72 ANT_AB,
73 ANT_AC,
74 ANT_ABC,
75};
76
77#define IL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
78 [RATE_##r##M_IDX] = { RATE_##r##M_PLCP, \
79 RATE_SISO_##s##M_PLCP, \
80 RATE_MIMO2_##s##M_PLCP,\
81 RATE_##r##M_IEEE, \
82 RATE_##ip##M_IDX, \
83 RATE_##in##M_IDX, \
84 RATE_##rp##M_IDX, \
85 RATE_##rn##M_IDX, \
86 RATE_##pp##M_IDX, \
87 RATE_##np##M_IDX }
88
89
90
91
92
93
94
95
96
97const struct il_rate_info il_rates[RATE_COUNT] = {
98 IL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2),
99 IL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5),
100 IL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11),
101 IL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18),
102 IL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11),
103 IL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11),
104 IL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18),
105 IL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24),
106 IL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36),
107 IL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48),
108 IL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54),
109 IL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),
110 IL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),
111};
112
113static int
114il4965_hwrate_to_plcp_idx(u32 rate_n_flags)
115{
116 int idx = 0;
117
118
119 if (rate_n_flags & RATE_MCS_HT_MSK) {
120 idx = (rate_n_flags & 0xff);
121
122 if (idx >= RATE_MIMO2_6M_PLCP)
123 idx = idx - RATE_MIMO2_6M_PLCP;
124
125 idx += IL_FIRST_OFDM_RATE;
126
127 if (idx >= RATE_9M_IDX)
128 idx += 1;
129 if (idx >= IL_FIRST_OFDM_RATE && idx <= IL_LAST_OFDM_RATE)
130 return idx;
131
132
133 } else {
134 for (idx = 0; idx < ARRAY_SIZE(il_rates); idx++)
135 if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
136 return idx;
137 }
138
139 return -1;
140}
141
142static void il4965_rs_rate_scale_perform(struct il_priv *il,
143 struct sk_buff *skb,
144 struct ieee80211_sta *sta,
145 struct il_lq_sta *lq_sta);
146static void il4965_rs_fill_link_cmd(struct il_priv *il,
147 struct il_lq_sta *lq_sta, u32 rate_n_flags);
148static void il4965_rs_stay_in_table(struct il_lq_sta *lq_sta,
149 bool force_search);
150
151#ifdef CONFIG_MAC80211_DEBUGFS
152static void il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta,
153 u32 *rate_n_flags, int idx);
154#else
155static void
156il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
157{
158}
159#endif
160
161
162
163
164
165
166
167
168
169
170
171
172static s32 expected_tpt_legacy[RATE_COUNT] = {
173 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
174};
175
176static s32 expected_tpt_siso20MHz[4][RATE_COUNT] = {
177 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202},
178 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210},
179 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381},
180 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413},
181};
182
183static s32 expected_tpt_siso40MHz[4][RATE_COUNT] = {
184 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257},
185 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264},
186 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640},
187 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683},
188};
189
190static s32 expected_tpt_mimo2_20MHz[4][RATE_COUNT] = {
191 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250},
192 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256},
193 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619},
194 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660},
195};
196
197static s32 expected_tpt_mimo2_40MHz[4][RATE_COUNT] = {
198 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289},
199 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293},
200 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922},
201 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966},
202};
203
204
205static const struct il_rate_mcs_info il_rate_mcs[RATE_COUNT] = {
206 {"1", "BPSK DSSS"},
207 {"2", "QPSK DSSS"},
208 {"5.5", "BPSK CCK"},
209 {"11", "QPSK CCK"},
210 {"6", "BPSK 1/2"},
211 {"9", "BPSK 1/2"},
212 {"12", "QPSK 1/2"},
213 {"18", "QPSK 3/4"},
214 {"24", "16QAM 1/2"},
215 {"36", "16QAM 3/4"},
216 {"48", "64QAM 2/3"},
217 {"54", "64QAM 3/4"},
218 {"60", "64QAM 5/6"},
219};
220
221#define MCS_IDX_PER_STREAM (8)
222
223static inline u8
224il4965_rs_extract_rate(u32 rate_n_flags)
225{
226 return (u8) (rate_n_flags & 0xFF);
227}
228
229static void
230il4965_rs_rate_scale_clear_win(struct il_rate_scale_data *win)
231{
232 win->data = 0;
233 win->success_counter = 0;
234 win->success_ratio = IL_INVALID_VALUE;
235 win->counter = 0;
236 win->average_tpt = IL_INVALID_VALUE;
237 win->stamp = 0;
238}
239
240static inline u8
241il4965_rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
242{
243 return (ant_type & valid_antenna) == ant_type;
244}
245
246
247
248
249
250static void
251il4965_rs_tl_rm_old_stats(struct il_traffic_load *tl, u32 curr_time)
252{
253
254 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
255
256 while (tl->queue_count && tl->time_stamp < oldest_time) {
257 tl->total -= tl->packet_count[tl->head];
258 tl->packet_count[tl->head] = 0;
259 tl->time_stamp += TID_QUEUE_CELL_SPACING;
260 tl->queue_count--;
261 tl->head++;
262 if (tl->head >= TID_QUEUE_MAX_SIZE)
263 tl->head = 0;
264 }
265}
266
267
268
269
270
271static u8
272il4965_rs_tl_add_packet(struct il_lq_sta *lq_data, struct ieee80211_hdr *hdr)
273{
274 u32 curr_time = jiffies_to_msecs(jiffies);
275 u32 time_diff;
276 s32 idx;
277 struct il_traffic_load *tl = NULL;
278 u8 tid;
279
280 if (ieee80211_is_data_qos(hdr->frame_control)) {
281 u8 *qc = ieee80211_get_qos_ctl(hdr);
282 tid = qc[0] & 0xf;
283 } else
284 return MAX_TID_COUNT;
285
286 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
287 return MAX_TID_COUNT;
288
289 tl = &lq_data->load[tid];
290
291 curr_time -= curr_time % TID_ROUND_VALUE;
292
293
294 if (!(tl->queue_count)) {
295 tl->total = 1;
296 tl->time_stamp = curr_time;
297 tl->queue_count = 1;
298 tl->head = 0;
299 tl->packet_count[0] = 1;
300 return MAX_TID_COUNT;
301 }
302
303 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
304 idx = time_diff / TID_QUEUE_CELL_SPACING;
305
306
307
308 if (idx >= TID_QUEUE_MAX_SIZE)
309 il4965_rs_tl_rm_old_stats(tl, curr_time);
310
311 idx = (tl->head + idx) % TID_QUEUE_MAX_SIZE;
312 tl->packet_count[idx] = tl->packet_count[idx] + 1;
313 tl->total = tl->total + 1;
314
315 if ((idx + 1) > tl->queue_count)
316 tl->queue_count = idx + 1;
317
318 return tid;
319}
320
321
322
323
324static u32
325il4965_rs_tl_get_load(struct il_lq_sta *lq_data, u8 tid)
326{
327 u32 curr_time = jiffies_to_msecs(jiffies);
328 u32 time_diff;
329 s32 idx;
330 struct il_traffic_load *tl = NULL;
331
332 if (tid >= TID_MAX_LOAD_COUNT)
333 return 0;
334
335 tl = &(lq_data->load[tid]);
336
337 curr_time -= curr_time % TID_ROUND_VALUE;
338
339 if (!(tl->queue_count))
340 return 0;
341
342 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
343 idx = time_diff / TID_QUEUE_CELL_SPACING;
344
345
346
347 if (idx >= TID_QUEUE_MAX_SIZE)
348 il4965_rs_tl_rm_old_stats(tl, curr_time);
349
350 return tl->total;
351}
352
353static int
354il4965_rs_tl_turn_on_agg_for_tid(struct il_priv *il, struct il_lq_sta *lq_data,
355 u8 tid, struct ieee80211_sta *sta)
356{
357 int ret = -EAGAIN;
358 u32 load;
359
360 load = il4965_rs_tl_get_load(lq_data, tid);
361
362 if (load > IL_AGG_LOAD_THRESHOLD) {
363 D_HT("Starting Tx agg: STA: %pM tid: %d\n", sta->addr, tid);
364 ret = ieee80211_start_tx_ba_session(sta, tid, 5000);
365 if (ret == -EAGAIN) {
366
367
368
369
370
371 IL_ERR("Fail start Tx agg on tid: %d\n", tid);
372 ieee80211_stop_tx_ba_session(sta, tid);
373 }
374 } else
375 D_HT("Aggregation not enabled for tid %d because load = %u\n",
376 tid, load);
377
378 return ret;
379}
380
381static void
382il4965_rs_tl_turn_on_agg(struct il_priv *il, u8 tid, struct il_lq_sta *lq_data,
383 struct ieee80211_sta *sta)
384{
385 if (tid < TID_MAX_LOAD_COUNT)
386 il4965_rs_tl_turn_on_agg_for_tid(il, lq_data, tid, sta);
387 else
388 IL_ERR("tid exceeds max load count: %d/%d\n", tid,
389 TID_MAX_LOAD_COUNT);
390}
391
392static inline int
393il4965_get_il4965_num_of_ant_from_rate(u32 rate_n_flags)
394{
395 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
396 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
397 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
398}
399
400
401
402
403
404static s32
405il4965_get_expected_tpt(struct il_scale_tbl_info *tbl, int rs_idx)
406{
407 if (tbl->expected_tpt)
408 return tbl->expected_tpt[rs_idx];
409 return 0;
410}
411
412
413
414
415
416
417
418
419static int
420il4965_rs_collect_tx_data(struct il_scale_tbl_info *tbl, int scale_idx,
421 int attempts, int successes)
422{
423 struct il_rate_scale_data *win = NULL;
424 static const u64 mask = (((u64) 1) << (RATE_MAX_WINDOW - 1));
425 s32 fail_count, tpt;
426
427 if (scale_idx < 0 || scale_idx >= RATE_COUNT)
428 return -EINVAL;
429
430
431 win = &(tbl->win[scale_idx]);
432
433
434 tpt = il4965_get_expected_tpt(tbl, scale_idx);
435
436
437
438
439
440
441
442
443
444 while (attempts > 0) {
445 if (win->counter >= RATE_MAX_WINDOW) {
446
447
448 win->counter = RATE_MAX_WINDOW - 1;
449
450 if (win->data & mask) {
451 win->data &= ~mask;
452 win->success_counter--;
453 }
454 }
455
456
457 win->counter++;
458
459
460 win->data <<= 1;
461
462
463 if (successes > 0) {
464 win->success_counter++;
465 win->data |= 0x1;
466 successes--;
467 }
468
469 attempts--;
470 }
471
472
473 if (win->counter > 0)
474 win->success_ratio =
475 128 * (100 * win->success_counter) / win->counter;
476 else
477 win->success_ratio = IL_INVALID_VALUE;
478
479 fail_count = win->counter - win->success_counter;
480
481
482 if (fail_count >= RATE_MIN_FAILURE_TH ||
483 win->success_counter >= RATE_MIN_SUCCESS_TH)
484 win->average_tpt = (win->success_ratio * tpt + 64) / 128;
485 else
486 win->average_tpt = IL_INVALID_VALUE;
487
488
489 win->stamp = jiffies;
490
491 return 0;
492}
493
494
495
496
497static u32
498il4965_rate_n_flags_from_tbl(struct il_priv *il, struct il_scale_tbl_info *tbl,
499 int idx, u8 use_green)
500{
501 u32 rate_n_flags = 0;
502
503 if (is_legacy(tbl->lq_type)) {
504 rate_n_flags = il_rates[idx].plcp;
505 if (idx >= IL_FIRST_CCK_RATE && idx <= IL_LAST_CCK_RATE)
506 rate_n_flags |= RATE_MCS_CCK_MSK;
507
508 } else if (is_Ht(tbl->lq_type)) {
509 if (idx > IL_LAST_OFDM_RATE) {
510 IL_ERR("Invalid HT rate idx %d\n", idx);
511 idx = IL_LAST_OFDM_RATE;
512 }
513 rate_n_flags = RATE_MCS_HT_MSK;
514
515 if (is_siso(tbl->lq_type))
516 rate_n_flags |= il_rates[idx].plcp_siso;
517 else
518 rate_n_flags |= il_rates[idx].plcp_mimo2;
519 } else {
520 IL_ERR("Invalid tbl->lq_type %d\n", tbl->lq_type);
521 }
522
523 rate_n_flags |=
524 ((tbl->ant_type << RATE_MCS_ANT_POS) & RATE_MCS_ANT_ABC_MSK);
525
526 if (is_Ht(tbl->lq_type)) {
527 if (tbl->is_ht40) {
528 if (tbl->is_dup)
529 rate_n_flags |= RATE_MCS_DUP_MSK;
530 else
531 rate_n_flags |= RATE_MCS_HT40_MSK;
532 }
533 if (tbl->is_SGI)
534 rate_n_flags |= RATE_MCS_SGI_MSK;
535
536 if (use_green) {
537 rate_n_flags |= RATE_MCS_GF_MSK;
538 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
539 rate_n_flags &= ~RATE_MCS_SGI_MSK;
540 IL_ERR("GF was set with SGI:SISO\n");
541 }
542 }
543 }
544 return rate_n_flags;
545}
546
547
548
549
550
551static int
552il4965_rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
553 enum ieee80211_band band,
554 struct il_scale_tbl_info *tbl, int *rate_idx)
555{
556 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
557 u8 il4965_num_of_ant =
558 il4965_get_il4965_num_of_ant_from_rate(rate_n_flags);
559 u8 mcs;
560
561 memset(tbl, 0, sizeof(struct il_scale_tbl_info));
562 *rate_idx = il4965_hwrate_to_plcp_idx(rate_n_flags);
563
564 if (*rate_idx == RATE_INVALID) {
565 *rate_idx = -1;
566 return -EINVAL;
567 }
568 tbl->is_SGI = 0;
569 tbl->is_ht40 = 0;
570 tbl->is_dup = 0;
571 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
572 tbl->lq_type = LQ_NONE;
573 tbl->max_search = IL_MAX_SEARCH;
574
575
576 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
577 if (il4965_num_of_ant == 1) {
578 if (band == IEEE80211_BAND_5GHZ)
579 tbl->lq_type = LQ_A;
580 else
581 tbl->lq_type = LQ_G;
582 }
583
584 } else {
585 if (rate_n_flags & RATE_MCS_SGI_MSK)
586 tbl->is_SGI = 1;
587
588 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
589 (rate_n_flags & RATE_MCS_DUP_MSK))
590 tbl->is_ht40 = 1;
591
592 if (rate_n_flags & RATE_MCS_DUP_MSK)
593 tbl->is_dup = 1;
594
595 mcs = il4965_rs_extract_rate(rate_n_flags);
596
597
598 if (mcs <= RATE_SISO_60M_PLCP) {
599 if (il4965_num_of_ant == 1)
600 tbl->lq_type = LQ_SISO;
601
602 } else {
603 if (il4965_num_of_ant == 2)
604 tbl->lq_type = LQ_MIMO2;
605 }
606 }
607 return 0;
608}
609
610
611
612static int
613il4965_rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
614 struct il_scale_tbl_info *tbl)
615{
616 u8 new_ant_type;
617
618 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
619 return 0;
620
621 if (!il4965_rs_is_valid_ant(valid_ant, tbl->ant_type))
622 return 0;
623
624 new_ant_type = ant_toggle_lookup[tbl->ant_type];
625
626 while (new_ant_type != tbl->ant_type &&
627 !il4965_rs_is_valid_ant(valid_ant, new_ant_type))
628 new_ant_type = ant_toggle_lookup[new_ant_type];
629
630 if (new_ant_type == tbl->ant_type)
631 return 0;
632
633 tbl->ant_type = new_ant_type;
634 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
635 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
636 return 1;
637}
638
639
640
641
642
643static bool
644il4965_rs_use_green(struct il_priv *il, struct ieee80211_sta *sta)
645{
646 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
647 !il->ht.non_gf_sta_present;
648}
649
650
651
652
653
654
655
656
657static u16
658il4965_rs_get_supported_rates(struct il_lq_sta *lq_sta,
659 struct ieee80211_hdr *hdr,
660 enum il_table_type rate_type)
661{
662 if (is_legacy(rate_type)) {
663 return lq_sta->active_legacy_rate;
664 } else {
665 if (is_siso(rate_type))
666 return lq_sta->active_siso_rate;
667 else
668 return lq_sta->active_mimo2_rate;
669 }
670}
671
672static u16
673il4965_rs_get_adjacent_rate(struct il_priv *il, u8 idx, u16 rate_mask,
674 int rate_type)
675{
676 u8 high = RATE_INVALID;
677 u8 low = RATE_INVALID;
678
679
680
681 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
682 int i;
683 u32 mask;
684
685
686 i = idx - 1;
687 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
688 if (rate_mask & mask) {
689 low = i;
690 break;
691 }
692 }
693
694
695 i = idx + 1;
696 for (mask = (1 << i); i < RATE_COUNT; i++, mask <<= 1) {
697 if (rate_mask & mask) {
698 high = i;
699 break;
700 }
701 }
702
703 return (high << 8) | low;
704 }
705
706 low = idx;
707 while (low != RATE_INVALID) {
708 low = il_rates[low].prev_rs;
709 if (low == RATE_INVALID)
710 break;
711 if (rate_mask & (1 << low))
712 break;
713 D_RATE("Skipping masked lower rate: %d\n", low);
714 }
715
716 high = idx;
717 while (high != RATE_INVALID) {
718 high = il_rates[high].next_rs;
719 if (high == RATE_INVALID)
720 break;
721 if (rate_mask & (1 << high))
722 break;
723 D_RATE("Skipping masked higher rate: %d\n", high);
724 }
725
726 return (high << 8) | low;
727}
728
729static u32
730il4965_rs_get_lower_rate(struct il_lq_sta *lq_sta,
731 struct il_scale_tbl_info *tbl, u8 scale_idx,
732 u8 ht_possible)
733{
734 s32 low;
735 u16 rate_mask;
736 u16 high_low;
737 u8 switch_to_legacy = 0;
738 u8 is_green = lq_sta->is_green;
739 struct il_priv *il = lq_sta->drv;
740
741
742
743
744 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_idx)) {
745 switch_to_legacy = 1;
746 scale_idx = rs_ht_to_legacy[scale_idx];
747 if (lq_sta->band == IEEE80211_BAND_5GHZ)
748 tbl->lq_type = LQ_A;
749 else
750 tbl->lq_type = LQ_G;
751
752 if (il4965_num_of_ant(tbl->ant_type) > 1)
753 tbl->ant_type =
754 il4965_first_antenna(il->hw_params.valid_tx_ant);
755
756 tbl->is_ht40 = 0;
757 tbl->is_SGI = 0;
758 tbl->max_search = IL_MAX_SEARCH;
759 }
760
761 rate_mask = il4965_rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
762
763
764 if (is_legacy(tbl->lq_type)) {
765
766 if (lq_sta->band == IEEE80211_BAND_5GHZ)
767 rate_mask =
768 (u16) (rate_mask &
769 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
770 else
771 rate_mask = (u16) (rate_mask & lq_sta->supp_rates);
772 }
773
774
775 if (switch_to_legacy && (rate_mask & (1 << scale_idx))) {
776 low = scale_idx;
777 goto out;
778 }
779
780 high_low =
781 il4965_rs_get_adjacent_rate(lq_sta->drv, scale_idx, rate_mask,
782 tbl->lq_type);
783 low = high_low & 0xff;
784
785 if (low == RATE_INVALID)
786 low = scale_idx;
787
788out:
789 return il4965_rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
790}
791
792
793
794
795static bool
796il4965_table_type_matches(struct il_scale_tbl_info *a,
797 struct il_scale_tbl_info *b)
798{
799 return (a->lq_type == b->lq_type && a->ant_type == b->ant_type &&
800 a->is_SGI == b->is_SGI);
801}
802
803
804
805
806static void
807il4965_rs_tx_status(void *il_r, struct ieee80211_supported_band *sband,
808 struct ieee80211_sta *sta, void *il_sta,
809 struct sk_buff *skb)
810{
811 int legacy_success;
812 int retries;
813 int rs_idx, mac_idx, i;
814 struct il_lq_sta *lq_sta = il_sta;
815 struct il_link_quality_cmd *table;
816 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
817 struct il_priv *il = (struct il_priv *)il_r;
818 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
819 enum mac80211_rate_control_flags mac_flags;
820 u32 tx_rate;
821 struct il_scale_tbl_info tbl_type;
822 struct il_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
823
824 D_RATE("get frame ack response, update rate scale win\n");
825
826
827 if (!lq_sta) {
828 D_RATE("Station rate scaling not created yet.\n");
829 return;
830 } else if (!lq_sta->drv) {
831 D_RATE("Rate scaling not initialized yet.\n");
832 return;
833 }
834
835 if (!ieee80211_is_data(hdr->frame_control) ||
836 (info->flags & IEEE80211_TX_CTL_NO_ACK))
837 return;
838
839
840 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
841 !(info->flags & IEEE80211_TX_STAT_AMPDU))
842 return;
843
844
845
846
847
848
849
850
851
852 table = &lq_sta->lq;
853 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
854 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type, &rs_idx);
855 if (il->band == IEEE80211_BAND_5GHZ)
856 rs_idx -= IL_FIRST_OFDM_RATE;
857 mac_flags = info->status.rates[0].flags;
858 mac_idx = info->status.rates[0].idx;
859
860 if (mac_flags & IEEE80211_TX_RC_MCS) {
861 mac_idx &= RATE_MCS_CODE_MSK;
862 if (mac_idx >= (RATE_9M_IDX - IL_FIRST_OFDM_RATE))
863 mac_idx++;
864
865
866
867
868 if (il->band == IEEE80211_BAND_2GHZ)
869 mac_idx += IL_FIRST_OFDM_RATE;
870 }
871
872 if (mac_idx < 0 ||
873 tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI) ||
874 tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ||
875 tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA) ||
876 tbl_type.ant_type != info->status.antenna ||
877 !!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)
878 || !!(tx_rate & RATE_MCS_GF_MSK) !=
879 !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD) || rs_idx != mac_idx) {
880 D_RATE("initial rate %d does not match %d (0x%x)\n", mac_idx,
881 rs_idx, tx_rate);
882
883
884
885
886
887 lq_sta->missed_rate_counter++;
888 if (lq_sta->missed_rate_counter > IL_MISSED_RATE_MAX) {
889 lq_sta->missed_rate_counter = 0;
890 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
891 }
892
893 return;
894 } else
895
896 lq_sta->missed_rate_counter = 0;
897
898
899 if (il4965_table_type_matches
900 (&tbl_type, &(lq_sta->lq_info[lq_sta->active_tbl]))) {
901 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
902 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
903 } else
904 if (il4965_table_type_matches
905 (&tbl_type, &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
906 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
907 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
908 } else {
909 D_RATE("Neither active nor search matches tx rate\n");
910 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
911 D_RATE("active- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
912 tmp_tbl->ant_type, tmp_tbl->is_SGI);
913 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
914 D_RATE("search- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
915 tmp_tbl->ant_type, tmp_tbl->is_SGI);
916 D_RATE("actual- lq:%x, ant:%x, SGI:%d\n", tbl_type.lq_type,
917 tbl_type.ant_type, tbl_type.is_SGI);
918
919
920
921
922 il4965_rs_stay_in_table(lq_sta, true);
923 goto done;
924 }
925
926
927
928
929
930
931
932
933 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
934 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
935 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type,
936 &rs_idx);
937 il4965_rs_collect_tx_data(curr_tbl, rs_idx,
938 info->status.ampdu_len,
939 info->status.ampdu_ack_len);
940
941
942 if (lq_sta->stay_in_tbl) {
943 lq_sta->total_success += info->status.ampdu_ack_len;
944 lq_sta->total_failed +=
945 (info->status.ampdu_len -
946 info->status.ampdu_ack_len);
947 }
948 } else {
949
950
951
952 retries = info->status.rates[0].count - 1;
953
954 retries = min(retries, 15);
955
956
957 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
958
959 for (i = 0; i <= retries; ++i) {
960 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
961 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band,
962 &tbl_type, &rs_idx);
963
964
965
966
967 if (il4965_table_type_matches(&tbl_type, curr_tbl))
968 tmp_tbl = curr_tbl;
969 else if (il4965_table_type_matches
970 (&tbl_type, other_tbl))
971 tmp_tbl = other_tbl;
972 else
973 continue;
974 il4965_rs_collect_tx_data(tmp_tbl, rs_idx, 1,
975 i <
976 retries ? 0 : legacy_success);
977 }
978
979
980 if (lq_sta->stay_in_tbl) {
981 lq_sta->total_success += legacy_success;
982 lq_sta->total_failed += retries + (1 - legacy_success);
983 }
984 }
985
986 lq_sta->last_rate_n_flags = tx_rate;
987done:
988
989 if (sta->supp_rates[sband->band])
990 il4965_rs_rate_scale_perform(il, skb, sta, lq_sta);
991}
992
993
994
995
996
997
998
999
1000
1001static void
1002il4965_rs_set_stay_in_table(struct il_priv *il, u8 is_legacy,
1003 struct il_lq_sta *lq_sta)
1004{
1005 D_RATE("we are staying in the same table\n");
1006 lq_sta->stay_in_tbl = 1;
1007 if (is_legacy) {
1008 lq_sta->table_count_limit = IL_LEGACY_TBL_COUNT;
1009 lq_sta->max_failure_limit = IL_LEGACY_FAILURE_LIMIT;
1010 lq_sta->max_success_limit = IL_LEGACY_SUCCESS_LIMIT;
1011 } else {
1012 lq_sta->table_count_limit = IL_NONE_LEGACY_TBL_COUNT;
1013 lq_sta->max_failure_limit = IL_NONE_LEGACY_FAILURE_LIMIT;
1014 lq_sta->max_success_limit = IL_NONE_LEGACY_SUCCESS_LIMIT;
1015 }
1016 lq_sta->table_count = 0;
1017 lq_sta->total_failed = 0;
1018 lq_sta->total_success = 0;
1019 lq_sta->flush_timer = jiffies;
1020 lq_sta->action_counter = 0;
1021}
1022
1023
1024
1025
1026static void
1027il4965_rs_set_expected_tpt_table(struct il_lq_sta *lq_sta,
1028 struct il_scale_tbl_info *tbl)
1029{
1030
1031 s32(*ht_tbl_pointer)[RATE_COUNT];
1032
1033
1034 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1035 tbl->expected_tpt = expected_tpt_legacy;
1036 return;
1037 }
1038
1039
1040 if (is_legacy(tbl->lq_type)) {
1041 tbl->expected_tpt = expected_tpt_legacy;
1042 return;
1043 }
1044
1045
1046
1047
1048 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1049 ht_tbl_pointer = expected_tpt_siso20MHz;
1050 else if (is_siso(tbl->lq_type))
1051 ht_tbl_pointer = expected_tpt_siso40MHz;
1052 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1053 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1054 else
1055 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1056
1057 if (!tbl->is_SGI && !lq_sta->is_agg)
1058 tbl->expected_tpt = ht_tbl_pointer[0];
1059 else if (tbl->is_SGI && !lq_sta->is_agg)
1060 tbl->expected_tpt = ht_tbl_pointer[1];
1061 else if (!tbl->is_SGI && lq_sta->is_agg)
1062 tbl->expected_tpt = ht_tbl_pointer[2];
1063 else
1064 tbl->expected_tpt = ht_tbl_pointer[3];
1065}
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079static s32
1080il4965_rs_get_best_rate(struct il_priv *il, struct il_lq_sta *lq_sta,
1081 struct il_scale_tbl_info *tbl,
1082 u16 rate_mask, s8 idx)
1083{
1084
1085 struct il_scale_tbl_info *active_tbl =
1086 &(lq_sta->lq_info[lq_sta->active_tbl]);
1087 s32 active_sr = active_tbl->win[idx].success_ratio;
1088 s32 active_tpt = active_tbl->expected_tpt[idx];
1089
1090
1091 s32 *tpt_tbl = tbl->expected_tpt;
1092
1093 s32 new_rate, high, low, start_hi;
1094 u16 high_low;
1095 s8 rate = idx;
1096
1097 new_rate = high = low = start_hi = RATE_INVALID;
1098
1099 for (;;) {
1100 high_low =
1101 il4965_rs_get_adjacent_rate(il, rate, rate_mask,
1102 tbl->lq_type);
1103
1104 low = high_low & 0xff;
1105 high = (high_low >> 8) & 0xff;
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122 if ((100 * tpt_tbl[rate] > lq_sta->last_tpt &&
1123 (active_sr > RATE_DECREASE_TH && active_sr <= RATE_HIGH_TH
1124 && tpt_tbl[rate] <= active_tpt)) ||
1125 (active_sr >= RATE_SCALE_SWITCH &&
1126 tpt_tbl[rate] > active_tpt)) {
1127
1128
1129
1130
1131 if (start_hi != RATE_INVALID) {
1132 new_rate = start_hi;
1133 break;
1134 }
1135
1136 new_rate = rate;
1137
1138
1139 if (low != RATE_INVALID)
1140 rate = low;
1141
1142
1143 else
1144 break;
1145
1146
1147 } else {
1148
1149
1150
1151 if (new_rate != RATE_INVALID)
1152 break;
1153
1154
1155 else if (high != RATE_INVALID) {
1156 start_hi = high;
1157 rate = high;
1158
1159
1160 } else {
1161 new_rate = rate;
1162 break;
1163 }
1164 }
1165 }
1166
1167 return new_rate;
1168}
1169
1170
1171
1172
1173static int
1174il4965_rs_switch_to_mimo2(struct il_priv *il, struct il_lq_sta *lq_sta,
1175 struct ieee80211_conf *conf,
1176 struct ieee80211_sta *sta,
1177 struct il_scale_tbl_info *tbl, int idx)
1178{
1179 u16 rate_mask;
1180 s32 rate;
1181 s8 is_green = lq_sta->is_green;
1182
1183 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1184 return -1;
1185
1186 if (sta->smps_mode == IEEE80211_SMPS_STATIC)
1187 return -1;
1188
1189
1190 if (il->hw_params.tx_chains_num < 2)
1191 return -1;
1192
1193 D_RATE("LQ: try to switch to MIMO2\n");
1194
1195 tbl->lq_type = LQ_MIMO2;
1196 tbl->is_dup = lq_sta->is_dup;
1197 tbl->action = 0;
1198 tbl->max_search = IL_MAX_SEARCH;
1199 rate_mask = lq_sta->active_mimo2_rate;
1200
1201 if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
1202 tbl->is_ht40 = 1;
1203 else
1204 tbl->is_ht40 = 0;
1205
1206 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
1207
1208 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
1209
1210 D_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
1211 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
1212 D_RATE("Can't switch with idx %d rate mask %x\n", rate,
1213 rate_mask);
1214 return -1;
1215 }
1216 tbl->current_rate =
1217 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
1218
1219 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1220 is_green);
1221 return 0;
1222}
1223
1224
1225
1226
1227static int
1228il4965_rs_switch_to_siso(struct il_priv *il, struct il_lq_sta *lq_sta,
1229 struct ieee80211_conf *conf, struct ieee80211_sta *sta,
1230 struct il_scale_tbl_info *tbl, int idx)
1231{
1232 u16 rate_mask;
1233 u8 is_green = lq_sta->is_green;
1234 s32 rate;
1235
1236 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1237 return -1;
1238
1239 D_RATE("LQ: try to switch to SISO\n");
1240
1241 tbl->is_dup = lq_sta->is_dup;
1242 tbl->lq_type = LQ_SISO;
1243 tbl->action = 0;
1244 tbl->max_search = IL_MAX_SEARCH;
1245 rate_mask = lq_sta->active_siso_rate;
1246
1247 if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
1248 tbl->is_ht40 = 1;
1249 else
1250 tbl->is_ht40 = 0;
1251
1252 if (is_green)
1253 tbl->is_SGI = 0;
1254
1255 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
1256 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
1257
1258 D_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
1259 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
1260 D_RATE("can not switch with idx %d rate mask %x\n", rate,
1261 rate_mask);
1262 return -1;
1263 }
1264 tbl->current_rate =
1265 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
1266 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1267 is_green);
1268 return 0;
1269}
1270
1271
1272
1273
1274static int
1275il4965_rs_move_legacy_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1276 struct ieee80211_conf *conf,
1277 struct ieee80211_sta *sta, int idx)
1278{
1279 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1280 struct il_scale_tbl_info *search_tbl =
1281 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1282 struct il_rate_scale_data *win = &(tbl->win[idx]);
1283 u32 sz =
1284 (sizeof(struct il_scale_tbl_info) -
1285 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1286 u8 start_action;
1287 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1288 u8 tx_chains_num = il->hw_params.tx_chains_num;
1289 int ret = 0;
1290 u8 update_search_tbl_counter = 0;
1291
1292 tbl->action = IL_LEGACY_SWITCH_SISO;
1293
1294 start_action = tbl->action;
1295 for (;;) {
1296 lq_sta->action_counter++;
1297 switch (tbl->action) {
1298 case IL_LEGACY_SWITCH_ANTENNA1:
1299 case IL_LEGACY_SWITCH_ANTENNA2:
1300 D_RATE("LQ: Legacy toggle Antenna\n");
1301
1302 if ((tbl->action == IL_LEGACY_SWITCH_ANTENNA1 &&
1303 tx_chains_num <= 1) ||
1304 (tbl->action == IL_LEGACY_SWITCH_ANTENNA2 &&
1305 tx_chains_num <= 2))
1306 break;
1307
1308
1309 if (win->success_ratio >= IL_RS_GOOD_RATIO)
1310 break;
1311
1312
1313 memcpy(search_tbl, tbl, sz);
1314
1315 if (il4965_rs_toggle_antenna
1316 (valid_tx_ant, &search_tbl->current_rate,
1317 search_tbl)) {
1318 update_search_tbl_counter = 1;
1319 il4965_rs_set_expected_tpt_table(lq_sta,
1320 search_tbl);
1321 goto out;
1322 }
1323 break;
1324 case IL_LEGACY_SWITCH_SISO:
1325 D_RATE("LQ: Legacy switch to SISO\n");
1326
1327
1328 memcpy(search_tbl, tbl, sz);
1329 search_tbl->is_SGI = 0;
1330 ret =
1331 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1332 search_tbl, idx);
1333 if (!ret) {
1334 lq_sta->action_counter = 0;
1335 goto out;
1336 }
1337
1338 break;
1339 case IL_LEGACY_SWITCH_MIMO2_AB:
1340 case IL_LEGACY_SWITCH_MIMO2_AC:
1341 case IL_LEGACY_SWITCH_MIMO2_BC:
1342 D_RATE("LQ: Legacy switch to MIMO2\n");
1343
1344
1345 memcpy(search_tbl, tbl, sz);
1346 search_tbl->is_SGI = 0;
1347
1348 if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AB)
1349 search_tbl->ant_type = ANT_AB;
1350 else if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AC)
1351 search_tbl->ant_type = ANT_AC;
1352 else
1353 search_tbl->ant_type = ANT_BC;
1354
1355 if (!il4965_rs_is_valid_ant
1356 (valid_tx_ant, search_tbl->ant_type))
1357 break;
1358
1359 ret =
1360 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1361 search_tbl, idx);
1362 if (!ret) {
1363 lq_sta->action_counter = 0;
1364 goto out;
1365 }
1366 break;
1367 }
1368 tbl->action++;
1369 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1370 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
1371
1372 if (tbl->action == start_action)
1373 break;
1374
1375 }
1376 search_tbl->lq_type = LQ_NONE;
1377 return 0;
1378
1379out:
1380 lq_sta->search_better_tbl = 1;
1381 tbl->action++;
1382 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1383 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
1384 if (update_search_tbl_counter)
1385 search_tbl->action = tbl->action;
1386 return 0;
1387
1388}
1389
1390
1391
1392
1393static int
1394il4965_rs_move_siso_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1395 struct ieee80211_conf *conf,
1396 struct ieee80211_sta *sta, int idx)
1397{
1398 u8 is_green = lq_sta->is_green;
1399 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1400 struct il_scale_tbl_info *search_tbl =
1401 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1402 struct il_rate_scale_data *win = &(tbl->win[idx]);
1403 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
1404 u32 sz =
1405 (sizeof(struct il_scale_tbl_info) -
1406 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1407 u8 start_action;
1408 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1409 u8 tx_chains_num = il->hw_params.tx_chains_num;
1410 u8 update_search_tbl_counter = 0;
1411 int ret;
1412
1413 start_action = tbl->action;
1414
1415 for (;;) {
1416 lq_sta->action_counter++;
1417 switch (tbl->action) {
1418 case IL_SISO_SWITCH_ANTENNA1:
1419 case IL_SISO_SWITCH_ANTENNA2:
1420 D_RATE("LQ: SISO toggle Antenna\n");
1421 if ((tbl->action == IL_SISO_SWITCH_ANTENNA1 &&
1422 tx_chains_num <= 1) ||
1423 (tbl->action == IL_SISO_SWITCH_ANTENNA2 &&
1424 tx_chains_num <= 2))
1425 break;
1426
1427 if (win->success_ratio >= IL_RS_GOOD_RATIO)
1428 break;
1429
1430 memcpy(search_tbl, tbl, sz);
1431 if (il4965_rs_toggle_antenna
1432 (valid_tx_ant, &search_tbl->current_rate,
1433 search_tbl)) {
1434 update_search_tbl_counter = 1;
1435 goto out;
1436 }
1437 break;
1438 case IL_SISO_SWITCH_MIMO2_AB:
1439 case IL_SISO_SWITCH_MIMO2_AC:
1440 case IL_SISO_SWITCH_MIMO2_BC:
1441 D_RATE("LQ: SISO switch to MIMO2\n");
1442 memcpy(search_tbl, tbl, sz);
1443 search_tbl->is_SGI = 0;
1444
1445 if (tbl->action == IL_SISO_SWITCH_MIMO2_AB)
1446 search_tbl->ant_type = ANT_AB;
1447 else if (tbl->action == IL_SISO_SWITCH_MIMO2_AC)
1448 search_tbl->ant_type = ANT_AC;
1449 else
1450 search_tbl->ant_type = ANT_BC;
1451
1452 if (!il4965_rs_is_valid_ant
1453 (valid_tx_ant, search_tbl->ant_type))
1454 break;
1455
1456 ret =
1457 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1458 search_tbl, idx);
1459 if (!ret)
1460 goto out;
1461 break;
1462 case IL_SISO_SWITCH_GI:
1463 if (!tbl->is_ht40 &&
1464 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
1465 break;
1466 if (tbl->is_ht40 &&
1467 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
1468 break;
1469
1470 D_RATE("LQ: SISO toggle SGI/NGI\n");
1471
1472 memcpy(search_tbl, tbl, sz);
1473 if (is_green) {
1474 if (!tbl->is_SGI)
1475 break;
1476 else
1477 IL_ERR("SGI was set in GF+SISO\n");
1478 }
1479 search_tbl->is_SGI = !tbl->is_SGI;
1480 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
1481 if (tbl->is_SGI) {
1482 s32 tpt = lq_sta->last_tpt / 100;
1483 if (tpt >= search_tbl->expected_tpt[idx])
1484 break;
1485 }
1486 search_tbl->current_rate =
1487 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1488 is_green);
1489 update_search_tbl_counter = 1;
1490 goto out;
1491 }
1492 tbl->action++;
1493 if (tbl->action > IL_SISO_SWITCH_GI)
1494 tbl->action = IL_SISO_SWITCH_ANTENNA1;
1495
1496 if (tbl->action == start_action)
1497 break;
1498 }
1499 search_tbl->lq_type = LQ_NONE;
1500 return 0;
1501
1502out:
1503 lq_sta->search_better_tbl = 1;
1504 tbl->action++;
1505 if (tbl->action > IL_SISO_SWITCH_GI)
1506 tbl->action = IL_SISO_SWITCH_ANTENNA1;
1507 if (update_search_tbl_counter)
1508 search_tbl->action = tbl->action;
1509
1510 return 0;
1511}
1512
1513
1514
1515
1516static int
1517il4965_rs_move_mimo2_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1518 struct ieee80211_conf *conf,
1519 struct ieee80211_sta *sta, int idx)
1520{
1521 s8 is_green = lq_sta->is_green;
1522 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1523 struct il_scale_tbl_info *search_tbl =
1524 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1525 struct il_rate_scale_data *win = &(tbl->win[idx]);
1526 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
1527 u32 sz =
1528 (sizeof(struct il_scale_tbl_info) -
1529 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1530 u8 start_action;
1531 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1532 u8 tx_chains_num = il->hw_params.tx_chains_num;
1533 u8 update_search_tbl_counter = 0;
1534 int ret;
1535
1536 start_action = tbl->action;
1537 for (;;) {
1538 lq_sta->action_counter++;
1539 switch (tbl->action) {
1540 case IL_MIMO2_SWITCH_ANTENNA1:
1541 case IL_MIMO2_SWITCH_ANTENNA2:
1542 D_RATE("LQ: MIMO2 toggle Antennas\n");
1543
1544 if (tx_chains_num <= 2)
1545 break;
1546
1547 if (win->success_ratio >= IL_RS_GOOD_RATIO)
1548 break;
1549
1550 memcpy(search_tbl, tbl, sz);
1551 if (il4965_rs_toggle_antenna
1552 (valid_tx_ant, &search_tbl->current_rate,
1553 search_tbl)) {
1554 update_search_tbl_counter = 1;
1555 goto out;
1556 }
1557 break;
1558 case IL_MIMO2_SWITCH_SISO_A:
1559 case IL_MIMO2_SWITCH_SISO_B:
1560 case IL_MIMO2_SWITCH_SISO_C:
1561 D_RATE("LQ: MIMO2 switch to SISO\n");
1562
1563
1564 memcpy(search_tbl, tbl, sz);
1565
1566 if (tbl->action == IL_MIMO2_SWITCH_SISO_A)
1567 search_tbl->ant_type = ANT_A;
1568 else if (tbl->action == IL_MIMO2_SWITCH_SISO_B)
1569 search_tbl->ant_type = ANT_B;
1570 else
1571 search_tbl->ant_type = ANT_C;
1572
1573 if (!il4965_rs_is_valid_ant
1574 (valid_tx_ant, search_tbl->ant_type))
1575 break;
1576
1577 ret =
1578 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1579 search_tbl, idx);
1580 if (!ret)
1581 goto out;
1582
1583 break;
1584
1585 case IL_MIMO2_SWITCH_GI:
1586 if (!tbl->is_ht40 &&
1587 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
1588 break;
1589 if (tbl->is_ht40 &&
1590 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
1591 break;
1592
1593 D_RATE("LQ: MIMO2 toggle SGI/NGI\n");
1594
1595
1596 memcpy(search_tbl, tbl, sz);
1597 search_tbl->is_SGI = !tbl->is_SGI;
1598 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
1599
1600
1601
1602
1603
1604
1605 if (tbl->is_SGI) {
1606 s32 tpt = lq_sta->last_tpt / 100;
1607 if (tpt >= search_tbl->expected_tpt[idx])
1608 break;
1609 }
1610 search_tbl->current_rate =
1611 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1612 is_green);
1613 update_search_tbl_counter = 1;
1614 goto out;
1615
1616 }
1617 tbl->action++;
1618 if (tbl->action > IL_MIMO2_SWITCH_GI)
1619 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
1620
1621 if (tbl->action == start_action)
1622 break;
1623 }
1624 search_tbl->lq_type = LQ_NONE;
1625 return 0;
1626out:
1627 lq_sta->search_better_tbl = 1;
1628 tbl->action++;
1629 if (tbl->action > IL_MIMO2_SWITCH_GI)
1630 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
1631 if (update_search_tbl_counter)
1632 search_tbl->action = tbl->action;
1633
1634 return 0;
1635
1636}
1637
1638
1639
1640
1641
1642
1643
1644
1645static void
1646il4965_rs_stay_in_table(struct il_lq_sta *lq_sta, bool force_search)
1647{
1648 struct il_scale_tbl_info *tbl;
1649 int i;
1650 int active_tbl;
1651 int flush_interval_passed = 0;
1652 struct il_priv *il;
1653
1654 il = lq_sta->drv;
1655 active_tbl = lq_sta->active_tbl;
1656
1657 tbl = &(lq_sta->lq_info[active_tbl]);
1658
1659
1660 if (lq_sta->stay_in_tbl) {
1661
1662
1663 if (lq_sta->flush_timer)
1664 flush_interval_passed =
1665 time_after(jiffies,
1666 (unsigned long)(lq_sta->flush_timer +
1667 RATE_SCALE_FLUSH_INTVL));
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677 if (force_search ||
1678 lq_sta->total_failed > lq_sta->max_failure_limit ||
1679 lq_sta->total_success > lq_sta->max_success_limit ||
1680 (!lq_sta->search_better_tbl && lq_sta->flush_timer &&
1681 flush_interval_passed)) {
1682 D_RATE("LQ: stay is expired %d %d %d\n:",
1683 lq_sta->total_failed, lq_sta->total_success,
1684 flush_interval_passed);
1685
1686
1687 lq_sta->stay_in_tbl = 0;
1688 lq_sta->total_failed = 0;
1689 lq_sta->total_success = 0;
1690 lq_sta->flush_timer = 0;
1691
1692
1693
1694
1695
1696
1697
1698 } else {
1699 lq_sta->table_count++;
1700 if (lq_sta->table_count >= lq_sta->table_count_limit) {
1701 lq_sta->table_count = 0;
1702
1703 D_RATE("LQ: stay in table clear win\n");
1704 for (i = 0; i < RATE_COUNT; i++)
1705 il4965_rs_rate_scale_clear_win(&
1706 (tbl->
1707 win
1708 [i]));
1709 }
1710 }
1711
1712
1713
1714
1715 if (!lq_sta->stay_in_tbl) {
1716 for (i = 0; i < RATE_COUNT; i++)
1717 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
1718 }
1719 }
1720}
1721
1722
1723
1724
1725static void
1726il4965_rs_update_rate_tbl(struct il_priv *il, struct il_lq_sta *lq_sta,
1727 struct il_scale_tbl_info *tbl, int idx, u8 is_green)
1728{
1729 u32 rate;
1730
1731
1732 rate = il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
1733 il4965_rs_fill_link_cmd(il, lq_sta, rate);
1734 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
1735}
1736
1737
1738
1739
1740static void
1741il4965_rs_rate_scale_perform(struct il_priv *il, struct sk_buff *skb,
1742 struct ieee80211_sta *sta,
1743 struct il_lq_sta *lq_sta)
1744{
1745 struct ieee80211_hw *hw = il->hw;
1746 struct ieee80211_conf *conf = &hw->conf;
1747 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1748 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1749 int low = RATE_INVALID;
1750 int high = RATE_INVALID;
1751 int idx;
1752 int i;
1753 struct il_rate_scale_data *win = NULL;
1754 int current_tpt = IL_INVALID_VALUE;
1755 int low_tpt = IL_INVALID_VALUE;
1756 int high_tpt = IL_INVALID_VALUE;
1757 u32 fail_count;
1758 s8 scale_action = 0;
1759 u16 rate_mask;
1760 u8 update_lq = 0;
1761 struct il_scale_tbl_info *tbl, *tbl1;
1762 u16 rate_scale_idx_msk = 0;
1763 u8 is_green = 0;
1764 u8 active_tbl = 0;
1765 u8 done_search = 0;
1766 u16 high_low;
1767 s32 sr;
1768 u8 tid = MAX_TID_COUNT;
1769 struct il_tid_data *tid_data;
1770
1771 D_RATE("rate scale calculate new rate for skb\n");
1772
1773
1774
1775 if (!ieee80211_is_data(hdr->frame_control) ||
1776 (info->flags & IEEE80211_TX_CTL_NO_ACK))
1777 return;
1778
1779 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
1780
1781 tid = il4965_rs_tl_add_packet(lq_sta, hdr);
1782 if (tid != MAX_TID_COUNT && (lq_sta->tx_agg_tid_en & (1 << tid))) {
1783 tid_data = &il->stations[lq_sta->lq.sta_id].tid[tid];
1784 if (tid_data->agg.state == IL_AGG_OFF)
1785 lq_sta->is_agg = 0;
1786 else
1787 lq_sta->is_agg = 1;
1788 } else
1789 lq_sta->is_agg = 0;
1790
1791
1792
1793
1794
1795
1796 if (!lq_sta->search_better_tbl)
1797 active_tbl = lq_sta->active_tbl;
1798 else
1799 active_tbl = 1 - lq_sta->active_tbl;
1800
1801 tbl = &(lq_sta->lq_info[active_tbl]);
1802 if (is_legacy(tbl->lq_type))
1803 lq_sta->is_green = 0;
1804 else
1805 lq_sta->is_green = il4965_rs_use_green(il, sta);
1806 is_green = lq_sta->is_green;
1807
1808
1809 idx = lq_sta->last_txrate_idx;
1810
1811 D_RATE("Rate scale idx %d for type %d\n", idx, tbl->lq_type);
1812
1813
1814 rate_mask = il4965_rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
1815
1816 D_RATE("mask 0x%04X\n", rate_mask);
1817
1818
1819 if (is_legacy(tbl->lq_type)) {
1820 if (lq_sta->band == IEEE80211_BAND_5GHZ)
1821
1822 rate_scale_idx_msk =
1823 (u16) (rate_mask &
1824 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
1825 else
1826 rate_scale_idx_msk =
1827 (u16) (rate_mask & lq_sta->supp_rates);
1828
1829 } else
1830 rate_scale_idx_msk = rate_mask;
1831
1832 if (!rate_scale_idx_msk)
1833 rate_scale_idx_msk = rate_mask;
1834
1835 if (!((1 << idx) & rate_scale_idx_msk)) {
1836 IL_ERR("Current Rate is not valid\n");
1837 if (lq_sta->search_better_tbl) {
1838
1839 tbl->lq_type = LQ_NONE;
1840 lq_sta->search_better_tbl = 0;
1841 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1842
1843 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
1844 il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx,
1845 is_green);
1846 }
1847 return;
1848 }
1849
1850
1851 if (!tbl->expected_tpt) {
1852 IL_ERR("tbl->expected_tpt is NULL\n");
1853 return;
1854 }
1855
1856
1857 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < idx) {
1858 idx = lq_sta->max_rate_idx;
1859 update_lq = 1;
1860 win = &(tbl->win[idx]);
1861 goto lq_update;
1862 }
1863
1864 win = &(tbl->win[idx]);
1865
1866
1867
1868
1869
1870
1871
1872
1873 fail_count = win->counter - win->success_counter;
1874 if (fail_count < RATE_MIN_FAILURE_TH &&
1875 win->success_counter < RATE_MIN_SUCCESS_TH) {
1876 D_RATE("LQ: still below TH. succ=%d total=%d " "for idx %d\n",
1877 win->success_counter, win->counter, idx);
1878
1879
1880 win->average_tpt = IL_INVALID_VALUE;
1881
1882
1883
1884 il4965_rs_stay_in_table(lq_sta, false);
1885
1886 goto out;
1887 }
1888
1889
1890 if (win->average_tpt !=
1891 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128)) {
1892 IL_ERR("expected_tpt should have been calculated by now\n");
1893 win->average_tpt =
1894 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128);
1895 }
1896
1897
1898 if (lq_sta->search_better_tbl) {
1899
1900
1901
1902 if (win->average_tpt > lq_sta->last_tpt) {
1903
1904 D_RATE("LQ: SWITCHING TO NEW TBL "
1905 "suc=%d cur-tpt=%d old-tpt=%d\n",
1906 win->success_ratio, win->average_tpt,
1907 lq_sta->last_tpt);
1908
1909 if (!is_legacy(tbl->lq_type))
1910 lq_sta->enable_counter = 1;
1911
1912
1913 lq_sta->active_tbl = active_tbl;
1914 current_tpt = win->average_tpt;
1915
1916
1917 } else {
1918
1919 D_RATE("LQ: GOING BACK TO THE OLD TBL "
1920 "suc=%d cur-tpt=%d old-tpt=%d\n",
1921 win->success_ratio, win->average_tpt,
1922 lq_sta->last_tpt);
1923
1924
1925 tbl->lq_type = LQ_NONE;
1926
1927
1928 active_tbl = lq_sta->active_tbl;
1929 tbl = &(lq_sta->lq_info[active_tbl]);
1930
1931
1932 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
1933 current_tpt = lq_sta->last_tpt;
1934
1935
1936 update_lq = 1;
1937 }
1938
1939
1940
1941 lq_sta->search_better_tbl = 0;
1942 done_search = 1;
1943 goto lq_update;
1944 }
1945
1946
1947
1948 high_low =
1949 il4965_rs_get_adjacent_rate(il, idx, rate_scale_idx_msk,
1950 tbl->lq_type);
1951 low = high_low & 0xff;
1952 high = (high_low >> 8) & 0xff;
1953
1954
1955 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < high)
1956 high = RATE_INVALID;
1957
1958 sr = win->success_ratio;
1959
1960
1961 current_tpt = win->average_tpt;
1962 if (low != RATE_INVALID)
1963 low_tpt = tbl->win[low].average_tpt;
1964 if (high != RATE_INVALID)
1965 high_tpt = tbl->win[high].average_tpt;
1966
1967 scale_action = 0;
1968
1969
1970 if (sr <= RATE_DECREASE_TH || current_tpt == 0) {
1971 D_RATE("decrease rate because of low success_ratio\n");
1972 scale_action = -1;
1973
1974
1975 } else if (low_tpt == IL_INVALID_VALUE && high_tpt == IL_INVALID_VALUE) {
1976
1977 if (high != RATE_INVALID && sr >= RATE_INCREASE_TH)
1978 scale_action = 1;
1979 else if (low != RATE_INVALID)
1980 scale_action = 0;
1981 }
1982
1983
1984
1985 else if (low_tpt != IL_INVALID_VALUE && high_tpt != IL_INVALID_VALUE &&
1986 low_tpt < current_tpt && high_tpt < current_tpt)
1987 scale_action = 0;
1988
1989
1990
1991 else {
1992
1993 if (high_tpt != IL_INVALID_VALUE) {
1994
1995 if (high_tpt > current_tpt && sr >= RATE_INCREASE_TH)
1996 scale_action = 1;
1997 else
1998 scale_action = 0;
1999
2000
2001 } else if (low_tpt != IL_INVALID_VALUE) {
2002
2003 if (low_tpt > current_tpt) {
2004 D_RATE("decrease rate because of low tpt\n");
2005 scale_action = -1;
2006 } else if (sr >= RATE_INCREASE_TH) {
2007 scale_action = 1;
2008 }
2009 }
2010 }
2011
2012
2013
2014 if (scale_action == -1 && low != RATE_INVALID &&
2015 (sr > RATE_HIGH_TH || current_tpt > 100 * tbl->expected_tpt[low]))
2016 scale_action = 0;
2017
2018 switch (scale_action) {
2019 case -1:
2020
2021 if (low != RATE_INVALID) {
2022 update_lq = 1;
2023 idx = low;
2024 }
2025
2026 break;
2027 case 1:
2028
2029 if (high != RATE_INVALID) {
2030 update_lq = 1;
2031 idx = high;
2032 }
2033
2034 break;
2035 case 0:
2036
2037 default:
2038 break;
2039 }
2040
2041 D_RATE("choose rate scale idx %d action %d low %d " "high %d type %d\n",
2042 idx, scale_action, low, high, tbl->lq_type);
2043
2044lq_update:
2045
2046 if (update_lq)
2047 il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx, is_green);
2048
2049
2050
2051 il4965_rs_stay_in_table(lq_sta, false);
2052
2053
2054
2055
2056
2057
2058
2059 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && win->counter) {
2060
2061 lq_sta->last_tpt = current_tpt;
2062
2063
2064
2065 if (is_legacy(tbl->lq_type))
2066 il4965_rs_move_legacy_other(il, lq_sta, conf, sta, idx);
2067 else if (is_siso(tbl->lq_type))
2068 il4965_rs_move_siso_to_other(il, lq_sta, conf, sta,
2069 idx);
2070 else
2071 il4965_rs_move_mimo2_to_other(il, lq_sta, conf, sta,
2072 idx);
2073
2074
2075 if (lq_sta->search_better_tbl) {
2076
2077 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
2078 for (i = 0; i < RATE_COUNT; i++)
2079 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
2080
2081
2082 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
2083
2084 D_RATE("Switch current mcs: %X idx: %d\n",
2085 tbl->current_rate, idx);
2086 il4965_rs_fill_link_cmd(il, lq_sta, tbl->current_rate);
2087 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
2088 } else
2089 done_search = 1;
2090 }
2091
2092 if (done_search && !lq_sta->stay_in_tbl) {
2093
2094
2095
2096
2097
2098 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
2099 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
2100 lq_sta->action_counter > tbl1->max_search) {
2101 D_RATE("LQ: STAY in legacy table\n");
2102 il4965_rs_set_stay_in_table(il, 1, lq_sta);
2103 }
2104
2105
2106
2107
2108 if (lq_sta->enable_counter &&
2109 lq_sta->action_counter >= tbl1->max_search) {
2110 if (lq_sta->last_tpt > IL_AGG_TPT_THREHOLD &&
2111 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2112 tid != MAX_TID_COUNT) {
2113 tid_data =
2114 &il->stations[lq_sta->lq.sta_id].tid[tid];
2115 if (tid_data->agg.state == IL_AGG_OFF) {
2116 D_RATE("try to aggregate tid %d\n",
2117 tid);
2118 il4965_rs_tl_turn_on_agg(il, tid,
2119 lq_sta, sta);
2120 }
2121 }
2122 il4965_rs_set_stay_in_table(il, 0, lq_sta);
2123 }
2124 }
2125
2126out:
2127 tbl->current_rate =
2128 il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
2129 i = idx;
2130 lq_sta->last_txrate_idx = i;
2131}
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147static void
2148il4965_rs_initialize_lq(struct il_priv *il, struct ieee80211_conf *conf,
2149 struct ieee80211_sta *sta, struct il_lq_sta *lq_sta)
2150{
2151 struct il_scale_tbl_info *tbl;
2152 int rate_idx;
2153 int i;
2154 u32 rate;
2155 u8 use_green;
2156 u8 active_tbl = 0;
2157 u8 valid_tx_ant;
2158 struct il_station_priv *sta_priv;
2159
2160 if (!sta || !lq_sta)
2161 return;
2162
2163 use_green = il4965_rs_use_green(il, sta);
2164 sta_priv = (void *)sta->drv_priv;
2165
2166 i = lq_sta->last_txrate_idx;
2167
2168 valid_tx_ant = il->hw_params.valid_tx_ant;
2169
2170 if (!lq_sta->search_better_tbl)
2171 active_tbl = lq_sta->active_tbl;
2172 else
2173 active_tbl = 1 - lq_sta->active_tbl;
2174
2175 tbl = &(lq_sta->lq_info[active_tbl]);
2176
2177 if (i < 0 || i >= RATE_COUNT)
2178 i = 0;
2179
2180 rate = il_rates[i].plcp;
2181 tbl->ant_type = il4965_first_antenna(valid_tx_ant);
2182 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
2183
2184 if (i >= IL_FIRST_CCK_RATE && i <= IL_LAST_CCK_RATE)
2185 rate |= RATE_MCS_CCK_MSK;
2186
2187 il4965_rs_get_tbl_info_from_mcs(rate, il->band, tbl, &rate_idx);
2188 if (!il4965_rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2189 il4965_rs_toggle_antenna(valid_tx_ant, &rate, tbl);
2190
2191 rate = il4965_rate_n_flags_from_tbl(il, tbl, rate_idx, use_green);
2192 tbl->current_rate = rate;
2193 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
2194 il4965_rs_fill_link_cmd(NULL, lq_sta, rate);
2195 il->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2196 il_send_lq_cmd(il, &lq_sta->lq, CMD_SYNC, true);
2197}
2198
2199static void
2200il4965_rs_get_rate(void *il_r, struct ieee80211_sta *sta, void *il_sta,
2201 struct ieee80211_tx_rate_control *txrc)
2202{
2203
2204 struct sk_buff *skb = txrc->skb;
2205 struct ieee80211_supported_band *sband = txrc->sband;
2206 struct il_priv *il __maybe_unused = (struct il_priv *)il_r;
2207 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2208 struct il_lq_sta *lq_sta = il_sta;
2209 int rate_idx;
2210
2211 D_RATE("rate scale calculate new rate for skb\n");
2212
2213
2214 if (lq_sta) {
2215 lq_sta->max_rate_idx = txrc->max_rate_idx;
2216 if (sband->band == IEEE80211_BAND_5GHZ &&
2217 lq_sta->max_rate_idx != -1)
2218 lq_sta->max_rate_idx += IL_FIRST_OFDM_RATE;
2219 if (lq_sta->max_rate_idx < 0 ||
2220 lq_sta->max_rate_idx >= RATE_COUNT)
2221 lq_sta->max_rate_idx = -1;
2222 }
2223
2224
2225 if (lq_sta && !lq_sta->drv) {
2226 D_RATE("Rate scaling not initialized yet.\n");
2227 il_sta = NULL;
2228 }
2229
2230
2231 if (rate_control_send_low(sta, il_sta, txrc))
2232 return;
2233
2234 if (!lq_sta)
2235 return;
2236
2237 rate_idx = lq_sta->last_txrate_idx;
2238
2239 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
2240 rate_idx -= IL_FIRST_OFDM_RATE;
2241
2242 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2243 if (il4965_rs_extract_rate(lq_sta->last_rate_n_flags) >=
2244 RATE_MIMO2_6M_PLCP)
2245 rate_idx = rate_idx + MCS_IDX_PER_STREAM;
2246 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2247 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2248 info->control.rates[0].flags |=
2249 IEEE80211_TX_RC_SHORT_GI;
2250 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2251 info->control.rates[0].flags |=
2252 IEEE80211_TX_RC_DUP_DATA;
2253 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
2254 info->control.rates[0].flags |=
2255 IEEE80211_TX_RC_40_MHZ_WIDTH;
2256 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2257 info->control.rates[0].flags |=
2258 IEEE80211_TX_RC_GREEN_FIELD;
2259 } else {
2260
2261 if (rate_idx < 0 || rate_idx >= RATE_COUNT_LEGACY ||
2262 (sband->band == IEEE80211_BAND_5GHZ &&
2263 rate_idx < IL_FIRST_OFDM_RATE))
2264 rate_idx = rate_lowest_index(sband, sta);
2265
2266 else if (sband->band == IEEE80211_BAND_5GHZ)
2267 rate_idx -= IL_FIRST_OFDM_RATE;
2268 info->control.rates[0].flags = 0;
2269 }
2270 info->control.rates[0].idx = rate_idx;
2271 info->control.rates[0].count = 1;
2272}
2273
2274static void *
2275il4965_rs_alloc_sta(void *il_rate, struct ieee80211_sta *sta, gfp_t gfp)
2276{
2277 struct il_station_priv *sta_priv =
2278 (struct il_station_priv *)sta->drv_priv;
2279 struct il_priv *il;
2280
2281 il = (struct il_priv *)il_rate;
2282 D_RATE("create station rate scale win\n");
2283
2284 return &sta_priv->lq_sta;
2285}
2286
2287
2288
2289
2290void
2291il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id)
2292{
2293 int i, j;
2294 struct ieee80211_hw *hw = il->hw;
2295 struct ieee80211_conf *conf = &il->hw->conf;
2296 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
2297 struct il_station_priv *sta_priv;
2298 struct il_lq_sta *lq_sta;
2299 struct ieee80211_supported_band *sband;
2300
2301 sta_priv = (struct il_station_priv *)sta->drv_priv;
2302 lq_sta = &sta_priv->lq_sta;
2303 sband = hw->wiphy->bands[conf->chandef.chan->band];
2304
2305 lq_sta->lq.sta_id = sta_id;
2306
2307 for (j = 0; j < LQ_SIZE; j++)
2308 for (i = 0; i < RATE_COUNT; i++)
2309 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2310 win[i]);
2311
2312 lq_sta->flush_timer = 0;
2313 lq_sta->supp_rates = sta->supp_rates[sband->band];
2314 for (j = 0; j < LQ_SIZE; j++)
2315 for (i = 0; i < RATE_COUNT; i++)
2316 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2317 win[i]);
2318
2319 D_RATE("LQ:" "*** rate scale station global init for station %d ***\n",
2320 sta_id);
2321
2322
2323
2324
2325
2326 lq_sta->is_dup = 0;
2327 lq_sta->max_rate_idx = -1;
2328 lq_sta->missed_rate_counter = IL_MISSED_RATE_MAX;
2329 lq_sta->is_green = il4965_rs_use_green(il, sta);
2330 lq_sta->active_legacy_rate = il->active_rate & ~(0x1000);
2331 lq_sta->band = il->band;
2332
2333
2334
2335
2336 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2337 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
2338 lq_sta->active_siso_rate &= ~((u16) 0x2);
2339 lq_sta->active_siso_rate <<= IL_FIRST_OFDM_RATE;
2340
2341
2342 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2343 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
2344 lq_sta->active_mimo2_rate &= ~((u16) 0x2);
2345 lq_sta->active_mimo2_rate <<= IL_FIRST_OFDM_RATE;
2346
2347
2348 lq_sta->lq.general_params.single_stream_ant_msk =
2349 il4965_first_antenna(il->hw_params.valid_tx_ant);
2350 lq_sta->lq.general_params.dual_stream_ant_msk =
2351 il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2352 valid_tx_ant);
2353 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2354 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2355 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2356 lq_sta->lq.general_params.dual_stream_ant_msk =
2357 il->hw_params.valid_tx_ant;
2358 }
2359
2360
2361 lq_sta->tx_agg_tid_en = IL_AGG_ALL_TID;
2362 lq_sta->drv = il;
2363
2364
2365 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2366 if (sband->band == IEEE80211_BAND_5GHZ)
2367 lq_sta->last_txrate_idx += IL_FIRST_OFDM_RATE;
2368 lq_sta->is_agg = 0;
2369
2370#ifdef CONFIG_MAC80211_DEBUGFS
2371 lq_sta->dbg_fixed_rate = 0;
2372#endif
2373
2374 il4965_rs_initialize_lq(il, conf, sta, lq_sta);
2375}
2376
2377static void
2378il4965_rs_fill_link_cmd(struct il_priv *il, struct il_lq_sta *lq_sta,
2379 u32 new_rate)
2380{
2381 struct il_scale_tbl_info tbl_type;
2382 int idx = 0;
2383 int rate_idx;
2384 int repeat_rate = 0;
2385 u8 ant_toggle_cnt = 0;
2386 u8 use_ht_possible = 1;
2387 u8 valid_tx_ant = 0;
2388 struct il_link_quality_cmd *lq_cmd = &lq_sta->lq;
2389
2390
2391 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2392
2393
2394 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
2395 &rate_idx);
2396
2397
2398 if (is_legacy(tbl_type.lq_type)) {
2399 ant_toggle_cnt = 1;
2400 repeat_rate = IL_NUMBER_TRY;
2401 } else {
2402 repeat_rate = IL_HT_NUMBER_TRY;
2403 }
2404
2405 lq_cmd->general_params.mimo_delimiter =
2406 is_mimo(tbl_type.lq_type) ? 1 : 0;
2407
2408
2409 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
2410
2411 if (il4965_num_of_ant(tbl_type.ant_type) == 1) {
2412 lq_cmd->general_params.single_stream_ant_msk =
2413 tbl_type.ant_type;
2414 } else if (il4965_num_of_ant(tbl_type.ant_type) == 2) {
2415 lq_cmd->general_params.dual_stream_ant_msk = tbl_type.ant_type;
2416 }
2417
2418 idx++;
2419 repeat_rate--;
2420 if (il)
2421 valid_tx_ant = il->hw_params.valid_tx_ant;
2422
2423
2424 while (idx < LINK_QUAL_MAX_RETRY_NUM) {
2425
2426
2427
2428 while (repeat_rate > 0 && idx < LINK_QUAL_MAX_RETRY_NUM) {
2429 if (is_legacy(tbl_type.lq_type)) {
2430 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2431 ant_toggle_cnt++;
2432 else if (il &&
2433 il4965_rs_toggle_antenna(valid_tx_ant,
2434 &new_rate,
2435 &tbl_type))
2436 ant_toggle_cnt = 1;
2437 }
2438
2439
2440 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2441
2442
2443 lq_cmd->rs_table[idx].rate_n_flags =
2444 cpu_to_le32(new_rate);
2445 repeat_rate--;
2446 idx++;
2447 }
2448
2449 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
2450 &tbl_type, &rate_idx);
2451
2452
2453
2454
2455 if (is_mimo(tbl_type.lq_type))
2456 lq_cmd->general_params.mimo_delimiter = idx;
2457
2458
2459 new_rate =
2460 il4965_rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2461 use_ht_possible);
2462
2463
2464 if (is_legacy(tbl_type.lq_type)) {
2465 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2466 ant_toggle_cnt++;
2467 else if (il &&
2468 il4965_rs_toggle_antenna(valid_tx_ant,
2469 &new_rate, &tbl_type))
2470 ant_toggle_cnt = 1;
2471
2472 repeat_rate = IL_NUMBER_TRY;
2473 } else {
2474 repeat_rate = IL_HT_NUMBER_TRY;
2475 }
2476
2477
2478
2479 use_ht_possible = 0;
2480
2481
2482 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2483
2484
2485 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
2486
2487 idx++;
2488 repeat_rate--;
2489 }
2490
2491 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
2492 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2493
2494 lq_cmd->agg_params.agg_time_limit =
2495 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2496}
2497
2498static void *
2499il4965_rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
2500{
2501 return hw->priv;
2502}
2503
2504
2505static void
2506il4965_rs_free(void *il_rate)
2507{
2508 return;
2509}
2510
2511static void
2512il4965_rs_free_sta(void *il_r, struct ieee80211_sta *sta, void *il_sta)
2513{
2514 struct il_priv *il __maybe_unused = il_r;
2515
2516 D_RATE("enter\n");
2517 D_RATE("leave\n");
2518}
2519
2520#ifdef CONFIG_MAC80211_DEBUGFS
2521
2522static void
2523il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
2524{
2525 struct il_priv *il;
2526 u8 valid_tx_ant;
2527 u8 ant_sel_tx;
2528
2529 il = lq_sta->drv;
2530 valid_tx_ant = il->hw_params.valid_tx_ant;
2531 if (lq_sta->dbg_fixed_rate) {
2532 ant_sel_tx =
2533 ((lq_sta->
2534 dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK) >>
2535 RATE_MCS_ANT_POS);
2536 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
2537 *rate_n_flags = lq_sta->dbg_fixed_rate;
2538 D_RATE("Fixed rate ON\n");
2539 } else {
2540 lq_sta->dbg_fixed_rate = 0;
2541 IL_ERR
2542 ("Invalid antenna selection 0x%X, Valid is 0x%X\n",
2543 ant_sel_tx, valid_tx_ant);
2544 D_RATE("Fixed rate OFF\n");
2545 }
2546 } else {
2547 D_RATE("Fixed rate OFF\n");
2548 }
2549}
2550
2551static ssize_t
2552il4965_rs_sta_dbgfs_scale_table_write(struct file *file,
2553 const char __user *user_buf,
2554 size_t count, loff_t *ppos)
2555{
2556 struct il_lq_sta *lq_sta = file->private_data;
2557 struct il_priv *il;
2558 char buf[64];
2559 size_t buf_size;
2560 u32 parsed_rate;
2561
2562 il = lq_sta->drv;
2563 memset(buf, 0, sizeof(buf));
2564 buf_size = min(count, sizeof(buf) - 1);
2565 if (copy_from_user(buf, user_buf, buf_size))
2566 return -EFAULT;
2567
2568 if (sscanf(buf, "%x", &parsed_rate) == 1)
2569 lq_sta->dbg_fixed_rate = parsed_rate;
2570 else
2571 lq_sta->dbg_fixed_rate = 0;
2572
2573 lq_sta->active_legacy_rate = 0x0FFF;
2574 lq_sta->active_siso_rate = 0x1FD0;
2575 lq_sta->active_mimo2_rate = 0x1FD0;
2576
2577 D_RATE("sta_id %d rate 0x%X\n", lq_sta->lq.sta_id,
2578 lq_sta->dbg_fixed_rate);
2579
2580 if (lq_sta->dbg_fixed_rate) {
2581 il4965_rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
2582 il_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
2583 }
2584
2585 return count;
2586}
2587
2588static ssize_t
2589il4965_rs_sta_dbgfs_scale_table_read(struct file *file, char __user *user_buf,
2590 size_t count, loff_t *ppos)
2591{
2592 char *buff;
2593 int desc = 0;
2594 int i = 0;
2595 int idx = 0;
2596 ssize_t ret;
2597
2598 struct il_lq_sta *lq_sta = file->private_data;
2599 struct il_priv *il;
2600 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2601
2602 il = lq_sta->drv;
2603 buff = kmalloc(1024, GFP_KERNEL);
2604 if (!buff)
2605 return -ENOMEM;
2606
2607 desc += sprintf(buff + desc, "sta_id %d\n", lq_sta->lq.sta_id);
2608 desc +=
2609 sprintf(buff + desc, "failed=%d success=%d rate=0%X\n",
2610 lq_sta->total_failed, lq_sta->total_success,
2611 lq_sta->active_legacy_rate);
2612 desc +=
2613 sprintf(buff + desc, "fixed rate 0x%X\n", lq_sta->dbg_fixed_rate);
2614 desc +=
2615 sprintf(buff + desc, "valid_tx_ant %s%s%s\n",
2616 (il->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2617 (il->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2618 (il->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
2619 desc +=
2620 sprintf(buff + desc, "lq type %s\n",
2621 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2622 if (is_Ht(tbl->lq_type)) {
2623 desc +=
2624 sprintf(buff + desc, " %s",
2625 (is_siso(tbl->lq_type)) ? "SISO" : "MIMO2");
2626 desc +=
2627 sprintf(buff + desc, " %s",
2628 (tbl->is_ht40) ? "40MHz" : "20MHz");
2629 desc +=
2630 sprintf(buff + desc, " %s %s %s\n",
2631 (tbl->is_SGI) ? "SGI" : "",
2632 (lq_sta->is_green) ? "GF enabled" : "",
2633 (lq_sta->is_agg) ? "AGG on" : "");
2634 }
2635 desc +=
2636 sprintf(buff + desc, "last tx rate=0x%X\n",
2637 lq_sta->last_rate_n_flags);
2638 desc +=
2639 sprintf(buff + desc,
2640 "general:" "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
2641 lq_sta->lq.general_params.flags,
2642 lq_sta->lq.general_params.mimo_delimiter,
2643 lq_sta->lq.general_params.single_stream_ant_msk,
2644 lq_sta->lq.general_params.dual_stream_ant_msk);
2645
2646 desc +=
2647 sprintf(buff + desc,
2648 "agg:"
2649 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
2650 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2651 lq_sta->lq.agg_params.agg_dis_start_th,
2652 lq_sta->lq.agg_params.agg_frame_cnt_limit);
2653
2654 desc +=
2655 sprintf(buff + desc,
2656 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
2657 lq_sta->lq.general_params.start_rate_idx[0],
2658 lq_sta->lq.general_params.start_rate_idx[1],
2659 lq_sta->lq.general_params.start_rate_idx[2],
2660 lq_sta->lq.general_params.start_rate_idx[3]);
2661
2662 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2663 idx =
2664 il4965_hwrate_to_plcp_idx(le32_to_cpu
2665 (lq_sta->lq.rs_table[i].
2666 rate_n_flags));
2667 if (is_legacy(tbl->lq_type)) {
2668 desc +=
2669 sprintf(buff + desc, " rate[%d] 0x%X %smbps\n", i,
2670 le32_to_cpu(lq_sta->lq.rs_table[i].
2671 rate_n_flags),
2672 il_rate_mcs[idx].mbps);
2673 } else {
2674 desc +=
2675 sprintf(buff + desc, " rate[%d] 0x%X %smbps (%s)\n",
2676 i,
2677 le32_to_cpu(lq_sta->lq.rs_table[i].
2678 rate_n_flags),
2679 il_rate_mcs[idx].mbps,
2680 il_rate_mcs[idx].mcs);
2681 }
2682 }
2683
2684 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2685 kfree(buff);
2686 return ret;
2687}
2688
2689static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
2690 .write = il4965_rs_sta_dbgfs_scale_table_write,
2691 .read = il4965_rs_sta_dbgfs_scale_table_read,
2692 .open = simple_open,
2693 .llseek = default_llseek,
2694};
2695
2696static ssize_t
2697il4965_rs_sta_dbgfs_stats_table_read(struct file *file, char __user *user_buf,
2698 size_t count, loff_t *ppos)
2699{
2700 char *buff;
2701 int desc = 0;
2702 int i, j;
2703 ssize_t ret;
2704
2705 struct il_lq_sta *lq_sta = file->private_data;
2706
2707 buff = kmalloc(1024, GFP_KERNEL);
2708 if (!buff)
2709 return -ENOMEM;
2710
2711 for (i = 0; i < LQ_SIZE; i++) {
2712 desc +=
2713 sprintf(buff + desc,
2714 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
2715 "rate=0x%X\n", lq_sta->active_tbl == i ? "*" : "x",
2716 lq_sta->lq_info[i].lq_type,
2717 lq_sta->lq_info[i].is_SGI,
2718 lq_sta->lq_info[i].is_ht40,
2719 lq_sta->lq_info[i].is_dup, lq_sta->is_green,
2720 lq_sta->lq_info[i].current_rate);
2721 for (j = 0; j < RATE_COUNT; j++) {
2722 desc +=
2723 sprintf(buff + desc,
2724 "counter=%d success=%d %%=%d\n",
2725 lq_sta->lq_info[i].win[j].counter,
2726 lq_sta->lq_info[i].win[j].success_counter,
2727 lq_sta->lq_info[i].win[j].success_ratio);
2728 }
2729 }
2730 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2731 kfree(buff);
2732 return ret;
2733}
2734
2735static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2736 .read = il4965_rs_sta_dbgfs_stats_table_read,
2737 .open = simple_open,
2738 .llseek = default_llseek,
2739};
2740
2741static ssize_t
2742il4965_rs_sta_dbgfs_rate_scale_data_read(struct file *file,
2743 char __user *user_buf, size_t count,
2744 loff_t *ppos)
2745{
2746 char buff[120];
2747 int desc = 0;
2748 struct il_lq_sta *lq_sta = file->private_data;
2749 struct il_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
2750
2751 if (is_Ht(tbl->lq_type))
2752 desc +=
2753 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2754 tbl->expected_tpt[lq_sta->last_txrate_idx]);
2755 else
2756 desc +=
2757 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2758 il_rates[lq_sta->last_txrate_idx].ieee >> 1);
2759
2760 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2761}
2762
2763static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
2764 .read = il4965_rs_sta_dbgfs_rate_scale_data_read,
2765 .open = simple_open,
2766 .llseek = default_llseek,
2767};
2768
2769static void
2770il4965_rs_add_debugfs(void *il, void *il_sta, struct dentry *dir)
2771{
2772 struct il_lq_sta *lq_sta = il_sta;
2773 lq_sta->rs_sta_dbgfs_scale_table_file =
2774 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
2775 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2776 lq_sta->rs_sta_dbgfs_stats_table_file =
2777 debugfs_create_file("rate_stats_table", S_IRUSR, dir, lq_sta,
2778 &rs_sta_dbgfs_stats_table_ops);
2779 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
2780 debugfs_create_file("rate_scale_data", S_IRUSR, dir, lq_sta,
2781 &rs_sta_dbgfs_rate_scale_data_ops);
2782 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
2783 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
2784 &lq_sta->tx_agg_tid_en);
2785
2786}
2787
2788static void
2789il4965_rs_remove_debugfs(void *il, void *il_sta)
2790{
2791 struct il_lq_sta *lq_sta = il_sta;
2792 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2793 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
2794 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
2795 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
2796}
2797#endif
2798
2799
2800
2801
2802
2803
2804static void
2805il4965_rs_rate_init_stub(void *il_r, struct ieee80211_supported_band *sband,
2806 struct cfg80211_chan_def *chandef,
2807 struct ieee80211_sta *sta, void *il_sta)
2808{
2809}
2810
2811static struct rate_control_ops rs_4965_ops = {
2812 .module = NULL,
2813 .name = IL4965_RS_NAME,
2814 .tx_status = il4965_rs_tx_status,
2815 .get_rate = il4965_rs_get_rate,
2816 .rate_init = il4965_rs_rate_init_stub,
2817 .alloc = il4965_rs_alloc,
2818 .free = il4965_rs_free,
2819 .alloc_sta = il4965_rs_alloc_sta,
2820 .free_sta = il4965_rs_free_sta,
2821#ifdef CONFIG_MAC80211_DEBUGFS
2822 .add_sta_debugfs = il4965_rs_add_debugfs,
2823 .remove_sta_debugfs = il4965_rs_remove_debugfs,
2824#endif
2825};
2826
2827int
2828il4965_rate_control_register(void)
2829{
2830 return ieee80211_rate_control_register(&rs_4965_ops);
2831}
2832
2833void
2834il4965_rate_control_unregister(void)
2835{
2836 ieee80211_rate_control_unregister(&rs_4965_ops);
2837}
2838