Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[firefly-linux-kernel-4.4.55.git] / net / mac80211 / rc80211_minstrel_ht.h
1 /*
2  * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
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
9 #ifndef __RC_MINSTREL_HT_H
10 #define __RC_MINSTREL_HT_H
11
12 /*
13  * The number of streams can be changed to 2 to reduce code
14  * size and memory footprint.
15  */
16 #define MINSTREL_MAX_STREAMS    3
17 #define MINSTREL_STREAM_GROUPS  4
18
19 #define MCS_GROUP_RATES 8
20
21 struct mcs_group {
22         u32 flags;
23         unsigned int streams;
24         unsigned int duration[MCS_GROUP_RATES];
25 };
26
27 extern const struct mcs_group minstrel_mcs_groups[];
28
29 struct minstrel_rate_stats {
30         /* current / last sampling period attempts/success counters */
31         unsigned int attempts, last_attempts;
32         unsigned int success, last_success;
33
34         /* total attempts/success counters */
35         u64 att_hist, succ_hist;
36
37         /* current throughput */
38         unsigned int cur_tp;
39
40         /* packet delivery probabilities */
41         unsigned int cur_prob, probability;
42
43         /* maximum retry counts */
44         unsigned int retry_count;
45         unsigned int retry_count_rtscts;
46
47         bool retry_updated;
48         u8 sample_skipped;
49 };
50
51 struct minstrel_mcs_group_data {
52         u8 index;
53         u8 column;
54
55         /* bitfield of supported MCS rates of this group */
56         u8 supported;
57
58         /* selected primary rates */
59         unsigned int max_tp_rate;
60         unsigned int max_tp_rate2;
61         unsigned int max_prob_rate;
62
63         /* MCS rate statistics */
64         struct minstrel_rate_stats rates[MCS_GROUP_RATES];
65 };
66
67 struct minstrel_ht_sta {
68         /* ampdu length (average, per sampling interval) */
69         unsigned int ampdu_len;
70         unsigned int ampdu_packets;
71
72         /* ampdu length (EWMA) */
73         unsigned int avg_ampdu_len;
74
75         /* best throughput rate */
76         unsigned int max_tp_rate;
77
78         /* second best throughput rate */
79         unsigned int max_tp_rate2;
80
81         /* best probability rate */
82         unsigned int max_prob_rate;
83         unsigned int max_prob_streams;
84
85         /* time of last status update */
86         unsigned long stats_update;
87
88         /* overhead time in usec for each frame */
89         unsigned int overhead;
90         unsigned int overhead_rtscts;
91
92         unsigned int total_packets;
93         unsigned int sample_packets;
94
95         /* tx flags to add for frames for this sta */
96         u32 tx_flags;
97
98         u8 sample_wait;
99         u8 sample_tries;
100         u8 sample_count;
101         u8 sample_slow;
102
103         /* current MCS group to be sampled */
104         u8 sample_group;
105
106         u8 cck_supported;
107         u8 cck_supported_short;
108
109         /* MCS rate group info and statistics */
110         struct minstrel_mcs_group_data groups[MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1];
111 };
112
113 struct minstrel_ht_sta_priv {
114         union {
115                 struct minstrel_ht_sta ht;
116                 struct minstrel_sta_info legacy;
117         };
118 #ifdef CONFIG_MAC80211_DEBUGFS
119         struct dentry *dbg_stats;
120 #endif
121         void *ratelist;
122         void *sample_table;
123         bool is_ht;
124 };
125
126 void minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir);
127 void minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta);
128
129 #endif