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_mcs_group_data
{
33 /* bitfield of supported MCS rates of this group */
36 /* sorted rate set within a MCS group*/
37 u8 max_group_tp_rate
[MAX_THR_RATES
];
38 u8 max_group_prob_rate
;
40 /* MCS rate statistics */
41 struct minstrel_rate_stats rates
[MCS_GROUP_RATES
];
44 struct minstrel_ht_sta
{
45 struct ieee80211_sta
*sta
;
47 /* ampdu length (average, per sampling interval) */
48 unsigned int ampdu_len
;
49 unsigned int ampdu_packets
;
51 /* ampdu length (EWMA) */
52 unsigned int avg_ampdu_len
;
54 /* overall sorted rate set */
55 u8 max_tp_rate
[MAX_THR_RATES
];
58 /* time of last status update */
59 unsigned long stats_update
;
61 /* overhead time in usec for each frame */
62 unsigned int overhead
;
63 unsigned int overhead_rtscts
;
65 unsigned int total_packets
;
66 unsigned int sample_packets
;
68 /* tx flags to add for frames for this sta */
76 /* current MCS group to be sampled */
80 u8 cck_supported_short
;
82 /* MCS rate group info and statistics */
83 struct minstrel_mcs_group_data groups
[MINSTREL_MAX_STREAMS
* MINSTREL_STREAM_GROUPS
+ 1];
86 struct minstrel_ht_sta_priv
{
88 struct minstrel_ht_sta ht
;
89 struct minstrel_sta_info legacy
;
91 #ifdef CONFIG_MAC80211_DEBUGFS
92 struct dentry
*dbg_stats
;
99 void minstrel_ht_add_sta_debugfs(void *priv
, void *priv_sta
, struct dentry
*dir
);
100 void minstrel_ht_remove_sta_debugfs(void *priv
, void *priv_sta
);