1
2
3
4
5
6#ifndef __RC_MINSTREL_H
7#define __RC_MINSTREL_H
8
9#define EWMA_LEVEL 96
10#define EWMA_DIV 128
11#define SAMPLE_COLUMNS 10
12
13
14#define MINSTREL_SCALE 12
15#define MINSTREL_FRAC(val, div) (((val) << MINSTREL_SCALE) / div)
16#define MINSTREL_TRUNC(val) ((val) >> MINSTREL_SCALE)
17
18
19#define MAX_THR_RATES 4
20
21
22
23
24static inline int
25minstrel_ewma(int old, int new, int weight)
26{
27 int diff, incr;
28
29 diff = new - old;
30 incr = (EWMA_DIV - weight) * diff / EWMA_DIV;
31
32 return old + incr;
33}
34
35struct minstrel_rate_stats {
36
37 u16 attempts, last_attempts;
38 u16 success, last_success;
39
40
41 u32 att_hist, succ_hist;
42
43
44 u16 prob_ewma;
45
46
47 u8 retry_count;
48 u8 retry_count_rtscts;
49
50 u8 sample_skipped;
51 bool retry_updated;
52};
53
54struct minstrel_rate {
55 int bitrate;
56
57 s8 rix;
58 u8 retry_count_cts;
59 u8 adjusted_retry_count;
60
61 unsigned int perfect_tx_time;
62 unsigned int ack_time;
63
64 int sample_limit;
65
66 struct minstrel_rate_stats stats;
67};
68
69struct minstrel_sta_info {
70 struct ieee80211_sta *sta;
71
72 unsigned long last_stats_update;
73 unsigned int sp_ack_dur;
74 unsigned int rate_avg;
75
76 unsigned int lowest_rix;
77
78 u8 max_tp_rate[MAX_THR_RATES];
79 u8 max_prob_rate;
80 unsigned int total_packets;
81 unsigned int sample_packets;
82 int sample_deferred;
83
84 unsigned int sample_row;
85 unsigned int sample_column;
86
87 int n_rates;
88 struct minstrel_rate *r;
89 bool prev_sample;
90
91
92 u8 *sample_table;
93};
94
95struct minstrel_priv {
96 struct ieee80211_hw *hw;
97 bool has_mrr;
98 unsigned int cw_min;
99 unsigned int cw_max;
100 unsigned int max_retry;
101 unsigned int segment_size;
102 unsigned int update_interval;
103 unsigned int lookaround_rate;
104 unsigned int lookaround_rate_mrr;
105
106 u8 cck_rates[4];
107
108#ifdef CONFIG_MAC80211_DEBUGFS
109
110
111
112
113
114
115 u32 fixed_rate_idx;
116#endif
117};
118
119struct minstrel_debugfs_info {
120 size_t len;
121 char buf[];
122};
123
124extern const struct rate_control_ops mac80211_minstrel;
125void minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir);
126
127
128void minstrel_calc_rate_stats(struct minstrel_rate_stats *mrs);
129int minstrel_get_tp_avg(struct minstrel_rate *mr, int prob_ewma);
130
131
132int minstrel_stats_open(struct inode *inode, struct file *file);
133int minstrel_stats_csv_open(struct inode *inode, struct file *file);
134
135#endif
136