Collect Tx FIFO statistic more often
[ralink_drivers/rt2870_fbsd72.git] / rt2870_amrr.c
blob9e9a2eba7054a8c407d189f9b7799e513839b09b
2 /*-
3 * Copyright (c) 2009-2010 Alexander Egorenkov <egorenar@gmail.com>
4 * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/param.h>
20 #include <sys/kernel.h>
21 #include <sys/module.h>
22 #include <sys/socket.h>
23 #include <sys/sysctl.h>
25 #include <net/if.h>
26 #include <net/if_media.h>
28 #include <net80211/ieee80211_var.h>
30 #include "rt2870_amrr.h"
33 * Defines and macros
36 #define RT2870_AMRR_IS_SUCCESS(amrr_node) ((amrr_node)->retrycnt < (amrr_node)->txcnt / 10)
38 #define RT2870_AMRR_IS_FAILURE(amrr_node) ((amrr_node)->retrycnt > (amrr_node)->txcnt / 3)
40 #define RT2870_AMRR_IS_ENOUGH(amrr_node) ((amrr_node)->txcnt > 10)
43 * Static function prototypes
46 static int rt2870_amrr_update(struct rt2870_amrr *amrr,
47 struct rt2870_amrr_node *amrr_node, struct ieee80211_node *ni);
50 * rt2870_amrr_init
52 void rt2870_amrr_init(struct rt2870_amrr *amrr, struct ieee80211com *ic,
53 int ntxpath, int min_success_threshold, int max_success_threshold, int msecs)
55 int t;
57 amrr->ntxpath = ntxpath;
59 amrr->min_success_threshold = min_success_threshold;
60 amrr->max_success_threshold = max_success_threshold;
62 if (msecs < 100)
63 msecs = 100;
65 t = msecs_to_ticks(msecs);
67 amrr->interval = (t < 1) ? 1 : t;
71 * rt2870_amrr_cleanup
73 void rt2870_amrr_cleanup(struct rt2870_amrr *amrr)
78 * rt2870_amrr_node_init
80 void rt2870_amrr_node_init(struct rt2870_amrr *amrr,
81 struct rt2870_amrr_node *amrr_node, struct ieee80211_node *ni)
83 const struct ieee80211_rateset *rs;
85 rs = &ni->ni_rates;
87 amrr_node->amrr = amrr;
88 amrr_node->success = 0;
89 amrr_node->recovery = 0;
90 amrr_node->txcnt = 0;
91 amrr_node->retrycnt = 0;
92 amrr_node->success_threshold = amrr->min_success_threshold;
94 if (ni->ni_flags & IEEE80211_NODE_HT)
96 rs = (const struct ieee80211_rateset *) &ni->ni_htrates;
98 for (ni->ni_txrate = rs->rs_nrates - 1;
99 ni->ni_txrate > 0 && (rs->rs_rates[ni->ni_txrate] & IEEE80211_RATE_VAL) > 4;
100 ni->ni_txrate--) ;
102 else
104 rs = &ni->ni_rates;
106 for (ni->ni_txrate = rs->rs_nrates - 1;
107 ni->ni_txrate > 0 && (rs->rs_rates[ni->ni_txrate] & IEEE80211_RATE_VAL) > 72;
108 ni->ni_txrate--) ;
111 amrr_node->ticks = ticks;
115 * rt2870_amrr_choose
117 int rt2870_amrr_choose(struct ieee80211_node *ni,
118 struct rt2870_amrr_node *amrr_node)
120 struct rt2870_amrr *amrr;
121 int rate_index;
123 amrr = amrr_node->amrr;
125 if (RT2870_AMRR_IS_ENOUGH(amrr_node) &&
126 (ticks - amrr_node->ticks) > amrr->interval)
128 rate_index = rt2870_amrr_update(amrr, amrr_node, ni);
129 if (rate_index != ni->ni_txrate)
130 ni->ni_txrate = rate_index;
132 amrr_node->ticks = ticks;
134 else
136 rate_index = ni->ni_txrate;
139 return rate_index;
143 * rt2870_amrr_update
145 static int rt2870_amrr_update(struct rt2870_amrr *amrr,
146 struct rt2870_amrr_node *amrr_node, struct ieee80211_node *ni)
148 const struct ieee80211_rateset *rs;
149 int rate_index;
151 KASSERT(RT2870_AMRR_IS_ENOUGH(amrr_node),
152 ("not enough Tx count: txcnt=%d",
153 amrr_node->txcnt));
155 if (ni->ni_flags & IEEE80211_NODE_HT)
156 rs = (const struct ieee80211_rateset *) &ni->ni_htrates;
157 else
158 rs = &ni->ni_rates;
160 rate_index = ni->ni_txrate;
162 if (RT2870_AMRR_IS_SUCCESS(amrr_node))
164 amrr_node->success++;
165 if ((amrr_node->success >= amrr_node->success_threshold) &&
166 (rate_index + 1 < rs->rs_nrates) &&
167 (!(ni->ni_flags & IEEE80211_NODE_HT) || (rs->rs_rates[rate_index + 1] & IEEE80211_RATE_VAL) < (amrr->ntxpath * 8)))
169 amrr_node->recovery = 1;
170 amrr_node->success = 0;
172 rate_index++;
174 else
176 amrr_node->recovery = 0;
179 else if (RT2870_AMRR_IS_FAILURE(amrr_node))
181 amrr_node->success = 0;
183 if (rate_index > 0)
185 if (amrr_node->recovery)
187 amrr_node->success_threshold *= 2;
188 if (amrr_node->success_threshold > amrr->max_success_threshold)
189 amrr_node->success_threshold = amrr->max_success_threshold;
191 else
193 amrr_node->success_threshold = amrr->min_success_threshold;
196 rate_index--;
199 amrr_node->recovery = 0;
202 amrr_node->txcnt = 0;
203 amrr_node->retrycnt = 0;
205 return rate_index;