ath9k_htc: catch fw panic pattern
[deliverable/linux.git] / drivers / net / wireless / ath / ath9k / rc.h
CommitLineData
f078f209
LR
1/*
2 * Copyright (c) 2004 Sam Leffler, Errno Consulting
3 * Copyright (c) 2004 Video54 Technologies, Inc.
5b68138e 4 * Copyright (c) 2008-2011 Atheros Communications Inc.
f078f209
LR
5 *
6 * Permission to use, copy, modify, and/or 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.
9 *
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.
17 */
18
19#ifndef RC_H
20#define RC_H
21
db86f07e
LR
22#include "hw.h"
23
f078f209
LR
24struct ath_softc;
25
46d14a58 26#define ATH_RATE_MAX 30
1d9d06a2 27#define RATE_TABLE_SIZE 72
f63b340d
SB
28
29#define RC_INVALID 0x0000
30#define RC_LEGACY 0x0001
31#define RC_SS 0x0002
32#define RC_DS 0x0004
33#define RC_TS 0x0008
34#define RC_HT_20 0x0010
35#define RC_HT_40 0x0020
36
1d9d06a2
SB
37#define RC_STREAM_MASK 0xe
38#define RC_DS_OR_LATER(f) ((((f) & RC_STREAM_MASK) == RC_DS) || \
39 (((f) & RC_STREAM_MASK) == (RC_DS | RC_TS)))
40#define RC_TS_ONLY(f) (((f) & RC_STREAM_MASK) == RC_TS)
41#define RC_SS_OR_LEGACY(f) ((f) & (RC_SS | RC_LEGACY))
f63b340d
SB
42
43#define RC_HT_2040 (RC_HT_20 | RC_HT_40)
1d9d06a2 44#define RC_ALL_STREAM (RC_SS | RC_DS | RC_TS)
f63b340d 45#define RC_L_SD (RC_LEGACY | RC_SS | RC_DS)
1d9d06a2 46#define RC_L_SDT (RC_LEGACY | RC_SS | RC_DS | RC_TS)
f63b340d 47#define RC_HT_S_20 (RC_HT_20 | RC_SS)
f63b340d 48#define RC_HT_D_20 (RC_HT_20 | RC_DS)
1d9d06a2
SB
49#define RC_HT_T_20 (RC_HT_20 | RC_TS)
50#define RC_HT_S_40 (RC_HT_40 | RC_SS)
f63b340d 51#define RC_HT_D_40 (RC_HT_40 | RC_DS)
1d9d06a2
SB
52#define RC_HT_T_40 (RC_HT_40 | RC_TS)
53
54#define RC_HT_SD_20 (RC_HT_20 | RC_SS | RC_DS)
55#define RC_HT_DT_20 (RC_HT_20 | RC_DS | RC_TS)
56#define RC_HT_SD_40 (RC_HT_40 | RC_SS | RC_DS)
57#define RC_HT_DT_40 (RC_HT_40 | RC_DS | RC_TS)
58
59#define RC_HT_SD_2040 (RC_HT_2040 | RC_SS | RC_DS)
60#define RC_HT_SDT_2040 (RC_HT_2040 | RC_SS | RC_DS | RC_TS)
61
62#define RC_HT_SDT_20 (RC_HT_20 | RC_SS | RC_DS | RC_TS)
63#define RC_HT_SDT_40 (RC_HT_40 | RC_SS | RC_DS | RC_TS)
64
f63b340d 65#define RC_ALL (RC_LEGACY | RC_HT_2040 | RC_ALL_STREAM)
f078f209 66
394cf0a1
S
67enum {
68 WLAN_RC_PHY_OFDM,
69 WLAN_RC_PHY_CCK,
70 WLAN_RC_PHY_HT_20_SS,
71 WLAN_RC_PHY_HT_20_DS,
1d9d06a2 72 WLAN_RC_PHY_HT_20_TS,
394cf0a1
S
73 WLAN_RC_PHY_HT_40_SS,
74 WLAN_RC_PHY_HT_40_DS,
1d9d06a2 75 WLAN_RC_PHY_HT_40_TS,
394cf0a1
S
76 WLAN_RC_PHY_HT_20_SS_HGI,
77 WLAN_RC_PHY_HT_20_DS_HGI,
1d9d06a2 78 WLAN_RC_PHY_HT_20_TS_HGI,
394cf0a1
S
79 WLAN_RC_PHY_HT_40_SS_HGI,
80 WLAN_RC_PHY_HT_40_DS_HGI,
1d9d06a2 81 WLAN_RC_PHY_HT_40_TS_HGI,
394cf0a1
S
82 WLAN_RC_PHY_MAX
83};
84
5701ed84
S
85#define WLAN_RC_PHY_DS(_phy) ((_phy == WLAN_RC_PHY_HT_20_DS) \
86 || (_phy == WLAN_RC_PHY_HT_40_DS) \
87 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI) \
88 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
1d9d06a2
SB
89#define WLAN_RC_PHY_TS(_phy) ((_phy == WLAN_RC_PHY_HT_20_TS) \
90 || (_phy == WLAN_RC_PHY_HT_40_TS) \
91 || (_phy == WLAN_RC_PHY_HT_20_TS_HGI) \
92 || (_phy == WLAN_RC_PHY_HT_40_TS_HGI))
c755ad34
LR
93#define WLAN_RC_PHY_20(_phy) ((_phy == WLAN_RC_PHY_HT_20_SS) \
94 || (_phy == WLAN_RC_PHY_HT_20_DS) \
1d9d06a2 95 || (_phy == WLAN_RC_PHY_HT_20_TS) \
c755ad34 96 || (_phy == WLAN_RC_PHY_HT_20_SS_HGI) \
1d9d06a2
SB
97 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI) \
98 || (_phy == WLAN_RC_PHY_HT_20_TS_HGI))
5701ed84
S
99#define WLAN_RC_PHY_40(_phy) ((_phy == WLAN_RC_PHY_HT_40_SS) \
100 || (_phy == WLAN_RC_PHY_HT_40_DS) \
1d9d06a2 101 || (_phy == WLAN_RC_PHY_HT_40_TS) \
5701ed84 102 || (_phy == WLAN_RC_PHY_HT_40_SS_HGI) \
1d9d06a2
SB
103 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI) \
104 || (_phy == WLAN_RC_PHY_HT_40_TS_HGI))
f078f209 105#define WLAN_RC_PHY_SGI(_phy) ((_phy == WLAN_RC_PHY_HT_20_SS_HGI) \
5701ed84 106 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI) \
1d9d06a2 107 || (_phy == WLAN_RC_PHY_HT_20_TS_HGI) \
5701ed84 108 || (_phy == WLAN_RC_PHY_HT_40_SS_HGI) \
1d9d06a2
SB
109 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI) \
110 || (_phy == WLAN_RC_PHY_HT_40_TS_HGI))
f078f209
LR
111
112#define WLAN_RC_PHY_HT(_phy) (_phy >= WLAN_RC_PHY_HT_20_SS)
113
f078f209 114#define WLAN_RC_CAP_MODE(capflag) (((capflag & WLAN_RC_HT_FLAG) ? \
f63b340d
SB
115 ((capflag & WLAN_RC_40_FLAG) ? RC_HT_40 : RC_HT_20) : RC_LEGACY))
116
1d9d06a2
SB
117#define WLAN_RC_CAP_STREAM(capflag) (((capflag & WLAN_RC_TS_FLAG) ? \
118 (RC_TS) : ((capflag & WLAN_RC_DS_FLAG) ? RC_DS : RC_SS)))
f078f209
LR
119
120/* Return TRUE if flag supports HT20 && client supports HT20 or
121 * return TRUE if flag supports HT40 && client supports HT40.
122 * This is used becos some rates overlap between HT20/HT40.
123 */
46d14a58 124#define WLAN_RC_PHY_HT_VALID(flag, capflag) \
f63b340d
SB
125 (((flag & RC_HT_20) && !(capflag & WLAN_RC_40_FLAG)) || \
126 ((flag & RC_HT_40) && (capflag & WLAN_RC_40_FLAG)))
f078f209
LR
127
128#define WLAN_RC_DS_FLAG (0x01)
1d9d06a2
SB
129#define WLAN_RC_TS_FLAG (0x02)
130#define WLAN_RC_40_FLAG (0x04)
131#define WLAN_RC_SGI_FLAG (0x08)
132#define WLAN_RC_HT_FLAG (0x10)
f078f209 133
5701ed84
S
134/**
135 * struct ath_rate_table - Rate Control table
7a826652
MSS
136 * @rate_cnt: total number of rates for the given wireless mode
137 * @mcs_start: MCS rate index offset
138 * @rate_flags: Rate Control flags
139 * @phy: CCK/OFDM/HT20/HT40
5701ed84
S
140 * @ratekbps: rate in Kbits per second
141 * @user_ratekbps: user rate in Kbits per second
142 * @ratecode: rate that goes into HW descriptors
5701ed84
S
143 * @dot11rate: value that goes into supported
144 * rates info element of MLME
145 * @ctrl_rate: Index of next lower basic rate, used for duration computation
7a826652
MSS
146 * @cw40index: Index of rates having 40MHz channel width
147 * @sgi_index: Index of rates having Short Guard Interval
148 * @ht_index: high throughput rates having 40MHz channel width and
149 * Short Guard Interval
5701ed84 150 * @probe_interval: interval for rate control to probe for other rates
46d14a58 151 * @initial_ratemax: initial ratemax value
5701ed84 152 */
f078f209
LR
153struct ath_rate_table {
154 int rate_cnt;
545750d3 155 int mcs_start;
f078f209 156 struct {
f63b340d 157 u16 rate_flags;
5701ed84
S
158 u8 phy;
159 u32 ratekbps;
160 u32 user_ratekbps;
161 u8 ratecode;
5701ed84 162 u8 dot11rate;
f078f209 163 } info[RATE_TABLE_SIZE];
5701ed84 164 u32 probe_interval;
5701ed84 165 u8 initial_ratemax;
f078f209
LR
166};
167
256b7759
S
168struct ath_rateset {
169 u8 rs_nrates;
170 u8 rs_rates[ATH_RATE_MAX];
171};
172
772d5515
FF
173struct ath_rc_stats {
174 u32 success;
175 u32 retries;
176 u32 xretries;
177 u8 per;
178};
179
5701ed84 180/**
46d14a58 181 * struct ath_rate_priv - Rate Control priv data
5701ed84 182 * @state: RC state
5701ed84 183 * @probe_rate: rate we are probing at
5701ed84
S
184 * @probe_time: msec timestamp for last probe
185 * @hw_maxretry_pktcnt: num of packets since we got HW max retry error
186 * @max_valid_rate: maximum number of valid rate
187 * @per_down_time: msec timestamp for last PER down step
188 * @valid_phy_ratecnt: valid rate count
189 * @rate_max_phy: phy index for the max rate
922bac60 190 * @per: PER for every valid rate in %
5701ed84 191 * @probe_interval: interval for ratectrl to probe for other rates
256b7759 192 * @ht_cap: HT capabilities
256b7759
S
193 * @neg_rates: Negotatied rates
194 * @neg_ht_rates: Negotiated HT rates
5701ed84 195 */
46d14a58 196struct ath_rate_priv {
5701ed84
S
197 u8 rate_table_size;
198 u8 probe_rate;
5701ed84
S
199 u8 hw_maxretry_pktcnt;
200 u8 max_valid_rate;
46d14a58 201 u8 valid_rate_index[RATE_TABLE_SIZE];
256b7759 202 u8 ht_cap;
5701ed84 203 u8 valid_phy_ratecnt[WLAN_RC_PHY_MAX];
46d14a58 204 u8 valid_phy_rateidx[WLAN_RC_PHY_MAX][RATE_TABLE_SIZE];
5701ed84 205 u8 rate_max_phy;
922bac60 206 u8 per[RATE_TABLE_SIZE];
256b7759
S
207 u32 probe_time;
208 u32 per_down_time;
5701ed84 209 u32 probe_interval;
5701ed84 210 struct ath_rateset neg_rates;
5701ed84 211 struct ath_rateset neg_ht_rates;
772d5515
FF
212 const struct ath_rate_table *rate_table;
213
1c11e10b 214#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_DEBUGFS)
772d5515
FF
215 struct dentry *debugfs_rcstats;
216 struct ath_rc_stats rcstats[RATE_TABLE_SIZE];
4d28f771 217#endif
f078f209
LR
218};
219
4d28f771
SM
220#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_DEBUGFS)
221void ath_debug_stat_rc(struct ath_rate_priv *rc, int final_rate);
222void ath_debug_stat_retries(struct ath_rate_priv *rc, int rix,
223 int xretries, int retries, u8 per);
224#else
225static inline void ath_debug_stat_rc(struct ath_rate_priv *rc, int final_rate)
226{
227}
228static inline void ath_debug_stat_retries(struct ath_rate_priv *rc, int rix,
229 int xretries, int retries, u8 per)
230{
231}
232#endif
233
5efac949 234#ifdef CONFIG_ATH9K_LEGACY_RATE_CONTROL
f078f209
LR
235int ath_rate_control_register(void);
236void ath_rate_control_unregister(void);
6e5c2b4e
FF
237#else
238static inline int ath_rate_control_register(void)
239{
240 return 0;
241}
242
243static inline void ath_rate_control_unregister(void)
244{
245}
246#endif
f078f209
LR
247
248#endif /* RC_H */
This page took 1.009024 seconds and 5 git commands to generate.