2 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
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.
9 #ifndef __RC_MINSTREL_HT_H
10 #define __RC_MINSTREL_HT_H
13 * The number of streams can be changed to 2 to reduce code
14 * size and memory footprint.
16 #define MINSTREL_MAX_STREAMS 3
17 #define MINSTREL_STREAM_GROUPS 4
19 #define MCS_GROUP_RATES 8
24 unsigned int duration
[MCS_GROUP_RATES
];
27 extern const struct mcs_group minstrel_mcs_groups
[];
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
;
34 /* total attempts/success counters */
35 u64 att_hist
, succ_hist
;
37 /* current throughput */
40 /* packet delivery probabilities */
41 unsigned int cur_prob
, probability
;
43 /* maximum retry counts */
44 unsigned int retry_count
;
45 unsigned int retry_count_rtscts
;
51 struct minstrel_mcs_group_data
{
55 /* bitfield of supported MCS rates of this group */
58 /* selected primary rates */
59 unsigned int max_tp_rate
;
60 unsigned int max_tp_rate2
;
61 unsigned int max_prob_rate
;
63 /* MCS rate statistics */
64 struct minstrel_rate_stats rates
[MCS_GROUP_RATES
];
67 struct minstrel_ht_sta
{
68 struct ieee80211_sta
*sta
;
70 /* ampdu length (average, per sampling interval) */
71 unsigned int ampdu_len
;
72 unsigned int ampdu_packets
;
74 /* ampdu length (EWMA) */
75 unsigned int avg_ampdu_len
;
77 /* best throughput rate */
78 unsigned int max_tp_rate
;
80 /* second best throughput rate */
81 unsigned int max_tp_rate2
;
83 /* best probability rate */
84 unsigned int max_prob_rate
;
85 unsigned int max_prob_streams
;
87 /* time of last status update */
88 unsigned long stats_update
;
90 /* overhead time in usec for each frame */
91 unsigned int overhead
;
92 unsigned int overhead_rtscts
;
94 unsigned int total_packets
;
95 unsigned int sample_packets
;
97 /* tx flags to add for frames for this sta */
105 /* current MCS group to be sampled */
109 u8 cck_supported_short
;
111 /* MCS rate group info and statistics */
112 struct minstrel_mcs_group_data groups
[MINSTREL_MAX_STREAMS
* MINSTREL_STREAM_GROUPS
+ 1];
115 struct minstrel_ht_sta_priv
{
117 struct minstrel_ht_sta ht
;
118 struct minstrel_sta_info legacy
;
120 #ifdef CONFIG_MAC80211_DEBUGFS
121 struct dentry
*dbg_stats
;
128 void minstrel_ht_add_sta_debugfs(void *priv
, void *priv_sta
, struct dentry
*dir
);
129 void minstrel_ht_remove_sta_debugfs(void *priv
, void *priv_sta
);