ath9k: Remove redundant code
[cascardo/linux.git] / drivers / net / wireless / ath / ath9k / ani.h
1 /*
2  * Copyright (c) 2008-2011 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef ANI_H
18 #define ANI_H
19
20 #define BEACON_RSSI(ahp) (ahp->stats.avgbrssi)
21
22 /* units are errors per second */
23 #define ATH9K_ANI_OFDM_TRIG_HIGH          3500
24
25 /* units are errors per second */
26 #define ATH9K_ANI_OFDM_TRIG_LOW           400
27
28 /* units are errors per second */
29 #define ATH9K_ANI_CCK_TRIG_HIGH           600
30
31 /* units are errors per second */
32 #define ATH9K_ANI_CCK_TRIG_LOW            300
33
34 #define ATH9K_ANI_NOISE_IMMUNE_LVL        4
35 #define ATH9K_ANI_SPUR_IMMUNE_LVL         3
36 #define ATH9K_ANI_FIRSTEP_LVL             2
37
38 #define ATH9K_ANI_RSSI_THR_HIGH           40
39 #define ATH9K_ANI_RSSI_THR_LOW            7
40
41 #define ATH9K_ANI_PERIOD                  300
42
43 /* in ms */
44 #define ATH9K_ANI_POLLINTERVAL            1000
45
46 #define HAL_NOISE_IMMUNE_MAX              4
47 #define HAL_SPUR_IMMUNE_MAX               7
48 #define HAL_FIRST_STEP_MAX                2
49
50 #define ATH9K_SIG_FIRSTEP_SETTING_MIN     0
51 #define ATH9K_SIG_FIRSTEP_SETTING_MAX     20
52 #define ATH9K_SIG_SPUR_IMM_SETTING_MIN    0
53 #define ATH9K_SIG_SPUR_IMM_SETTING_MAX    22
54
55 /* values here are relative to the INI */
56
57 enum ath9k_ani_cmd {
58         ATH9K_ANI_PRESENT = 0x1,
59         ATH9K_ANI_NOISE_IMMUNITY_LEVEL = 0x2,
60         ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION = 0x4,
61         ATH9K_ANI_CCK_WEAK_SIGNAL_THR = 0x8,
62         ATH9K_ANI_FIRSTEP_LEVEL = 0x10,
63         ATH9K_ANI_SPUR_IMMUNITY_LEVEL = 0x20,
64         ATH9K_ANI_MODE = 0x40,
65         ATH9K_ANI_PHYERR_RESET = 0x80,
66         ATH9K_ANI_MRC_CCK = 0x100,
67         ATH9K_ANI_ALL = 0xfff
68 };
69
70 struct ath9k_mib_stats {
71         u32 ackrcv_bad;
72         u32 rts_bad;
73         u32 rts_good;
74         u32 fcs_bad;
75         u32 beacons;
76 };
77
78 /* INI default values for ANI registers */
79 struct ath9k_ani_default {
80         u16 m1ThreshLow;
81         u16 m2ThreshLow;
82         u16 m1Thresh;
83         u16 m2Thresh;
84         u16 m2CountThr;
85         u16 m2CountThrLow;
86         u16 m1ThreshLowExt;
87         u16 m2ThreshLowExt;
88         u16 m1ThreshExt;
89         u16 m2ThreshExt;
90         u16 firstep;
91         u16 firstepLow;
92         u16 cycpwrThr1;
93         u16 cycpwrThr1Ext;
94 };
95
96 struct ar5416AniState {
97         u8 noiseImmunityLevel;
98         u8 ofdmNoiseImmunityLevel;
99         u8 cckNoiseImmunityLevel;
100         bool ofdmsTurn;
101         u8 mrcCCK;
102         u8 spurImmunityLevel;
103         u8 firstepLevel;
104         bool ofdmWeakSigDetect;
105         u32 listenTime;
106         u32 ofdmPhyErrCount;
107         u32 cckPhyErrCount;
108         struct ath9k_ani_default iniDef;
109 };
110
111 struct ar5416Stats {
112         u32 ast_ani_spurup;
113         u32 ast_ani_spurdown;
114         u32 ast_ani_ofdmon;
115         u32 ast_ani_ofdmoff;
116         u32 ast_ani_cckhigh;
117         u32 ast_ani_ccklow;
118         u32 ast_ani_stepup;
119         u32 ast_ani_stepdown;
120         u32 ast_ani_ofdmerrs;
121         u32 ast_ani_cckerrs;
122         u32 ast_ani_reset;
123         u32 ast_ani_lneg_or_lzero;
124         u32 avgbrssi;
125         struct ath9k_mib_stats ast_mibstats;
126 };
127 #define ah_mibStats stats.ast_mibstats
128
129 void ath9k_enable_mib_counters(struct ath_hw *ah);
130 void ath9k_hw_disable_mib_counters(struct ath_hw *ah);
131 void ath9k_hw_ani_init(struct ath_hw *ah);
132
133 #endif /* ANI_H */