mac80211: reduce calculation costs of EWMA
[deliverable/linux.git] / net / mac80211 / rc80211_minstrel.h
CommitLineData
cccf129f
FF
1/*
2 * Copyright (C) 2008 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_H
10#define __RC_MINSTREL_H
11
eea85999
KB
12#define EWMA_LEVEL 96 /* ewma weighting factor [/EWMA_DIV] */
13#define EWMA_DIV 128
f744bf81
TH
14#define SAMPLE_COLUMNS 10 /* number of columns in sample table */
15
c8ca8c2f
TH
16/* scaled fraction values */
17#define MINSTREL_SCALE 16
18#define MINSTREL_FRAC(val, div) (((val) << MINSTREL_SCALE) / div)
19#define MINSTREL_TRUNC(val) ((val) >> MINSTREL_SCALE)
20
2ff2b690
TH
21/* number of highest throughput rates to consider*/
22#define MAX_THR_RATES 4
23
a512d4b5
TH
24/*
25 * Perform EWMA (Exponentially Weighted Moving Average) calculation
6d488517 26 */
a512d4b5
TH
27static inline int
28minstrel_ewma(int old, int new, int weight)
29{
ade6d4a2
TH
30 int diff, incr;
31
32 diff = new - old;
33 incr = (EWMA_DIV - weight) * diff / EWMA_DIV;
34
35 return old + incr;
a512d4b5
TH
36}
37
ca12c0c8
TH
38struct minstrel_rate_stats {
39 /* current / last sampling period attempts/success counters */
8d819a92
FF
40 u16 attempts, last_attempts;
41 u16 success, last_success;
ca12c0c8
TH
42
43 /* total attempts/success counters */
44 u64 att_hist, succ_hist;
45
9134073b
TH
46 /* statistis of packet delivery probability
47 * cur_prob - current prob within last update intervall
48 * prob_ewma - exponential weighted moving average of prob */
49 unsigned int cur_prob;
50 unsigned int prob_ewma;
ca12c0c8
TH
51
52 /* maximum retry counts */
8d819a92
FF
53 u8 retry_count;
54 u8 retry_count_rtscts;
ca12c0c8
TH
55
56 u8 sample_skipped;
57 bool retry_updated;
58};
a512d4b5 59
cccf129f
FF
60struct minstrel_rate {
61 int bitrate;
8d819a92
FF
62
63 s8 rix;
64 u8 retry_count_cts;
65 u8 adjusted_retry_count;
cccf129f
FF
66
67 unsigned int perfect_tx_time;
68 unsigned int ack_time;
69
f4a8cd94 70 int sample_limit;
cccf129f 71
ca12c0c8 72 struct minstrel_rate_stats stats;
cccf129f
FF
73};
74
75struct minstrel_sta_info {
06d961a8
FF
76 struct ieee80211_sta *sta;
77
9134073b 78 unsigned long last_stats_update;
cccf129f
FF
79 unsigned int sp_ack_dur;
80 unsigned int rate_avg;
81
82 unsigned int lowest_rix;
83
2ff2b690
TH
84 u8 max_tp_rate[MAX_THR_RATES];
85 u8 max_prob_rate;
ca12c0c8
TH
86 unsigned int total_packets;
87 unsigned int sample_packets;
cccf129f
FF
88 int sample_deferred;
89
8f157611 90 unsigned int sample_row;
cccf129f
FF
91 unsigned int sample_column;
92
93 int n_rates;
94 struct minstrel_rate *r;
f4a8cd94 95 bool prev_sample;
cccf129f
FF
96
97 /* sampling table */
98 u8 *sample_table;
99
100#ifdef CONFIG_MAC80211_DEBUGFS
101 struct dentry *dbg_stats;
6d488517 102 struct dentry *dbg_stats_csv;
cccf129f
FF
103#endif
104};
105
106struct minstrel_priv {
107 struct ieee80211_hw *hw;
108 bool has_mrr;
109 unsigned int cw_min;
110 unsigned int cw_max;
111 unsigned int max_retry;
cccf129f
FF
112 unsigned int segment_size;
113 unsigned int update_interval;
114 unsigned int lookaround_rate;
115 unsigned int lookaround_rate_mrr;
24f7580e 116
a0497f9f
FF
117 u8 cck_rates[4];
118
24f7580e
ZK
119#ifdef CONFIG_MAC80211_DEBUGFS
120 /*
121 * enable fixed rate processing per RC
122 * - write static index to debugfs:ieee80211/phyX/rc/fixed_rate_idx
123 * - write -1 to enable RC processing again
124 * - setting will be applied on next update
125 */
126 u32 fixed_rate_idx;
127 struct dentry *dbg_fixed_rate;
128#endif
cccf129f
FF
129};
130
44ac91ea
FF
131struct minstrel_debugfs_info {
132 size_t len;
133 char buf[];
134};
135
631ad703 136extern const struct rate_control_ops mac80211_minstrel;
cccf129f
FF
137void minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir);
138void minstrel_remove_sta_debugfs(void *priv, void *priv_sta);
139
f62838bc 140/* Recalculate success probabilities and counters for a given rate using EWMA */
9134073b 141void minstrel_calc_rate_stats(struct minstrel_rate_stats *mrs);
50e55a8e 142int minstrel_get_tp_avg(struct minstrel_rate *mr, int prob_ewma);
f62838bc 143
eae44756
FF
144/* debugfs */
145int minstrel_stats_open(struct inode *inode, struct file *file);
6d488517 146int minstrel_stats_csv_open(struct inode *inode, struct file *file);
eae44756
FF
147ssize_t minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos);
148int minstrel_stats_release(struct inode *inode, struct file *file);
149
cccf129f 150#endif
This page took 0.387785 seconds and 5 git commands to generate.