blob: 15f9d67a18c8397ece83081afb58c0028d8d9319 [file] [log] [blame]
Sujith394cf0a2009-02-09 13:26:54 +05301/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Sujith394cf0a2009-02-09 13:26:54 +05303 *
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 HAL_PROCESS_ANI 0x00000001
Sujith394cf0a2009-02-09 13:26:54 +053021
Sujith2660b812009-02-09 13:27:26 +053022#define DO_ANI(ah) (((ah)->proc_phyerr & HAL_PROCESS_ANI))
Sujith394cf0a2009-02-09 13:26:54 +053023
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +053024#define BEACON_RSSI(ahp) (ahp->stats.avgbrssi)
Sujith394cf0a2009-02-09 13:26:54 +053025
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040026/* units are errors per second */
27#define ATH9K_ANI_OFDM_TRIG_HIGH_OLD 500
28#define ATH9K_ANI_OFDM_TRIG_HIGH_NEW 1000
29
30/* units are errors per second */
31#define ATH9K_ANI_OFDM_TRIG_LOW_OLD 200
32#define ATH9K_ANI_OFDM_TRIG_LOW_NEW 400
33
34/* units are errors per second */
35#define ATH9K_ANI_CCK_TRIG_HIGH_OLD 200
36#define ATH9K_ANI_CCK_TRIG_HIGH_NEW 600
37
38/* units are errors per second */
39#define ATH9K_ANI_CCK_TRIG_LOW_OLD 100
40#define ATH9K_ANI_CCK_TRIG_LOW_NEW 300
41
Sujith394cf0a2009-02-09 13:26:54 +053042#define ATH9K_ANI_NOISE_IMMUNE_LVL 4
43#define ATH9K_ANI_USE_OFDM_WEAK_SIG true
44#define ATH9K_ANI_CCK_WEAK_SIG_THR false
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040045
46#define ATH9K_ANI_SPUR_IMMUNE_LVL_OLD 7
47#define ATH9K_ANI_SPUR_IMMUNE_LVL_NEW 3
48
49#define ATH9K_ANI_FIRSTEP_LVL_OLD 0
50#define ATH9K_ANI_FIRSTEP_LVL_NEW 2
51
Sujith394cf0a2009-02-09 13:26:54 +053052#define ATH9K_ANI_RSSI_THR_HIGH 40
53#define ATH9K_ANI_RSSI_THR_LOW 7
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040054
55#define ATH9K_ANI_PERIOD_OLD 100
56#define ATH9K_ANI_PERIOD_NEW 1000
57
58/* in ms */
59#define ATH9K_ANI_POLLINTERVAL_OLD 100
60#define ATH9K_ANI_POLLINTERVAL_NEW 1000
Sujith394cf0a2009-02-09 13:26:54 +053061
62#define HAL_NOISE_IMMUNE_MAX 4
63#define HAL_SPUR_IMMUNE_MAX 7
64#define HAL_FIRST_STEP_MAX 2
65
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040066#define ATH9K_SIG_FIRSTEP_SETTING_MIN 0
67#define ATH9K_SIG_FIRSTEP_SETTING_MAX 20
68#define ATH9K_SIG_SPUR_IMM_SETTING_MIN 0
69#define ATH9K_SIG_SPUR_IMM_SETTING_MAX 22
70
71#define ATH9K_ANI_ENABLE_MRC_CCK true
72
73/* values here are relative to the INI */
74
Sujith394cf0a2009-02-09 13:26:54 +053075enum ath9k_ani_cmd {
76 ATH9K_ANI_PRESENT = 0x1,
77 ATH9K_ANI_NOISE_IMMUNITY_LEVEL = 0x2,
78 ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION = 0x4,
79 ATH9K_ANI_CCK_WEAK_SIGNAL_THR = 0x8,
80 ATH9K_ANI_FIRSTEP_LEVEL = 0x10,
81 ATH9K_ANI_SPUR_IMMUNITY_LEVEL = 0x20,
82 ATH9K_ANI_MODE = 0x40,
83 ATH9K_ANI_PHYERR_RESET = 0x80,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040084 ATH9K_ANI_MRC_CCK = 0x100,
85 ATH9K_ANI_ALL = 0xfff
Sujith394cf0a2009-02-09 13:26:54 +053086};
87
88struct ath9k_mib_stats {
89 u32 ackrcv_bad;
90 u32 rts_bad;
91 u32 rts_good;
92 u32 fcs_bad;
93 u32 beacons;
94};
95
Felix Fietkau9dbebc72010-10-03 19:07:17 +020096struct ath_cycle_counters {
97 u32 cycles;
98 u32 rx_frame;
99 u32 rx_clear;
100 u32 tx_frame;
101};
102
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400103/* INI default values for ANI registers */
104struct ath9k_ani_default {
105 u16 m1ThreshLow;
106 u16 m2ThreshLow;
107 u16 m1Thresh;
108 u16 m2Thresh;
109 u16 m2CountThr;
110 u16 m2CountThrLow;
111 u16 m1ThreshLowExt;
112 u16 m2ThreshLowExt;
113 u16 m1ThreshExt;
114 u16 m2ThreshExt;
115 u16 firstep;
116 u16 firstepLow;
117 u16 cycpwrThr1;
118 u16 cycpwrThr1Ext;
119};
120
Sujithee6e8d12009-02-09 13:29:49 +0530121struct ar5416AniState {
122 struct ath9k_channel *c;
123 u8 noiseImmunityLevel;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400124 u8 ofdmNoiseImmunityLevel;
125 u8 cckNoiseImmunityLevel;
126 bool ofdmsTurn;
127 u8 mrcCCKOff;
Sujithee6e8d12009-02-09 13:29:49 +0530128 u8 spurImmunityLevel;
129 u8 firstepLevel;
130 u8 ofdmWeakSigDetectOff;
131 u8 cckWeakSigThreshold;
132 u32 listenTime;
133 u32 ofdmTrigHigh;
134 u32 ofdmTrigLow;
135 int32_t cckTrigHigh;
136 int32_t cckTrigLow;
137 int32_t rssiThrLow;
138 int32_t rssiThrHigh;
139 u32 noiseFloor;
Sujithee6e8d12009-02-09 13:29:49 +0530140 u32 ofdmPhyErrCount;
141 u32 cckPhyErrCount;
142 u32 ofdmPhyErrBase;
143 u32 cckPhyErrBase;
144 int16_t pktRssi[2];
145 int16_t ofdmErrRssi[2];
146 int16_t cckErrRssi[2];
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400147 struct ath9k_ani_default iniDef;
Sujithee6e8d12009-02-09 13:29:49 +0530148};
149
Sujith394cf0a2009-02-09 13:26:54 +0530150struct ar5416Stats {
151 u32 ast_ani_niup;
152 u32 ast_ani_nidown;
153 u32 ast_ani_spurup;
154 u32 ast_ani_spurdown;
155 u32 ast_ani_ofdmon;
156 u32 ast_ani_ofdmoff;
157 u32 ast_ani_cckhigh;
158 u32 ast_ani_ccklow;
159 u32 ast_ani_stepup;
160 u32 ast_ani_stepdown;
161 u32 ast_ani_ofdmerrs;
162 u32 ast_ani_cckerrs;
163 u32 ast_ani_reset;
164 u32 ast_ani_lzero;
165 u32 ast_ani_lneg;
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530166 u32 avgbrssi;
Sujith394cf0a2009-02-09 13:26:54 +0530167 struct ath9k_mib_stats ast_mibstats;
Sujith394cf0a2009-02-09 13:26:54 +0530168};
Sujith2660b812009-02-09 13:27:26 +0530169#define ah_mibStats stats.ast_mibstats
Sujith394cf0a2009-02-09 13:26:54 +0530170
Sujithcbe61d82009-02-09 13:27:12 +0530171void ath9k_enable_mib_counters(struct ath_hw *ah);
172void ath9k_hw_disable_mib_counters(struct ath_hw *ah);
Felix Fietkau9dbebc72010-10-03 19:07:17 +0200173void ath9k_hw_update_cycle_counters(struct ath_hw *ah);
Sujithcbe61d82009-02-09 13:27:12 +0530174void ath9k_hw_ani_setup(struct ath_hw *ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700175void ath9k_hw_ani_init(struct ath_hw *ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400176int ath9k_hw_get_ani_channel_idx(struct ath_hw *ah,
177 struct ath9k_channel *chan);
Sujith394cf0a2009-02-09 13:26:54 +0530178
179#endif /* ANI_H */