Fixed Tx hang issue with DMA segment length = 0
[ralink_drivers/rt2860_fbsd8.git] / rt2860_amrr.h
blobed0f208210b7e0667edc69c425466de3ff434f01
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 #ifndef _RT2860_AMRR_H_
20 #define _RT2860_AMRR_H_
22 #define RT2860_AMRR_MIN_SUCCESS_THRESHOLD 1
23 #define RT2860_AMRR_MAX_SUCCESS_THRESHOLD 15
25 struct rt2860_amrr
27 unsigned int min_success_threshold;
28 unsigned int max_success_threshold;
30 int interval;
33 struct rt2860_amrr_node
35 struct rt2860_amrr *amrr;
37 int rate_index;
39 int ticks;
41 unsigned int txcnt;
42 unsigned int success;
43 unsigned int success_threshold;
44 unsigned int recovery;
45 unsigned int retrycnt;
48 void rt2860_amrr_init(struct rt2860_amrr *amrr, struct ieee80211vap *vap,
49 int min_success_threshold, int max_success_threshold, int msecs);
51 void rt2860_amrr_cleanup(struct rt2860_amrr *amrr);
53 void rt2860_amrr_node_init(struct rt2860_amrr *amrr,
54 struct rt2860_amrr_node *amrr_node, struct ieee80211_node *ni);
56 int rt2860_amrr_choose(struct ieee80211_node *ni,
57 struct rt2860_amrr_node *amrr_node);
59 static __inline void rt2860_amrr_tx_complete(struct rt2860_amrr_node *amrr_node,
60 int ok, int retries)
62 amrr_node->txcnt++;
64 if (ok)
65 amrr_node->success++;
67 amrr_node->retrycnt += retries;
70 static __inline void rt2860_amrr_tx_update(struct rt2860_amrr_node *amrr_node,
71 int txcnt, int success, int retrycnt)
73 amrr_node->txcnt = txcnt;
74 amrr_node->success = success;
75 amrr_node->retrycnt = retrycnt;
78 #endif /* #ifndef _RT2860_AMRR_H_ */