xref: /freebsd/sys/dev/ath/ath_rate/sample/sample.c (revision d93a896ef95946b0bf1219866fcb324b78543444)
1 /*-
2  * Copyright (c) 2005 John Bicket
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification.
11  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13  *    redistribution must be conditioned upon including a substantially
14  *    similar Disclaimer requirement for further binary redistribution.
15  * 3. Neither the names of the above-listed copyright holders nor the names
16  *    of any contributors may be used to endorse or promote products derived
17  *    from this software without specific prior written permission.
18  *
19  * Alternatively, this software may be distributed under the terms of the
20  * GNU General Public License ("GPL") version 2 as published by the Free
21  * Software Foundation.
22  *
23  * NO WARRANTY
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34  * THE POSSIBILITY OF SUCH DAMAGES.
35  *
36  */
37 
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40 
41 /*
42  * John Bicket's SampleRate control algorithm.
43  */
44 #include "opt_ath.h"
45 #include "opt_inet.h"
46 #include "opt_wlan.h"
47 #include "opt_ah.h"
48 
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/sysctl.h>
52 #include <sys/kernel.h>
53 #include <sys/lock.h>
54 #include <sys/malloc.h>
55 #include <sys/mutex.h>
56 #include <sys/errno.h>
57 
58 #include <machine/bus.h>
59 #include <machine/resource.h>
60 #include <sys/bus.h>
61 
62 #include <sys/socket.h>
63 
64 #include <net/if.h>
65 #include <net/if_var.h>
66 #include <net/if_media.h>
67 #include <net/if_arp.h>
68 #include <net/ethernet.h>		/* XXX for ether_sprintf */
69 
70 #include <net80211/ieee80211_var.h>
71 
72 #include <net/bpf.h>
73 
74 #ifdef INET
75 #include <netinet/in.h>
76 #include <netinet/if_ether.h>
77 #endif
78 
79 #include <dev/ath/if_athvar.h>
80 #include <dev/ath/ath_rate/sample/sample.h>
81 #include <dev/ath/ath_hal/ah_desc.h>
82 #include <dev/ath/ath_rate/sample/tx_schedules.h>
83 
84 /*
85  * This file is an implementation of the SampleRate algorithm
86  * in "Bit-rate Selection in Wireless Networks"
87  * (http://www.pdos.lcs.mit.edu/papers/jbicket-ms.ps)
88  *
89  * SampleRate chooses the bit-rate it predicts will provide the most
90  * throughput based on estimates of the expected per-packet
91  * transmission time for each bit-rate.  SampleRate periodically sends
92  * packets at bit-rates other than the current one to estimate when
93  * another bit-rate will provide better performance. SampleRate
94  * switches to another bit-rate when its estimated per-packet
95  * transmission time becomes smaller than the current bit-rate's.
96  * SampleRate reduces the number of bit-rates it must sample by
97  * eliminating those that could not perform better than the one
98  * currently being used.  SampleRate also stops probing at a bit-rate
99  * if it experiences several successive losses.
100  *
101  * The difference between the algorithm in the thesis and the one in this
102  * file is that the one in this file uses a ewma instead of a window.
103  *
104  * Also, this implementation tracks the average transmission time for
105  * a few different packet sizes independently for each link.
106  */
107 
108 static void	ath_rate_ctl_reset(struct ath_softc *, struct ieee80211_node *);
109 
110 static __inline int
111 size_to_bin(int size)
112 {
113 #if NUM_PACKET_SIZE_BINS > 1
114 	if (size <= packet_size_bins[0])
115 		return 0;
116 #endif
117 #if NUM_PACKET_SIZE_BINS > 2
118 	if (size <= packet_size_bins[1])
119 		return 1;
120 #endif
121 #if NUM_PACKET_SIZE_BINS > 3
122 	if (size <= packet_size_bins[2])
123 		return 2;
124 #endif
125 #if NUM_PACKET_SIZE_BINS > 4
126 #error "add support for more packet sizes"
127 #endif
128 	return NUM_PACKET_SIZE_BINS-1;
129 }
130 
131 void
132 ath_rate_node_init(struct ath_softc *sc, struct ath_node *an)
133 {
134 	/* NB: assumed to be zero'd by caller */
135 }
136 
137 void
138 ath_rate_node_cleanup(struct ath_softc *sc, struct ath_node *an)
139 {
140 }
141 
142 static int
143 dot11rate(const HAL_RATE_TABLE *rt, int rix)
144 {
145 	if (rix < 0)
146 		return -1;
147 	return rt->info[rix].phy == IEEE80211_T_HT ?
148 	    rt->info[rix].dot11Rate : (rt->info[rix].dot11Rate & IEEE80211_RATE_VAL) / 2;
149 }
150 
151 static const char *
152 dot11rate_label(const HAL_RATE_TABLE *rt, int rix)
153 {
154 	if (rix < 0)
155 		return "";
156 	return rt->info[rix].phy == IEEE80211_T_HT ? "MCS" : "Mb ";
157 }
158 
159 /*
160  * Return the rix with the lowest average_tx_time,
161  * or -1 if all the average_tx_times are 0.
162  */
163 static __inline int
164 pick_best_rate(struct ath_node *an, const HAL_RATE_TABLE *rt,
165     int size_bin, int require_acked_before)
166 {
167 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
168         int best_rate_rix, best_rate_tt, best_rate_pct;
169 	uint64_t mask;
170 	int rix, tt, pct;
171 
172         best_rate_rix = 0;
173         best_rate_tt = 0;
174 	best_rate_pct = 0;
175 	for (mask = sn->ratemask, rix = 0; mask != 0; mask >>= 1, rix++) {
176 		if ((mask & 1) == 0)		/* not a supported rate */
177 			continue;
178 
179 		/* Don't pick a non-HT rate for a HT node */
180 		if ((an->an_node.ni_flags & IEEE80211_NODE_HT) &&
181 		    (rt->info[rix].phy != IEEE80211_T_HT)) {
182 			continue;
183 		}
184 
185 		tt = sn->stats[size_bin][rix].average_tx_time;
186 		if (tt <= 0 ||
187 		    (require_acked_before &&
188 		     !sn->stats[size_bin][rix].packets_acked))
189 			continue;
190 
191 		/* Calculate percentage if possible */
192 		if (sn->stats[size_bin][rix].total_packets > 0) {
193 			pct = sn->stats[size_bin][rix].ewma_pct;
194 		} else {
195 			/* XXX for now, assume 95% ok */
196 			pct = 95;
197 		}
198 
199 		/* don't use a bit-rate that has been failing */
200 		if (sn->stats[size_bin][rix].successive_failures > 3)
201 			continue;
202 
203 		/*
204 		 * For HT, Don't use a bit rate that is much more
205 		 * lossy than the best.
206 		 *
207 		 * XXX this isn't optimal; it's just designed to
208 		 * eliminate rates that are going to be obviously
209 		 * worse.
210 		 */
211 		if (an->an_node.ni_flags & IEEE80211_NODE_HT) {
212 			if (best_rate_pct > (pct + 50))
213 				continue;
214 		}
215 
216 		/*
217 		 * For non-MCS rates, use the current average txtime for
218 		 * comparison.
219 		 */
220 		if (! (an->an_node.ni_flags & IEEE80211_NODE_HT)) {
221 			if (best_rate_tt == 0 || tt <= best_rate_tt) {
222 				best_rate_tt = tt;
223 				best_rate_rix = rix;
224 				best_rate_pct = pct;
225 			}
226 		}
227 
228 		/*
229 		 * Since 2 stream rates have slightly higher TX times,
230 		 * allow a little bit of leeway. This should later
231 		 * be abstracted out and properly handled.
232 		 */
233 		if (an->an_node.ni_flags & IEEE80211_NODE_HT) {
234 			if (best_rate_tt == 0 || (tt * 8 <= best_rate_tt * 10)) {
235 				best_rate_tt = tt;
236 				best_rate_rix = rix;
237 				best_rate_pct = pct;
238 			}
239 		}
240         }
241         return (best_rate_tt ? best_rate_rix : -1);
242 }
243 
244 /*
245  * Pick a good "random" bit-rate to sample other than the current one.
246  */
247 static __inline int
248 pick_sample_rate(struct sample_softc *ssc , struct ath_node *an,
249     const HAL_RATE_TABLE *rt, int size_bin)
250 {
251 #define	DOT11RATE(ix)	(rt->info[ix].dot11Rate & IEEE80211_RATE_VAL)
252 #define	MCS(ix)		(rt->info[ix].dot11Rate | IEEE80211_RATE_MCS)
253 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
254 	int current_rix, rix;
255 	unsigned current_tt;
256 	uint64_t mask;
257 
258 	current_rix = sn->current_rix[size_bin];
259 	if (current_rix < 0) {
260 		/* no successes yet, send at the lowest bit-rate */
261 		/* XXX should return MCS0 if HT */
262 		return 0;
263 	}
264 
265 	current_tt = sn->stats[size_bin][current_rix].average_tx_time;
266 
267 	rix = sn->last_sample_rix[size_bin]+1;	/* next sample rate */
268 	mask = sn->ratemask &~ ((uint64_t) 1<<current_rix);/* don't sample current rate */
269 	while (mask != 0) {
270 		if ((mask & ((uint64_t) 1<<rix)) == 0) {	/* not a supported rate */
271 	nextrate:
272 			if (++rix >= rt->rateCount)
273 				rix = 0;
274 			continue;
275 		}
276 
277 		/*
278 		 * The following code stops trying to sample
279 		 * non-MCS rates when speaking to an MCS node.
280 		 * However, at least for CCK rates in 2.4GHz mode,
281 		 * the non-MCS rates MAY actually provide better
282 		 * PER at the very far edge of reception.
283 		 *
284 		 * However! Until ath_rate_form_aggr() grows
285 		 * some logic to not form aggregates if the
286 		 * selected rate is non-MCS, this won't work.
287 		 *
288 		 * So don't disable this code until you've taught
289 		 * ath_rate_form_aggr() to drop out if any of
290 		 * the selected rates are non-MCS.
291 		 */
292 #if 1
293 		/* if the node is HT and the rate isn't HT, don't bother sample */
294 		if ((an->an_node.ni_flags & IEEE80211_NODE_HT) &&
295 		    (rt->info[rix].phy != IEEE80211_T_HT)) {
296 			mask &= ~((uint64_t) 1<<rix);
297 			goto nextrate;
298 		}
299 #endif
300 
301 		/* this bit-rate is always worse than the current one */
302 		if (sn->stats[size_bin][rix].perfect_tx_time > current_tt) {
303 			mask &= ~((uint64_t) 1<<rix);
304 			goto nextrate;
305 		}
306 
307 		/* rarely sample bit-rates that fail a lot */
308 		if (sn->stats[size_bin][rix].successive_failures > ssc->max_successive_failures &&
309 		    ticks - sn->stats[size_bin][rix].last_tx < ssc->stale_failure_timeout) {
310 			mask &= ~((uint64_t) 1<<rix);
311 			goto nextrate;
312 		}
313 
314 		/*
315 		 * For HT, only sample a few rates on either side of the
316 		 * current rix; there's quite likely a lot of them.
317 		 */
318 		if (an->an_node.ni_flags & IEEE80211_NODE_HT) {
319 			if (rix < (current_rix - 3) ||
320 			    rix > (current_rix + 3)) {
321 				mask &= ~((uint64_t) 1<<rix);
322 				goto nextrate;
323 			}
324 		}
325 
326 		/* Don't sample more than 2 rates higher for rates > 11M for non-HT rates */
327 		if (! (an->an_node.ni_flags & IEEE80211_NODE_HT)) {
328 			if (DOT11RATE(rix) > 2*11 && rix > current_rix + 2) {
329 				mask &= ~((uint64_t) 1<<rix);
330 				goto nextrate;
331 			}
332 		}
333 
334 		sn->last_sample_rix[size_bin] = rix;
335 		return rix;
336 	}
337 	return current_rix;
338 #undef DOT11RATE
339 #undef	MCS
340 }
341 
342 static int
343 ath_rate_get_static_rix(struct ath_softc *sc, const struct ieee80211_node *ni)
344 {
345 #define	RATE(_ix)	(ni->ni_rates.rs_rates[(_ix)] & IEEE80211_RATE_VAL)
346 #define	DOT11RATE(_ix)	(rt->info[(_ix)].dot11Rate & IEEE80211_RATE_VAL)
347 #define	MCS(_ix)	(ni->ni_htrates.rs_rates[_ix] | IEEE80211_RATE_MCS)
348 	const struct ieee80211_txparam *tp = ni->ni_txparms;
349 	int srate;
350 
351 	/* Check MCS rates */
352 	for (srate = ni->ni_htrates.rs_nrates - 1; srate >= 0; srate--) {
353 		if (MCS(srate) == tp->ucastrate)
354 			return sc->sc_rixmap[tp->ucastrate];
355 	}
356 
357 	/* Check legacy rates */
358 	for (srate = ni->ni_rates.rs_nrates - 1; srate >= 0; srate--) {
359 		if (RATE(srate) == tp->ucastrate)
360 			return sc->sc_rixmap[tp->ucastrate];
361 	}
362 	return -1;
363 #undef	RATE
364 #undef	DOT11RATE
365 #undef	MCS
366 }
367 
368 static void
369 ath_rate_update_static_rix(struct ath_softc *sc, struct ieee80211_node *ni)
370 {
371 	struct ath_node *an = ATH_NODE(ni);
372 	const struct ieee80211_txparam *tp = ni->ni_txparms;
373 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
374 
375 	if (tp != NULL && tp->ucastrate != IEEE80211_FIXED_RATE_NONE) {
376 		/*
377 		 * A fixed rate is to be used; ucastrate is the IEEE code
378 		 * for this rate (sans basic bit).  Check this against the
379 		 * negotiated rate set for the node.  Note the fixed rate
380 		 * may not be available for various reasons so we only
381 		 * setup the static rate index if the lookup is successful.
382 		 */
383 		sn->static_rix = ath_rate_get_static_rix(sc, ni);
384 	} else {
385 		sn->static_rix = -1;
386 	}
387 }
388 
389 /*
390  * Pick a non-HT rate to begin using.
391  */
392 static int
393 ath_rate_pick_seed_rate_legacy(struct ath_softc *sc, struct ath_node *an,
394     int frameLen)
395 {
396 #define	DOT11RATE(ix)	(rt->info[ix].dot11Rate & IEEE80211_RATE_VAL)
397 #define	MCS(ix)		(rt->info[ix].dot11Rate | IEEE80211_RATE_MCS)
398 #define	RATE(ix)	(DOT11RATE(ix) / 2)
399 	int rix = -1;
400 	const HAL_RATE_TABLE *rt = sc->sc_currates;
401 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
402 	const int size_bin = size_to_bin(frameLen);
403 
404 	/* no packet has been sent successfully yet */
405 	for (rix = rt->rateCount-1; rix > 0; rix--) {
406 		if ((sn->ratemask & ((uint64_t) 1<<rix)) == 0)
407 			continue;
408 
409 		/* Skip HT rates */
410 		if (rt->info[rix].phy == IEEE80211_T_HT)
411 			continue;
412 
413 		/*
414 		 * Pick the highest rate <= 36 Mbps
415 		 * that hasn't failed.
416 		 */
417 		if (DOT11RATE(rix) <= 72 &&
418 		    sn->stats[size_bin][rix].successive_failures == 0) {
419 			break;
420 		}
421 	}
422 	return rix;
423 #undef	RATE
424 #undef	MCS
425 #undef	DOT11RATE
426 }
427 
428 /*
429  * Pick a HT rate to begin using.
430  *
431  * Don't use any non-HT rates; only consider HT rates.
432  */
433 static int
434 ath_rate_pick_seed_rate_ht(struct ath_softc *sc, struct ath_node *an,
435     int frameLen)
436 {
437 #define	DOT11RATE(ix)	(rt->info[ix].dot11Rate & IEEE80211_RATE_VAL)
438 #define	MCS(ix)		(rt->info[ix].dot11Rate | IEEE80211_RATE_MCS)
439 #define	RATE(ix)	(DOT11RATE(ix) / 2)
440 	int rix = -1, ht_rix = -1;
441 	const HAL_RATE_TABLE *rt = sc->sc_currates;
442 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
443 	const int size_bin = size_to_bin(frameLen);
444 
445 	/* no packet has been sent successfully yet */
446 	for (rix = rt->rateCount-1; rix > 0; rix--) {
447 		/* Skip rates we can't use */
448 		if ((sn->ratemask & ((uint64_t) 1<<rix)) == 0)
449 			continue;
450 
451 		/* Keep a copy of the last seen HT rate index */
452 		if (rt->info[rix].phy == IEEE80211_T_HT)
453 			ht_rix = rix;
454 
455 		/* Skip non-HT rates */
456 		if (rt->info[rix].phy != IEEE80211_T_HT)
457 			continue;
458 
459 		/*
460 		 * Pick a medium-speed rate regardless of stream count
461 		 * which has not seen any failures. Higher rates may fail;
462 		 * we'll try them later.
463 		 */
464 		if (((MCS(rix) & 0x7) <= 4) &&
465 		    sn->stats[size_bin][rix].successive_failures == 0) {
466 			break;
467 		}
468 	}
469 
470 	/*
471 	 * If all the MCS rates have successive failures, rix should be
472 	 * > 0; otherwise use the lowest MCS rix (hopefully MCS 0.)
473 	 */
474 	return MAX(rix, ht_rix);
475 #undef	RATE
476 #undef	MCS
477 #undef	DOT11RATE
478 }
479 
480 
481 void
482 ath_rate_findrate(struct ath_softc *sc, struct ath_node *an,
483 		  int shortPreamble, size_t frameLen,
484 		  u_int8_t *rix0, int *try0, u_int8_t *txrate)
485 {
486 #define	DOT11RATE(ix)	(rt->info[ix].dot11Rate & IEEE80211_RATE_VAL)
487 #define	MCS(ix)		(rt->info[ix].dot11Rate | IEEE80211_RATE_MCS)
488 #define	RATE(ix)	(DOT11RATE(ix) / 2)
489 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
490 	struct sample_softc *ssc = ATH_SOFTC_SAMPLE(sc);
491 	struct ieee80211com *ic = &sc->sc_ic;
492 	const HAL_RATE_TABLE *rt = sc->sc_currates;
493 	const int size_bin = size_to_bin(frameLen);
494 	int rix, mrr, best_rix, change_rates;
495 	unsigned average_tx_time;
496 
497 	ath_rate_update_static_rix(sc, &an->an_node);
498 
499 	if (sn->currates != sc->sc_currates) {
500 		device_printf(sc->sc_dev, "%s: currates != sc_currates!\n",
501 		    __func__);
502 		rix = 0;
503 		*try0 = ATH_TXMAXTRY;
504 		goto done;
505 	}
506 
507 	if (sn->static_rix != -1) {
508 		rix = sn->static_rix;
509 		*try0 = ATH_TXMAXTRY;
510 		goto done;
511 	}
512 
513 	mrr = sc->sc_mrretry;
514 	/* XXX check HT protmode too */
515 	if (mrr && (ic->ic_flags & IEEE80211_F_USEPROT && !sc->sc_mrrprot))
516 		mrr = 0;
517 
518 	best_rix = pick_best_rate(an, rt, size_bin, !mrr);
519 	if (best_rix >= 0) {
520 		average_tx_time = sn->stats[size_bin][best_rix].average_tx_time;
521 	} else {
522 		average_tx_time = 0;
523 	}
524 	/*
525 	 * Limit the time measuring the performance of other tx
526 	 * rates to sample_rate% of the total transmission time.
527 	 */
528 	if (sn->sample_tt[size_bin] < average_tx_time * (sn->packets_since_sample[size_bin]*ssc->sample_rate/100)) {
529 		rix = pick_sample_rate(ssc, an, rt, size_bin);
530 		IEEE80211_NOTE(an->an_node.ni_vap, IEEE80211_MSG_RATECTL,
531 		     &an->an_node, "att %d sample_tt %d size %u sample rate %d %s current rate %d %s",
532 		     average_tx_time,
533 		     sn->sample_tt[size_bin],
534 		     bin_to_size(size_bin),
535 		     dot11rate(rt, rix),
536 		     dot11rate_label(rt, rix),
537 		     dot11rate(rt, sn->current_rix[size_bin]),
538 		     dot11rate_label(rt, sn->current_rix[size_bin]));
539 		if (rix != sn->current_rix[size_bin]) {
540 			sn->current_sample_rix[size_bin] = rix;
541 		} else {
542 			sn->current_sample_rix[size_bin] = -1;
543 		}
544 		sn->packets_since_sample[size_bin] = 0;
545 	} else {
546 		change_rates = 0;
547 		if (!sn->packets_sent[size_bin] || best_rix == -1) {
548 			/* no packet has been sent successfully yet */
549 			change_rates = 1;
550 			if (an->an_node.ni_flags & IEEE80211_NODE_HT)
551 				best_rix =
552 				    ath_rate_pick_seed_rate_ht(sc, an, frameLen);
553 			else
554 				best_rix =
555 				    ath_rate_pick_seed_rate_legacy(sc, an, frameLen);
556 		} else if (sn->packets_sent[size_bin] < 20) {
557 			/* let the bit-rate switch quickly during the first few packets */
558 			IEEE80211_NOTE(an->an_node.ni_vap,
559 			    IEEE80211_MSG_RATECTL, &an->an_node,
560 			    "%s: switching quickly..", __func__);
561 			change_rates = 1;
562 		} else if (ticks - ssc->min_switch > sn->ticks_since_switch[size_bin]) {
563 			/* min_switch seconds have gone by */
564 			IEEE80211_NOTE(an->an_node.ni_vap,
565 			    IEEE80211_MSG_RATECTL, &an->an_node,
566 			    "%s: min_switch %d > ticks_since_switch %d..",
567 			    __func__, ticks - ssc->min_switch, sn->ticks_since_switch[size_bin]);
568 			change_rates = 1;
569 		} else if ((! (an->an_node.ni_flags & IEEE80211_NODE_HT)) &&
570 		    (2*average_tx_time < sn->stats[size_bin][sn->current_rix[size_bin]].average_tx_time)) {
571 			/* the current bit-rate is twice as slow as the best one */
572 			IEEE80211_NOTE(an->an_node.ni_vap,
573 			    IEEE80211_MSG_RATECTL, &an->an_node,
574 			    "%s: 2x att (= %d) < cur_rix att %d",
575 			    __func__,
576 			    2 * average_tx_time, sn->stats[size_bin][sn->current_rix[size_bin]].average_tx_time);
577 			change_rates = 1;
578 		} else if ((an->an_node.ni_flags & IEEE80211_NODE_HT)) {
579 			int cur_rix = sn->current_rix[size_bin];
580 			int cur_att = sn->stats[size_bin][cur_rix].average_tx_time;
581 			/*
582 			 * If the node is HT, upgrade it if the MCS rate is
583 			 * higher and the average tx time is within 20% of
584 			 * the current rate. It can fail a little.
585 			 *
586 			 * This is likely not optimal!
587 			 */
588 #if 0
589 			printf("cur rix/att %x/%d, best rix/att %x/%d\n",
590 			    MCS(cur_rix), cur_att, MCS(best_rix), average_tx_time);
591 #endif
592 			if ((MCS(best_rix) > MCS(cur_rix)) &&
593 			    (average_tx_time * 8) <= (cur_att * 10)) {
594 				IEEE80211_NOTE(an->an_node.ni_vap,
595 				    IEEE80211_MSG_RATECTL, &an->an_node,
596 				    "%s: HT: best_rix 0x%d > cur_rix 0x%x, average_tx_time %d, cur_att %d",
597 				    __func__,
598 				    MCS(best_rix), MCS(cur_rix), average_tx_time, cur_att);
599 				change_rates = 1;
600 			}
601 		}
602 
603 		sn->packets_since_sample[size_bin]++;
604 
605 		if (change_rates) {
606 			if (best_rix != sn->current_rix[size_bin]) {
607 				IEEE80211_NOTE(an->an_node.ni_vap,
608 				    IEEE80211_MSG_RATECTL,
609 				    &an->an_node,
610 "%s: size %d switch rate %d (%d/%d) -> %d (%d/%d) after %d packets mrr %d",
611 				    __func__,
612 				    bin_to_size(size_bin),
613 				    RATE(sn->current_rix[size_bin]),
614 				    sn->stats[size_bin][sn->current_rix[size_bin]].average_tx_time,
615 				    sn->stats[size_bin][sn->current_rix[size_bin]].perfect_tx_time,
616 				    RATE(best_rix),
617 				    sn->stats[size_bin][best_rix].average_tx_time,
618 				    sn->stats[size_bin][best_rix].perfect_tx_time,
619 				    sn->packets_since_switch[size_bin],
620 				    mrr);
621 			}
622 			sn->packets_since_switch[size_bin] = 0;
623 			sn->current_rix[size_bin] = best_rix;
624 			sn->ticks_since_switch[size_bin] = ticks;
625 			/*
626 			 * Set the visible txrate for this node.
627 			 */
628 			an->an_node.ni_txrate = (rt->info[best_rix].phy == IEEE80211_T_HT) ?  MCS(best_rix) : DOT11RATE(best_rix);
629 		}
630 		rix = sn->current_rix[size_bin];
631 		sn->packets_since_switch[size_bin]++;
632 	}
633 	*try0 = mrr ? sn->sched[rix].t0 : ATH_TXMAXTRY;
634 done:
635 
636 	/*
637 	 * This bug totally sucks and should be fixed.
638 	 *
639 	 * For now though, let's not panic, so we can start to figure
640 	 * out how to better reproduce it.
641 	 */
642 	if (rix < 0 || rix >= rt->rateCount) {
643 		printf("%s: ERROR: rix %d out of bounds (rateCount=%d)\n",
644 		    __func__,
645 		    rix,
646 		    rt->rateCount);
647 		    rix = 0;	/* XXX just default for now */
648 	}
649 	KASSERT(rix >= 0 && rix < rt->rateCount, ("rix is %d", rix));
650 
651 	*rix0 = rix;
652 	*txrate = rt->info[rix].rateCode
653 		| (shortPreamble ? rt->info[rix].shortPreamble : 0);
654 	sn->packets_sent[size_bin]++;
655 #undef DOT11RATE
656 #undef MCS
657 #undef RATE
658 }
659 
660 /*
661  * Get the TX rates. Don't fiddle with short preamble flags for them;
662  * the caller can do that.
663  */
664 void
665 ath_rate_getxtxrates(struct ath_softc *sc, struct ath_node *an,
666     uint8_t rix0, struct ath_rc_series *rc)
667 {
668 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
669 	const struct txschedule *sched = &sn->sched[rix0];
670 
671 	KASSERT(rix0 == sched->r0, ("rix0 (%x) != sched->r0 (%x)!\n",
672 	    rix0, sched->r0));
673 
674 	rc[0].flags = rc[1].flags = rc[2].flags = rc[3].flags = 0;
675 
676 	rc[0].rix = sched->r0;
677 	rc[1].rix = sched->r1;
678 	rc[2].rix = sched->r2;
679 	rc[3].rix = sched->r3;
680 
681 	rc[0].tries = sched->t0;
682 	rc[1].tries = sched->t1;
683 	rc[2].tries = sched->t2;
684 	rc[3].tries = sched->t3;
685 }
686 
687 void
688 ath_rate_setupxtxdesc(struct ath_softc *sc, struct ath_node *an,
689 		      struct ath_desc *ds, int shortPreamble, u_int8_t rix)
690 {
691 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
692 	const struct txschedule *sched = &sn->sched[rix];
693 	const HAL_RATE_TABLE *rt = sc->sc_currates;
694 	uint8_t rix1, s1code, rix2, s2code, rix3, s3code;
695 
696 	/* XXX precalculate short preamble tables */
697 	rix1 = sched->r1;
698 	s1code = rt->info[rix1].rateCode
699 	       | (shortPreamble ? rt->info[rix1].shortPreamble : 0);
700 	rix2 = sched->r2;
701 	s2code = rt->info[rix2].rateCode
702 	       | (shortPreamble ? rt->info[rix2].shortPreamble : 0);
703 	rix3 = sched->r3;
704 	s3code = rt->info[rix3].rateCode
705 	       | (shortPreamble ? rt->info[rix3].shortPreamble : 0);
706 	ath_hal_setupxtxdesc(sc->sc_ah, ds,
707 	    s1code, sched->t1,		/* series 1 */
708 	    s2code, sched->t2,		/* series 2 */
709 	    s3code, sched->t3);		/* series 3 */
710 }
711 
712 static void
713 update_stats(struct ath_softc *sc, struct ath_node *an,
714 		  int frame_size,
715 		  int rix0, int tries0,
716 		  int rix1, int tries1,
717 		  int rix2, int tries2,
718 		  int rix3, int tries3,
719 		  int short_tries, int tries, int status,
720 		  int nframes, int nbad)
721 {
722 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
723 	struct sample_softc *ssc = ATH_SOFTC_SAMPLE(sc);
724 #ifdef IEEE80211_DEBUG
725 	const HAL_RATE_TABLE *rt = sc->sc_currates;
726 #endif
727 	const int size_bin = size_to_bin(frame_size);
728 	const int size = bin_to_size(size_bin);
729 	int tt, tries_so_far;
730 	int is_ht40 = (an->an_node.ni_chw == 40);
731 	int pct;
732 
733 	if (!IS_RATE_DEFINED(sn, rix0))
734 		return;
735 	tt = calc_usecs_unicast_packet(sc, size, rix0, short_tries,
736 		MIN(tries0, tries) - 1, is_ht40);
737 	tries_so_far = tries0;
738 
739 	if (tries1 && tries_so_far < tries) {
740 		if (!IS_RATE_DEFINED(sn, rix1))
741 			return;
742 		tt += calc_usecs_unicast_packet(sc, size, rix1, short_tries,
743 			MIN(tries1 + tries_so_far, tries) - tries_so_far - 1, is_ht40);
744 		tries_so_far += tries1;
745 	}
746 
747 	if (tries2 && tries_so_far < tries) {
748 		if (!IS_RATE_DEFINED(sn, rix2))
749 			return;
750 		tt += calc_usecs_unicast_packet(sc, size, rix2, short_tries,
751 			MIN(tries2 + tries_so_far, tries) - tries_so_far - 1, is_ht40);
752 		tries_so_far += tries2;
753 	}
754 
755 	if (tries3 && tries_so_far < tries) {
756 		if (!IS_RATE_DEFINED(sn, rix3))
757 			return;
758 		tt += calc_usecs_unicast_packet(sc, size, rix3, short_tries,
759 			MIN(tries3 + tries_so_far, tries) - tries_so_far - 1, is_ht40);
760 	}
761 
762 	if (sn->stats[size_bin][rix0].total_packets < ssc->smoothing_minpackets) {
763 		/* just average the first few packets */
764 		int avg_tx = sn->stats[size_bin][rix0].average_tx_time;
765 		int packets = sn->stats[size_bin][rix0].total_packets;
766 		sn->stats[size_bin][rix0].average_tx_time = (tt+(avg_tx*packets))/(packets+nframes);
767 	} else {
768 		/* use a ewma */
769 		sn->stats[size_bin][rix0].average_tx_time =
770 			((sn->stats[size_bin][rix0].average_tx_time * ssc->smoothing_rate) +
771 			 (tt * (100 - ssc->smoothing_rate))) / 100;
772 	}
773 
774 	/*
775 	 * XXX Don't mark the higher bit rates as also having failed; as this
776 	 * unfortunately stops those rates from being tasted when trying to
777 	 * TX. This happens with 11n aggregation.
778 	 *
779 	 * This is valid for higher CCK rates, higher OFDM rates, and higher
780 	 * HT rates within the current number of streams (eg MCS0..7, 8..15,
781 	 * etc.)
782 	 */
783 	if (nframes == nbad) {
784 #if 0
785 		int y;
786 #endif
787 		sn->stats[size_bin][rix0].successive_failures += nbad;
788 #if 0
789 		for (y = size_bin+1; y < NUM_PACKET_SIZE_BINS; y++) {
790 			/*
791 			 * Also say larger packets failed since we
792 			 * assume if a small packet fails at a
793 			 * bit-rate then a larger one will also.
794 			 */
795 			sn->stats[y][rix0].successive_failures += nbad;
796 			sn->stats[y][rix0].last_tx = ticks;
797 			sn->stats[y][rix0].tries += tries;
798 			sn->stats[y][rix0].total_packets += nframes;
799 		}
800 #endif
801 	} else {
802 		sn->stats[size_bin][rix0].packets_acked += (nframes - nbad);
803 		sn->stats[size_bin][rix0].successive_failures = 0;
804 	}
805 	sn->stats[size_bin][rix0].tries += tries;
806 	sn->stats[size_bin][rix0].last_tx = ticks;
807 	sn->stats[size_bin][rix0].total_packets += nframes;
808 
809 	/* update EWMA for this rix */
810 
811 	/* Calculate percentage based on current rate */
812 	if (nframes == 0)
813 		nframes = nbad = 1;
814 	pct = ((nframes - nbad) * 1000) / nframes;
815 
816 	if (sn->stats[size_bin][rix0].total_packets <
817 	    ssc->smoothing_minpackets) {
818 		/* just average the first few packets */
819 		int a_pct = (sn->stats[size_bin][rix0].packets_acked * 1000) /
820 		    (sn->stats[size_bin][rix0].total_packets);
821 		sn->stats[size_bin][rix0].ewma_pct = a_pct;
822 	} else {
823 		/* use a ewma */
824 		sn->stats[size_bin][rix0].ewma_pct =
825 			((sn->stats[size_bin][rix0].ewma_pct * ssc->smoothing_rate) +
826 			 (pct * (100 - ssc->smoothing_rate))) / 100;
827 	}
828 
829 
830 	if (rix0 == sn->current_sample_rix[size_bin]) {
831 		IEEE80211_NOTE(an->an_node.ni_vap, IEEE80211_MSG_RATECTL,
832 		   &an->an_node,
833 "%s: size %d %s sample rate %d %s tries (%d/%d) tt %d avg_tt (%d/%d) nfrm %d nbad %d",
834 		    __func__,
835 		    size,
836 		    status ? "FAIL" : "OK",
837 		    dot11rate(rt, rix0),
838 		    dot11rate_label(rt, rix0),
839 		    short_tries, tries, tt,
840 		    sn->stats[size_bin][rix0].average_tx_time,
841 		    sn->stats[size_bin][rix0].perfect_tx_time,
842 		    nframes, nbad);
843 		sn->sample_tt[size_bin] = tt;
844 		sn->current_sample_rix[size_bin] = -1;
845 	}
846 }
847 
848 static void
849 badrate(struct ath_softc *sc, int series, int hwrate, int tries, int status)
850 {
851 
852 	device_printf(sc->sc_dev,
853 	    "bad series%d hwrate 0x%x, tries %u ts_status 0x%x\n",
854 	    series, hwrate, tries, status);
855 }
856 
857 void
858 ath_rate_tx_complete(struct ath_softc *sc, struct ath_node *an,
859 	const struct ath_rc_series *rc, const struct ath_tx_status *ts,
860 	int frame_size, int nframes, int nbad)
861 {
862 	struct ieee80211com *ic = &sc->sc_ic;
863 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
864 	int final_rix, short_tries, long_tries;
865 	const HAL_RATE_TABLE *rt = sc->sc_currates;
866 	int status = ts->ts_status;
867 	int mrr;
868 
869 	final_rix = rt->rateCodeToIndex[ts->ts_rate];
870 	short_tries = ts->ts_shortretry;
871 	long_tries = ts->ts_longretry + 1;
872 
873 	if (nframes == 0) {
874 		device_printf(sc->sc_dev, "%s: nframes=0?\n", __func__);
875 		return;
876 	}
877 
878 	if (frame_size == 0)		    /* NB: should not happen */
879 		frame_size = 1500;
880 
881 	if (sn->ratemask == 0) {
882 		IEEE80211_NOTE(an->an_node.ni_vap, IEEE80211_MSG_RATECTL,
883 		    &an->an_node,
884 		    "%s: size %d %s rate/try %d/%d no rates yet",
885 		    __func__,
886 		    bin_to_size(size_to_bin(frame_size)),
887 		    status ? "FAIL" : "OK",
888 		    short_tries, long_tries);
889 		return;
890 	}
891 	mrr = sc->sc_mrretry;
892 	/* XXX check HT protmode too */
893 	if (mrr && (ic->ic_flags & IEEE80211_F_USEPROT && !sc->sc_mrrprot))
894 		mrr = 0;
895 
896 	if (!mrr || ts->ts_finaltsi == 0) {
897 		if (!IS_RATE_DEFINED(sn, final_rix)) {
898 			device_printf(sc->sc_dev,
899 			    "%s: ts_rate=%d ts_finaltsi=%d, final_rix=%d\n",
900 			    __func__, ts->ts_rate, ts->ts_finaltsi, final_rix);
901 			badrate(sc, 0, ts->ts_rate, long_tries, status);
902 			return;
903 		}
904 		/*
905 		 * Only one rate was used; optimize work.
906 		 */
907 		IEEE80211_NOTE(an->an_node.ni_vap, IEEE80211_MSG_RATECTL,
908 		     &an->an_node, "%s: size %d (%d bytes) %s rate/short/long %d %s/%d/%d nframes/nbad [%d/%d]",
909 		     __func__,
910 		     bin_to_size(size_to_bin(frame_size)),
911 		     frame_size,
912 		     status ? "FAIL" : "OK",
913 		     dot11rate(rt, final_rix), dot11rate_label(rt, final_rix),
914 		     short_tries, long_tries, nframes, nbad);
915 		update_stats(sc, an, frame_size,
916 			     final_rix, long_tries,
917 			     0, 0,
918 			     0, 0,
919 			     0, 0,
920 			     short_tries, long_tries, status,
921 			     nframes, nbad);
922 
923 	} else {
924 		int finalTSIdx = ts->ts_finaltsi;
925 		int i;
926 
927 		/*
928 		 * Process intermediate rates that failed.
929 		 */
930 
931 		IEEE80211_NOTE(an->an_node.ni_vap, IEEE80211_MSG_RATECTL,
932 		    &an->an_node,
933 "%s: size %d (%d bytes) finaltsidx %d short %d long %d %s rate/try [%d %s/%d %d %s/%d %d %s/%d %d %s/%d] nframes/nbad [%d/%d]",
934 		     __func__,
935 		     bin_to_size(size_to_bin(frame_size)),
936 		     frame_size,
937 		     finalTSIdx,
938 		     short_tries,
939 		     long_tries,
940 		     status ? "FAIL" : "OK",
941 		     dot11rate(rt, rc[0].rix),
942 		      dot11rate_label(rt, rc[0].rix), rc[0].tries,
943 		     dot11rate(rt, rc[1].rix),
944 		      dot11rate_label(rt, rc[1].rix), rc[1].tries,
945 		     dot11rate(rt, rc[2].rix),
946 		      dot11rate_label(rt, rc[2].rix), rc[2].tries,
947 		     dot11rate(rt, rc[3].rix),
948 		      dot11rate_label(rt, rc[3].rix), rc[3].tries,
949 		     nframes, nbad);
950 
951 		for (i = 0; i < 4; i++) {
952 			if (rc[i].tries && !IS_RATE_DEFINED(sn, rc[i].rix))
953 				badrate(sc, 0, rc[i].ratecode, rc[i].tries,
954 				    status);
955 		}
956 
957 		/*
958 		 * NB: series > 0 are not penalized for failure
959 		 * based on the try counts under the assumption
960 		 * that losses are often bursty and since we
961 		 * sample higher rates 1 try at a time doing so
962 		 * may unfairly penalize them.
963 		 */
964 		if (rc[0].tries) {
965 			update_stats(sc, an, frame_size,
966 				     rc[0].rix, rc[0].tries,
967 				     rc[1].rix, rc[1].tries,
968 				     rc[2].rix, rc[2].tries,
969 				     rc[3].rix, rc[3].tries,
970 				     short_tries, long_tries,
971 				     long_tries > rc[0].tries,
972 				     nframes, nbad);
973 			long_tries -= rc[0].tries;
974 		}
975 
976 		if (rc[1].tries && finalTSIdx > 0) {
977 			update_stats(sc, an, frame_size,
978 				     rc[1].rix, rc[1].tries,
979 				     rc[2].rix, rc[2].tries,
980 				     rc[3].rix, rc[3].tries,
981 				     0, 0,
982 				     short_tries, long_tries,
983 				     status,
984 				     nframes, nbad);
985 			long_tries -= rc[1].tries;
986 		}
987 
988 		if (rc[2].tries && finalTSIdx > 1) {
989 			update_stats(sc, an, frame_size,
990 				     rc[2].rix, rc[2].tries,
991 				     rc[3].rix, rc[3].tries,
992 				     0, 0,
993 				     0, 0,
994 				     short_tries, long_tries,
995 				     status,
996 				     nframes, nbad);
997 			long_tries -= rc[2].tries;
998 		}
999 
1000 		if (rc[3].tries && finalTSIdx > 2) {
1001 			update_stats(sc, an, frame_size,
1002 				     rc[3].rix, rc[3].tries,
1003 				     0, 0,
1004 				     0, 0,
1005 				     0, 0,
1006 				     short_tries, long_tries,
1007 				     status,
1008 				     nframes, nbad);
1009 		}
1010 	}
1011 }
1012 
1013 void
1014 ath_rate_newassoc(struct ath_softc *sc, struct ath_node *an, int isnew)
1015 {
1016 	if (isnew)
1017 		ath_rate_ctl_reset(sc, &an->an_node);
1018 }
1019 
1020 static const struct txschedule *mrr_schedules[IEEE80211_MODE_MAX+2] = {
1021 	NULL,		/* IEEE80211_MODE_AUTO */
1022 	series_11a,	/* IEEE80211_MODE_11A */
1023 	series_11g,	/* IEEE80211_MODE_11B */
1024 	series_11g,	/* IEEE80211_MODE_11G */
1025 	NULL,		/* IEEE80211_MODE_FH */
1026 	series_11a,	/* IEEE80211_MODE_TURBO_A */
1027 	series_11g,	/* IEEE80211_MODE_TURBO_G */
1028 	series_11a,	/* IEEE80211_MODE_STURBO_A */
1029 	series_11na,	/* IEEE80211_MODE_11NA */
1030 	series_11ng,	/* IEEE80211_MODE_11NG */
1031 	series_half,	/* IEEE80211_MODE_HALF */
1032 	series_quarter,	/* IEEE80211_MODE_QUARTER */
1033 };
1034 
1035 /*
1036  * Initialize the tables for a node.
1037  */
1038 static void
1039 ath_rate_ctl_reset(struct ath_softc *sc, struct ieee80211_node *ni)
1040 {
1041 #define	RATE(_ix)	(ni->ni_rates.rs_rates[(_ix)] & IEEE80211_RATE_VAL)
1042 #define	DOT11RATE(_ix)	(rt->info[(_ix)].dot11Rate & IEEE80211_RATE_VAL)
1043 #define	MCS(_ix)	(ni->ni_htrates.rs_rates[_ix] | IEEE80211_RATE_MCS)
1044 	struct ath_node *an = ATH_NODE(ni);
1045 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
1046 	const HAL_RATE_TABLE *rt = sc->sc_currates;
1047 	int x, y, rix;
1048 
1049 	KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
1050 
1051 	KASSERT(sc->sc_curmode < IEEE80211_MODE_MAX+2,
1052 	    ("curmode %u", sc->sc_curmode));
1053 
1054 	sn->sched = mrr_schedules[sc->sc_curmode];
1055 	KASSERT(sn->sched != NULL,
1056 	    ("no mrr schedule for mode %u", sc->sc_curmode));
1057 
1058         sn->static_rix = -1;
1059 	ath_rate_update_static_rix(sc, ni);
1060 
1061 	sn->currates = sc->sc_currates;
1062 
1063 	/*
1064 	 * Construct a bitmask of usable rates.  This has all
1065 	 * negotiated rates minus those marked by the hal as
1066 	 * to be ignored for doing rate control.
1067 	 */
1068 	sn->ratemask = 0;
1069 	/* MCS rates */
1070 	if (ni->ni_flags & IEEE80211_NODE_HT) {
1071 		for (x = 0; x < ni->ni_htrates.rs_nrates; x++) {
1072 			rix = sc->sc_rixmap[MCS(x)];
1073 			if (rix == 0xff)
1074 				continue;
1075 			/* skip rates marked broken by hal */
1076 			if (!rt->info[rix].valid)
1077 				continue;
1078 			KASSERT(rix < SAMPLE_MAXRATES,
1079 			    ("mcs %u has rix %d", MCS(x), rix));
1080 			sn->ratemask |= (uint64_t) 1<<rix;
1081 		}
1082 	}
1083 
1084 	/* Legacy rates */
1085 	for (x = 0; x < ni->ni_rates.rs_nrates; x++) {
1086 		rix = sc->sc_rixmap[RATE(x)];
1087 		if (rix == 0xff)
1088 			continue;
1089 		/* skip rates marked broken by hal */
1090 		if (!rt->info[rix].valid)
1091 			continue;
1092 		KASSERT(rix < SAMPLE_MAXRATES,
1093 		    ("rate %u has rix %d", RATE(x), rix));
1094 		sn->ratemask |= (uint64_t) 1<<rix;
1095 	}
1096 #ifdef IEEE80211_DEBUG
1097 	if (ieee80211_msg(ni->ni_vap, IEEE80211_MSG_RATECTL)) {
1098 		uint64_t mask;
1099 
1100 		ieee80211_note(ni->ni_vap, "[%6D] %s: size 1600 rate/tt",
1101 		    ni->ni_macaddr, ":", __func__);
1102 		for (mask = sn->ratemask, rix = 0; mask != 0; mask >>= 1, rix++) {
1103 			if ((mask & 1) == 0)
1104 				continue;
1105 			printf(" %d %s/%d", dot11rate(rt, rix), dot11rate_label(rt, rix),
1106 			    calc_usecs_unicast_packet(sc, 1600, rix, 0,0,
1107 			        (ni->ni_chw == 40)));
1108 		}
1109 		printf("\n");
1110 	}
1111 #endif
1112 	for (y = 0; y < NUM_PACKET_SIZE_BINS; y++) {
1113 		int size = bin_to_size(y);
1114 		uint64_t mask;
1115 
1116 		sn->packets_sent[y] = 0;
1117 		sn->current_sample_rix[y] = -1;
1118 		sn->last_sample_rix[y] = 0;
1119 		/* XXX start with first valid rate */
1120 		sn->current_rix[y] = ffs(sn->ratemask)-1;
1121 
1122 		/*
1123 		 * Initialize the statistics buckets; these are
1124 		 * indexed by the rate code index.
1125 		 */
1126 		for (rix = 0, mask = sn->ratemask; mask != 0; rix++, mask >>= 1) {
1127 			if ((mask & 1) == 0)		/* not a valid rate */
1128 				continue;
1129 			sn->stats[y][rix].successive_failures = 0;
1130 			sn->stats[y][rix].tries = 0;
1131 			sn->stats[y][rix].total_packets = 0;
1132 			sn->stats[y][rix].packets_acked = 0;
1133 			sn->stats[y][rix].last_tx = 0;
1134 			sn->stats[y][rix].ewma_pct = 0;
1135 
1136 			sn->stats[y][rix].perfect_tx_time =
1137 			    calc_usecs_unicast_packet(sc, size, rix, 0, 0,
1138 			    (ni->ni_chw == 40));
1139 			sn->stats[y][rix].average_tx_time =
1140 			    sn->stats[y][rix].perfect_tx_time;
1141 		}
1142 	}
1143 #if 0
1144 	/* XXX 0, num_rates-1 are wrong */
1145 	IEEE80211_NOTE(ni->ni_vap, IEEE80211_MSG_RATECTL, ni,
1146 	    "%s: %d rates %d%sMbps (%dus)- %d%sMbps (%dus)", __func__,
1147 	    sn->num_rates,
1148 	    DOT11RATE(0)/2, DOT11RATE(0) % 1 ? ".5" : "",
1149 	    sn->stats[1][0].perfect_tx_time,
1150 	    DOT11RATE(sn->num_rates-1)/2, DOT11RATE(sn->num_rates-1) % 1 ? ".5" : "",
1151 	    sn->stats[1][sn->num_rates-1].perfect_tx_time
1152 	);
1153 #endif
1154 	/* set the visible bit-rate */
1155 	if (sn->static_rix != -1)
1156 		ni->ni_txrate = DOT11RATE(sn->static_rix);
1157 	else
1158 		ni->ni_txrate = RATE(0);
1159 #undef RATE
1160 #undef DOT11RATE
1161 }
1162 
1163 /*
1164  * Fetch the statistics for the given node.
1165  *
1166  * The ieee80211 node must be referenced and unlocked, however the ath_node
1167  * must be locked.
1168  *
1169  * The main difference here is that we convert the rate indexes
1170  * to 802.11 rates, or the userland output won't make much sense
1171  * as it has no access to the rix table.
1172  */
1173 int
1174 ath_rate_fetch_node_stats(struct ath_softc *sc, struct ath_node *an,
1175     struct ath_rateioctl *rs)
1176 {
1177 	struct sample_node *sn = ATH_NODE_SAMPLE(an);
1178 	const HAL_RATE_TABLE *rt = sc->sc_currates;
1179 	struct ath_rateioctl_tlv av;
1180 	struct ath_rateioctl_rt *tv;
1181 	int y;
1182 	int o = 0;
1183 
1184 	ATH_NODE_LOCK_ASSERT(an);
1185 
1186 	/*
1187 	 * Ensure there's enough space for the statistics.
1188 	 */
1189 	if (rs->len <
1190 	    sizeof(struct ath_rateioctl_tlv) +
1191 	    sizeof(struct ath_rateioctl_rt) +
1192 	    sizeof(struct ath_rateioctl_tlv) +
1193 	    sizeof(struct sample_node)) {
1194 		device_printf(sc->sc_dev, "%s: len=%d, too short\n",
1195 		    __func__,
1196 		    rs->len);
1197 		return (EINVAL);
1198 	}
1199 
1200 	/*
1201 	 * Take a temporary copy of the sample node state so we can
1202 	 * modify it before we copy it.
1203 	 */
1204 	tv = malloc(sizeof(struct ath_rateioctl_rt), M_TEMP,
1205 	    M_NOWAIT | M_ZERO);
1206 	if (tv == NULL) {
1207 		return (ENOMEM);
1208 	}
1209 
1210 	/*
1211 	 * Populate the rate table mapping TLV.
1212 	 */
1213 	tv->nentries = rt->rateCount;
1214 	for (y = 0; y < rt->rateCount; y++) {
1215 		tv->ratecode[y] = rt->info[y].dot11Rate & IEEE80211_RATE_VAL;
1216 		if (rt->info[y].phy == IEEE80211_T_HT)
1217 			tv->ratecode[y] |= IEEE80211_RATE_MCS;
1218 	}
1219 
1220 	o = 0;
1221 	/*
1222 	 * First TLV - rate code mapping
1223 	 */
1224 	av.tlv_id = ATH_RATE_TLV_RATETABLE;
1225 	av.tlv_len = sizeof(struct ath_rateioctl_rt);
1226 	copyout(&av, rs->buf + o, sizeof(struct ath_rateioctl_tlv));
1227 	o += sizeof(struct ath_rateioctl_tlv);
1228 	copyout(tv, rs->buf + o, sizeof(struct ath_rateioctl_rt));
1229 	o += sizeof(struct ath_rateioctl_rt);
1230 
1231 	/*
1232 	 * Second TLV - sample node statistics
1233 	 */
1234 	av.tlv_id = ATH_RATE_TLV_SAMPLENODE;
1235 	av.tlv_len = sizeof(struct sample_node);
1236 	copyout(&av, rs->buf + o, sizeof(struct ath_rateioctl_tlv));
1237 	o += sizeof(struct ath_rateioctl_tlv);
1238 
1239 	/*
1240 	 * Copy the statistics over to the provided buffer.
1241 	 */
1242 	copyout(sn, rs->buf + o, sizeof(struct sample_node));
1243 	o += sizeof(struct sample_node);
1244 
1245 	free(tv, M_TEMP);
1246 
1247 	return (0);
1248 }
1249 
1250 static void
1251 sample_stats(void *arg, struct ieee80211_node *ni)
1252 {
1253 	struct ath_softc *sc = arg;
1254 	const HAL_RATE_TABLE *rt = sc->sc_currates;
1255 	struct sample_node *sn = ATH_NODE_SAMPLE(ATH_NODE(ni));
1256 	uint64_t mask;
1257 	int rix, y;
1258 
1259 	printf("\n[%s] refcnt %d static_rix (%d %s) ratemask 0x%jx\n",
1260 	    ether_sprintf(ni->ni_macaddr), ieee80211_node_refcnt(ni),
1261 	    dot11rate(rt, sn->static_rix),
1262 	    dot11rate_label(rt, sn->static_rix),
1263 	    (uintmax_t)sn->ratemask);
1264 	for (y = 0; y < NUM_PACKET_SIZE_BINS; y++) {
1265 		printf("[%4u] cur rix %d (%d %s) since switch: packets %d ticks %u\n",
1266 		    bin_to_size(y), sn->current_rix[y],
1267 		    dot11rate(rt, sn->current_rix[y]),
1268 		    dot11rate_label(rt, sn->current_rix[y]),
1269 		    sn->packets_since_switch[y], sn->ticks_since_switch[y]);
1270 		printf("[%4u] last sample (%d %s) cur sample (%d %s) packets sent %d\n",
1271 		    bin_to_size(y),
1272 		    dot11rate(rt, sn->last_sample_rix[y]),
1273 		    dot11rate_label(rt, sn->last_sample_rix[y]),
1274 		    dot11rate(rt, sn->current_sample_rix[y]),
1275 		    dot11rate_label(rt, sn->current_sample_rix[y]),
1276 		    sn->packets_sent[y]);
1277 		printf("[%4u] packets since sample %d sample tt %u\n",
1278 		    bin_to_size(y), sn->packets_since_sample[y],
1279 		    sn->sample_tt[y]);
1280 	}
1281 	for (mask = sn->ratemask, rix = 0; mask != 0; mask >>= 1, rix++) {
1282 		if ((mask & 1) == 0)
1283 				continue;
1284 		for (y = 0; y < NUM_PACKET_SIZE_BINS; y++) {
1285 			if (sn->stats[y][rix].total_packets == 0)
1286 				continue;
1287 			printf("[%2u %s:%4u] %8ju:%-8ju (%3d%%) (EWMA %3d.%1d%%) T %8ju F %4d avg %5u last %u\n",
1288 			    dot11rate(rt, rix), dot11rate_label(rt, rix),
1289 			    bin_to_size(y),
1290 			    (uintmax_t) sn->stats[y][rix].total_packets,
1291 			    (uintmax_t) sn->stats[y][rix].packets_acked,
1292 			    (int) ((sn->stats[y][rix].packets_acked * 100ULL) /
1293 			     sn->stats[y][rix].total_packets),
1294 			    sn->stats[y][rix].ewma_pct / 10,
1295 			    sn->stats[y][rix].ewma_pct % 10,
1296 			    (uintmax_t) sn->stats[y][rix].tries,
1297 			    sn->stats[y][rix].successive_failures,
1298 			    sn->stats[y][rix].average_tx_time,
1299 			    ticks - sn->stats[y][rix].last_tx);
1300 		}
1301 	}
1302 }
1303 
1304 static int
1305 ath_rate_sysctl_stats(SYSCTL_HANDLER_ARGS)
1306 {
1307 	struct ath_softc *sc = arg1;
1308 	struct ieee80211com *ic = &sc->sc_ic;
1309 	int error, v;
1310 
1311 	v = 0;
1312 	error = sysctl_handle_int(oidp, &v, 0, req);
1313 	if (error || !req->newptr)
1314 		return error;
1315 	ieee80211_iterate_nodes(&ic->ic_sta, sample_stats, sc);
1316 	return 0;
1317 }
1318 
1319 static int
1320 ath_rate_sysctl_smoothing_rate(SYSCTL_HANDLER_ARGS)
1321 {
1322 	struct sample_softc *ssc = arg1;
1323 	int rate, error;
1324 
1325 	rate = ssc->smoothing_rate;
1326 	error = sysctl_handle_int(oidp, &rate, 0, req);
1327 	if (error || !req->newptr)
1328 		return error;
1329 	if (!(0 <= rate && rate < 100))
1330 		return EINVAL;
1331 	ssc->smoothing_rate = rate;
1332 	ssc->smoothing_minpackets = 100 / (100 - rate);
1333 	return 0;
1334 }
1335 
1336 static int
1337 ath_rate_sysctl_sample_rate(SYSCTL_HANDLER_ARGS)
1338 {
1339 	struct sample_softc *ssc = arg1;
1340 	int rate, error;
1341 
1342 	rate = ssc->sample_rate;
1343 	error = sysctl_handle_int(oidp, &rate, 0, req);
1344 	if (error || !req->newptr)
1345 		return error;
1346 	if (!(2 <= rate && rate <= 100))
1347 		return EINVAL;
1348 	ssc->sample_rate = rate;
1349 	return 0;
1350 }
1351 
1352 static void
1353 ath_rate_sysctlattach(struct ath_softc *sc, struct sample_softc *ssc)
1354 {
1355 	struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(sc->sc_dev);
1356 	struct sysctl_oid *tree = device_get_sysctl_tree(sc->sc_dev);
1357 
1358 	SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
1359 	    "smoothing_rate", CTLTYPE_INT | CTLFLAG_RW, ssc, 0,
1360 	    ath_rate_sysctl_smoothing_rate, "I",
1361 	    "sample: smoothing rate for avg tx time (%%)");
1362 	SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
1363 	    "sample_rate", CTLTYPE_INT | CTLFLAG_RW, ssc, 0,
1364 	    ath_rate_sysctl_sample_rate, "I",
1365 	    "sample: percent air time devoted to sampling new rates (%%)");
1366 	/* XXX max_successive_failures, stale_failure_timeout, min_switch */
1367 	SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
1368 	    "sample_stats", CTLTYPE_INT | CTLFLAG_RW, sc, 0,
1369 	    ath_rate_sysctl_stats, "I", "sample: print statistics");
1370 }
1371 
1372 struct ath_ratectrl *
1373 ath_rate_attach(struct ath_softc *sc)
1374 {
1375 	struct sample_softc *ssc;
1376 
1377 	ssc = malloc(sizeof(struct sample_softc), M_DEVBUF, M_NOWAIT|M_ZERO);
1378 	if (ssc == NULL)
1379 		return NULL;
1380 	ssc->arc.arc_space = sizeof(struct sample_node);
1381 	ssc->smoothing_rate = 75;		/* ewma percentage ([0..99]) */
1382 	ssc->smoothing_minpackets = 100 / (100 - ssc->smoothing_rate);
1383 	ssc->sample_rate = 10;			/* %time to try diff tx rates */
1384 	ssc->max_successive_failures = 3;	/* threshold for rate sampling*/
1385 	ssc->stale_failure_timeout = 10 * hz;	/* 10 seconds */
1386 	ssc->min_switch = hz;			/* 1 second */
1387 	ath_rate_sysctlattach(sc, ssc);
1388 	return &ssc->arc;
1389 }
1390 
1391 void
1392 ath_rate_detach(struct ath_ratectrl *arc)
1393 {
1394 	struct sample_softc *ssc = (struct sample_softc *) arc;
1395 
1396 	free(ssc, M_DEVBUF);
1397 }
1398